autoforma 1.0.49 → 1.0.50
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/dist/index.cjs.js +22 -22
- package/dist/index.d.ts +1 -1
- package/dist/index.es.js +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,4 +2,4 @@ export { default as AutoForm } from './components/AutoForm/AutoForm';
|
|
|
2
2
|
export type { AutoFormProps } from './components/AutoForm/AutoForm.types';
|
|
3
3
|
export type { FieldRendererProps } from './fields/FieldRenderer/FieldRenderer.types';
|
|
4
4
|
export type { FieldSchema } from './fields/types';
|
|
5
|
-
export
|
|
5
|
+
export { FieldRendererResolver } from './fields/resolver/FieldRendererResolver';
|
package/dist/index.es.js
CHANGED
|
@@ -22806,5 +22806,6 @@ function US({
|
|
|
22806
22806
|
);
|
|
22807
22807
|
}
|
|
22808
22808
|
export {
|
|
22809
|
-
US as AutoForm
|
|
22809
|
+
US as AutoForm,
|
|
22810
|
+
Aa as FieldRendererResolver
|
|
22810
22811
|
};
|