@bolttech/form-engine 0.1.6 → 0.1.7
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/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/package.json +3 -4
- package/src/core/index.d.ts +2 -2
- package/src/index.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.1.7](http://bitbucket.org/gofrank/bolttech-frontend/compare/form-engine-0.1.6...form-engine-0.1.7) (2023-07-31)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* rollback tsconfig sets to fix exports ([2fb561a](http://bitbucket.org/gofrank/bolttech-frontend/commit/2fb561ab3fa815b8e10acf7aff0e21a4a6f576dd))
|
|
11
|
+
|
|
5
12
|
## [0.1.6](http://bitbucket.org/gofrank/bolttech-frontend/compare/form-engine-0.1.5...form-engine-0.1.6) (2023-07-31)
|
|
6
13
|
|
|
7
14
|
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bolttech/form-engine",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "A form engine based on form events for react projects",
|
|
5
|
-
"type": "
|
|
5
|
+
"type": "commonjs",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
8
|
"types": "./src/index.d.ts",
|
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"@bit/bolttech.components.ui.dropdown": "^1.0.59",
|
|
47
47
|
"@bit/bolttech.components.ui.input": "0.0.20"
|
|
48
48
|
},
|
|
49
|
-
"
|
|
50
|
-
"main": "./index.js",
|
|
49
|
+
"main": "./index.cjs",
|
|
51
50
|
"types": "./src/index.d.ts"
|
|
52
51
|
}
|
package/src/core/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export type { TFormRefActions, TFormValues, TSchema, TComponent, TField, TEventsKeys, TObserverData, } from '
|
|
2
|
-
export { TAvailableHooks } from '
|
|
1
|
+
export type { TFormRefActions, TFormValues, TSchema, TComponent, TField, TEventsKeys, TObserverData, } from './types';
|
|
2
|
+
export { TAvailableHooks } from './types';
|
|
3
3
|
export { ALL_NAMESPACE_EVENTS, BUILD_EVENT, EXTRACT_EVENT_NAMESPACE, CoreEvents, } from '@core/constants';
|
package/src/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export type { TComponent, TField, TSchema, TFormRefActions, TFormValues, THookPayload, TEventsKeys, TObserverData, TScope, } from '
|
|
1
|
+
export type { TComponent, TField, TSchema, TFormRefActions, TFormValues, THookPayload, TEventsKeys, TObserverData, TScope, } from './core/types';
|
|
2
2
|
export { TAvailableHooks, CoreEvents, ALL_NAMESPACE_EVENTS, BUILD_EVENT } from '@core';
|
|
3
3
|
export { Form, FormProvider, useForm, asFormField } from '@adapters/react';
|