Skip to content
This repository was archived by the owner on Aug 12, 2019. It is now read-only.

Commit 1e3e74e

Browse files
committed
rename
1 parent 6849593 commit 1e3e74e

File tree

3 files changed

+13
-47
lines changed

3 files changed

+13
-47
lines changed

.size-snapshot.json

Lines changed: 5 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,25 @@
11
{
2-
"./dist/react-statefull-form.umd.production.js": {
3-
"bundled": 24289,
4-
"minified": 9179,
5-
"gzipped": 3010
6-
},
7-
"./dist/react-statefull-form.umd.development.js": {
8-
"bundled": 24289,
9-
"minified": 9179,
10-
"gzipped": 3010
11-
},
12-
"./dist/react-statefull-form.cjs.production.js": {
13-
"bundled": 21195,
14-
"minified": 11436,
15-
"gzipped": 3097
16-
},
17-
"./dist/react-statefull-form.cjs.development.js": {
18-
"bundled": 21195,
19-
"minified": 11436,
20-
"gzipped": 3097
21-
},
22-
"dist/react-statefull-form.esm.js": {
23-
"bundled": 19543,
24-
"minified": 10843,
25-
"gzipped": 3015,
26-
"treeshaked": {
27-
"rollup": {
28-
"code": 52,
29-
"import_statements": 52
30-
},
31-
"webpack": {
32-
"code": 1045
33-
}
34-
}
35-
},
36-
"./dist/react-stateful-form.umd.production.js": {
2+
"./dist/react-form-stateful.umd.production.js": {
373
"bundled": 23845,
384
"minified": 8996,
395
"gzipped": 2940
406
},
41-
"./dist/react-stateful-form.umd.development.js": {
7+
"./dist/react-form-stateful.umd.development.js": {
428
"bundled": 23845,
439
"minified": 8996,
4410
"gzipped": 2940
4511
},
46-
"./dist/react-stateful-form.cjs.production.js": {
12+
"./dist/react-form-stateful.cjs.production.js": {
4713
"bundled": 20795,
4814
"minified": 11082,
4915
"gzipped": 3023
5016
},
51-
"./dist/react-stateful-form.cjs.development.js": {
17+
"./dist/react-form-stateful.cjs.development.js": {
5218
"bundled": 20795,
5319
"minified": 11082,
5420
"gzipped": 3023
5521
},
56-
"dist/react-stateful-form.esm.js": {
22+
"dist/react-form-stateful.esm.js": {
5723
"bundled": 19174,
5824
"minified": 10506,
5925
"gzipped": 2945,

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# react-stateful-form
1+
# react-form-stateful
22

3-
react-stateful-form a full featured, extensible form component for react using react hooks
3+
react-form-stateful a full featured, extensible form component for react using react hooks
44

55
> **NOTE:** this project requires the use of an alpha version of react to use.
66
77
## Getting Started
88

99
```
10-
npm install --save react-stateful-form
10+
npm install --save react-form-stateful
1111
```
1212

1313
## Examples
@@ -16,7 +16,7 @@ npm install --save react-stateful-form
1616

1717
```tsx
1818
import { FC } from 'react';
19-
import { StatefulForm, SFInput, SFSelect, SFTextArea } from 'react-stateful-form';
19+
import { StatefulForm, SFInput, SFSelect, SFTextArea } from 'react-form-stateful';
2020
import * as yup from 'yup';
2121

2222
const ValidationSchemeForm: FC = () => {
@@ -96,7 +96,7 @@ Example Usage
9696

9797
```tsx
9898
import { FC, createElement } from 'react';
99-
import { StatefulForm, SFInput } from 'react-stateful-form';
99+
import { StatefulForm, SFInput } from 'react-form-stateful';
100100

101101
const Form: FC = () => {
102102
return (
@@ -116,7 +116,7 @@ An example of this can be seen in examples/pages/Pages.tsx.
116116

117117
## NO_DEFAULT and ASYNC_VALIDATION
118118

119-
There are two special constants that help with extending the functionality of react-stateful-form.
119+
There are two special constants that help with extending the functionality of react-form-stateful.
120120

121121
#### NO_DEFAULT
122122

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "react-stateful-form",
2+
"name": "react-form-stateful",
33
"sideEffects": false,
44
"version": "0.0.1",
55
"author": "",
@@ -11,7 +11,7 @@
1111
"prepublish": "npm run build"
1212
},
1313
"main": "dist/index.js",
14-
"module": "dist/react-stateful-form.esm.js",
14+
"module": "dist/react-form-stateful.esm.js",
1515
"typings": "dist/index.d.ts",
1616
"files": [
1717
"dist"

0 commit comments

Comments
 (0)