beeple-toolkit 1.0.48 → 1.0.50
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 +1701 -1674
- 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/Textarea/Textarea.vue.d.ts +12 -2
- 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 +3 -1
- 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;
|
|
@@ -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;
|
|
@@ -11,7 +15,13 @@ declare const __VLS_export: import("vue").DefineComponent<TextareaProps, {}, {},
|
|
|
11
15
|
}>, {
|
|
12
16
|
isError: boolean;
|
|
13
17
|
minRows: number;
|
|
14
|
-
maxRows: number;
|
|
18
|
+
maxRows: number | null;
|
|
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
|
+
};
|
|
@@ -237,6 +237,7 @@ export interface DatePickerTranslations {
|
|
|
237
237
|
back?: string;
|
|
238
238
|
}
|
|
239
239
|
export interface DatePickerProps {
|
|
240
|
+
label?: string;
|
|
240
241
|
variant?: DatePickerVariant;
|
|
241
242
|
modelValue?: Date | {
|
|
242
243
|
start: Date;
|
|
@@ -270,7 +271,8 @@ export interface TextareaProps {
|
|
|
270
271
|
isError?: boolean;
|
|
271
272
|
errorMessage?: string;
|
|
272
273
|
minRows?: number;
|
|
273
|
-
|
|
274
|
+
/** Max rows before the field caps and scrolls. `null` or `0` = unlimited (grows to fit, no scrollbar). */
|
|
275
|
+
maxRows?: number | null;
|
|
274
276
|
}
|
|
275
277
|
export interface TimeInputProps {
|
|
276
278
|
id?: string;
|