@bolttech/form-engine 0.1.5 → 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 +14 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/core/index.d.ts +2 -2
- package/src/index.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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
|
+
|
|
12
|
+
## [0.1.6](http://bitbucket.org/gofrank/bolttech-frontend/compare/form-engine-0.1.5...form-engine-0.1.6) (2023-07-31)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* rollback tsconfig to equalize with other projects ([4e8ffa7](http://bitbucket.org/gofrank/bolttech-frontend/commit/4e8ffa72fb969167995e2c55945584cd52f577ed))
|
|
18
|
+
|
|
5
19
|
## [0.1.5](http://bitbucket.org/gofrank/bolttech-frontend/compare/form-engine-0.1.4...form-engine-0.1.5) (2023-07-31)
|
|
6
20
|
|
|
7
21
|
|
package/README.md
CHANGED
package/package.json
CHANGED
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';
|