@wise/dynamic-flow-client-internal 3.12.0 → 3.13.0-experimental-kyc-camera-be63581
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/dynamicFlow/DynamicFlow.js +100 -0
- package/build/dynamicFlow/DynamicFlow.test.js +116 -0
- package/build/index.js +5 -0
- package/build/main.js +4 -2
- package/build/main.min.js +1 -1
- package/build/main.mjs +4 -2
- package/build/stories/DynamicFlow.story.js +52 -0
- package/build/stories/DynamicFragment.story.js +132 -0
- package/build/stories/Editable.story.js +70 -0
- package/build/stories/Examples.story.js +29 -0
- package/build/stories/Features.story.js +33 -0
- package/build/stories/utils/DynamicFlowSideBySide.js +30 -0
- package/build/stories/utils/fixtureHttpClient.js +119 -0
- package/build/stories/visual-tests/generated.story.js +210 -0
- package/build/stories/visual-tests/layouts.story.js +108 -0
- package/build/stories/visual-tests/schemas.story.js +84 -0
- package/build/stories/visual-tests/step.story.js +30 -0
- package/build/test-utils/NeptuneProviders.js +23 -0
- package/build/test-utils/rtl-utils.js +20 -0
- package/build/types/index.d.ts +2 -1
- package/build/types/stories/visual-tests/generated.story.d.ts +38 -0
- package/build/types/stories/visual-tests/layouts.story.d.ts +21 -0
- package/build/types/stories/visual-tests/schemas.story.d.ts +17 -0
- package/build/types/stories/visual-tests/step.story.d.ts +8 -0
- package/package.json +2 -2
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import DynamicFlowSideBySide from '../utils/DynamicFlowSideBySide';
|
|
3
|
+
declare const meta: Meta<typeof DynamicFlowSideBySide>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof DynamicFlowSideBySide>;
|
|
6
|
+
export declare const allOf: Story;
|
|
7
|
+
export declare const array: Story;
|
|
8
|
+
export declare const arrayUpload: Story;
|
|
9
|
+
export declare const blob: Story;
|
|
10
|
+
export declare const boolean: Story;
|
|
11
|
+
export declare const hidden: Story;
|
|
12
|
+
export declare const integer: Story;
|
|
13
|
+
export declare const multiSelect: Story;
|
|
14
|
+
export declare const number: Story;
|
|
15
|
+
export declare const object: Story;
|
|
16
|
+
export declare const oneOf: Story;
|
|
17
|
+
export declare const string: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import DynamicFlowSideBySide from '../utils/DynamicFlowSideBySide';
|
|
3
|
+
declare const meta: Meta<typeof DynamicFlowSideBySide>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof DynamicFlowSideBySide>;
|
|
6
|
+
export declare const basic: Story;
|
|
7
|
+
export declare const globalError: Story;
|
|
8
|
+
export declare const validationError: Story;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wise/dynamic-flow-client-internal",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.0-experimental-kyc-camera-be63581",
|
|
4
4
|
"description": "Dynamic Flow web client for Wise",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./build/main.min.js",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"react-intl": "^6"
|
|
83
83
|
},
|
|
84
84
|
"dependencies": {
|
|
85
|
-
"@wise/dynamic-flow-client": "3.
|
|
85
|
+
"@wise/dynamic-flow-client": "3.13.0-experimental-kyc-camera-be63581"
|
|
86
86
|
},
|
|
87
87
|
"scripts": {
|
|
88
88
|
"dev": "pnpm build:visual-tests && storybook dev -p 3005",
|