@texturehq/edges 5.1.6 → 5.2.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/dist/{TimeField-DVuYVoDw.d.ts → TimeField-B6DyOZXU.d.ts} +9 -1
- package/dist/{TimeField-DsHO9pLs.d.cts → TimeField-C_Fa7mqf.d.cts} +9 -1
- package/dist/index.cjs +10 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +10 -10
- package/dist/index.js.map +1 -1
- package/dist/rhf/index.cjs +2 -2
- 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 +2 -2
- package/dist/rhf/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -280,6 +280,14 @@ interface MultiSelectProps {
|
|
|
280
280
|
onBlur?: (event: React__default.FocusEvent<HTMLInputElement>) => void;
|
|
281
281
|
/** Ref to the search input, so callers (and `setFocus`) can focus the control. */
|
|
282
282
|
inputRef?: React__default.Ref<HTMLInputElement>;
|
|
283
|
+
/**
|
|
284
|
+
* Render the label to assistive technology only. For a control embedded in a
|
|
285
|
+
* surface that already names the field — a filter panel carrying the field name
|
|
286
|
+
* as its section heading — a visible label just repeats it. The label stays in
|
|
287
|
+
* the DOM and stays associated, because it is the combobox's accessible name;
|
|
288
|
+
* only its presentation changes. Never a way to omit `label`.
|
|
289
|
+
*/
|
|
290
|
+
labelHidden?: boolean;
|
|
283
291
|
className?: string;
|
|
284
292
|
id?: string;
|
|
285
293
|
}
|
|
@@ -290,7 +298,7 @@ interface MultiSelectProps {
|
|
|
290
298
|
* input narrows a checkbox list, and current selections live in their own
|
|
291
299
|
* pinned region above it.
|
|
292
300
|
*/
|
|
293
|
-
declare function MultiSelect({ options, value, defaultValue, onChange, label, placeholder, size, loading, disabled, maxSelected, allowLiteral, onSearchChange, truncated, totalCount, emptyMessage, showSelectAll, description, errorMessage, isRequired, onBlur, inputRef: forwardedInputRef, className, id, }: MultiSelectProps): react_jsx_runtime.JSX.Element;
|
|
301
|
+
declare function MultiSelect({ options, value, defaultValue, onChange, label, placeholder, size, loading, disabled, maxSelected, allowLiteral, onSearchChange, truncated, totalCount, emptyMessage, showSelectAll, description, errorMessage, isRequired, onBlur, inputRef: forwardedInputRef, labelHidden, className, id, }: MultiSelectProps): react_jsx_runtime.JSX.Element;
|
|
294
302
|
|
|
295
303
|
/**
|
|
296
304
|
* NumberField
|
|
@@ -280,6 +280,14 @@ interface MultiSelectProps {
|
|
|
280
280
|
onBlur?: (event: React__default.FocusEvent<HTMLInputElement>) => void;
|
|
281
281
|
/** Ref to the search input, so callers (and `setFocus`) can focus the control. */
|
|
282
282
|
inputRef?: React__default.Ref<HTMLInputElement>;
|
|
283
|
+
/**
|
|
284
|
+
* Render the label to assistive technology only. For a control embedded in a
|
|
285
|
+
* surface that already names the field — a filter panel carrying the field name
|
|
286
|
+
* as its section heading — a visible label just repeats it. The label stays in
|
|
287
|
+
* the DOM and stays associated, because it is the combobox's accessible name;
|
|
288
|
+
* only its presentation changes. Never a way to omit `label`.
|
|
289
|
+
*/
|
|
290
|
+
labelHidden?: boolean;
|
|
283
291
|
className?: string;
|
|
284
292
|
id?: string;
|
|
285
293
|
}
|
|
@@ -290,7 +298,7 @@ interface MultiSelectProps {
|
|
|
290
298
|
* input narrows a checkbox list, and current selections live in their own
|
|
291
299
|
* pinned region above it.
|
|
292
300
|
*/
|
|
293
|
-
declare function MultiSelect({ options, value, defaultValue, onChange, label, placeholder, size, loading, disabled, maxSelected, allowLiteral, onSearchChange, truncated, totalCount, emptyMessage, showSelectAll, description, errorMessage, isRequired, onBlur, inputRef: forwardedInputRef, className, id, }: MultiSelectProps): react_jsx_runtime.JSX.Element;
|
|
301
|
+
declare function MultiSelect({ options, value, defaultValue, onChange, label, placeholder, size, loading, disabled, maxSelected, allowLiteral, onSearchChange, truncated, totalCount, emptyMessage, showSelectAll, description, errorMessage, isRequired, onBlur, inputRef: forwardedInputRef, labelHidden, className, id, }: MultiSelectProps): react_jsx_runtime.JSX.Element;
|
|
294
302
|
|
|
295
303
|
/**
|
|
296
304
|
* NumberField
|