@wise/dynamic-flow-client-internal 4.24.1-experimental-5566f24 → 4.25.0-experimental-5356389
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 +402 -172
- package/build/main.mjs +394 -164
- package/build/types/dynamicFlow/renderers.d.ts +6 -1
- package/build/types/index.d.ts +1 -1
- package/package.json +5 -5
|
@@ -1 +1,6 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export declare const Header: ({ title, callToAction }: {
|
|
2
|
+
title?: string;
|
|
3
|
+
callToAction?: import("@wise/dynamic-flow-types/build/renderers").CallToAction;
|
|
4
|
+
}) => "" | import("react/jsx-runtime").JSX.Element | undefined;
|
|
5
|
+
export declare const getMargin: (size: import("@wise/dynamic-flow-types/build/next").Margin) => "m-b-0" | "m-b-1" | "m-b-2" | "m-b-3" | "m-b-5" | "";
|
|
6
|
+
export declare const getListItemRenderers: () => import("@wise/dynamic-flow-client").Renderers;
|
package/build/types/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export { makeHttpClient as makeCustomFetch } from '@wise/dynamic-flow-client';
|
|
|
2
2
|
export type { DynamicFlowProps, DynamicFormController, InitialAction, Step, } from '@wise/dynamic-flow-client';
|
|
3
3
|
export type { AlertRendererProps, BoxRendererProps, ButtonRendererProps, CheckboxInputRendererProps, ColumnsRendererProps, DateInputRendererProps, DecisionRendererProps, DividerRendererProps, FormRendererProps, FormSectionRendererProps, HeadingRendererProps, HiddenRendererProps, ImageRendererProps, InstructionsRendererProps, IntegerInputRendererProps, LoadingIndicatorRendererProps, MarkdownRendererProps, ModalLayoutRendererProps, ModalRendererProps, MultiSelectInputRendererProps, MultiUploadInputRendererProps, NumberInputRendererProps, ParagraphRendererProps, Renderer, Renderers, RepeatableRendererProps, ReviewRendererProps, SearchRendererProps, SelectInputRendererProps, StatusListRendererProps, StepRendererProps, TextInputRendererProps, UploadInputRendererProps, } from '@wise/dynamic-flow-types/build/renderers';
|
|
4
4
|
export { findRendererPropsByType, isValidSchema, JsonSchemaForm } from '@wise/dynamic-flow-client';
|
|
5
|
-
export { Header, getMargin } from './dynamicFlow/renderers';
|
|
5
|
+
export { Header, getMargin, getListItemRenderers } from './dynamicFlow/renderers';
|
|
6
6
|
export { default as translations } from './i18n';
|
|
7
7
|
export type { DynamicFlowLegacyProps, DynamicFlowRevampProps } from './dynamicFlow/DynamicFlow';
|
|
8
8
|
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.
|
|
3
|
+
"version": "4.25.0-experimental-5356389",
|
|
4
4
|
"description": "Dynamic Flow web client for Wise",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./build/main.js",
|
|
@@ -75,8 +75,8 @@
|
|
|
75
75
|
"tsx": "4.20.4",
|
|
76
76
|
"typescript": "5.9.2",
|
|
77
77
|
"@wise/dynamic-flow-fixtures": "0.0.1",
|
|
78
|
-
"@wise/dynamic-flow-
|
|
79
|
-
"@wise/dynamic-flow-
|
|
78
|
+
"@wise/dynamic-flow-types": "3.12.0-experimental-5356389",
|
|
79
|
+
"@wise/dynamic-flow-renderers": "0.0.0"
|
|
80
80
|
},
|
|
81
81
|
"peerDependencies": {
|
|
82
82
|
"@transferwise/components": "^46.92.0",
|
|
@@ -91,8 +91,8 @@
|
|
|
91
91
|
},
|
|
92
92
|
"dependencies": {
|
|
93
93
|
"classnames": "2.5.1",
|
|
94
|
-
"@wise/dynamic-flow-client": "4.
|
|
95
|
-
"@wise/dynamic-flow-types": "3.
|
|
94
|
+
"@wise/dynamic-flow-client": "4.15.0-experimental-5356389",
|
|
95
|
+
"@wise/dynamic-flow-types": "3.12.0-experimental-5356389"
|
|
96
96
|
},
|
|
97
97
|
"scripts": {
|
|
98
98
|
"dev": "pnpm build:visual-tests && storybook dev -p 3005",
|