@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 CHANGED
@@ -1,11 +1,20 @@
1
- # core
1
+ # @golemui/core
2
2
 
3
- This library was generated with [Nx](https://nx.dev).
3
+ [Golem UI](https://golemui.com): the declarative form engine.
4
4
 
5
- ## Building
5
+ ## Install
6
6
 
7
- Run `nx build core` to build the library.
7
+ ```bash
8
+ npm install @golemui/core
9
+ ```
8
10
 
9
- ## Running unit tests
11
+ ## Documentation
10
12
 
11
- Run `nx test core` to execute the unit tests via [Vitest](https://vitest.dev/).
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/context';
9
- export * from './lib/shared';
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';