@texturehq/edges 1.24.1 → 1.24.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/dist/{TimeField-D3hN7DMK.d.ts → TimeField-Blk2Ci2M.d.ts} +6 -1
- package/dist/{TimeField-CC3x7lhz.d.cts → TimeField-p31z8xSR.d.cts} +6 -1
- package/dist/components.manifest.json +2 -2
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/rhf/index.cjs +1 -1
- package/dist/rhf/index.cjs.map +1 -1
- package/dist/rhf/index.d.cts +1 -1
- package/dist/rhf/index.d.ts +1 -1
- package/dist/rhf/index.js +1 -1
- package/dist/rhf/index.js.map +1 -1
- package/dist/server.cjs +1 -1
- package/dist/server.cjs.map +1 -1
- package/dist/server.js +1 -1
- package/dist/server.js.map +1 -1
- package/dist/styles.css +11 -2
- package/dist/utilities.manifest.json +2 -2
- package/package.json +1 -1
|
@@ -356,12 +356,17 @@ interface TextFieldProps extends Omit<TextFieldProps$1, "isRequired" | "size" |
|
|
|
356
356
|
* @default true
|
|
357
357
|
*/
|
|
358
358
|
reserveErrorSpace?: boolean;
|
|
359
|
+
/**
|
|
360
|
+
* Shows a loading spinner instead of the search icon (only applicable when showSearchIcon is true)
|
|
361
|
+
* @default false
|
|
362
|
+
*/
|
|
363
|
+
isLoading?: boolean;
|
|
359
364
|
}
|
|
360
365
|
/**
|
|
361
366
|
* Renders an Edges TextField with label, description, validation states and
|
|
362
367
|
* optional search/clear/password affordances.
|
|
363
368
|
*/
|
|
364
|
-
declare function TextField({ label, description, errorMessage, size, tooltip, isRequired, transparent, showSearchIcon, isClearable, onClear, type, validationResult, reserveErrorSpace, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
|
|
369
|
+
declare function TextField({ label, description, errorMessage, size, tooltip, isRequired, transparent, showSearchIcon, isClearable, onClear, type, validationResult, reserveErrorSpace, isLoading, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
|
|
365
370
|
|
|
366
371
|
/**
|
|
367
372
|
* TimeField
|
|
@@ -356,12 +356,17 @@ interface TextFieldProps extends Omit<TextFieldProps$1, "isRequired" | "size" |
|
|
|
356
356
|
* @default true
|
|
357
357
|
*/
|
|
358
358
|
reserveErrorSpace?: boolean;
|
|
359
|
+
/**
|
|
360
|
+
* Shows a loading spinner instead of the search icon (only applicable when showSearchIcon is true)
|
|
361
|
+
* @default false
|
|
362
|
+
*/
|
|
363
|
+
isLoading?: boolean;
|
|
359
364
|
}
|
|
360
365
|
/**
|
|
361
366
|
* Renders an Edges TextField with label, description, validation states and
|
|
362
367
|
* optional search/clear/password affordances.
|
|
363
368
|
*/
|
|
364
|
-
declare function TextField({ label, description, errorMessage, size, tooltip, isRequired, transparent, showSearchIcon, isClearable, onClear, type, validationResult, reserveErrorSpace, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
|
|
369
|
+
declare function TextField({ label, description, errorMessage, size, tooltip, isRequired, transparent, showSearchIcon, isClearable, onClear, type, validationResult, reserveErrorSpace, isLoading, ...props }: TextFieldProps): react_jsx_runtime.JSX.Element;
|
|
365
370
|
|
|
366
371
|
/**
|
|
367
372
|
* TimeField
|