@wise/dynamic-flow-client-internal 4.0.0-experimental-b193e54 → 4.0.0-experimental-c80edb2

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/main.js CHANGED
@@ -278,6 +278,8 @@ __export(index_exports, {
278
278
  DynamicFlowRevamp: () => DynamicFlowRevamp,
279
279
  DynamicForm: () => DynamicForm,
280
280
  JsonSchemaForm: () => import_dynamic_flow_client4.JsonSchemaForm,
281
+ find: () => import_dynamic_flow_client4.find,
282
+ findType: () => import_dynamic_flow_client4.findType,
281
283
  isValidSchema: () => import_dynamic_flow_client4.isValidSchema,
282
284
  makeCustomFetch: () => import_dynamic_flow_client3.makeHttpClient,
283
285
  translations: () => i18n_default
package/build/main.mjs CHANGED
@@ -267,7 +267,7 @@ var init_index_8Fxev6OI_esm = __esm({
267
267
 
268
268
  // src/index.ts
269
269
  import { makeHttpClient } from "@wise/dynamic-flow-client";
270
- import { JsonSchemaForm, isValidSchema } from "@wise/dynamic-flow-client";
270
+ import { JsonSchemaForm, isValidSchema, findType, find } from "@wise/dynamic-flow-client";
271
271
 
272
272
  // src/i18n/index.ts
273
273
  import { translations as coreTranslations } from "@wise/dynamic-flow-client";
@@ -3321,6 +3321,8 @@ export {
3321
3321
  DynamicFlowRevamp,
3322
3322
  DynamicForm,
3323
3323
  JsonSchemaForm,
3324
+ find,
3325
+ findType,
3324
3326
  isValidSchema,
3325
3327
  makeHttpClient as makeCustomFetch,
3326
3328
  i18n_default as translations
@@ -1,7 +1,7 @@
1
1
  export { makeHttpClient as makeCustomFetch } from '@wise/dynamic-flow-client';
2
2
  export type { DynamicFlowProps, DynamicFormController, Step, InitialAction, } from '@wise/dynamic-flow-client';
3
3
  export type { Renderer, Renderers, AlertRendererProps, CheckboxInputRendererProps, BoxRendererProps, ButtonRendererProps, ColumnsRendererProps, DateInputRendererProps, DecisionRendererProps, DividerRendererProps, FormRendererProps, SectionRendererProps, HeadingRendererProps, HiddenRendererProps, ImageRendererProps, InstructionsRendererProps, IntegerInputRendererProps, LoadingIndicatorRendererProps, MarkdownRendererProps, ModalRendererProps, MultiSelectInputRendererProps, MultiUploadInputRendererProps, NumberInputRendererProps, ParagraphRendererProps, RepeatableRendererProps, ReviewRendererProps, SearchRendererProps, SelectInputRendererProps, StatusListRendererProps, StepRendererProps, TextInputRendererProps, UploadInputRendererProps, } from '@wise/dynamic-flow-types/build/renderers';
4
- export { JsonSchemaForm, isValidSchema } from '@wise/dynamic-flow-client';
4
+ export { JsonSchemaForm, isValidSchema, findType, find } from '@wise/dynamic-flow-client';
5
5
  export { default as translations } from './i18n';
6
6
  export type { DynamicFlowLegacyProps, DynamicFlowRevampProps } from './dynamicFlow/DynamicFlow';
7
7
  export { DynamicFlowLegacy, DynamicFlowRevamp, DynamicForm } from './dynamicFlow/DynamicFlow';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wise/dynamic-flow-client-internal",
3
- "version": "4.0.0-experimental-b193e54",
3
+ "version": "4.0.0-experimental-c80edb2",
4
4
  "description": "Dynamic Flow web client for Wise",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./build/main.js",
@@ -84,7 +84,7 @@
84
84
  "webpack": "5.97.1",
85
85
  "@wise/dynamic-flow-fixtures": "0.0.1",
86
86
  "@wise/dynamic-flow-renderers": "0.0.0",
87
- "@wise/dynamic-flow-types": "3.0.0-experimental-b193e54"
87
+ "@wise/dynamic-flow-types": "3.0.0-experimental-c80edb2"
88
88
  },
89
89
  "peerDependencies": {
90
90
  "@transferwise/components": "^46.92.0",
@@ -98,8 +98,8 @@
98
98
  },
99
99
  "dependencies": {
100
100
  "classnames": "2.5.1",
101
- "@wise/dynamic-flow-client": "4.0.0-experimental-b193e54",
102
- "@wise/dynamic-flow-types": "3.0.0-experimental-b193e54"
101
+ "@wise/dynamic-flow-client": "4.0.0-experimental-c80edb2",
102
+ "@wise/dynamic-flow-types": "3.0.0-experimental-c80edb2"
103
103
  },
104
104
  "scripts": {
105
105
  "dev": "pnpm build:visual-tests && storybook dev -p 3005",