@openwebf/react-cupertino-ui 0.3.32 → 0.3.33
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/dist/index.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -31,6 +31,12 @@ interface FlutterCupertinoTextFormFieldRowProps {
|
|
|
31
31
|
* Default: false.
|
|
32
32
|
*/
|
|
33
33
|
autofocus?: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* Whether to show a clear button while editing.
|
|
36
|
+
* When true, a clear icon appears while text is non-empty.
|
|
37
|
+
* Default: false.
|
|
38
|
+
*/
|
|
39
|
+
clearable?: boolean;
|
|
34
40
|
/**
|
|
35
41
|
* Maximum number of characters allowed.
|
|
36
42
|
* When set, input is truncated to this length.
|
package/dist/index.d.ts
CHANGED
|
@@ -31,6 +31,12 @@ interface FlutterCupertinoTextFormFieldRowProps {
|
|
|
31
31
|
* Default: false.
|
|
32
32
|
*/
|
|
33
33
|
autofocus?: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* Whether to show a clear button while editing.
|
|
36
|
+
* When true, a clear icon appears while text is non-empty.
|
|
37
|
+
* Default: false.
|
|
38
|
+
*/
|
|
39
|
+
clearable?: boolean;
|
|
34
40
|
/**
|
|
35
41
|
* Maximum number of characters allowed.
|
|
36
42
|
* When set, input is truncated to this length.
|