beeple-toolkit 1.0.13 → 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 +1622 -1590
- package/dist/beeple-toolkit.umd.js +1 -1
- package/dist/components/types.d.ts +2 -5
- package/package.json +1 -1
|
@@ -36,6 +36,7 @@ export interface RadioInputProps {
|
|
|
36
36
|
}
|
|
37
37
|
export interface InputProps {
|
|
38
38
|
id?: string;
|
|
39
|
+
name?: string;
|
|
39
40
|
label?: string;
|
|
40
41
|
type?: 'text' | 'email' | 'password' | 'number' | 'tel' | 'url' | 'search';
|
|
41
42
|
modelValue?: string;
|
|
@@ -158,19 +159,15 @@ export interface FilterButtonProps {
|
|
|
158
159
|
modelValue?: unknown | unknown[];
|
|
159
160
|
options?: Array<string | number | DropDownOption | Record<string, unknown>>;
|
|
160
161
|
filterConfig?: FilterConfig;
|
|
161
|
-
placeholder?: string;
|
|
162
162
|
filterName?: string;
|
|
163
|
-
|
|
163
|
+
forceSingle?: boolean;
|
|
164
164
|
searchable?: boolean;
|
|
165
165
|
searchPlaceholder?: string;
|
|
166
166
|
disabled?: boolean;
|
|
167
|
-
clearable?: boolean;
|
|
168
167
|
size?: ButtonSize;
|
|
169
168
|
optionLabel?: string;
|
|
170
169
|
optionValue?: string;
|
|
171
170
|
noOptionsText?: string;
|
|
172
|
-
maxHeight?: string;
|
|
173
|
-
buttonType?: ButtonType;
|
|
174
171
|
selectAllText?: string;
|
|
175
172
|
clearAllText?: string;
|
|
176
173
|
rangeFromLabel?: string;
|