@startlibs/form 1.0.0-alpha-9w.1 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +0 -1
- package/lib/index.js +2449 -1287
- package/package.json +14 -8
- package/rollup.config.js +0 -1
- package/src/index.js +0 -24
package/package.json
CHANGED
|
@@ -1,23 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@startlibs/form",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Startlibs Form",
|
|
5
|
-
"main": "
|
|
5
|
+
"main": "lib/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"source": true,
|
|
8
8
|
"peerDependencies": {
|
|
9
|
-
"
|
|
9
|
+
"@startlibs/components": "*",
|
|
10
|
+
"@startlibs/core": "*",
|
|
11
|
+
"@startlibs/utils": "*",
|
|
12
|
+
"lodash": "*",
|
|
10
13
|
"polished": "^1.1.3",
|
|
11
|
-
"react": "
|
|
12
|
-
"react-dom": "
|
|
13
|
-
"react-
|
|
14
|
+
"react": "*",
|
|
15
|
+
"react-dom": "*",
|
|
16
|
+
"react-window": "*",
|
|
14
17
|
"styled-components": "^5.2.0"
|
|
15
18
|
},
|
|
16
19
|
"devDependencies": {
|
|
17
20
|
"@babel/core": "^7.2.0",
|
|
18
21
|
"@babel/plugin-external-helpers": "^7.2.0",
|
|
19
22
|
"@babel/plugin-proposal-class-properties": "^7.2.1",
|
|
20
|
-
"@babel/plugin-proposal-decorators": "^7.2.0",
|
|
21
23
|
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
|
|
22
24
|
"@babel/plugin-proposal-json-strings": "^7.2.0",
|
|
23
25
|
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
|
|
@@ -56,5 +58,9 @@
|
|
|
56
58
|
"bugs": {
|
|
57
59
|
"url": "https://github.com/felipeko/startlibs/issues"
|
|
58
60
|
},
|
|
59
|
-
"homepage": "https://github.com/felipeko/startlibs#readme"
|
|
61
|
+
"homepage": "https://github.com/felipeko/startlibs#readme",
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"react-window": "^1.8.6",
|
|
64
|
+
"styled-components": "5.1.1"
|
|
65
|
+
}
|
|
60
66
|
}
|
package/rollup.config.js
CHANGED
|
@@ -35,7 +35,6 @@ export default {
|
|
|
35
35
|
'@babel/plugin-transform-arrow-functions',
|
|
36
36
|
'@babel/plugin-transform-spread',
|
|
37
37
|
'@babel/plugin-proposal-object-rest-spread',
|
|
38
|
-
['@babel/plugin-proposal-decorators', {'legacy': true}],
|
|
39
38
|
['@babel/plugin-proposal-class-properties', {'loose': true}]
|
|
40
39
|
]
|
|
41
40
|
})
|
package/src/index.js
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
export * from './Form'
|
|
2
|
-
export * from './enhanceInput'
|
|
3
|
-
export * from './Field'
|
|
4
|
-
export * from './useConfirmDialog'
|
|
5
|
-
export * from './TextInput'
|
|
6
|
-
export * from './Errors'
|
|
7
|
-
export * from './withFormImageInput'
|
|
8
|
-
export * from './Checkbox'
|
|
9
|
-
export * from './Combobox'
|
|
10
|
-
export * from './ComboboxWithCustom'
|
|
11
|
-
export * from './AutoComplete'
|
|
12
|
-
export * from './EditableBox'
|
|
13
|
-
export * from './FormValue'
|
|
14
|
-
export * from './Radiobox'
|
|
15
|
-
export * from './InputboxGroup'
|
|
16
|
-
export * from './DatePicker'
|
|
17
|
-
export * from './RichText'
|
|
18
|
-
export * from './ExpandableBox'
|
|
19
|
-
export * from './alt/radiobox/IconRadioBox'
|
|
20
|
-
export * from './alt/checkbox/SimpleCheckbox'
|
|
21
|
-
export * from './alt/checkbox/ToggleCheckbox'
|
|
22
|
-
export * from './alt/radiobox/TabRadiobox'
|
|
23
|
-
export * from './alt/radiobox/SimpleRadiobox'
|
|
24
|
-
export {validation} from './validation'
|