@wise/dynamic-flow-client-internal 4.19.0 → 4.20.0-experimental-1c8f72d
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/i18n/cs.json +3 -0
- package/build/i18n/de.json +3 -0
- package/build/i18n/en.json +2 -0
- package/build/i18n/es.json +3 -0
- package/build/i18n/fr.json +3 -0
- package/build/i18n/hu.json +3 -0
- package/build/i18n/id.json +3 -0
- package/build/i18n/it.json +3 -0
- package/build/i18n/ja.json +3 -0
- package/build/i18n/nl.json +3 -0
- package/build/i18n/pl.json +3 -0
- package/build/i18n/pt.json +3 -0
- package/build/i18n/ro.json +3 -0
- package/build/i18n/ru.json +3 -0
- package/build/i18n/th.json +3 -0
- package/build/i18n/tr.json +3 -0
- package/build/i18n/uk.json +3 -0
- package/build/i18n/zh_CN.json +3 -0
- package/build/i18n/zh_HK.json +3 -0
- package/build/main.js +149 -79
- package/build/main.mjs +135 -65
- package/build/types/dynamicFlow/messages.d.ts +13 -0
- package/package.json +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wise/dynamic-flow-client-internal",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.20.0-experimental-1c8f72d",
|
|
4
4
|
"description": "Dynamic Flow web client for Wise",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./build/main.js",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"@chromatic-com/storybook": "4.0.1",
|
|
40
40
|
"@formatjs/cli": "^6.7.2",
|
|
41
41
|
"@storybook/react-vite": "9.0.18",
|
|
42
|
-
"@testing-library/dom": "10.4.
|
|
43
|
-
"@testing-library/jest-dom": "6.6.
|
|
42
|
+
"@testing-library/dom": "10.4.1",
|
|
43
|
+
"@testing-library/jest-dom": "6.6.4",
|
|
44
44
|
"@testing-library/react": "16.3.0",
|
|
45
45
|
"@testing-library/user-event": "14.6.1",
|
|
46
46
|
"@transferwise/components": "46.100.1",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"jest-environment-jsdom": "30.0.5",
|
|
61
61
|
"jest-fetch-mock": "^3.0.3",
|
|
62
62
|
"jest-watch-typeahead": "^3.0.1",
|
|
63
|
-
"npm-run-all2": "
|
|
63
|
+
"npm-run-all2": "8.0.4",
|
|
64
64
|
"postcss": "^8.5.6",
|
|
65
65
|
"postcss-cli": "^11.0.1",
|
|
66
66
|
"postcss-import": "^16.1.1",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"tsx": "4.20.3",
|
|
76
76
|
"typescript": "5.8.3",
|
|
77
77
|
"@wise/dynamic-flow-fixtures": "0.0.1",
|
|
78
|
-
"@wise/dynamic-flow-types": "3.
|
|
78
|
+
"@wise/dynamic-flow-types": "3.9.0-experimental-1c8f72d",
|
|
79
79
|
"@wise/dynamic-flow-renderers": "0.0.0"
|
|
80
80
|
},
|
|
81
81
|
"peerDependencies": {
|
|
@@ -91,8 +91,8 @@
|
|
|
91
91
|
},
|
|
92
92
|
"dependencies": {
|
|
93
93
|
"classnames": "2.5.1",
|
|
94
|
-
"@wise/dynamic-flow-
|
|
95
|
-
"@wise/dynamic-flow-
|
|
94
|
+
"@wise/dynamic-flow-types": "3.9.0-experimental-1c8f72d",
|
|
95
|
+
"@wise/dynamic-flow-client": "4.11.0-experimental-1c8f72d"
|
|
96
96
|
},
|
|
97
97
|
"scripts": {
|
|
98
98
|
"dev": "pnpm build:visual-tests && storybook dev -p 3005",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"build:types": "tsc --project ./tsconfig.types.json",
|
|
101
101
|
"build:js": "node ./scripts/build.mjs",
|
|
102
102
|
"build:css": "postcss src/main.css -o build/main.css",
|
|
103
|
-
"build:messages-source": "formatjs extract '../renderers/src/**/{*.messages,messages}.{js,ts}' --out-file src/i18n/en.json --format simple && prettier --find-config-path --write src/i18n/*.json",
|
|
103
|
+
"build:messages-source": "formatjs extract '../renderers/src/**/{*.messages,messages}.{js,ts}' './src/**/{*.messages,messages}.{js,ts}' --out-file src/i18n/en.json --format simple && prettier --find-config-path --write src/i18n/*.json",
|
|
104
104
|
"build:compiled-messages": "mkdir -p build/i18n && cp src/i18n/*.json build/i18n",
|
|
105
105
|
"build:visual-tests": "tsx ./scripts/build-visual-tests.mjs",
|
|
106
106
|
"test": "pnpm test:once",
|