@wise/dynamic-flow-types 2.29.0-experimental-ff1ed46 → 2.30.0
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 +305 -298
- package/build/main.min.js +1 -1
- package/build/main.mjs +305 -298
- package/build/next/misc/AutocapitalizationType.d.ts +1 -0
- package/build/next/schema/StringSchema.d.ts +6 -0
- package/build/zod/schemas.d.ts +3643 -3642
- package/build/zod/schemas.ts +361 -353
- package/package.json +3 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type AutocapitalizationType = 'none' | 'characters' | 'sentences' | 'words';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { StringSchemaFormat } from './StringSchemaFormat';
|
|
2
|
+
import type { AutocapitalizationType } from '../misc/AutocapitalizationType';
|
|
2
3
|
import type { Icon } from '../misc/Icon';
|
|
3
4
|
import type { Image } from '../misc/Image';
|
|
4
5
|
import type { SummaryProvider } from '../feature/SummaryProvider';
|
|
@@ -76,6 +77,11 @@ export type StringSchema = {
|
|
|
76
77
|
*/
|
|
77
78
|
pattern?: string;
|
|
78
79
|
/**
|
|
80
|
+
* Sets the default capitalization mode of the devices virtual keyboard
|
|
81
|
+
* @experimental This feature may be changed in the future without notice.
|
|
82
|
+
*/
|
|
83
|
+
autocapitalization?: AutocapitalizationType;
|
|
84
|
+
/**
|
|
79
85
|
* A unique id which can be used to refer to the schema.
|
|
80
86
|
*/
|
|
81
87
|
$id?: string;
|