@wise/dynamic-flow-types 3.0.0-exp-next-min-fb61ff2 → 3.0.0-experimental-8a78888

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.
@@ -7,7 +7,6 @@ export type { Polling } from './feature/Polling';
7
7
  export type { PollingOnError } from './feature/PollingOnError';
8
8
  export type { ValidateAsync } from './feature/ValidateAsync';
9
9
  export type { Align } from './misc/Align';
10
- export type { AutocapitalizationType } from './misc/AutocapitalizationType';
11
10
  export type { Context } from './misc/Context';
12
11
  export type { Size } from './misc/Size';
13
12
  export type { Size as Margin } from './misc/Size';
@@ -1,12 +1,10 @@
1
1
  import { BaseInputRendererProps } from './BaseInputRendererProps';
2
- import { Autocapitalization } from './constants';
3
2
  /**
4
3
  * Known values for "control" are: 'password' | 'textarea' | 'email' | 'numeric' | 'phone-number'.
5
4
  */
6
5
  export type TextInputRendererProps = BaseInputRendererProps & {
7
6
  type: 'input-text';
8
7
  autoComplete: string;
9
- autoCapitalize?: Autocapitalization;
10
8
  displayFormat?: string;
11
9
  value: string | null;
12
10
  /** @experimental */
@@ -1,4 +1,3 @@
1
1
  export type Align = 'start' | 'center' | 'end';
2
- export type Autocapitalization = 'none' | 'sentences' | 'words' | 'characters';
3
2
  export type Context = 'positive' | 'negative' | 'warning' | 'neutral';
4
3
  export type { Margin, Size } from '../next';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wise/dynamic-flow-types",
3
- "version": "3.0.0-exp-next-min-fb61ff2",
3
+ "version": "3.0.0-experimental-8a78888",
4
4
  "description": "Dynamic Flow TypeScript Types",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {