0.13.16 • Published 10 days ago

sigform v0.13.16

Weekly downloads
-
License
MIT
Repository
github
Last release
10 days ago

sigform

Nestable react form UI for allowing developer to construct complex form UI without hassle.

# For npm
npm i react sigform

# For yarn
yarn add react sigform

How to use

SEE: example For how to use it in Next.js project.

import { sigfield } from "sigform";
import React from "react";

export const TextInput = sigfield<{}, string>((props, ref) => {
  const { name, setValue, value } = props;

  return (
          <div className="p-4 bg-red-400" ref={ref}>
            <input
                    name={name}
                    type="text"
                    onChange={(e) => setValue(e.target.value)}
                    value={value}
            />
          </div>
  );
});


// And use it with form wrapper (SigForm).
<SigForm
    onChange={(value, helpers) => {
      console.log("changed!", JSON.stringify(value, null, 2));
    }}
    onSubmit={(data) => {
      console.log("submit!", JSON.stringify(data, null, 2));
        // Will output this data
        // { "email": "hoge@example.com" }
    }}
>
    <TextInput name="email" defaultValue="hoge@example.com" />

    <button type="submit" className="p-1 border rounded">submit</button>
</SigForm>

License

MIT, see the LICENSE file.


With Thanks to awesome OSS developers for inspiration. unform/unform / preactjs/signals / jamiebuilds/unstated-next / immerjs/immer

0.13.16

10 days ago

0.13.15

1 month ago

0.13.14

1 month ago

0.13.13

1 month ago

0.13.12

1 month ago

0.13.11

2 months ago

0.13.9

2 months ago

0.13.10

2 months ago

0.13.7

2 months ago

0.13.8

2 months ago

0.13.6

3 months ago

0.13.5

3 months ago

0.13.3

3 months ago

0.13.4

3 months ago

0.13.1

3 months ago

0.13.2

3 months ago

0.12.7

3 months ago

0.12.5

3 months ago

0.12.4

3 months ago

0.12.2

4 months ago

0.12.3

4 months ago

0.12.0

4 months ago

0.12.1

4 months ago

0.11.4

5 months ago

0.11.5

5 months ago

0.11.6

5 months ago

0.11.2

5 months ago

0.11.3

5 months ago

0.11.0

5 months ago

0.11.1

5 months ago

0.10.20

6 months ago

0.10.18

8 months ago

0.10.19

8 months ago

0.10.16

8 months ago

0.10.17

8 months ago

0.10.15

8 months ago

0.10.14

8 months ago

0.10.13

8 months ago

0.10.12

8 months ago

0.10.11

8 months ago

0.10.10

8 months ago

0.10.9

8 months ago

0.10.7

8 months ago

0.10.6

8 months ago

0.10.5

8 months ago

0.10.4

8 months ago

0.10.3

8 months ago

0.10.2

9 months ago

0.10.1

9 months ago

0.10.0

9 months ago

0.9.0

9 months ago