@wise/dynamic-flow-client 3.28.5 → 3.28.7
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 +12189 -12085
- package/build/main.min.js +1 -1
- package/build/main.mjs +11982 -11878
- package/build/types/legacy/layout/search/useSearch.d.ts +1 -1
- package/build/types/revamp/DynamicFlowViewRoot.d.ts +7 -0
- package/package.json +27 -27
|
@@ -10,7 +10,7 @@ export type SearchState = {
|
|
|
10
10
|
status: 'error';
|
|
11
11
|
};
|
|
12
12
|
export declare const useSearch: (defaultSearchConfig: SearchConfig) => {
|
|
13
|
-
status: "error" | "
|
|
13
|
+
status: "error" | "idle" | "success" | "loading";
|
|
14
14
|
results: SearchResult[];
|
|
15
15
|
search: (query: string, { url, method, param }?: SearchConfig) => Promise<void>;
|
|
16
16
|
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { StepDomainComponent } from './domain/components/StepDomainComponent';
|
|
2
|
+
import type { DynamicFlowCoreProps } from './types';
|
|
3
|
+
type DynamicFlowViewRootProps = Pick<DynamicFlowCoreProps, 'httpClient' | 'renderers' | 'onEvent' | 'onError'> & {
|
|
4
|
+
stepComponent: StepDomainComponent | null;
|
|
5
|
+
};
|
|
6
|
+
export declare function DynamicFlowViewRoot(props: DynamicFlowViewRootProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wise/dynamic-flow-client",
|
|
3
|
-
"version": "3.28.
|
|
3
|
+
"version": "3.28.7",
|
|
4
4
|
"description": "Dynamic Flow web client",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./build/main.min.js",
|
|
@@ -31,35 +31,35 @@
|
|
|
31
31
|
"@babel/plugin-syntax-flow": "7.26.0",
|
|
32
32
|
"@babel/plugin-transform-react-jsx": "7.25.9",
|
|
33
33
|
"@babel/preset-env": "7.26.0",
|
|
34
|
-
"@babel/preset-react": "7.
|
|
34
|
+
"@babel/preset-react": "7.26.3",
|
|
35
35
|
"@babel/preset-typescript": "7.26.0",
|
|
36
36
|
"@chromatic-com/storybook": "3.2.2",
|
|
37
|
-
"@formatjs/cli": "^6.3.
|
|
38
|
-
"@storybook/addon-a11y": "^8.4.
|
|
39
|
-
"@storybook/addon-actions": "^8.4.
|
|
40
|
-
"@storybook/addon-essentials": "^8.4.
|
|
41
|
-
"@storybook/addon-interactions": "^8.4.
|
|
42
|
-
"@storybook/addon-links": "^8.4.
|
|
37
|
+
"@formatjs/cli": "^6.3.14",
|
|
38
|
+
"@storybook/addon-a11y": "^8.4.7",
|
|
39
|
+
"@storybook/addon-actions": "^8.4.7",
|
|
40
|
+
"@storybook/addon-essentials": "^8.4.7",
|
|
41
|
+
"@storybook/addon-interactions": "^8.4.7",
|
|
42
|
+
"@storybook/addon-links": "^8.4.7",
|
|
43
43
|
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
|
|
44
|
-
"@storybook/manager-api": "^8.4.
|
|
45
|
-
"@storybook/react": "^8.4.
|
|
46
|
-
"@storybook/react-webpack5": "^8.4.
|
|
47
|
-
"@storybook/test": "^8.4.
|
|
48
|
-
"@storybook/types": "^8.4.
|
|
44
|
+
"@storybook/manager-api": "^8.4.7",
|
|
45
|
+
"@storybook/react": "^8.4.7",
|
|
46
|
+
"@storybook/react-webpack5": "^8.4.7",
|
|
47
|
+
"@storybook/test": "^8.4.7",
|
|
48
|
+
"@storybook/types": "^8.4.7",
|
|
49
49
|
"@testing-library/dom": "10.4.0",
|
|
50
50
|
"@testing-library/jest-dom": "6.6.3",
|
|
51
|
-
"@testing-library/react": "16.0
|
|
51
|
+
"@testing-library/react": "16.1.0",
|
|
52
52
|
"@testing-library/user-event": "14.5.2",
|
|
53
|
-
"@transferwise/components": "46.
|
|
53
|
+
"@transferwise/components": "46.84.0",
|
|
54
54
|
"@transferwise/formatting": "^2.13.0",
|
|
55
55
|
"@transferwise/icons": "3.15.0",
|
|
56
|
-
"@transferwise/neptune-css": "14.20.
|
|
57
|
-
"@types/node": "22.10.
|
|
56
|
+
"@transferwise/neptune-css": "14.20.1",
|
|
57
|
+
"@types/node": "22.10.2",
|
|
58
58
|
"@types/jest": "29.5.14",
|
|
59
|
-
"@types/react": "18.3.
|
|
60
|
-
"@types/react-dom": "18.3.
|
|
59
|
+
"@types/react": "18.3.16",
|
|
60
|
+
"@types/react-dom": "18.3.5",
|
|
61
61
|
"@types/react-intl": "3.0.0",
|
|
62
|
-
"@wise/art": "2.
|
|
62
|
+
"@wise/art": "2.17.0",
|
|
63
63
|
"@wise/components-theming": "^1.6.1",
|
|
64
64
|
"babel-jest": "29.7.0",
|
|
65
65
|
"esbuild": "0.24.0",
|
|
@@ -68,23 +68,23 @@
|
|
|
68
68
|
"jest-fetch-mock": "^3.0.3",
|
|
69
69
|
"jest-watch-typeahead": "^2.2.2",
|
|
70
70
|
"nanoid": "5.0.9",
|
|
71
|
-
"npm-run-all2": "
|
|
71
|
+
"npm-run-all2": "7.0.1",
|
|
72
72
|
"postcss": "^8.4.49",
|
|
73
73
|
"postcss-cli": "^11.0.0",
|
|
74
74
|
"postcss-import": "^15.1.0",
|
|
75
75
|
"react": "18.3.1",
|
|
76
76
|
"react-dom": "18.3.1",
|
|
77
77
|
"react-intl": "6.8.9",
|
|
78
|
-
"storybook": "^8.4.
|
|
79
|
-
"stylelint": "16.
|
|
78
|
+
"storybook": "^8.4.7",
|
|
79
|
+
"stylelint": "16.12.0",
|
|
80
80
|
"stylelint-config-standard": "36.0.1",
|
|
81
81
|
"stylelint-no-unsupported-browser-features": "8.0.2",
|
|
82
82
|
"stylelint-value-no-unknown-custom-properties": "6.0.1",
|
|
83
83
|
"tsx": "4.19.2",
|
|
84
84
|
"typescript": "5.7.2",
|
|
85
|
-
"webpack": "5.
|
|
86
|
-
"@wise/dynamic-flow-
|
|
87
|
-
"@wise/dynamic-flow-
|
|
85
|
+
"webpack": "5.97.1",
|
|
86
|
+
"@wise/dynamic-flow-renderers": "0.0.0",
|
|
87
|
+
"@wise/dynamic-flow-fixtures": "0.0.1"
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {
|
|
90
90
|
"@transferwise/components": "^46.31",
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"nanoid": "5.0.9",
|
|
102
102
|
"react-webcam": "^7.2.0",
|
|
103
103
|
"screenfull": "^5.2.0",
|
|
104
|
-
"@wise/dynamic-flow-types": "2.28.
|
|
104
|
+
"@wise/dynamic-flow-types": "2.28.2"
|
|
105
105
|
},
|
|
106
106
|
"scripts": {
|
|
107
107
|
"dev": "pnpm build:visual-tests && storybook dev -p 3003",
|