@wavv/ui 1.3.0-beta.3 → 1.3.0-beta.5
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/build/cjs/index.js +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/components/MultiSelect.d.ts +3 -1
- package/build/esm/index.js +1 -1
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/components/MultiSelect.d.ts +3 -1
- package/build/index.d.ts +3 -1
- package/package.json +1 -1
|
@@ -28,6 +28,8 @@ declare type MultiSelectProps = {
|
|
|
28
28
|
optionsParent?: string;
|
|
29
29
|
/** Causes the MultiSelect to collapse if listLabel is also present */
|
|
30
30
|
compact?: boolean;
|
|
31
|
+
/** Sets the backgroundColor */
|
|
32
|
+
backgroundColor?: string;
|
|
31
33
|
/** Function called after an item is selected */
|
|
32
34
|
addItem: (item: DropdownOption | null) => void;
|
|
33
35
|
/** Function called after an item is removed */
|
|
@@ -35,5 +37,5 @@ declare type MultiSelectProps = {
|
|
|
35
37
|
/** The function to be called when the input is updated */
|
|
36
38
|
onTextChange?: (text: string) => void;
|
|
37
39
|
} & Width & Margin;
|
|
38
|
-
declare const MultiSelect: ({ children, options, items, listLabel, listText, itemsTitle, maxItems, placeholder, width, filter, restrictInput, disabled, optionsParent, compact, addItem, removeItem, onTextChange, ...props }: MultiSelectProps) => JSX.Element;
|
|
40
|
+
declare const MultiSelect: ({ children, options, items, listLabel, listText, itemsTitle, maxItems, placeholder, width, filter, restrictInput, disabled, optionsParent, compact, backgroundColor, addItem, removeItem, onTextChange, ...props }: MultiSelectProps) => JSX.Element;
|
|
39
41
|
export default MultiSelect;
|