@fabio.caffarello/react-design-system 1.23.8 → 1.23.9
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.cjs +58 -58
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1705 -1689
- package/dist/index.js.map +1 -1
- package/dist/ui/components/MultiSelect/MultiSelect.d.ts +6 -0
- package/package.json +1 -1
|
@@ -14,6 +14,12 @@ export interface MultiSelectProps {
|
|
|
14
14
|
className?: string;
|
|
15
15
|
inputClassName?: string;
|
|
16
16
|
size?: "sm" | "md" | "lg";
|
|
17
|
+
/**
|
|
18
|
+
* Required label for the multi-select input. Becomes the accessible
|
|
19
|
+
* name via <label htmlFor>. Make this a real domain term ("Tags",
|
|
20
|
+
* "Select fruits"), not the element type ("multi-select" / "input").
|
|
21
|
+
*/
|
|
22
|
+
label: string;
|
|
17
23
|
}
|
|
18
24
|
/**
|
|
19
25
|
* MultiSelect Component
|