@rebilly/revel 12.47.1 → 12.47.2
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/CHANGELOG.md +1 -1
- package/dist/components/r-alert/r-alert.vue.d.ts +5 -4
- package/dist/components/r-avatar/r-avatar.vue.d.ts +5 -4
- package/dist/components/r-badge/r-badge.vue.d.ts +3 -2
- package/dist/components/r-button/r-button.vue.d.ts +8 -7
- package/dist/components/r-button-group/r-button-group.vue.d.ts +3 -2
- package/dist/components/r-checkbox/r-checkbox.vue.d.ts +3 -2
- package/dist/components/r-date-input/r-calendar.vue.d.ts +2 -1
- package/dist/components/r-date-input/r-date-input.vue.d.ts +2 -1
- package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +2 -1
- package/dist/components/r-date-input/r-range-calendar.vue.d.ts +2 -1
- package/dist/components/r-date-range/components/calendar.vue.d.ts +2 -1
- package/dist/components/r-date-range/components/inputs.vue.d.ts +2 -1
- package/dist/components/r-date-range/components/month.vue.d.ts +2 -1
- package/dist/components/r-date-range/components/popup.vue.d.ts +22 -5
- package/dist/components/r-date-range/components/presets.vue.d.ts +2 -1
- package/dist/components/r-date-range/components/trigger.vue.d.ts +2 -1
- package/dist/components/r-date-range/r-date-range.vue.d.ts +4 -2
- package/dist/components/r-field-group/r-field-group.vue.d.ts +3 -2
- package/dist/components/r-file-dropzone/r-file-dropzone-gallery-item.vue.d.ts +2 -1
- package/dist/components/r-file-dropzone/r-file-dropzone-gallery.vue.d.ts +2 -1
- package/dist/components/r-file-dropzone/r-file-dropzone-list.vue.d.ts +2 -1
- package/dist/components/r-file-dropzone/r-file-dropzone.vue.d.ts +3 -2
- package/dist/components/r-file-upload/r-file-upload.vue.d.ts +3 -2
- package/dist/components/r-flex/r-flex-item.vue.d.ts +3 -2
- package/dist/components/r-flex/r-flex.vue.d.ts +3 -2
- package/dist/components/r-grid/r-grid-cell.vue.d.ts +3 -2
- package/dist/components/r-grid/r-grid.vue.d.ts +3 -2
- package/dist/components/r-icon/r-icon.vue.d.ts +2 -1
- package/dist/components/r-img/r-img.vue.d.ts +3 -2
- package/dist/components/r-input/r-input.vue.d.ts +57 -56
- package/dist/components/r-input-errors/r-input-errors.vue.d.ts +2 -1
- package/dist/components/r-loader/r-loader.vue.d.ts +2 -1
- package/dist/components/r-modal/r-modal.vue.d.ts +5 -4
- package/dist/components/r-month-picker/r-month-picker.vue.d.ts +2 -1
- package/dist/components/r-multistep/r-multistep.vue.d.ts +2 -1
- package/dist/components/r-multistep/r-step.vue.d.ts +6 -5
- package/dist/components/r-pagination/r-pagination.vue.d.ts +3 -2
- package/dist/components/r-pagination-control/r-pagination-control.vue.d.ts +3 -2
- package/dist/components/r-popper/r-popper.vue.d.ts +7 -6
- package/dist/components/r-radio/r-radio.vue.d.ts +4 -3
- package/dist/components/r-repeater/r-repeater.vue.d.ts +11 -10
- package/dist/components/r-select/r-select.vue.d.ts +6 -5
- package/dist/components/r-tabs/r-tab.vue.d.ts +3 -2
- package/dist/components/r-tabs/r-tabs.vue.d.ts +4 -3
- package/dist/components/r-tile/r-tile.vue.d.ts +3 -2
- package/dist/components/r-toast/r-toast.vue.d.ts +2 -1
- package/dist/components/r-toggle/r-toggle.vue.d.ts +3 -2
- package/dist/playground/Playground-copyme.vue.d.ts +2 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
## [12.47.
|
|
1
|
+
## [12.47.2](https://github.com/Rebilly/rebilly/compare/revel-v12.47.1...revel-v12.47.2) (2026-07-15)
|
|
@@ -17,17 +17,18 @@ interface Props {
|
|
|
17
17
|
*/
|
|
18
18
|
icon?: IconNames;
|
|
19
19
|
}
|
|
20
|
-
declare var
|
|
20
|
+
declare var __VLS_11: {};
|
|
21
21
|
type __VLS_Slots = {} & {
|
|
22
|
-
content?: (props: typeof
|
|
22
|
+
content?: (props: typeof __VLS_11) => any;
|
|
23
23
|
};
|
|
24
|
-
declare const
|
|
24
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
25
25
|
title: string;
|
|
26
26
|
icon: IconNames;
|
|
27
27
|
type: "default" | "negative" | "positive" | "info" | "warning";
|
|
28
28
|
permanent: boolean;
|
|
29
29
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
|
-
declare const
|
|
30
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
31
|
+
declare const _default: typeof __VLS_export;
|
|
31
32
|
export default _default;
|
|
32
33
|
type __VLS_WithSlots<T, S> = T & {
|
|
33
34
|
new (): {
|
|
@@ -21,12 +21,13 @@ interface Props {
|
|
|
21
21
|
*/
|
|
22
22
|
icon?: IconNames;
|
|
23
23
|
}
|
|
24
|
-
declare var
|
|
24
|
+
declare var __VLS_11: {};
|
|
25
25
|
type __VLS_Slots = {} & {
|
|
26
|
-
default?: (props: typeof
|
|
26
|
+
default?: (props: typeof __VLS_11) => any;
|
|
27
27
|
};
|
|
28
|
-
declare const
|
|
29
|
-
declare const
|
|
28
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
29
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
30
|
+
declare const _default: typeof __VLS_export;
|
|
30
31
|
export default _default;
|
|
31
32
|
type __VLS_WithSlots<T, S> = T & {
|
|
32
33
|
new (): {
|
|
@@ -12,7 +12,7 @@ declare var __VLS_1: {};
|
|
|
12
12
|
type __VLS_Slots = {} & {
|
|
13
13
|
default?: (props: typeof __VLS_1) => any;
|
|
14
14
|
};
|
|
15
|
-
declare const
|
|
15
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
16
16
|
close: () => any;
|
|
17
17
|
click: () => any;
|
|
18
18
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
@@ -22,7 +22,8 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
22
22
|
close: boolean;
|
|
23
23
|
type: string;
|
|
24
24
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
-
declare const
|
|
25
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
26
|
+
declare const _default: typeof __VLS_export;
|
|
26
27
|
export default _default;
|
|
27
28
|
type __VLS_WithSlots<T, S> = T & {
|
|
28
29
|
new (): {
|
|
@@ -49,17 +49,17 @@ export interface Props {
|
|
|
49
49
|
*/
|
|
50
50
|
icon?: IconNames;
|
|
51
51
|
}
|
|
52
|
-
declare var
|
|
52
|
+
declare var __VLS_11: {}, __VLS_13: {}, __VLS_35: {}, __VLS_37: {};
|
|
53
53
|
type __VLS_Slots = {} & {
|
|
54
|
-
default?: (props: typeof
|
|
54
|
+
default?: (props: typeof __VLS_11) => any;
|
|
55
55
|
} & {
|
|
56
|
-
default?: (props: typeof
|
|
56
|
+
default?: (props: typeof __VLS_13) => any;
|
|
57
57
|
} & {
|
|
58
|
-
default?: (props: typeof
|
|
58
|
+
default?: (props: typeof __VLS_35) => any;
|
|
59
59
|
} & {
|
|
60
|
-
default?: (props: typeof
|
|
60
|
+
default?: (props: typeof __VLS_37) => any;
|
|
61
61
|
};
|
|
62
|
-
declare const
|
|
62
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
63
63
|
loading: boolean;
|
|
64
64
|
link: boolean;
|
|
65
65
|
icon: IconNames;
|
|
@@ -73,7 +73,8 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
73
73
|
iconLeft: IconNames;
|
|
74
74
|
iconRight: IconNames;
|
|
75
75
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
76
|
-
declare const
|
|
76
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
77
|
+
declare const _default: typeof __VLS_export;
|
|
77
78
|
export default _default;
|
|
78
79
|
type __VLS_WithSlots<T, S> = T & {
|
|
79
80
|
new (): {
|
|
@@ -8,10 +8,11 @@ declare var __VLS_1: {};
|
|
|
8
8
|
type __VLS_Slots = {} & {
|
|
9
9
|
default?: (props: typeof __VLS_1) => any;
|
|
10
10
|
};
|
|
11
|
-
declare const
|
|
11
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
12
12
|
fluid: boolean;
|
|
13
13
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
-
declare const
|
|
14
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
15
16
|
export default _default;
|
|
16
17
|
type __VLS_WithSlots<T, S> = T & {
|
|
17
18
|
new (): {
|
|
@@ -39,7 +39,7 @@ declare var __VLS_1: {};
|
|
|
39
39
|
type __VLS_Slots = {} & {
|
|
40
40
|
label?: (props: typeof __VLS_1) => any;
|
|
41
41
|
};
|
|
42
|
-
declare const
|
|
42
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
43
43
|
"update:modelValue": (value: string | number | boolean | string[]) => any;
|
|
44
44
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
45
45
|
"onUpdate:modelValue"?: ((value: string | number | boolean | string[]) => any) | undefined;
|
|
@@ -53,7 +53,8 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
53
53
|
fuzzy: boolean;
|
|
54
54
|
validate: Nullable<ValidationState>;
|
|
55
55
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
56
|
-
declare const
|
|
56
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
57
|
+
declare const _default: typeof __VLS_export;
|
|
57
58
|
export default _default;
|
|
58
59
|
type __VLS_WithSlots<T, S> = T & {
|
|
59
60
|
new (): {
|
|
@@ -33,7 +33,7 @@ interface Props {
|
|
|
33
33
|
*/
|
|
34
34
|
hideSelectToday?: boolean;
|
|
35
35
|
}
|
|
36
|
-
declare const
|
|
36
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
37
37
|
"update:modelValue": (value: string | Date | null) => any;
|
|
38
38
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
39
39
|
"onUpdate:modelValue"?: ((value: string | Date | null) => any) | undefined;
|
|
@@ -46,4 +46,5 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
46
46
|
masks: object;
|
|
47
47
|
hideSelectToday: boolean;
|
|
48
48
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
49
|
+
declare const _default: typeof __VLS_export;
|
|
49
50
|
export default _default;
|
|
@@ -92,7 +92,7 @@ interface Props {
|
|
|
92
92
|
*/
|
|
93
93
|
hideSelectToday?: boolean;
|
|
94
94
|
}
|
|
95
|
-
declare const
|
|
95
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
96
96
|
"update:modelValue": (value: string | Date | DateRange | null) => any;
|
|
97
97
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
98
98
|
"onUpdate:modelValue"?: ((value: string | Date | DateRange | null) => any) | undefined;
|
|
@@ -119,4 +119,5 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
119
119
|
showValidateMessages: boolean;
|
|
120
120
|
availableDates: object;
|
|
121
121
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
122
|
+
declare const _default: typeof __VLS_export;
|
|
122
123
|
export default _default;
|
|
@@ -33,7 +33,7 @@ interface Props {
|
|
|
33
33
|
*/
|
|
34
34
|
timezone?: string;
|
|
35
35
|
}
|
|
36
|
-
declare const
|
|
36
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
37
37
|
"preset-select": (value: DateRange) => any;
|
|
38
38
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
39
39
|
"onPreset-select"?: ((value: DateRange) => any) | undefined;
|
|
@@ -47,4 +47,5 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
47
47
|
timePicker: boolean;
|
|
48
48
|
showPresets: boolean;
|
|
49
49
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
50
|
+
declare const _default: typeof __VLS_export;
|
|
50
51
|
export default _default;
|
|
@@ -28,7 +28,7 @@ interface Props {
|
|
|
28
28
|
*/
|
|
29
29
|
placeholder?: string;
|
|
30
30
|
}
|
|
31
|
-
declare const
|
|
31
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
32
32
|
"update:modelValue": (value: string | Date | DateRange<Date | moment.Moment>) => any;
|
|
33
33
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
34
34
|
"onUpdate:modelValue"?: ((value: string | Date | DateRange<Date | moment.Moment>) => any) | undefined;
|
|
@@ -40,4 +40,5 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
40
40
|
is24hr: boolean;
|
|
41
41
|
timePicker: boolean;
|
|
42
42
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
43
|
+
declare const _default: typeof __VLS_export;
|
|
43
44
|
export default _default;
|
|
@@ -8,7 +8,7 @@ interface Props {
|
|
|
8
8
|
isRangeStart: (date: Date) => boolean;
|
|
9
9
|
isRangeEnd: (date: Date) => boolean;
|
|
10
10
|
}
|
|
11
|
-
declare const
|
|
11
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
12
12
|
"date-click": (date: Date) => any;
|
|
13
13
|
"date-hover": (date: Date | null) => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
@@ -21,4 +21,5 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
21
21
|
maxDate: Date | string;
|
|
22
22
|
navigateToDate: Date | null;
|
|
23
23
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
declare const _default: typeof __VLS_export;
|
|
24
25
|
export default _default;
|
|
@@ -7,7 +7,7 @@ interface Props {
|
|
|
7
7
|
showTimePicker?: boolean;
|
|
8
8
|
is24hr?: boolean;
|
|
9
9
|
}
|
|
10
|
-
declare const
|
|
10
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
11
11
|
"update:startDate": (value: Date | null) => any;
|
|
12
12
|
"update:endDate": (value: Date | null) => any;
|
|
13
13
|
"update:startTime": (value: TimeValue) => any;
|
|
@@ -21,4 +21,5 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
21
21
|
is24hr: boolean;
|
|
22
22
|
showTimePicker: boolean;
|
|
23
23
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
declare const _default: typeof __VLS_export;
|
|
24
25
|
export default _default;
|
|
@@ -6,7 +6,7 @@ interface Props {
|
|
|
6
6
|
isRangeStart: (date: Date) => boolean;
|
|
7
7
|
isRangeEnd: (date: Date) => boolean;
|
|
8
8
|
}
|
|
9
|
-
declare const
|
|
9
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
10
10
|
"date-click": (date: Date) => any;
|
|
11
11
|
"date-hover": (date: Date | null) => any;
|
|
12
12
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
@@ -15,4 +15,5 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
15
15
|
}>, {
|
|
16
16
|
showHeader: boolean;
|
|
17
17
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
18
19
|
export default _default;
|
|
@@ -18,12 +18,28 @@ interface Props {
|
|
|
18
18
|
isRangeEnd: (date: Date) => boolean;
|
|
19
19
|
availablePresets?: CalendarPreset[];
|
|
20
20
|
}
|
|
21
|
-
declare const
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
21
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
22
|
+
cancel: () => any;
|
|
23
|
+
"preset-select": (preset: "today" | "yesterday" | "thisWeek" | "lastWeek" | "last30Days" | "thisMonth" | "lastMonth" | "last3Months" | "last6Months" | "thisYear" | "lastYear") => any;
|
|
24
|
+
"update:startDate": (value: Date | null) => any;
|
|
25
|
+
"update:endDate": (value: Date | null) => any;
|
|
26
|
+
"update:startTime": (value: TimeValue) => any;
|
|
27
|
+
"update:endTime": (value: TimeValue) => any;
|
|
28
|
+
"date-click": (date: Date) => any;
|
|
29
|
+
"date-hover": (date: Date | null) => any;
|
|
30
|
+
apply: () => any;
|
|
31
|
+
clear: () => any;
|
|
25
32
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
26
|
-
|
|
33
|
+
onCancel?: (() => any) | undefined;
|
|
34
|
+
"onPreset-select"?: ((preset: "today" | "yesterday" | "thisWeek" | "lastWeek" | "last30Days" | "thisMonth" | "lastMonth" | "last3Months" | "last6Months" | "thisYear" | "lastYear") => any) | undefined;
|
|
35
|
+
"onUpdate:startDate"?: ((value: Date | null) => any) | undefined;
|
|
36
|
+
"onUpdate:endDate"?: ((value: Date | null) => any) | undefined;
|
|
37
|
+
"onUpdate:startTime"?: ((value: TimeValue) => any) | undefined;
|
|
38
|
+
"onUpdate:endTime"?: ((value: TimeValue) => any) | undefined;
|
|
39
|
+
"onDate-click"?: ((date: Date) => any) | undefined;
|
|
40
|
+
"onDate-hover"?: ((date: Date | null) => any) | undefined;
|
|
41
|
+
onApply?: (() => any) | undefined;
|
|
42
|
+
onClear?: (() => any) | undefined;
|
|
27
43
|
}>, {
|
|
28
44
|
columns: 1 | 2;
|
|
29
45
|
timezone: string;
|
|
@@ -35,4 +51,5 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
35
51
|
isMobile: boolean;
|
|
36
52
|
availablePresets: CalendarPreset[];
|
|
37
53
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
54
|
+
declare const _default: typeof __VLS_export;
|
|
38
55
|
export default _default;
|
|
@@ -4,7 +4,7 @@ interface Props {
|
|
|
4
4
|
isMobile?: boolean;
|
|
5
5
|
availablePresets?: CalendarPreset[];
|
|
6
6
|
}
|
|
7
|
-
declare const
|
|
7
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
8
8
|
select: (preset: "today" | "yesterday" | "thisWeek" | "lastWeek" | "last30Days" | "thisMonth" | "lastMonth" | "last3Months" | "last6Months" | "thisYear" | "lastYear") => any;
|
|
9
9
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
10
10
|
onSelect?: ((preset: "today" | "yesterday" | "thisWeek" | "lastWeek" | "last30Days" | "thisMonth" | "lastMonth" | "last3Months" | "last6Months" | "thisYear" | "lastYear") => any) | undefined;
|
|
@@ -13,4 +13,5 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
13
13
|
isMobile: boolean;
|
|
14
14
|
availablePresets: CalendarPreset[];
|
|
15
15
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
16
17
|
export default _default;
|
|
@@ -8,7 +8,7 @@ interface Props {
|
|
|
8
8
|
timezone?: string;
|
|
9
9
|
isInvalid?: boolean;
|
|
10
10
|
}
|
|
11
|
-
declare const
|
|
11
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
12
12
|
click: () => any;
|
|
13
13
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
14
14
|
onClick?: (() => any) | undefined;
|
|
@@ -21,4 +21,5 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
21
21
|
dateRange: DateRange | null;
|
|
22
22
|
showTimePicker: boolean;
|
|
23
23
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
declare const _default: typeof __VLS_export;
|
|
24
25
|
export default _default;
|
|
@@ -16,10 +16,11 @@ interface Props {
|
|
|
16
16
|
maxDateRangeDays?: number;
|
|
17
17
|
}
|
|
18
18
|
type __VLS_Props = Props;
|
|
19
|
-
type
|
|
19
|
+
type __VLS_ModelProps = {
|
|
20
20
|
modelValue?: DateRange | null;
|
|
21
21
|
};
|
|
22
|
-
|
|
22
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
23
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
24
|
"update:modelValue": (value: DateRange | null) => any;
|
|
24
25
|
} & {
|
|
25
26
|
cancel: () => any;
|
|
@@ -45,4 +46,5 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
45
46
|
showTimePicker: boolean;
|
|
46
47
|
maxDateRangeDays: number;
|
|
47
48
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
49
|
+
declare const _default: typeof __VLS_export;
|
|
48
50
|
export default _default;
|
|
@@ -2,8 +2,9 @@ declare var __VLS_1: {};
|
|
|
2
2
|
type __VLS_Slots = {} & {
|
|
3
3
|
default?: (props: typeof __VLS_1) => any;
|
|
4
4
|
};
|
|
5
|
-
declare const
|
|
6
|
-
declare const
|
|
5
|
+
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
7
8
|
export default _default;
|
|
8
9
|
type __VLS_WithSlots<T, S> = T & {
|
|
9
10
|
new (): {
|
|
@@ -5,9 +5,10 @@ type __VLS_Props = {
|
|
|
5
5
|
*/
|
|
6
6
|
file: ConvertedFile;
|
|
7
7
|
};
|
|
8
|
-
declare const
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
9
9
|
remove: () => any;
|
|
10
10
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
11
11
|
onRemove?: (() => any) | undefined;
|
|
12
12
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const _default: typeof __VLS_export;
|
|
13
14
|
export default _default;
|
|
@@ -5,9 +5,10 @@ type __VLS_Props = {
|
|
|
5
5
|
*/
|
|
6
6
|
files: ConvertedFile[];
|
|
7
7
|
};
|
|
8
|
-
declare const
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
9
9
|
remove: (arg: number) => any;
|
|
10
10
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
11
11
|
onRemove?: ((arg: number) => any) | undefined;
|
|
12
12
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const _default: typeof __VLS_export;
|
|
13
14
|
export default _default;
|
|
@@ -5,9 +5,10 @@ type __VLS_Props = {
|
|
|
5
5
|
*/
|
|
6
6
|
files: ConvertedFile[];
|
|
7
7
|
};
|
|
8
|
-
declare const
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
9
9
|
remove: (arg: number) => any;
|
|
10
10
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
11
11
|
onRemove?: ((arg: number) => any) | undefined;
|
|
12
12
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const _default: typeof __VLS_export;
|
|
13
14
|
export default _default;
|
|
@@ -34,7 +34,7 @@ declare var __VLS_1: {};
|
|
|
34
34
|
type __VLS_Slots = {} & {
|
|
35
35
|
default?: (props: typeof __VLS_1) => any;
|
|
36
36
|
};
|
|
37
|
-
declare const
|
|
37
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
38
38
|
"update:modelValue": (arg: RevelFile | RevelFile[]) => any;
|
|
39
39
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
40
40
|
"onUpdate:modelValue"?: ((arg: RevelFile | RevelFile[]) => any) | undefined;
|
|
@@ -46,7 +46,8 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
46
46
|
hidePreview: boolean;
|
|
47
47
|
maxFileSize: number;
|
|
48
48
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
49
|
-
declare const
|
|
49
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
50
|
+
declare const _default: typeof __VLS_export;
|
|
50
51
|
export default _default;
|
|
51
52
|
type __VLS_WithSlots<T, S> = T & {
|
|
52
53
|
new (): {
|
|
@@ -21,7 +21,7 @@ declare var __VLS_1: {
|
|
|
21
21
|
type __VLS_Slots = {} & {
|
|
22
22
|
default?: (props: typeof __VLS_1) => any;
|
|
23
23
|
};
|
|
24
|
-
declare const
|
|
24
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
25
|
input: (arg: FileList) => void;
|
|
26
26
|
close: () => void;
|
|
27
27
|
cancel: () => void;
|
|
@@ -34,7 +34,8 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
34
34
|
multiple: boolean;
|
|
35
35
|
accept: string;
|
|
36
36
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
37
|
-
declare const
|
|
37
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
38
|
+
declare const _default: typeof __VLS_export;
|
|
38
39
|
export default _default;
|
|
39
40
|
type __VLS_WithSlots<T, S> = T & {
|
|
40
41
|
new (): {
|
|
@@ -25,14 +25,15 @@ declare var __VLS_1: {};
|
|
|
25
25
|
type __VLS_Slots = {} & {
|
|
26
26
|
default?: (props: typeof __VLS_1) => any;
|
|
27
27
|
};
|
|
28
|
-
declare const
|
|
28
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
29
29
|
span: FlexSize | "fill" | "auto";
|
|
30
30
|
offset: Nullable<FlexSize | "auto">;
|
|
31
31
|
wrap: Nullable<boolean>;
|
|
32
32
|
alignSelf: Nullable<Distribution>;
|
|
33
33
|
flexNone: boolean;
|
|
34
34
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
35
|
-
declare const
|
|
35
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
36
|
+
declare const _default: typeof __VLS_export;
|
|
36
37
|
export default _default;
|
|
37
38
|
type __VLS_WithSlots<T, S> = T & {
|
|
38
39
|
new (): {
|
|
@@ -37,7 +37,7 @@ declare var __VLS_1: {};
|
|
|
37
37
|
type __VLS_Slots = {} & {
|
|
38
38
|
default?: (props: typeof __VLS_1) => any;
|
|
39
39
|
};
|
|
40
|
-
declare const
|
|
40
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
41
41
|
columns: FlexSize;
|
|
42
42
|
direction: Nullable<Direction>;
|
|
43
43
|
wrap: Nullable<Wrap>;
|
|
@@ -47,7 +47,8 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
47
47
|
justifyContent: Nullable<ContentDistribution>;
|
|
48
48
|
unstackable: boolean;
|
|
49
49
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
50
|
-
declare const
|
|
50
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
51
|
+
declare const _default: typeof __VLS_export;
|
|
51
52
|
export default _default;
|
|
52
53
|
type __VLS_WithSlots<T, S> = T & {
|
|
53
54
|
new (): {
|
|
@@ -26,14 +26,15 @@ declare var __VLS_1: {};
|
|
|
26
26
|
type __VLS_Slots = {} & {
|
|
27
27
|
default?: (props: typeof __VLS_1) => any;
|
|
28
28
|
};
|
|
29
|
-
declare const
|
|
29
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
30
30
|
span: Nullable<GridSize>;
|
|
31
31
|
offset: Nullable<Offset>;
|
|
32
32
|
wrap: boolean;
|
|
33
33
|
alignSelf: Nullable<Distribution>;
|
|
34
34
|
justifySelf: Nullable<Distribution>;
|
|
35
35
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
36
|
-
declare const
|
|
36
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
37
|
+
declare const _default: typeof __VLS_export;
|
|
37
38
|
export default _default;
|
|
38
39
|
type __VLS_WithSlots<T, S> = T & {
|
|
39
40
|
new (): {
|
|
@@ -33,7 +33,7 @@ declare var __VLS_1: {};
|
|
|
33
33
|
type __VLS_Slots = {} & {
|
|
34
34
|
default?: (props: typeof __VLS_1) => any;
|
|
35
35
|
};
|
|
36
|
-
declare const
|
|
36
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
37
37
|
columns: GridSize;
|
|
38
38
|
gap: Gap;
|
|
39
39
|
alignItems: Nullable<Distribution>;
|
|
@@ -42,7 +42,8 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
42
42
|
justifyItems: Nullable<Distribution>;
|
|
43
43
|
jutifyContent: Nullable<ContentDistribution>;
|
|
44
44
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
45
|
-
declare const
|
|
45
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
46
|
+
declare const _default: typeof __VLS_export;
|
|
46
47
|
export default _default;
|
|
47
48
|
type __VLS_WithSlots<T, S> = T & {
|
|
48
49
|
new (): {
|
|
@@ -18,7 +18,7 @@ export interface Props {
|
|
|
18
18
|
*/
|
|
19
19
|
size?: '20' | '16' | '24' | '32';
|
|
20
20
|
}
|
|
21
|
-
declare const
|
|
21
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
22
22
|
click: (event: MouseEvent) => any;
|
|
23
23
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
24
24
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
@@ -27,4 +27,5 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
27
27
|
stopPropagation: boolean;
|
|
28
28
|
size: "20" | "16" | "24" | "32";
|
|
29
29
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
|
+
declare const _default: typeof __VLS_export;
|
|
30
31
|
export default _default;
|
|
@@ -24,7 +24,7 @@ declare var __VLS_1: {};
|
|
|
24
24
|
type __VLS_Slots = {} & {
|
|
25
25
|
loading?: (props: typeof __VLS_1) => any;
|
|
26
26
|
};
|
|
27
|
-
declare const
|
|
27
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
28
28
|
onload: () => any;
|
|
29
29
|
onerror: () => any;
|
|
30
30
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
@@ -36,7 +36,8 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
36
36
|
width: string;
|
|
37
37
|
height: string;
|
|
38
38
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
39
|
-
declare const
|
|
39
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
40
|
+
declare const _default: typeof __VLS_export;
|
|
40
41
|
export default _default;
|
|
41
42
|
type __VLS_WithSlots<T, S> = T & {
|
|
42
43
|
new (): {
|
|
@@ -1,61 +1,6 @@
|
|
|
1
1
|
import type { IconNames } from '../r-icon/r-icon-sprites';
|
|
2
2
|
import type { ValidationState } from '../../types';
|
|
3
|
-
declare const _default:
|
|
4
|
-
focus: () => void;
|
|
5
|
-
blur: () => void;
|
|
6
|
-
highlight: () => void;
|
|
7
|
-
getFocus: () => void;
|
|
8
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
-
click: (...args: any[]) => void;
|
|
10
|
-
blur: (...args: any[]) => void;
|
|
11
|
-
focus: (...args: any[]) => void;
|
|
12
|
-
"update:modelValue": (...args: any[]) => void;
|
|
13
|
-
"right-icon-click": (...args: any[]) => void;
|
|
14
|
-
"key-press": (...args: any[]) => void;
|
|
15
|
-
"key-down": (...args: any[]) => void;
|
|
16
|
-
"key-submit": (...args: any[]) => void;
|
|
17
|
-
"left-icon-click": (...args: any[]) => void;
|
|
18
|
-
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
19
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
20
|
-
onBlur?: ((...args: any[]) => any) | undefined;
|
|
21
|
-
onFocus?: ((...args: any[]) => any) | undefined;
|
|
22
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
23
|
-
"onRight-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
24
|
-
"onKey-press"?: ((...args: any[]) => any) | undefined;
|
|
25
|
-
"onKey-down"?: ((...args: any[]) => any) | undefined;
|
|
26
|
-
"onKey-submit"?: ((...args: any[]) => any) | undefined;
|
|
27
|
-
"onLeft-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
28
|
-
}>, {
|
|
29
|
-
label: Nullable<string>;
|
|
30
|
-
modelValue: Nullable<string | number | boolean>;
|
|
31
|
-
validate: Nullable<ValidationState>;
|
|
32
|
-
password: boolean;
|
|
33
|
-
inputEvents: Record<string, unknown>;
|
|
34
|
-
rightIcon: Nullable<IconNames>;
|
|
35
|
-
showValidateMessages: boolean;
|
|
36
|
-
name: string;
|
|
37
|
-
helpText: Nullable<string>;
|
|
38
|
-
multiline: boolean;
|
|
39
|
-
submitOnEnter: boolean;
|
|
40
|
-
leftIcon: Nullable<IconNames>;
|
|
41
|
-
leftIconClickPointer: boolean;
|
|
42
|
-
rightIconClickPointer: boolean;
|
|
43
|
-
leftIconSpinning: boolean;
|
|
44
|
-
rightIconSpinning: boolean;
|
|
45
|
-
leftLabel: Nullable<string>;
|
|
46
|
-
rightLabel: Nullable<string>;
|
|
47
|
-
numeric: boolean;
|
|
48
|
-
integer: boolean;
|
|
49
|
-
rows: string | number;
|
|
50
|
-
autoFocus: boolean;
|
|
51
|
-
autoHighlight: boolean;
|
|
52
|
-
autoHighlightOnFocus: boolean;
|
|
53
|
-
maxLength: string | number;
|
|
54
|
-
autoResize: boolean;
|
|
55
|
-
autoComplete: string;
|
|
56
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
57
|
-
'right-button'?: (props: {}) => any;
|
|
58
|
-
}>;
|
|
3
|
+
declare const _default: typeof __VLS_export;
|
|
59
4
|
export default _default;
|
|
60
5
|
interface Props {
|
|
61
6
|
/**
|
|
@@ -167,6 +112,62 @@ interface Props {
|
|
|
167
112
|
*/
|
|
168
113
|
autoComplete?: string;
|
|
169
114
|
}
|
|
115
|
+
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<Props, {
|
|
116
|
+
focus: () => void;
|
|
117
|
+
blur: () => void;
|
|
118
|
+
highlight: () => void;
|
|
119
|
+
getFocus: () => void;
|
|
120
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
121
|
+
click: (...args: any[]) => void;
|
|
122
|
+
blur: (...args: any[]) => void;
|
|
123
|
+
focus: (...args: any[]) => void;
|
|
124
|
+
"update:modelValue": (...args: any[]) => void;
|
|
125
|
+
"right-icon-click": (...args: any[]) => void;
|
|
126
|
+
"key-press": (...args: any[]) => void;
|
|
127
|
+
"key-down": (...args: any[]) => void;
|
|
128
|
+
"key-submit": (...args: any[]) => void;
|
|
129
|
+
"left-icon-click": (...args: any[]) => void;
|
|
130
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
131
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
132
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
133
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
134
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
135
|
+
"onRight-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
136
|
+
"onKey-press"?: ((...args: any[]) => any) | undefined;
|
|
137
|
+
"onKey-down"?: ((...args: any[]) => any) | undefined;
|
|
138
|
+
"onKey-submit"?: ((...args: any[]) => any) | undefined;
|
|
139
|
+
"onLeft-icon-click"?: ((...args: any[]) => any) | undefined;
|
|
140
|
+
}>, {
|
|
141
|
+
label: Nullable<string>;
|
|
142
|
+
name: string;
|
|
143
|
+
modelValue: Nullable<string | number | boolean>;
|
|
144
|
+
validate: Nullable<ValidationState>;
|
|
145
|
+
password: boolean;
|
|
146
|
+
inputEvents: Record<string, unknown>;
|
|
147
|
+
showValidateMessages: boolean;
|
|
148
|
+
helpText: Nullable<string>;
|
|
149
|
+
multiline: boolean;
|
|
150
|
+
submitOnEnter: boolean;
|
|
151
|
+
leftIcon: Nullable<IconNames>;
|
|
152
|
+
leftIconClickPointer: boolean;
|
|
153
|
+
rightIcon: Nullable<IconNames>;
|
|
154
|
+
rightIconClickPointer: boolean;
|
|
155
|
+
leftIconSpinning: boolean;
|
|
156
|
+
rightIconSpinning: boolean;
|
|
157
|
+
leftLabel: Nullable<string>;
|
|
158
|
+
rightLabel: Nullable<string>;
|
|
159
|
+
numeric: boolean;
|
|
160
|
+
integer: boolean;
|
|
161
|
+
rows: string | number;
|
|
162
|
+
autoFocus: boolean;
|
|
163
|
+
autoHighlight: boolean;
|
|
164
|
+
autoHighlightOnFocus: boolean;
|
|
165
|
+
maxLength: string | number;
|
|
166
|
+
autoResize: boolean;
|
|
167
|
+
autoComplete: string;
|
|
168
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
169
|
+
'right-button'?: (props: {}) => any;
|
|
170
|
+
}>;
|
|
170
171
|
type __VLS_WithSlots<T, S> = T & {
|
|
171
172
|
new (): {
|
|
172
173
|
$slots: S;
|
|
@@ -3,8 +3,9 @@ export interface Props {
|
|
|
3
3
|
validate?: Nullable<ValidationState>;
|
|
4
4
|
showValidateMessages?: boolean;
|
|
5
5
|
}
|
|
6
|
-
declare const
|
|
6
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
7
7
|
validate: Nullable<ValidationState>;
|
|
8
8
|
showValidateMessages: boolean;
|
|
9
9
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const _default: typeof __VLS_export;
|
|
10
11
|
export default _default;
|
|
@@ -16,10 +16,11 @@ interface Props {
|
|
|
16
16
|
*/
|
|
17
17
|
spinner?: boolean;
|
|
18
18
|
}
|
|
19
|
-
declare const
|
|
19
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
20
20
|
loading: boolean;
|
|
21
21
|
show: boolean;
|
|
22
22
|
fullscreen: boolean;
|
|
23
23
|
spinner: boolean;
|
|
24
24
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
declare const _default: typeof __VLS_export;
|
|
25
26
|
export default _default;
|
|
@@ -37,7 +37,7 @@ declare var __VLS_10: {}, __VLS_19: {}, __VLS_21: {}, __VLS_23: {
|
|
|
37
37
|
}, __VLS_25: {
|
|
38
38
|
submit: typeof submit;
|
|
39
39
|
close: typeof close;
|
|
40
|
-
},
|
|
40
|
+
}, __VLS_35: {
|
|
41
41
|
submit: typeof submit;
|
|
42
42
|
close: typeof close;
|
|
43
43
|
};
|
|
@@ -52,9 +52,9 @@ type __VLS_Slots = {} & {
|
|
|
52
52
|
} & {
|
|
53
53
|
'right-actions'?: (props: typeof __VLS_25) => any;
|
|
54
54
|
} & {
|
|
55
|
-
actions?: (props: typeof
|
|
55
|
+
actions?: (props: typeof __VLS_35) => any;
|
|
56
56
|
};
|
|
57
|
-
declare const
|
|
57
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
58
58
|
close: () => any;
|
|
59
59
|
submit: (data?: object | undefined) => any;
|
|
60
60
|
leave: () => any;
|
|
@@ -73,7 +73,8 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
73
73
|
cancelLabel: string;
|
|
74
74
|
scrollContent: boolean;
|
|
75
75
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
76
|
-
declare const
|
|
76
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
77
|
+
declare const _default: typeof __VLS_export;
|
|
77
78
|
export default _default;
|
|
78
79
|
type __VLS_WithSlots<T, S> = T & {
|
|
79
80
|
new (): {
|
|
@@ -37,7 +37,7 @@ export interface Props {
|
|
|
37
37
|
*/
|
|
38
38
|
maxValue?: Month;
|
|
39
39
|
}
|
|
40
|
-
declare const
|
|
40
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
41
41
|
"update:modelValue": (value: Month) => any;
|
|
42
42
|
clear: () => any;
|
|
43
43
|
"month-change": (value: number) => any;
|
|
@@ -56,4 +56,5 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
56
56
|
minValue: Month;
|
|
57
57
|
maxValue: Month;
|
|
58
58
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
59
|
+
declare const _default: typeof __VLS_export;
|
|
59
60
|
export default _default;
|
|
@@ -13,7 +13,7 @@ declare const hasNextStep: import("vue").ComputedRef<boolean>;
|
|
|
13
13
|
declare const hasPrevStep: import("vue").ComputedRef<boolean>;
|
|
14
14
|
declare function nextStep(callback?: () => void): void;
|
|
15
15
|
declare function prevStep(callback?: () => void): void;
|
|
16
|
-
declare const
|
|
16
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {
|
|
17
17
|
steps: typeof steps;
|
|
18
18
|
hasNextStep: typeof hasNextStep;
|
|
19
19
|
hasPrevStep: typeof hasPrevStep;
|
|
@@ -29,4 +29,5 @@ declare const _default: import("vue").DefineComponent<Props, {
|
|
|
29
29
|
completed: string[];
|
|
30
30
|
current: string;
|
|
31
31
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
32
|
+
declare const _default: typeof __VLS_export;
|
|
32
33
|
export default _default;
|
|
@@ -16,18 +16,19 @@ interface Props {
|
|
|
16
16
|
*/
|
|
17
17
|
teleport?: HTMLElement | null;
|
|
18
18
|
}
|
|
19
|
-
declare var
|
|
19
|
+
declare var __VLS_6: {}, __VLS_14: {};
|
|
20
20
|
type __VLS_Slots = {} & {
|
|
21
|
-
title?: (props: typeof
|
|
21
|
+
title?: (props: typeof __VLS_6) => any;
|
|
22
22
|
} & {
|
|
23
|
-
content?: (props: typeof
|
|
23
|
+
content?: (props: typeof __VLS_14) => any;
|
|
24
24
|
};
|
|
25
|
-
declare const
|
|
25
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
26
26
|
active: boolean;
|
|
27
27
|
completed: boolean;
|
|
28
28
|
teleport: HTMLElement | null;
|
|
29
29
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
|
-
declare const
|
|
30
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
31
|
+
declare const _default: typeof __VLS_export;
|
|
31
32
|
export default _default;
|
|
32
33
|
type __VLS_WithSlots<T, S> = T & {
|
|
33
34
|
new (): {
|
|
@@ -33,7 +33,7 @@ declare var __VLS_1: {
|
|
|
33
33
|
type __VLS_Slots = {} & {
|
|
34
34
|
pagination?: (props: typeof __VLS_1) => any;
|
|
35
35
|
};
|
|
36
|
-
declare const
|
|
36
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
37
37
|
"update:modelValue": (...args: any[]) => void;
|
|
38
38
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
39
39
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -41,7 +41,8 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
41
41
|
modelValue: number;
|
|
42
42
|
totalVisible: number;
|
|
43
43
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
44
|
-
declare const
|
|
44
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
45
|
+
declare const _default: typeof __VLS_export;
|
|
45
46
|
export default _default;
|
|
46
47
|
type __VLS_WithSlots<T, S> = T & {
|
|
47
48
|
new (): {
|
|
@@ -15,8 +15,9 @@ declare var __VLS_1: {
|
|
|
15
15
|
type __VLS_Slots = {} & {
|
|
16
16
|
override?: (props: typeof __VLS_1) => any;
|
|
17
17
|
};
|
|
18
|
-
declare const
|
|
19
|
-
declare const
|
|
18
|
+
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
20
|
+
declare const _default: typeof __VLS_export;
|
|
20
21
|
export default _default;
|
|
21
22
|
type __VLS_WithSlots<T, S> = T & {
|
|
22
23
|
new (): {
|
|
@@ -79,7 +79,7 @@ declare var __VLS_1: {
|
|
|
79
79
|
close: typeof closePopper;
|
|
80
80
|
toggle: typeof togglePopper;
|
|
81
81
|
};
|
|
82
|
-
},
|
|
82
|
+
}, __VLS_9: {
|
|
83
83
|
popper: {
|
|
84
84
|
isVisible: boolean;
|
|
85
85
|
open: typeof openPopper;
|
|
@@ -90,9 +90,9 @@ declare var __VLS_1: {
|
|
|
90
90
|
type __VLS_Slots = {} & {
|
|
91
91
|
trigger?: (props: typeof __VLS_1) => any;
|
|
92
92
|
} & {
|
|
93
|
-
content?: (props: typeof
|
|
93
|
+
content?: (props: typeof __VLS_9) => any;
|
|
94
94
|
};
|
|
95
|
-
declare const
|
|
95
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {
|
|
96
96
|
popper: import("vue").ComputedRef<{
|
|
97
97
|
isVisible: boolean;
|
|
98
98
|
open: typeof openPopper;
|
|
@@ -114,20 +114,21 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {
|
|
|
114
114
|
disabled: boolean;
|
|
115
115
|
fluid: boolean;
|
|
116
116
|
autoHide: boolean;
|
|
117
|
-
position: Positions;
|
|
118
|
-
offset: number;
|
|
119
117
|
state: Nullable<boolean>;
|
|
120
118
|
escToHide: boolean;
|
|
121
119
|
globalAutoHide: boolean;
|
|
122
120
|
closeFunction: Nullable<() => unknown>;
|
|
123
121
|
openOnMount: boolean;
|
|
122
|
+
offset: number;
|
|
124
123
|
margin: MarginsOffset;
|
|
125
124
|
direction: Directions;
|
|
125
|
+
position: Positions;
|
|
126
126
|
slideFrom: SlideFrom;
|
|
127
127
|
duration: number;
|
|
128
128
|
strategy: Strategy;
|
|
129
129
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
130
|
-
declare const
|
|
130
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
131
|
+
declare const _default: typeof __VLS_export;
|
|
131
132
|
export default _default;
|
|
132
133
|
type __VLS_WithSlots<T, S> = T & {
|
|
133
134
|
new (): {
|
|
@@ -38,7 +38,7 @@ declare var __VLS_1: {};
|
|
|
38
38
|
type __VLS_Slots = {} & {
|
|
39
39
|
label?: (props: typeof __VLS_1) => any;
|
|
40
40
|
};
|
|
41
|
-
declare const
|
|
41
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
42
42
|
"update:modelValue": (value: Value) => any;
|
|
43
43
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
44
44
|
"onUpdate:modelValue"?: ((value: Value) => any) | undefined;
|
|
@@ -47,11 +47,12 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
47
47
|
caption: string;
|
|
48
48
|
label: string;
|
|
49
49
|
disabled: boolean;
|
|
50
|
+
name: string;
|
|
50
51
|
modelValue: Nullable<Value>;
|
|
51
52
|
validate: Nullable<ValidationState>;
|
|
52
|
-
name: string;
|
|
53
53
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
54
|
-
declare const
|
|
54
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
55
|
+
declare const _default: typeof __VLS_export;
|
|
55
56
|
export default _default;
|
|
56
57
|
type __VLS_WithSlots<T, S> = T & {
|
|
57
58
|
new (): {
|
|
@@ -5,7 +5,7 @@ interface Props {
|
|
|
5
5
|
/**
|
|
6
6
|
* Returns some data to be rendered by the default scoped slot
|
|
7
7
|
*/
|
|
8
|
-
provider: object[] | (() => object[]) | Promise<object[]
|
|
8
|
+
provider: object[] | (() => object[]) | Promise<object[]> | (() => Promise<object[]>);
|
|
9
9
|
/**
|
|
10
10
|
* Defines if the loading state is fullscreen
|
|
11
11
|
*/
|
|
@@ -19,27 +19,28 @@ interface Props {
|
|
|
19
19
|
*/
|
|
20
20
|
watcher?: object;
|
|
21
21
|
}
|
|
22
|
-
declare var
|
|
22
|
+
declare var __VLS_6: {}, __VLS_8: {}, __VLS_10: {}, __VLS_12: {
|
|
23
23
|
item: RepeaterItem;
|
|
24
24
|
index: number;
|
|
25
|
-
},
|
|
25
|
+
}, __VLS_14: {};
|
|
26
26
|
type __VLS_Slots = {} & {
|
|
27
|
-
colgroup?: (props: typeof
|
|
27
|
+
colgroup?: (props: typeof __VLS_6) => any;
|
|
28
28
|
} & {
|
|
29
|
-
thead?: (props: typeof
|
|
29
|
+
thead?: (props: typeof __VLS_8) => any;
|
|
30
30
|
} & {
|
|
31
|
-
headers?: (props: typeof
|
|
31
|
+
headers?: (props: typeof __VLS_10) => any;
|
|
32
32
|
} & {
|
|
33
|
-
default?: (props: typeof
|
|
33
|
+
default?: (props: typeof __VLS_12) => any;
|
|
34
34
|
} & {
|
|
35
|
-
empty?: (props: typeof
|
|
35
|
+
empty?: (props: typeof __VLS_14) => any;
|
|
36
36
|
};
|
|
37
|
-
declare const
|
|
37
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
38
38
|
isLoaderFullscreen: boolean;
|
|
39
39
|
isLoaderSpinner: boolean;
|
|
40
40
|
watcher: object;
|
|
41
41
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
42
|
-
declare const
|
|
42
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
43
|
+
declare const _default: typeof __VLS_export;
|
|
43
44
|
export default _default;
|
|
44
45
|
type __VLS_WithSlots<T, S> = T & {
|
|
45
46
|
new (): {
|
|
@@ -23,7 +23,9 @@ interface State {
|
|
|
23
23
|
}
|
|
24
24
|
type CustomLabelFn = (option: OptionItem, label: string) => boolean;
|
|
25
25
|
type CustomOptionsValidatorFn = (option: ComplexOptionItem) => boolean;
|
|
26
|
-
declare const _default:
|
|
26
|
+
declare const _default: typeof __VLS_export;
|
|
27
|
+
export default _default;
|
|
28
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
27
29
|
/**
|
|
28
30
|
* Specify if no option can be selected
|
|
29
31
|
*/
|
|
@@ -295,7 +297,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
295
297
|
*/
|
|
296
298
|
customOptionsValidator: {
|
|
297
299
|
type: PropType<CustomOptionsValidatorFn>;
|
|
298
|
-
default: () =>
|
|
300
|
+
default: () => boolean;
|
|
299
301
|
};
|
|
300
302
|
/**
|
|
301
303
|
* The array of selected options
|
|
@@ -679,7 +681,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
679
681
|
*/
|
|
680
682
|
customOptionsValidator: {
|
|
681
683
|
type: PropType<CustomOptionsValidatorFn>;
|
|
682
|
-
default: () =>
|
|
684
|
+
default: () => boolean;
|
|
683
685
|
};
|
|
684
686
|
/**
|
|
685
687
|
* The array of selected options
|
|
@@ -723,11 +725,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
723
725
|
label: string;
|
|
724
726
|
disabled: boolean;
|
|
725
727
|
tabindex: number;
|
|
728
|
+
name: string;
|
|
726
729
|
modelValue: Nullable<OptionItem | Options>;
|
|
727
730
|
validate: ValidationState;
|
|
728
731
|
allowEmpty: boolean;
|
|
729
732
|
showValidateMessages: boolean;
|
|
730
|
-
name: string;
|
|
731
733
|
multiple: boolean;
|
|
732
734
|
helpText: string;
|
|
733
735
|
autocomplete: string;
|
|
@@ -879,4 +881,3 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
879
881
|
};
|
|
880
882
|
});
|
|
881
883
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
882
|
-
export default _default;
|
|
@@ -2,7 +2,9 @@ import { type PropType, type Ref } from 'vue';
|
|
|
2
2
|
import type { RouteLocation } from 'vue-router';
|
|
3
3
|
import type { Tab } from './types';
|
|
4
4
|
import type { BaseValidation } from '@vuelidate/core';
|
|
5
|
-
declare const _default:
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
|
7
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
8
|
name: {
|
|
7
9
|
required: true;
|
|
8
10
|
type: StringConstructor;
|
|
@@ -114,4 +116,3 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
114
116
|
panelId: string;
|
|
115
117
|
to: Optional<Ref<import("vue-router").RouteLocationGeneric, import("vue-router").RouteLocationGeneric>>;
|
|
116
118
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
117
|
-
export default _default;
|
|
@@ -3,7 +3,9 @@ interface State {
|
|
|
3
3
|
tabs: Tab[];
|
|
4
4
|
isIndicatorReady: boolean;
|
|
5
5
|
}
|
|
6
|
-
declare const _default:
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7
9
|
/**
|
|
8
10
|
* Define style of the tabs, are them divided or not
|
|
9
11
|
*/
|
|
@@ -144,7 +146,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
144
146
|
contentClass: string;
|
|
145
147
|
preselectedTab: number;
|
|
146
148
|
}, {}, {}, {
|
|
147
|
-
tooltip: import("vue").Directive<import("../../directives/r-tooltip/r-tooltip
|
|
149
|
+
tooltip: import("vue").Directive<import("../../directives/r-tooltip/r-tooltip").ToolTipTarget>;
|
|
148
150
|
}, string, () => {
|
|
149
151
|
addItemToTabsList: (tab: Tab) => void;
|
|
150
152
|
removeItemFromTabsList: (tabId: string) => void;
|
|
@@ -162,4 +164,3 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
162
164
|
}[]>;
|
|
163
165
|
tabsLazy: import("vue").ComputedRef<boolean>;
|
|
164
166
|
}, true, {}, any>;
|
|
165
|
-
export default _default;
|
|
@@ -12,8 +12,9 @@ type __VLS_Slots = {} & {
|
|
|
12
12
|
} & {
|
|
13
13
|
actions?: (props: typeof __VLS_11) => any;
|
|
14
14
|
};
|
|
15
|
-
declare const
|
|
16
|
-
declare const
|
|
15
|
+
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
17
|
+
declare const _default: typeof __VLS_export;
|
|
17
18
|
export default _default;
|
|
18
19
|
type __VLS_WithSlots<T, S> = T & {
|
|
19
20
|
new (): {
|
|
@@ -33,7 +33,7 @@ interface Props {
|
|
|
33
33
|
*/
|
|
34
34
|
container?: Nullable<HTMLElement>;
|
|
35
35
|
}
|
|
36
|
-
declare const
|
|
36
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
37
37
|
hide: (...args: any[]) => void;
|
|
38
38
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
39
39
|
onHide?: ((...args: any[]) => any) | undefined;
|
|
@@ -47,4 +47,5 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
47
47
|
visible: boolean;
|
|
48
48
|
container: Nullable<HTMLElement>;
|
|
49
49
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
50
|
+
declare const _default: typeof __VLS_export;
|
|
50
51
|
export default _default;
|
|
@@ -16,14 +16,15 @@ interface Props {
|
|
|
16
16
|
*/
|
|
17
17
|
disabled?: boolean;
|
|
18
18
|
}
|
|
19
|
-
declare const
|
|
19
|
+
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
20
20
|
"update:modelValue": (value: boolean) => any;
|
|
21
21
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
22
22
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
24
|
label: Nullable<string>;
|
|
25
25
|
disabled: boolean;
|
|
26
|
-
modelValue: boolean;
|
|
27
26
|
name: string;
|
|
27
|
+
modelValue: boolean;
|
|
28
28
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
29
|
+
declare const _default: typeof __VLS_export;
|
|
29
30
|
export default _default;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
2
3
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rebilly/revel",
|
|
3
|
-
"version": "12.47.
|
|
3
|
+
"version": "12.47.2",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist",
|
|
6
6
|
"CHANGELOG.md"
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
51
51
|
"@vue/babel-preset-app": "^5.0.8",
|
|
52
52
|
"@vue/shared": "3.2.47",
|
|
53
|
-
"@vue/tsconfig": "^0.
|
|
53
|
+
"@vue/tsconfig": "^0.9.1",
|
|
54
54
|
"@vuelidate/core": "^2.0.3",
|
|
55
55
|
"@vuepress/bundler-vite": "2.0.0-rc.23",
|
|
56
56
|
"@vuepress/client": "2.0.0-rc.23",
|
|
@@ -71,14 +71,14 @@
|
|
|
71
71
|
"prismjs": "^1.30.0",
|
|
72
72
|
"sass-embedded": "^1.89.2",
|
|
73
73
|
"style-dictionary": "^4.4.0",
|
|
74
|
-
"typescript": "^
|
|
74
|
+
"typescript": "^6.0.3",
|
|
75
75
|
"v-calendar": "npm:@angelblanco/v-calendar@^3.1.3",
|
|
76
76
|
"vite": "^6.4.2",
|
|
77
77
|
"vitest": "^4.1.0",
|
|
78
78
|
"vue": "3.5.22",
|
|
79
79
|
"vue-docgen-api": "^4.79.2",
|
|
80
80
|
"vue-router": "^4.4.0",
|
|
81
|
-
"vue-tsc": "^
|
|
81
|
+
"vue-tsc": "^3.3.6",
|
|
82
82
|
"vuepress": "2.0.0-rc.23"
|
|
83
83
|
},
|
|
84
84
|
"peerDependencies": {
|