@wise/dynamic-flow-client 3.31.0 → 3.31.2

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.mjs CHANGED
@@ -5954,6 +5954,12 @@ var sizeSchema = z.union([
5954
5954
  z.literal("lg"),
5955
5955
  z.literal("xl")
5956
5956
  ]);
5957
+ var autocapitalizationTypeSchema = z.union([
5958
+ z.literal("none"),
5959
+ z.literal("characters"),
5960
+ z.literal("sentences"),
5961
+ z.literal("words")
5962
+ ]);
5957
5963
  var alignSchema = z.union([z.literal("left"), z.literal("center"), z.literal("right")]);
5958
5964
  var iconSchema = z.union([iconNamedSchema, iconTextSchema]);
5959
5965
  var autocompleteTokenSchema = z.union([
@@ -6669,6 +6675,7 @@ var stringSchemaSchema = z.lazy(
6669
6675
  minimum: z.string().optional(),
6670
6676
  maximum: z.string().optional(),
6671
6677
  pattern: z.string().optional(),
6678
+ autocapitalization: autocapitalizationTypeSchema.optional(),
6672
6679
  $id: z.string().optional(),
6673
6680
  title: z.string().optional(),
6674
6681
  description: z.string().optional(),
@@ -6924,12 +6931,12 @@ var getStepPolling = ({
6924
6931
  }).catch(() => {
6925
6932
  });
6926
6933
  };
6927
- poll();
6928
6934
  const intervalRef = setInterval(poll, delay * 1e3);
6929
6935
  const stop = () => {
6930
6936
  clearTimeout(intervalRef);
6931
6937
  abortController.abort();
6932
6938
  };
6939
+ poll();
6933
6940
  return { stop };
6934
6941
  };
6935
6942
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wise/dynamic-flow-client",
3
- "version": "3.31.0",
3
+ "version": "3.31.2",
4
4
  "description": "Dynamic Flow web client",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./build/main.min.js",
@@ -36,28 +36,28 @@
36
36
  "@babel/preset-env": "7.26.0",
37
37
  "@babel/preset-react": "7.26.3",
38
38
  "@babel/preset-typescript": "7.26.0",
39
- "@chromatic-com/storybook": "3.2.3",
40
- "@formatjs/cli": "^6.3.15",
41
- "@storybook/addon-a11y": "^8.4.7",
42
- "@storybook/addon-actions": "^8.4.7",
43
- "@storybook/addon-essentials": "^8.4.7",
44
- "@storybook/addon-interactions": "^8.4.7",
45
- "@storybook/addon-links": "^8.4.7",
39
+ "@chromatic-com/storybook": "3.2.4",
40
+ "@formatjs/cli": "^6.5.0",
41
+ "@storybook/addon-a11y": "^8.5.0",
42
+ "@storybook/addon-actions": "^8.5.0",
43
+ "@storybook/addon-essentials": "^8.5.0",
44
+ "@storybook/addon-interactions": "^8.5.0",
45
+ "@storybook/addon-links": "^8.5.0",
46
46
  "@storybook/addon-webpack5-compiler-babel": "^3.0.5",
47
- "@storybook/manager-api": "^8.4.7",
48
- "@storybook/react": "^8.4.7",
49
- "@storybook/react-webpack5": "^8.4.7",
50
- "@storybook/test": "^8.4.7",
51
- "@storybook/types": "^8.4.7",
47
+ "@storybook/manager-api": "^8.5.0",
48
+ "@storybook/react": "^8.5.0",
49
+ "@storybook/react-webpack5": "^8.5.0",
50
+ "@storybook/test": "^8.5.0",
51
+ "@storybook/types": "^8.5.0",
52
52
  "@testing-library/dom": "10.4.0",
53
53
  "@testing-library/jest-dom": "6.6.3",
54
- "@testing-library/react": "16.1.0",
55
- "@testing-library/user-event": "14.5.2",
54
+ "@testing-library/react": "16.2.0",
55
+ "@testing-library/user-event": "14.6.0",
56
56
  "@transferwise/components": "46.86.1",
57
57
  "@transferwise/formatting": "^2.13.0",
58
58
  "@transferwise/icons": "3.18.0",
59
59
  "@transferwise/neptune-css": "14.20.1",
60
- "@types/node": "22.10.6",
60
+ "@types/node": "22.10.7",
61
61
  "@types/jest": "29.5.14",
62
62
  "@types/react": "18.3.18",
63
63
  "@types/react-dom": "18.3.5",
@@ -65,7 +65,7 @@
65
65
  "@wise/art": "2.19.0",
66
66
  "@wise/components-theming": "^1.6.1",
67
67
  "babel-jest": "29.7.0",
68
- "esbuild": "0.24.0",
68
+ "esbuild": "0.24.2",
69
69
  "jest": "29.7.0",
70
70
  "jest-environment-jsdom": "29.7.0",
71
71
  "jest-fetch-mock": "^3.0.3",
@@ -73,20 +73,20 @@
73
73
  "npm-run-all2": "7.0.2",
74
74
  "postcss": "^8.5.1",
75
75
  "postcss-cli": "^11.0.0",
76
- "postcss-import": "^15.1.0",
76
+ "postcss-import": "^16.1.0",
77
77
  "react": "18.3.1",
78
78
  "react-dom": "18.3.1",
79
79
  "react-intl": "6.8.9",
80
- "storybook": "^8.4.7",
81
- "stylelint": "16.13.1",
80
+ "storybook": "^8.5.0",
81
+ "stylelint": "16.13.2",
82
82
  "stylelint-config-standard": "36.0.1",
83
83
  "stylelint-no-unsupported-browser-features": "8.0.2",
84
84
  "stylelint-value-no-unknown-custom-properties": "6.0.1",
85
85
  "tsx": "4.19.2",
86
86
  "typescript": "5.7.3",
87
87
  "webpack": "5.97.1",
88
- "@wise/dynamic-flow-renderers": "0.0.0",
89
- "@wise/dynamic-flow-fixtures": "0.0.1"
88
+ "@wise/dynamic-flow-fixtures": "0.0.1",
89
+ "@wise/dynamic-flow-renderers": "0.0.0"
90
90
  },
91
91
  "peerDependencies": {
92
92
  "@transferwise/components": "^46.31",
@@ -102,7 +102,7 @@
102
102
  "classnames": "2.5.1",
103
103
  "react-webcam": "^7.2.0",
104
104
  "screenfull": "^5.2.0",
105
- "@wise/dynamic-flow-types": "2.29.0"
105
+ "@wise/dynamic-flow-types": "2.30.1"
106
106
  },
107
107
  "scripts": {
108
108
  "dev": "pnpm build:visual-tests && storybook dev -p 3003",