beeple-toolkit 1.0.42 → 1.0.43
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 +2342 -2321
- package/dist/beeple-toolkit.umd.js +1 -1
- package/dist/components/DatePicker/DatePicker.vue.d.ts +1 -0
- package/dist/components/UploadDocument/UploadDocument.vue.d.ts +1 -0
- package/dist/components/types.d.ts +6 -2
- package/package.json +1 -1
|
@@ -22,6 +22,7 @@ declare const __VLS_base: import("vue").DefineComponent<DatePickerProps, {}, {},
|
|
|
22
22
|
onChange?: ((value: DatePickerValue) => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
24
|
locale: import("./locales").DatePickerLocale;
|
|
25
|
+
fullWidth: boolean;
|
|
25
26
|
placeholder: string;
|
|
26
27
|
variant: import("../types").DatePickerVariant;
|
|
27
28
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -19,6 +19,7 @@ declare const __VLS_export: import("vue").DefineComponent<UploadDocumentProps, {
|
|
|
19
19
|
multiple: boolean;
|
|
20
20
|
loading: boolean;
|
|
21
21
|
accept: string;
|
|
22
|
+
showUrl: boolean;
|
|
22
23
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
24
|
declare const _default: typeof __VLS_export;
|
|
24
25
|
export default _default;
|
|
@@ -49,6 +49,7 @@ export interface InputProps {
|
|
|
49
49
|
min?: number;
|
|
50
50
|
max?: number;
|
|
51
51
|
step?: number;
|
|
52
|
+
numberType?: 'integer' | 'decimal';
|
|
52
53
|
}
|
|
53
54
|
export interface SwitchProps {
|
|
54
55
|
id?: string;
|
|
@@ -248,6 +249,8 @@ export interface DatePickerProps {
|
|
|
248
249
|
locale?: DatePickerLocale;
|
|
249
250
|
translations?: DatePickerTranslations;
|
|
250
251
|
timezone?: string;
|
|
252
|
+
fullWidth?: boolean;
|
|
253
|
+
triggerSize?: ButtonSize;
|
|
251
254
|
}
|
|
252
255
|
export interface MenuProps {
|
|
253
256
|
items: DropDownOption[] | DropDownOption[][];
|
|
@@ -307,11 +310,9 @@ export interface ProgressBarProps {
|
|
|
307
310
|
isOpen?: boolean;
|
|
308
311
|
}
|
|
309
312
|
export interface UploadDocumentTranslations {
|
|
310
|
-
label?: string;
|
|
311
313
|
title?: string;
|
|
312
314
|
subtitle?: string;
|
|
313
315
|
selectFiles?: string;
|
|
314
|
-
urlLabel?: string;
|
|
315
316
|
uploadButton?: string;
|
|
316
317
|
urlPlaceholder?: string;
|
|
317
318
|
invalidUrl?: string;
|
|
@@ -322,6 +323,8 @@ export interface UploadDocumentTranslations {
|
|
|
322
323
|
uploadError?: string;
|
|
323
324
|
}
|
|
324
325
|
export interface UploadDocumentProps {
|
|
326
|
+
label?: string;
|
|
327
|
+
urlLabel?: string;
|
|
325
328
|
modelValue?: string;
|
|
326
329
|
accept?: string;
|
|
327
330
|
multiple?: boolean;
|
|
@@ -331,6 +334,7 @@ export interface UploadDocumentProps {
|
|
|
331
334
|
uploaded?: boolean;
|
|
332
335
|
progress?: number;
|
|
333
336
|
error?: boolean;
|
|
337
|
+
showUrl?: boolean;
|
|
334
338
|
translations?: UploadDocumentTranslations;
|
|
335
339
|
}
|
|
336
340
|
export interface ModalProps {
|