beeple-toolkit 1.0.47 → 1.0.49
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 +2296 -2262
- package/dist/beeple-toolkit.umd.js +1 -1
- package/dist/components/DatePicker/DatePicker.vue.d.ts +4 -2
- package/dist/components/DropDown/DropDown.vue.d.ts +11 -1
- package/dist/components/Input/Input.vue.d.ts +5 -3
- package/dist/components/Scrollbar/Scrollbar.vue.d.ts +3 -0
- package/dist/components/Textarea/Textarea.vue.d.ts +11 -1
- package/dist/components/TimeInput/TimeInput.vue.d.ts +11 -1
- package/dist/components/UploadDocument/UploadDocument.vue.d.ts +11 -1
- package/dist/components/types.d.ts +5 -0
- package/package.json +1 -1
|
@@ -8,11 +8,13 @@ type DatePickerValue = Date | {
|
|
|
8
8
|
} | null;
|
|
9
9
|
import type { DatePickerProps } from '../types';
|
|
10
10
|
import './datepicker.css';
|
|
11
|
-
declare var __VLS_1: {
|
|
11
|
+
declare var __VLS_1: {}, __VLS_3: {
|
|
12
12
|
isOpen: boolean;
|
|
13
13
|
};
|
|
14
14
|
type __VLS_Slots = {} & {
|
|
15
|
-
|
|
15
|
+
label?: (props: typeof __VLS_1) => any;
|
|
16
|
+
} & {
|
|
17
|
+
trigger?: (props: typeof __VLS_3) => any;
|
|
16
18
|
};
|
|
17
19
|
declare const __VLS_base: import("vue").DefineComponent<DatePickerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
20
|
"update:modelValue": (value: DatePickerValue) => any;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import type { DropDownProps } from '../types';
|
|
2
2
|
import './dropdown.css';
|
|
3
|
-
declare
|
|
3
|
+
declare var __VLS_1: {};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
label?: (props: typeof __VLS_1) => any;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_base: import("vue").DefineComponent<DropDownProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
4
8
|
search: (query: string) => any;
|
|
5
9
|
close: () => any;
|
|
6
10
|
"update:modelValue": (value: unknown) => any;
|
|
@@ -31,5 +35,11 @@ declare const __VLS_export: import("vue").DefineComponent<DropDownProps, {}, {},
|
|
|
31
35
|
optionValue: string;
|
|
32
36
|
maxHeight: string;
|
|
33
37
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
38
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
34
39
|
declare const _default: typeof __VLS_export;
|
|
35
40
|
export default _default;
|
|
41
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
42
|
+
new (): {
|
|
43
|
+
$slots: S;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import type { InputProps } from '../types';
|
|
2
2
|
import './input.css';
|
|
3
|
-
declare var __VLS_1: {},
|
|
3
|
+
declare var __VLS_1: {}, __VLS_3: {}, __VLS_20: {};
|
|
4
4
|
type __VLS_Slots = {} & {
|
|
5
|
-
|
|
5
|
+
label?: (props: typeof __VLS_1) => any;
|
|
6
6
|
} & {
|
|
7
|
-
'
|
|
7
|
+
'leading-icon'?: (props: typeof __VLS_3) => any;
|
|
8
|
+
} & {
|
|
9
|
+
'trailing-icon'?: (props: typeof __VLS_20) => any;
|
|
8
10
|
};
|
|
9
11
|
declare const __VLS_base: import("vue").DefineComponent<InputProps, {
|
|
10
12
|
focus: () => void | undefined;
|
|
@@ -7,6 +7,7 @@ type __VLS_Slots = {} & {
|
|
|
7
7
|
declare const __VLS_base: import("vue").DefineComponent<ScrollbarProps, {
|
|
8
8
|
scrollToTop: () => void;
|
|
9
9
|
scrollTo: (options: ScrollToOptions) => void;
|
|
10
|
+
recalculate: () => void;
|
|
10
11
|
viewport: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
11
12
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
13
|
scroll: (event: Event) => any;
|
|
@@ -18,6 +19,8 @@ declare const __VLS_base: import("vue").DefineComponent<ScrollbarProps, {
|
|
|
18
19
|
direction: import("..").ScrollbarDirection;
|
|
19
20
|
showScrolledIndicator: boolean;
|
|
20
21
|
idleTimeout: number;
|
|
22
|
+
observeMutations: boolean;
|
|
23
|
+
observeResize: boolean;
|
|
21
24
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
25
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
23
26
|
declare const _default: typeof __VLS_export;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import type { TextareaProps } from '../types';
|
|
2
2
|
import './textarea.css';
|
|
3
|
-
declare
|
|
3
|
+
declare var __VLS_1: {};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
label?: (props: typeof __VLS_1) => any;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_base: import("vue").DefineComponent<TextareaProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
4
8
|
"update:modelValue": (value: string) => any;
|
|
5
9
|
focus: () => any;
|
|
6
10
|
blur: () => any;
|
|
@@ -13,5 +17,11 @@ declare const __VLS_export: import("vue").DefineComponent<TextareaProps, {}, {},
|
|
|
13
17
|
minRows: number;
|
|
14
18
|
maxRows: number;
|
|
15
19
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
16
21
|
declare const _default: typeof __VLS_export;
|
|
17
22
|
export default _default;
|
|
23
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
24
|
+
new (): {
|
|
25
|
+
$slots: S;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import type { TimeInputProps } from '../types';
|
|
2
2
|
import './timeinput.css';
|
|
3
|
-
declare
|
|
3
|
+
declare var __VLS_1: {};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
label?: (props: typeof __VLS_1) => any;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_base: import("vue").DefineComponent<TimeInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
4
8
|
"update:modelValue": (value: string) => any;
|
|
5
9
|
focus: () => any;
|
|
6
10
|
blur: () => any;
|
|
@@ -15,5 +19,11 @@ declare const __VLS_export: import("vue").DefineComponent<TimeInputProps, {}, {}
|
|
|
15
19
|
minutesPlaceholder: string;
|
|
16
20
|
use24Hour: boolean;
|
|
17
21
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
18
23
|
declare const _default: typeof __VLS_export;
|
|
19
24
|
export default _default;
|
|
25
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
26
|
+
new (): {
|
|
27
|
+
$slots: S;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import type { UploadDocumentProps } from '../types';
|
|
2
2
|
import './uploadDocument.css';
|
|
3
|
-
declare
|
|
3
|
+
declare var __VLS_1: {};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
label?: (props: typeof __VLS_1) => any;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_base: import("vue").DefineComponent<UploadDocumentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
4
8
|
"update:modelValue": (value: string) => any;
|
|
5
9
|
cancel: () => any;
|
|
6
10
|
remove: () => any;
|
|
@@ -21,5 +25,11 @@ declare const __VLS_export: import("vue").DefineComponent<UploadDocumentProps, {
|
|
|
21
25
|
accept: string;
|
|
22
26
|
showUrl: boolean;
|
|
23
27
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
24
29
|
declare const _default: typeof __VLS_export;
|
|
25
30
|
export default _default;
|
|
31
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -193,6 +193,10 @@ export interface ScrollbarProps {
|
|
|
193
193
|
direction?: ScrollbarDirection;
|
|
194
194
|
showScrolledIndicator?: boolean;
|
|
195
195
|
idleTimeout?: number;
|
|
196
|
+
/** Observe deep DOM mutations of the viewport to recompute the thumb. Disable for perf on large, frequently-mutating content and call recalculate() manually. */
|
|
197
|
+
observeMutations?: boolean;
|
|
198
|
+
/** Observe viewport resize to recompute the thumb. */
|
|
199
|
+
observeResize?: boolean;
|
|
196
200
|
}
|
|
197
201
|
export interface TooltipProps {
|
|
198
202
|
title?: string;
|
|
@@ -233,6 +237,7 @@ export interface DatePickerTranslations {
|
|
|
233
237
|
back?: string;
|
|
234
238
|
}
|
|
235
239
|
export interface DatePickerProps {
|
|
240
|
+
label?: string;
|
|
236
241
|
variant?: DatePickerVariant;
|
|
237
242
|
modelValue?: Date | {
|
|
238
243
|
start: Date;
|