@wise/dynamic-flow-client 3.13.2-experimental-translations-refactored-c00940d → 3.14.0-export-map-experimental-58f00fb
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/build/index.js +2 -0
- package/build/main.js +9444 -9329
- package/build/main.min.js +1 -1
- package/build/main.mjs +8461 -8346
- package/build/revamp/DynamicFlowWise.js +1 -0
- package/build/revamp/DynamicFragmentCore.js +77 -0
- package/build/revamp/DynamicFragmentWise.js +1 -5
- package/build/types/index.d.ts +3 -0
- package/build/types/legacy/dynamicFlow/utils/useLoader.d.ts +1 -1
- package/build/types/revamp/DynamicFlowWise.d.ts +1 -0
- package/build/types/revamp/DynamicFragmentCore.d.ts +13 -0
- package/build/types/revamp/DynamicFragmentWise.d.ts +1 -5
- package/package.json +10 -2
package/build/index.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export { makeHttpClient } from './common/makeHttpClient';
|
|
2
2
|
export { default as translations } from './i18n';
|
|
3
|
+
export { DynamicFlowCore as DynamicFlowCoreRevamp } from './revamp/DynamicFlowCore';
|
|
3
4
|
export { default as DynamicFlowRevamp } from './revamp/DynamicFlowWise';
|
|
4
5
|
export { default as DynamicFragmentWise } from './revamp/DynamicFragmentWise';
|
|
6
|
+
export { DynamicFragmentCore } from './revamp/DynamicFragmentCore';
|
|
5
7
|
export { convertStepToLayout, inlineReferences } from './legacy/step/layoutStep/utils';
|
|
6
8
|
export { default as DynamicFlow } from './legacy/dynamicFlow';
|
|
7
9
|
export { default as JsonSchemaForm } from './legacy/jsonSchemaForm';
|