@golemui/core 0.0.2 → 0.12.0
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/README.md +15 -6
- package/index.d.ts +10 -6
- package/index.js +1336 -1018
- package/index.umd.cjs +8 -8
- package/lib/context/form.context.d.ts +9 -4
- package/lib/context/widget-registry.d.ts +6 -1
- package/lib/errors.d.ts +10 -0
- package/lib/form-validator.d.ts +2 -7
- package/lib/form-widget.d.ts +1 -0
- package/lib/form.d.ts +19 -2
- package/lib/i18n.d.ts +19 -3
- package/lib/middleware/devtools/devtools.middleware.d.ts +17 -0
- package/lib/middleware/index.d.ts +1 -2
- package/lib/shared.d.ts +21 -0
- package/lib/store/actions.d.ts +18 -2
- package/lib/store/model.d.ts +19 -10
- package/lib/store/reducers/index.d.ts +2 -1
- package/lib/store/reducers/set-meta.d.ts +3 -0
- package/lib/store/reducers/utils.d.ts +0 -2
- package/lib/store/reducers/validate-all.d.ts +2 -1
- package/lib/store/selectors.d.ts +5 -1
- package/lib/utils/array.d.ts +60 -0
- package/lib/utils/assert-no-prop-collisions.d.ts +9 -0
- package/lib/utils/dev-mode.d.ts +2 -0
- package/lib/utils/form.d.ts +59 -0
- package/lib/utils/justin.d.ts +3 -0
- package/lib/utils/object.d.ts +4 -2
- package/lib/utils/repeater.d.ts +31 -1
- package/package.json +6 -1
- package/CHANGELOG.md +0 -517
- package/lib/middleware/json-schema/json-schema.d.ts +0 -67
- package/lib/middleware/json-schema/json-schema.middleware.d.ts +0 -19
- package/lib/utils/dot-path.d.ts +0 -16
package/README.md
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
|
-
# core
|
|
1
|
+
# @golemui/core
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[Golem UI](https://golemui.com): the declarative form engine.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Install
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
```bash
|
|
8
|
+
npm install @golemui/core
|
|
9
|
+
```
|
|
8
10
|
|
|
9
|
-
##
|
|
11
|
+
## Documentation
|
|
10
12
|
|
|
11
|
-
|
|
13
|
+
- Website: https://golemui.com
|
|
14
|
+
- Repository: https://github.com/golemui/golemui
|
|
15
|
+
- Source: https://github.com/golemui/golemui/tree/main/libs/core
|
|
16
|
+
- Issues: https://github.com/golemui/golemui/issues
|
|
17
|
+
|
|
18
|
+
## License
|
|
19
|
+
|
|
20
|
+
MIT
|
package/index.d.ts
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
|
+
export * from './lib/context';
|
|
2
|
+
export * from './lib/errors';
|
|
1
3
|
export * from './lib/form';
|
|
2
|
-
export * from './lib/form-widget';
|
|
3
4
|
export * from './lib/form-store';
|
|
4
5
|
export * from './lib/form-validator';
|
|
6
|
+
export * from './lib/form-widget';
|
|
7
|
+
export * from './lib/i18n';
|
|
8
|
+
export * from './lib/item-renderer';
|
|
9
|
+
export * from './lib/middleware';
|
|
10
|
+
export * from './lib/shared';
|
|
5
11
|
export * from './lib/store/actions';
|
|
6
12
|
export * from './lib/store/model';
|
|
7
13
|
export * from './lib/store/selectors';
|
|
8
|
-
export * from './lib/
|
|
9
|
-
export * from './lib/
|
|
10
|
-
export * from './lib/middleware';
|
|
11
|
-
export * from './lib/i18n';
|
|
12
|
-
export * from './lib/item-renderer';
|
|
14
|
+
export * from './lib/utils/assert-no-prop-collisions';
|
|
15
|
+
export * from './lib/utils/array';
|
|
13
16
|
export * from './lib/utils/debug';
|
|
17
|
+
export * from './lib/utils/dev-mode';
|
|
14
18
|
export * from './lib/utils/function';
|
|
15
19
|
export * from './lib/utils/object';
|
|
16
20
|
export * from './lib/utils/random';
|