beeple-toolkit 1.0.14 → 1.0.15
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/beeple-toolkit.css +1 -1
- package/dist/beeple-toolkit.es.js +1615 -1587
- package/dist/beeple-toolkit.umd.js +1 -1
- package/dist/components/types.d.ts +1 -5
- package/package.json +1 -1
|
@@ -159,19 +159,15 @@ export interface FilterButtonProps {
|
|
|
159
159
|
modelValue?: unknown | unknown[];
|
|
160
160
|
options?: Array<string | number | DropDownOption | Record<string, unknown>>;
|
|
161
161
|
filterConfig?: FilterConfig;
|
|
162
|
-
placeholder?: string;
|
|
163
162
|
filterName?: string;
|
|
164
|
-
|
|
163
|
+
forceSingle?: boolean;
|
|
165
164
|
searchable?: boolean;
|
|
166
165
|
searchPlaceholder?: string;
|
|
167
166
|
disabled?: boolean;
|
|
168
|
-
clearable?: boolean;
|
|
169
167
|
size?: ButtonSize;
|
|
170
168
|
optionLabel?: string;
|
|
171
169
|
optionValue?: string;
|
|
172
170
|
noOptionsText?: string;
|
|
173
|
-
maxHeight?: string;
|
|
174
|
-
buttonType?: ButtonType;
|
|
175
171
|
selectAllText?: string;
|
|
176
172
|
clearAllText?: string;
|
|
177
173
|
rangeFromLabel?: string;
|