@wise/dynamic-flow-client 3.31.0 → 3.31.1

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(),
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.1",
4
4
  "description": "Dynamic Flow web client",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./build/main.min.js",
@@ -85,8 +85,8 @@
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.0"
106
106
  },
107
107
  "scripts": {
108
108
  "dev": "pnpm build:visual-tests && storybook dev -p 3003",