@rebilly/revel 6.30.40 → 6.30.41
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 +12 -11
- package/dist/components/r-avatar/r-avatar.vue.d.ts +7 -7
- package/dist/components/r-badge/r-badge.vue.d.ts +11 -11
- package/dist/components/r-button/r-button.vue.d.ts +14 -11
- package/dist/components/r-button-group/r-button-group.vue.d.ts +11 -11
- package/dist/components/r-checkbox/r-checkbox.vue.d.ts +11 -11
- package/dist/components/r-date-input/r-calendar.vue.d.ts +11 -11
- package/dist/components/r-date-input/r-date-input.vue.d.ts +11 -11
- package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +11 -11
- package/dist/components/r-date-input/r-range-calendar.vue.d.ts +11 -11
- package/dist/components/r-file-upload/r-file-upload.vue.d.ts +11 -11
- package/dist/components/r-grid/columnTypes/index.d.ts +12 -12
- package/dist/components/r-grid/r-grid.vue.d.ts +2 -6
- package/dist/components/r-icon/r-icon.vue.d.ts +11 -11
- package/dist/components/r-img/r-img.vue.d.ts +11 -11
- package/dist/components/r-input/r-input.vue.d.ts +24 -24
- package/dist/components/r-loader/r-loader.vue.d.ts +11 -11
- package/dist/components/r-modal/r-modal.vue.d.ts +11 -11
- package/dist/components/r-pagination/r-pagination.vue.d.ts +11 -11
- package/dist/components/r-popper/r-popper.vue.d.ts +11 -11
- package/dist/components/r-radio/r-radio.vue.d.ts +11 -11
- package/dist/components/r-repeater/r-repeater.vue.d.ts +11 -11
- package/dist/components/r-toast/r-toast.vue.d.ts +11 -11
- package/dist/components/r-toggle/r-toggle.vue.d.ts +11 -11
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
## [6.30.
|
|
1
|
+
## [6.30.41](https://github.com/Rebilly/rebilly/compare/revel-v6.30.40...revel-v6.30.41) (2024-08-12)
|
|
@@ -17,12 +17,12 @@ interface Props {
|
|
|
17
17
|
*/
|
|
18
18
|
icon?: IconNames;
|
|
19
19
|
}
|
|
20
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<
|
|
20
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
21
21
|
title: undefined;
|
|
22
22
|
icon: undefined;
|
|
23
23
|
type: string;
|
|
24
24
|
permanent: boolean;
|
|
25
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
25
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
26
26
|
title: undefined;
|
|
27
27
|
icon: undefined;
|
|
28
28
|
type: string;
|
|
@@ -36,15 +36,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
36
36
|
content?(_: {}): any;
|
|
37
37
|
}>;
|
|
38
38
|
export default _default;
|
|
39
|
-
|
|
40
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
41
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
42
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
43
|
-
} : {
|
|
44
|
-
type: import('vue').PropType<T[K]>;
|
|
45
|
-
required: true;
|
|
46
|
-
};
|
|
47
|
-
};
|
|
39
|
+
|
|
48
40
|
type __VLS_WithDefaults<P, D> = {
|
|
49
41
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
50
42
|
default: D[K];
|
|
@@ -58,3 +50,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
58
50
|
$slots: S;
|
|
59
51
|
};
|
|
60
52
|
};
|
|
53
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
54
|
+
type __VLS_TypePropsToOption<T> = {
|
|
55
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
56
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
57
|
+
} : {
|
|
58
|
+
type: import('vue').PropType<T[K]>;
|
|
59
|
+
required: true;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
@@ -21,12 +21,17 @@ interface Props {
|
|
|
21
21
|
*/
|
|
22
22
|
icon?: IconNames;
|
|
23
23
|
}
|
|
24
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<
|
|
24
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<Props>>>, {}>, {
|
|
25
25
|
default?(_: {}): any;
|
|
26
26
|
}>;
|
|
27
27
|
export default _default;
|
|
28
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
29
|
+
new (): {
|
|
30
|
+
$slots: S;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
28
33
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
29
|
-
type
|
|
34
|
+
type __VLS_TypePropsToOption<T> = {
|
|
30
35
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
31
36
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
32
37
|
} : {
|
|
@@ -34,8 +39,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
34
39
|
required: true;
|
|
35
40
|
};
|
|
36
41
|
};
|
|
37
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
38
|
-
new (): {
|
|
39
|
-
$slots: S;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
@@ -8,13 +8,13 @@ interface Props {
|
|
|
8
8
|
*/
|
|
9
9
|
close?: boolean;
|
|
10
10
|
}
|
|
11
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<
|
|
11
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
12
12
|
type: string;
|
|
13
13
|
close: boolean;
|
|
14
14
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
15
|
click: () => void;
|
|
16
16
|
close: () => void;
|
|
17
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
17
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
18
18
|
type: string;
|
|
19
19
|
close: boolean;
|
|
20
20
|
}>>> & {
|
|
@@ -27,15 +27,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
27
27
|
default?(_: {}): any;
|
|
28
28
|
}>;
|
|
29
29
|
export default _default;
|
|
30
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
31
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
32
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
33
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
34
|
-
} : {
|
|
35
|
-
type: import('vue').PropType<T[K]>;
|
|
36
|
-
required: true;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
30
|
type __VLS_WithDefaults<P, D> = {
|
|
40
31
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
41
32
|
default: D[K];
|
|
@@ -49,3 +40,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
49
40
|
$slots: S;
|
|
50
41
|
};
|
|
51
42
|
};
|
|
43
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
44
|
+
type __VLS_TypePropsToOption<T> = {
|
|
45
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
46
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
47
|
+
} : {
|
|
48
|
+
type: import('vue').PropType<T[K]>;
|
|
49
|
+
required: true;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
@@ -49,7 +49,7 @@ interface Props {
|
|
|
49
49
|
*/
|
|
50
50
|
icon?: IconNames;
|
|
51
51
|
}
|
|
52
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<
|
|
52
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
53
53
|
size: string;
|
|
54
54
|
link: boolean;
|
|
55
55
|
href: undefined;
|
|
@@ -62,7 +62,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
62
62
|
iconLeft: undefined;
|
|
63
63
|
iconRight: undefined;
|
|
64
64
|
icon: undefined;
|
|
65
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
65
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
66
66
|
size: string;
|
|
67
67
|
link: boolean;
|
|
68
68
|
href: undefined;
|
|
@@ -90,17 +90,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
90
90
|
iconRight: "fingerprint" | "dashboard" | "lists" | "automation" | "customers" | "orders" | "transactions" | "guides" | "settings" | "alerts" | "stream" | "search" | "filter" | "collapse-segments" | "resize-columns" | "segments" | "lock" | "caret-up" | "caret-down" | "caret-down-s" | "caret-left" | "caret-right" | "arrow-up" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up-l" | "arrow-down-l" | "arrow-left-l" | "arrow-right-l" | "close" | "close-s" | "logout" | "actions" | "circle" | "eye" | "eye-closed" | "burger" | "help" | "info" | "dash-l" | "company" | "website" | "email" | "external-link" | "trash" | "bank" | "map-marker" | "credit-card" | "checkout" | "check-s" | "custom-fields" | "calendar" | "columns" | "blocklists" | "webhooks" | "sticky-note" | "clip" | "loading" | "product" | "api-key" | "coupon" | "average" | "payments" | "tag" | "clone" | "copy" | "edit" | "edit-s" | "stop" | "unlock" | "event" | "invoices" | "rules" | "users" | "sharp" | "at" | "file" | "download" | "export" | "data-exports" | "shipping" | "plus" | "drag" | "reset" | "drag-move" | "world" | "integrations" | "id" | "phone" | "batch" | "merge" | "placeholders" | "caret-double-left" | "caret-double-right" | "heart" | "checkbox-checkmark" | "radio-checkmark" | "star" | "star-empty" | "report-match" | "emulate" | "billing-portal" | "app-store" | "kyc" | "cake" | "briefcase" | "tag-untag" | "risk-score" | "list" | "notifications" | "one-column" | "rebilly-logo" | "two-columns" | "meter" | "reports" | "allowlists" | "collapse-layout" | "rebilly-icon" | "sun" | "moon" | "upload" | "camera";
|
|
91
91
|
}>, {
|
|
92
92
|
default?(_: {}): any;
|
|
93
|
+
default?(_: {}): any;
|
|
94
|
+
default?(_: {}): any;
|
|
95
|
+
default?(_: {}): any;
|
|
93
96
|
}>;
|
|
94
97
|
export default _default;
|
|
95
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
96
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
97
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
98
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
99
|
-
} : {
|
|
100
|
-
type: import('vue').PropType<T[K]>;
|
|
101
|
-
required: true;
|
|
102
|
-
};
|
|
103
|
-
};
|
|
104
98
|
type __VLS_WithDefaults<P, D> = {
|
|
105
99
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
106
100
|
default: D[K];
|
|
@@ -114,3 +108,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
114
108
|
$slots: S;
|
|
115
109
|
};
|
|
116
110
|
};
|
|
111
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
112
|
+
type __VLS_TypePropsToOption<T> = {
|
|
113
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
114
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
115
|
+
} : {
|
|
116
|
+
type: import('vue').PropType<T[K]>;
|
|
117
|
+
required: true;
|
|
118
|
+
};
|
|
119
|
+
};
|
|
@@ -4,9 +4,9 @@ interface Props {
|
|
|
4
4
|
*/
|
|
5
5
|
fluid: boolean;
|
|
6
6
|
}
|
|
7
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<
|
|
7
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
8
8
|
fluid: boolean;
|
|
9
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
9
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
10
10
|
fluid: boolean;
|
|
11
11
|
}>>>, {
|
|
12
12
|
fluid: boolean;
|
|
@@ -14,15 +14,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
14
14
|
default?(_: {}): any;
|
|
15
15
|
}>;
|
|
16
16
|
export default _default;
|
|
17
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
18
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
19
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
20
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
21
|
-
} : {
|
|
22
|
-
type: import('vue').PropType<T[K]>;
|
|
23
|
-
required: true;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
17
|
type __VLS_WithDefaults<P, D> = {
|
|
27
18
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
28
19
|
default: D[K];
|
|
@@ -36,3 +27,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
36
27
|
$slots: S;
|
|
37
28
|
};
|
|
38
29
|
};
|
|
30
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
31
|
+
type __VLS_TypePropsToOption<T> = {
|
|
32
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
33
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
34
|
+
} : {
|
|
35
|
+
type: import('vue').PropType<T[K]>;
|
|
36
|
+
required: true;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
@@ -35,7 +35,7 @@ interface Props {
|
|
|
35
35
|
*/
|
|
36
36
|
validate?: ValidationState;
|
|
37
37
|
}
|
|
38
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<
|
|
38
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
39
39
|
label: string;
|
|
40
40
|
id: () => string;
|
|
41
41
|
caption: undefined;
|
|
@@ -46,7 +46,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
46
46
|
validate: undefined;
|
|
47
47
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
48
48
|
"update:modelValue": (value: string | number | boolean | string[]) => void;
|
|
49
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
49
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
50
50
|
label: string;
|
|
51
51
|
id: () => string;
|
|
52
52
|
caption: undefined;
|
|
@@ -70,15 +70,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
70
70
|
label?(_: {}): any;
|
|
71
71
|
}>;
|
|
72
72
|
export default _default;
|
|
73
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
74
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
75
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
76
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
77
|
-
} : {
|
|
78
|
-
type: import('vue').PropType<T[K]>;
|
|
79
|
-
required: true;
|
|
80
|
-
};
|
|
81
|
-
};
|
|
82
73
|
type __VLS_WithDefaults<P, D> = {
|
|
83
74
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
84
75
|
default: D[K];
|
|
@@ -92,3 +83,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
92
83
|
$slots: S;
|
|
93
84
|
};
|
|
94
85
|
};
|
|
86
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
87
|
+
type __VLS_TypePropsToOption<T> = {
|
|
88
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
89
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
90
|
+
} : {
|
|
91
|
+
type: import('vue').PropType<T[K]>;
|
|
92
|
+
required: true;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
@@ -25,7 +25,7 @@ interface Props {
|
|
|
25
25
|
*/
|
|
26
26
|
masks?: object;
|
|
27
27
|
}
|
|
28
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
28
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
29
29
|
modelValue: string;
|
|
30
30
|
disabled: boolean;
|
|
31
31
|
timezone: string;
|
|
@@ -34,7 +34,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
34
34
|
masks: () => {};
|
|
35
35
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
36
36
|
"update:modelValue": (value: string | Date) => void;
|
|
37
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
37
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
38
38
|
modelValue: string;
|
|
39
39
|
disabled: boolean;
|
|
40
40
|
timezone: string;
|
|
@@ -52,15 +52,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
52
52
|
masks: object;
|
|
53
53
|
}>;
|
|
54
54
|
export default _default;
|
|
55
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
56
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
57
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
58
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
59
|
-
} : {
|
|
60
|
-
type: import('vue').PropType<T[K]>;
|
|
61
|
-
required: true;
|
|
62
|
-
};
|
|
63
|
-
};
|
|
64
55
|
type __VLS_WithDefaults<P, D> = {
|
|
65
56
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
66
57
|
default: D[K];
|
|
@@ -69,3 +60,12 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
69
60
|
type __VLS_Prettify<T> = {
|
|
70
61
|
[K in keyof T]: T[K];
|
|
71
62
|
} & {};
|
|
63
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
64
|
+
type __VLS_TypePropsToOption<T> = {
|
|
65
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
66
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
67
|
+
} : {
|
|
68
|
+
type: import('vue').PropType<T[K]>;
|
|
69
|
+
required: true;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
@@ -76,7 +76,7 @@ interface Props {
|
|
|
76
76
|
*/
|
|
77
77
|
masks?: object;
|
|
78
78
|
}
|
|
79
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
79
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
80
80
|
label: string;
|
|
81
81
|
id: () => string;
|
|
82
82
|
caption: undefined;
|
|
@@ -97,7 +97,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
97
97
|
masks: () => {};
|
|
98
98
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
99
99
|
"update:modelValue": (value: string | Date | DateRange) => void;
|
|
100
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
100
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
101
101
|
label: string;
|
|
102
102
|
id: () => string;
|
|
103
103
|
caption: undefined;
|
|
@@ -139,15 +139,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
139
139
|
availableDates: object;
|
|
140
140
|
}>;
|
|
141
141
|
export default _default;
|
|
142
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
143
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
144
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
145
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
146
|
-
} : {
|
|
147
|
-
type: import('vue').PropType<T[K]>;
|
|
148
|
-
required: true;
|
|
149
|
-
};
|
|
150
|
-
};
|
|
151
142
|
type __VLS_WithDefaults<P, D> = {
|
|
152
143
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
153
144
|
default: D[K];
|
|
@@ -156,3 +147,12 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
156
147
|
type __VLS_Prettify<T> = {
|
|
157
148
|
[K in keyof T]: T[K];
|
|
158
149
|
} & {};
|
|
150
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
151
|
+
type __VLS_TypePropsToOption<T> = {
|
|
152
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
153
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
154
|
+
} : {
|
|
155
|
+
type: import('vue').PropType<T[K]>;
|
|
156
|
+
required: true;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
@@ -33,7 +33,7 @@ interface Props {
|
|
|
33
33
|
*/
|
|
34
34
|
timezone?: string;
|
|
35
35
|
}
|
|
36
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
36
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
37
37
|
modelValue: undefined;
|
|
38
38
|
calendarToggle: () => () => undefined;
|
|
39
39
|
disabled: boolean;
|
|
@@ -44,7 +44,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
44
44
|
timezone: string;
|
|
45
45
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
46
46
|
"preset-select": (value: DateRange) => void;
|
|
47
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
47
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
48
48
|
modelValue: undefined;
|
|
49
49
|
calendarToggle: () => () => undefined;
|
|
50
50
|
disabled: boolean;
|
|
@@ -66,15 +66,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
66
66
|
showPresets: boolean;
|
|
67
67
|
}>;
|
|
68
68
|
export default _default;
|
|
69
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
70
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
71
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
72
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
73
|
-
} : {
|
|
74
|
-
type: import('vue').PropType<T[K]>;
|
|
75
|
-
required: true;
|
|
76
|
-
};
|
|
77
|
-
};
|
|
78
69
|
type __VLS_WithDefaults<P, D> = {
|
|
79
70
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
80
71
|
default: D[K];
|
|
@@ -83,3 +74,12 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
83
74
|
type __VLS_Prettify<T> = {
|
|
84
75
|
[K in keyof T]: T[K];
|
|
85
76
|
} & {};
|
|
77
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
78
|
+
type __VLS_TypePropsToOption<T> = {
|
|
79
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
80
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
81
|
+
} : {
|
|
82
|
+
type: import('vue').PropType<T[K]>;
|
|
83
|
+
required: true;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
@@ -28,7 +28,7 @@ interface Props {
|
|
|
28
28
|
*/
|
|
29
29
|
placeholder?: string;
|
|
30
30
|
}
|
|
31
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
31
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
32
32
|
modelValue: () => Date;
|
|
33
33
|
disabled: boolean;
|
|
34
34
|
is24hr: boolean;
|
|
@@ -37,7 +37,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
37
37
|
placeholder: string;
|
|
38
38
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
39
39
|
"update:modelValue": (value: string | Date | DateRange<moment.Moment | Date>) => void;
|
|
40
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
40
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
41
41
|
modelValue: () => Date;
|
|
42
42
|
disabled: boolean;
|
|
43
43
|
is24hr: boolean;
|
|
@@ -55,15 +55,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
55
55
|
timePicker: boolean;
|
|
56
56
|
}>;
|
|
57
57
|
export default _default;
|
|
58
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
59
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
60
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
61
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
62
|
-
} : {
|
|
63
|
-
type: import('vue').PropType<T[K]>;
|
|
64
|
-
required: true;
|
|
65
|
-
};
|
|
66
|
-
};
|
|
67
58
|
type __VLS_WithDefaults<P, D> = {
|
|
68
59
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
69
60
|
default: D[K];
|
|
@@ -72,3 +63,12 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
72
63
|
type __VLS_Prettify<T> = {
|
|
73
64
|
[K in keyof T]: T[K];
|
|
74
65
|
} & {};
|
|
66
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
67
|
+
type __VLS_TypePropsToOption<T> = {
|
|
68
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
69
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
70
|
+
} : {
|
|
71
|
+
type: import('vue').PropType<T[K]>;
|
|
72
|
+
required: true;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
@@ -14,7 +14,7 @@ interface Props {
|
|
|
14
14
|
}
|
|
15
15
|
declare function openFileBrowser(): void;
|
|
16
16
|
declare function setFocus(): void;
|
|
17
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<
|
|
17
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
18
18
|
multiple: boolean;
|
|
19
19
|
accept: string;
|
|
20
20
|
disabled: boolean;
|
|
@@ -22,7 +22,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
22
22
|
input: (arg: FileList) => void;
|
|
23
23
|
close: () => void;
|
|
24
24
|
cancel: () => void;
|
|
25
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
25
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
26
26
|
multiple: boolean;
|
|
27
27
|
accept: string;
|
|
28
28
|
disabled: boolean;
|
|
@@ -41,15 +41,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
41
41
|
}): any;
|
|
42
42
|
}>;
|
|
43
43
|
export default _default;
|
|
44
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
45
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
46
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
47
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
48
|
-
} : {
|
|
49
|
-
type: import('vue').PropType<T[K]>;
|
|
50
|
-
required: true;
|
|
51
|
-
};
|
|
52
|
-
};
|
|
53
44
|
type __VLS_WithDefaults<P, D> = {
|
|
54
45
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
55
46
|
default: D[K];
|
|
@@ -63,3 +54,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
63
54
|
$slots: S;
|
|
64
55
|
};
|
|
65
56
|
};
|
|
57
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
58
|
+
type __VLS_TypePropsToOption<T> = {
|
|
59
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
60
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
61
|
+
} : {
|
|
62
|
+
type: import('vue').PropType<T[K]>;
|
|
63
|
+
required: true;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
@@ -9,7 +9,7 @@ export declare const ColumnTypes: {
|
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
11
|
column: {
|
|
12
|
-
type: import("vue").PropType<import("./types").BadgeColumn>;
|
|
12
|
+
type: import("vue").PropType<import("./types.js").BadgeColumn>;
|
|
13
13
|
required: true;
|
|
14
14
|
};
|
|
15
15
|
}, unknown, unknown, {}, {
|
|
@@ -24,13 +24,13 @@ export declare const ColumnTypes: {
|
|
|
24
24
|
required: true;
|
|
25
25
|
};
|
|
26
26
|
column: {
|
|
27
|
-
type: import("vue").PropType<import("./types").BadgeColumn>;
|
|
27
|
+
type: import("vue").PropType<import("./types.js").BadgeColumn>;
|
|
28
28
|
required: true;
|
|
29
29
|
};
|
|
30
30
|
}>>, {}>;
|
|
31
31
|
button: import("vue").DefineComponent<{
|
|
32
32
|
column: {
|
|
33
|
-
type: import("vue").PropType<import("./types").ButtonColumn>;
|
|
33
|
+
type: import("vue").PropType<import("./types.js").ButtonColumn>;
|
|
34
34
|
required: true;
|
|
35
35
|
};
|
|
36
36
|
row: {
|
|
@@ -42,12 +42,12 @@ export declare const ColumnTypes: {
|
|
|
42
42
|
default: null;
|
|
43
43
|
};
|
|
44
44
|
}, unknown, unknown, {
|
|
45
|
-
buttons(): import("./types").ButtonOptions[];
|
|
45
|
+
buttons(): import("./types.js").ButtonOptions[];
|
|
46
46
|
}, {
|
|
47
|
-
buttonOptions(button: import("./types").ButtonOptions): import("./button.vue").ButtonColumnRenderOptions;
|
|
47
|
+
buttonOptions(button: import("./types.js").ButtonOptions): import("./button.vue").ButtonColumnRenderOptions;
|
|
48
48
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
49
49
|
column: {
|
|
50
|
-
type: import("vue").PropType<import("./types").ButtonColumn>;
|
|
50
|
+
type: import("vue").PropType<import("./types.js").ButtonColumn>;
|
|
51
51
|
required: true;
|
|
52
52
|
};
|
|
53
53
|
row: {
|
|
@@ -63,7 +63,7 @@ export declare const ColumnTypes: {
|
|
|
63
63
|
}>;
|
|
64
64
|
text: import("vue").DefineComponent<{
|
|
65
65
|
column: {
|
|
66
|
-
type: import("vue").PropType<import("./types").GridColumn>;
|
|
66
|
+
type: import("vue").PropType<import("./types.js").GridColumn>;
|
|
67
67
|
required: true;
|
|
68
68
|
};
|
|
69
69
|
value: {
|
|
@@ -72,7 +72,7 @@ export declare const ColumnTypes: {
|
|
|
72
72
|
};
|
|
73
73
|
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
74
74
|
column: {
|
|
75
|
-
type: import("vue").PropType<import("./types").GridColumn>;
|
|
75
|
+
type: import("vue").PropType<import("./types.js").GridColumn>;
|
|
76
76
|
required: true;
|
|
77
77
|
};
|
|
78
78
|
value: {
|
|
@@ -82,7 +82,7 @@ export declare const ColumnTypes: {
|
|
|
82
82
|
}>>, {}>;
|
|
83
83
|
date: import("vue").DefineComponent<{
|
|
84
84
|
column: {
|
|
85
|
-
type: import("vue").PropType<import("./types").DateColumn>;
|
|
85
|
+
type: import("vue").PropType<import("./types.js").DateColumn>;
|
|
86
86
|
required: true;
|
|
87
87
|
};
|
|
88
88
|
value: {
|
|
@@ -94,7 +94,7 @@ export declare const ColumnTypes: {
|
|
|
94
94
|
title(): string;
|
|
95
95
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
96
96
|
column: {
|
|
97
|
-
type: import("vue").PropType<import("./types").DateColumn>;
|
|
97
|
+
type: import("vue").PropType<import("./types.js").DateColumn>;
|
|
98
98
|
required: true;
|
|
99
99
|
};
|
|
100
100
|
value: {
|
|
@@ -108,7 +108,7 @@ export declare const ColumnTypes: {
|
|
|
108
108
|
required: true;
|
|
109
109
|
};
|
|
110
110
|
column: {
|
|
111
|
-
type: import("vue").PropType<import("./types").NumericColumn>;
|
|
111
|
+
type: import("vue").PropType<import("./types.js").NumericColumn>;
|
|
112
112
|
required: true;
|
|
113
113
|
};
|
|
114
114
|
}, unknown, unknown, {
|
|
@@ -119,7 +119,7 @@ export declare const ColumnTypes: {
|
|
|
119
119
|
required: true;
|
|
120
120
|
};
|
|
121
121
|
column: {
|
|
122
|
-
type: import("vue").PropType<import("./types").NumericColumn>;
|
|
122
|
+
type: import("vue").PropType<import("./types.js").NumericColumn>;
|
|
123
123
|
required: true;
|
|
124
124
|
};
|
|
125
125
|
}>>, {}>;
|
|
@@ -69,9 +69,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
69
69
|
column: {
|
|
70
70
|
type: PropType<import("./columnTypes/types").BadgeColumn>;
|
|
71
71
|
required: true;
|
|
72
|
-
};
|
|
73
|
-
* Defines the property, which changes will trigger the fetching of data
|
|
74
|
-
*/
|
|
72
|
+
};
|
|
75
73
|
}, unknown, unknown, {}, {
|
|
76
74
|
getBadgeType(value: string): string;
|
|
77
75
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -86,9 +84,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
86
84
|
column: {
|
|
87
85
|
type: PropType<import("./columnTypes/types").BadgeColumn>;
|
|
88
86
|
required: true;
|
|
89
|
-
};
|
|
90
|
-
* Defines the property, which changes will trigger the fetching of data
|
|
91
|
-
*/
|
|
87
|
+
};
|
|
92
88
|
}>>, {}> | import("vue").DefineComponent<{
|
|
93
89
|
column: {
|
|
94
90
|
type: PropType<import("./columnTypes/types").ButtonColumn>;
|
|
@@ -14,12 +14,12 @@ interface Props {
|
|
|
14
14
|
*/
|
|
15
15
|
stopPropagation?: boolean;
|
|
16
16
|
}
|
|
17
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
17
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
18
18
|
color: string;
|
|
19
19
|
stopPropagation: boolean;
|
|
20
20
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
21
|
click: () => void;
|
|
22
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
22
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
23
23
|
color: string;
|
|
24
24
|
stopPropagation: boolean;
|
|
25
25
|
}>>> & {
|
|
@@ -29,15 +29,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
29
29
|
stopPropagation: boolean;
|
|
30
30
|
}>;
|
|
31
31
|
export default _default;
|
|
32
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
33
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
34
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
35
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
36
|
-
} : {
|
|
37
|
-
type: import('vue').PropType<T[K]>;
|
|
38
|
-
required: true;
|
|
39
|
-
};
|
|
40
|
-
};
|
|
41
32
|
type __VLS_WithDefaults<P, D> = {
|
|
42
33
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
43
34
|
default: D[K];
|
|
@@ -46,3 +37,12 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
46
37
|
type __VLS_Prettify<T> = {
|
|
47
38
|
[K in keyof T]: T[K];
|
|
48
39
|
} & {};
|
|
40
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
41
|
+
type __VLS_TypePropsToOption<T> = {
|
|
42
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
43
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
44
|
+
} : {
|
|
45
|
+
type: import('vue').PropType<T[K]>;
|
|
46
|
+
required: true;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
@@ -20,7 +20,7 @@ interface Props {
|
|
|
20
20
|
*/
|
|
21
21
|
height?: string;
|
|
22
22
|
}
|
|
23
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<
|
|
23
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
24
24
|
alt: string;
|
|
25
25
|
lazy: boolean;
|
|
26
26
|
width: string;
|
|
@@ -28,7 +28,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
28
28
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
29
29
|
onload: () => void;
|
|
30
30
|
onerror: () => void;
|
|
31
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
31
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
32
32
|
alt: string;
|
|
33
33
|
lazy: boolean;
|
|
34
34
|
width: string;
|
|
@@ -45,15 +45,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
45
45
|
loading?(_: {}): any;
|
|
46
46
|
}>;
|
|
47
47
|
export default _default;
|
|
48
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
49
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
50
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
51
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
52
|
-
} : {
|
|
53
|
-
type: import('vue').PropType<T[K]>;
|
|
54
|
-
required: true;
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
48
|
type __VLS_WithDefaults<P, D> = {
|
|
58
49
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
59
50
|
default: D[K];
|
|
@@ -67,3 +58,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
67
58
|
$slots: S;
|
|
68
59
|
};
|
|
69
60
|
};
|
|
61
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
62
|
+
type __VLS_TypePropsToOption<T> = {
|
|
63
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
64
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
65
|
+
} : {
|
|
66
|
+
type: import('vue').PropType<T[K]>;
|
|
67
|
+
required: true;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { IconNames } from '../r-icon/r-icon-sprites';
|
|
2
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
3
3
|
label: null;
|
|
4
4
|
modelValue: null;
|
|
5
5
|
validate: null;
|
|
@@ -40,7 +40,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
40
40
|
"key-submit": (...args: any[]) => void;
|
|
41
41
|
"left-icon-click": (...args: any[]) => void;
|
|
42
42
|
"right-icon-click": (...args: any[]) => void;
|
|
43
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
43
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
44
44
|
label: null;
|
|
45
45
|
modelValue: null;
|
|
46
46
|
validate: null;
|
|
@@ -106,28 +106,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
106
106
|
"right-button"?(_: {}): any;
|
|
107
107
|
}>;
|
|
108
108
|
export default _default;
|
|
109
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
110
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
111
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
112
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
113
|
-
} : {
|
|
114
|
-
type: import('vue').PropType<T[K]>;
|
|
115
|
-
required: true;
|
|
116
|
-
};
|
|
117
|
-
};
|
|
118
|
-
type __VLS_WithDefaults<P, D> = {
|
|
119
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
120
|
-
default: D[K];
|
|
121
|
-
}> : P[K];
|
|
122
|
-
};
|
|
123
|
-
type __VLS_Prettify<T> = {
|
|
124
|
-
[K in keyof T]: T[K];
|
|
125
|
-
} & {};
|
|
126
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
127
|
-
new (): {
|
|
128
|
-
$slots: S;
|
|
129
|
-
};
|
|
130
|
-
};
|
|
131
109
|
interface Props {
|
|
132
110
|
/**
|
|
133
111
|
* Label for input
|
|
@@ -230,3 +208,25 @@ interface Props {
|
|
|
230
208
|
*/
|
|
231
209
|
autoComplete?: string;
|
|
232
210
|
}
|
|
211
|
+
type __VLS_WithDefaults<P, D> = {
|
|
212
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
213
|
+
default: D[K];
|
|
214
|
+
}> : P[K];
|
|
215
|
+
};
|
|
216
|
+
type __VLS_Prettify<T> = {
|
|
217
|
+
[K in keyof T]: T[K];
|
|
218
|
+
} & {};
|
|
219
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
220
|
+
new (): {
|
|
221
|
+
$slots: S;
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
225
|
+
type __VLS_TypePropsToOption<T> = {
|
|
226
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
227
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
228
|
+
} : {
|
|
229
|
+
type: import('vue').PropType<T[K]>;
|
|
230
|
+
required: true;
|
|
231
|
+
};
|
|
232
|
+
};
|
|
@@ -16,12 +16,12 @@ interface Props {
|
|
|
16
16
|
*/
|
|
17
17
|
spinner?: boolean;
|
|
18
18
|
}
|
|
19
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
19
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
20
20
|
show: boolean;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
fullscreen: boolean;
|
|
23
23
|
spinner: boolean;
|
|
24
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
24
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
25
25
|
show: boolean;
|
|
26
26
|
loading: boolean;
|
|
27
27
|
fullscreen: boolean;
|
|
@@ -33,15 +33,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
33
33
|
spinner: boolean;
|
|
34
34
|
}>;
|
|
35
35
|
export default _default;
|
|
36
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
37
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
38
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
39
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
40
|
-
} : {
|
|
41
|
-
type: import('vue').PropType<T[K]>;
|
|
42
|
-
required: true;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
36
|
type __VLS_WithDefaults<P, D> = {
|
|
46
37
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
47
38
|
default: D[K];
|
|
@@ -50,3 +41,12 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
50
41
|
type __VLS_Prettify<T> = {
|
|
51
42
|
[K in keyof T]: T[K];
|
|
52
43
|
} & {};
|
|
44
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
45
|
+
type __VLS_TypePropsToOption<T> = {
|
|
46
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
47
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
48
|
+
} : {
|
|
49
|
+
type: import('vue').PropType<T[K]>;
|
|
50
|
+
required: true;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
@@ -31,7 +31,7 @@ interface Props {
|
|
|
31
31
|
}
|
|
32
32
|
declare function submit(data?: object): void;
|
|
33
33
|
declare function close(): void;
|
|
34
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<
|
|
34
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
35
35
|
show: boolean;
|
|
36
36
|
title: null;
|
|
37
37
|
cancelLabel: string;
|
|
@@ -44,7 +44,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
44
44
|
submit: (data?: object | undefined) => void;
|
|
45
45
|
leave: () => void;
|
|
46
46
|
enter: () => void;
|
|
47
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
47
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
48
48
|
show: boolean;
|
|
49
49
|
title: null;
|
|
50
50
|
cancelLabel: string;
|
|
@@ -83,15 +83,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
83
83
|
}): any;
|
|
84
84
|
}>;
|
|
85
85
|
export default _default;
|
|
86
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
87
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
88
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
89
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
90
|
-
} : {
|
|
91
|
-
type: import('vue').PropType<T[K]>;
|
|
92
|
-
required: true;
|
|
93
|
-
};
|
|
94
|
-
};
|
|
95
86
|
type __VLS_WithDefaults<P, D> = {
|
|
96
87
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
97
88
|
default: D[K];
|
|
@@ -105,3 +96,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
105
96
|
$slots: S;
|
|
106
97
|
};
|
|
107
98
|
};
|
|
99
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
100
|
+
type __VLS_TypePropsToOption<T> = {
|
|
101
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
102
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
103
|
+
} : {
|
|
104
|
+
type: import('vue').PropType<T[K]>;
|
|
105
|
+
required: true;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
@@ -27,12 +27,12 @@ interface Props {
|
|
|
27
27
|
*/
|
|
28
28
|
modelValue?: number;
|
|
29
29
|
}
|
|
30
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<
|
|
30
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
31
31
|
totalVisible: number;
|
|
32
32
|
modelValue: number;
|
|
33
33
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
34
34
|
"update:modelValue": (...args: any[]) => void;
|
|
35
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
35
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
36
36
|
totalVisible: number;
|
|
37
37
|
modelValue: number;
|
|
38
38
|
}>>> & {
|
|
@@ -46,15 +46,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
46
46
|
}): any;
|
|
47
47
|
}>;
|
|
48
48
|
export default _default;
|
|
49
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
50
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
51
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
52
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
53
|
-
} : {
|
|
54
|
-
type: import('vue').PropType<T[K]>;
|
|
55
|
-
required: true;
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
49
|
type __VLS_WithDefaults<P, D> = {
|
|
59
50
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
60
51
|
default: D[K];
|
|
@@ -68,3 +59,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
68
59
|
$slots: S;
|
|
69
60
|
};
|
|
70
61
|
};
|
|
62
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
63
|
+
type __VLS_TypePropsToOption<T> = {
|
|
64
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
65
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
66
|
+
} : {
|
|
67
|
+
type: import('vue').PropType<T[K]>;
|
|
68
|
+
required: true;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
@@ -68,7 +68,7 @@ interface PopperAction {
|
|
|
68
68
|
declare function togglePopper(payload?: PopperAction): void;
|
|
69
69
|
declare function closePopper(payload?: PopperAction): Promise<void>;
|
|
70
70
|
declare function openPopper(payload?: PopperAction): void;
|
|
71
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<
|
|
71
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
72
72
|
state: null;
|
|
73
73
|
escToHide: boolean;
|
|
74
74
|
autoHide: boolean;
|
|
@@ -95,7 +95,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
95
95
|
setActivePopper: (...args: any[]) => void;
|
|
96
96
|
"toggle-on": (...args: any[]) => void;
|
|
97
97
|
"toggle-off": (...args: any[]) => void;
|
|
98
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
98
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
99
99
|
state: null;
|
|
100
100
|
escToHide: boolean;
|
|
101
101
|
autoHide: boolean;
|
|
@@ -149,15 +149,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
149
149
|
}): any;
|
|
150
150
|
}>;
|
|
151
151
|
export default _default;
|
|
152
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
153
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
154
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
155
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
156
|
-
} : {
|
|
157
|
-
type: import('vue').PropType<T[K]>;
|
|
158
|
-
required: true;
|
|
159
|
-
};
|
|
160
|
-
};
|
|
161
152
|
type __VLS_WithDefaults<P, D> = {
|
|
162
153
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
163
154
|
default: D[K];
|
|
@@ -171,3 +162,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
171
162
|
$slots: S;
|
|
172
163
|
};
|
|
173
164
|
};
|
|
165
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
166
|
+
type __VLS_TypePropsToOption<T> = {
|
|
167
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
168
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
169
|
+
} : {
|
|
170
|
+
type: import('vue').PropType<T[K]>;
|
|
171
|
+
required: true;
|
|
172
|
+
};
|
|
173
|
+
};
|
|
@@ -34,7 +34,7 @@ interface Props {
|
|
|
34
34
|
*/
|
|
35
35
|
modelValue: Nullable<Value>;
|
|
36
36
|
}
|
|
37
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<
|
|
37
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
38
38
|
label: string;
|
|
39
39
|
id: () => string;
|
|
40
40
|
name: () => string;
|
|
@@ -44,7 +44,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
44
44
|
modelValue: null;
|
|
45
45
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
46
46
|
"update:modelValue": (value: Value) => void;
|
|
47
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
47
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
48
48
|
label: string;
|
|
49
49
|
id: () => string;
|
|
50
50
|
name: () => string;
|
|
@@ -66,15 +66,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
66
66
|
label?(_: {}): any;
|
|
67
67
|
}>;
|
|
68
68
|
export default _default;
|
|
69
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
70
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
71
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
72
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
73
|
-
} : {
|
|
74
|
-
type: import('vue').PropType<T[K]>;
|
|
75
|
-
required: true;
|
|
76
|
-
};
|
|
77
|
-
};
|
|
78
69
|
type __VLS_WithDefaults<P, D> = {
|
|
79
70
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
80
71
|
default: D[K];
|
|
@@ -88,3 +79,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
88
79
|
$slots: S;
|
|
89
80
|
};
|
|
90
81
|
};
|
|
82
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
83
|
+
type __VLS_TypePropsToOption<T> = {
|
|
84
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
85
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
86
|
+
} : {
|
|
87
|
+
type: import('vue').PropType<T[K]>;
|
|
88
|
+
required: true;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
@@ -19,11 +19,11 @@ interface Props {
|
|
|
19
19
|
*/
|
|
20
20
|
watcher?: object;
|
|
21
21
|
}
|
|
22
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<
|
|
22
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
23
23
|
isLoaderFullscreen: boolean;
|
|
24
24
|
isLoaderSpinner: boolean;
|
|
25
25
|
watcher: () => {};
|
|
26
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
26
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
27
27
|
isLoaderFullscreen: boolean;
|
|
28
28
|
isLoaderSpinner: boolean;
|
|
29
29
|
watcher: () => {};
|
|
@@ -42,15 +42,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
42
42
|
empty?(_: {}): any;
|
|
43
43
|
}>;
|
|
44
44
|
export default _default;
|
|
45
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
46
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
47
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
48
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
49
|
-
} : {
|
|
50
|
-
type: import('vue').PropType<T[K]>;
|
|
51
|
-
required: true;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
45
|
type __VLS_WithDefaults<P, D> = {
|
|
55
46
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
56
47
|
default: D[K];
|
|
@@ -64,3 +55,12 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
64
55
|
$slots: S;
|
|
65
56
|
};
|
|
66
57
|
};
|
|
58
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
59
|
+
type __VLS_TypePropsToOption<T> = {
|
|
60
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
61
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
62
|
+
} : {
|
|
63
|
+
type: import('vue').PropType<T[K]>;
|
|
64
|
+
required: true;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
@@ -33,7 +33,7 @@ interface Props {
|
|
|
33
33
|
*/
|
|
34
34
|
container?: Nullable<HTMLElement>;
|
|
35
35
|
}
|
|
36
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
36
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
37
37
|
type: string;
|
|
38
38
|
title: string;
|
|
39
39
|
message: string;
|
|
@@ -44,7 +44,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
44
44
|
container: null;
|
|
45
45
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
46
46
|
hide: (...args: any[]) => void;
|
|
47
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
47
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
48
48
|
type: string;
|
|
49
49
|
title: string;
|
|
50
50
|
message: string;
|
|
@@ -66,15 +66,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
66
66
|
container: Nullable<HTMLElement>;
|
|
67
67
|
}>;
|
|
68
68
|
export default _default;
|
|
69
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
70
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
71
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
72
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
73
|
-
} : {
|
|
74
|
-
type: import('vue').PropType<T[K]>;
|
|
75
|
-
required: true;
|
|
76
|
-
};
|
|
77
|
-
};
|
|
78
69
|
type __VLS_WithDefaults<P, D> = {
|
|
79
70
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
80
71
|
default: D[K];
|
|
@@ -83,3 +74,12 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
83
74
|
type __VLS_Prettify<T> = {
|
|
84
75
|
[K in keyof T]: T[K];
|
|
85
76
|
} & {};
|
|
77
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
78
|
+
type __VLS_TypePropsToOption<T> = {
|
|
79
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
80
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
81
|
+
} : {
|
|
82
|
+
type: import('vue').PropType<T[K]>;
|
|
83
|
+
required: true;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
@@ -16,14 +16,14 @@ interface Props {
|
|
|
16
16
|
*/
|
|
17
17
|
disabled?: boolean;
|
|
18
18
|
}
|
|
19
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
19
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
20
20
|
label: null;
|
|
21
21
|
name: () => string;
|
|
22
22
|
modelValue: boolean;
|
|
23
23
|
disabled: boolean;
|
|
24
24
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
25
|
"update:modelValue": (value: boolean) => void;
|
|
26
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<
|
|
26
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
27
27
|
label: null;
|
|
28
28
|
name: () => string;
|
|
29
29
|
modelValue: boolean;
|
|
@@ -37,15 +37,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
37
37
|
name: string;
|
|
38
38
|
}>;
|
|
39
39
|
export default _default;
|
|
40
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
41
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
42
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
43
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
44
|
-
} : {
|
|
45
|
-
type: import('vue').PropType<T[K]>;
|
|
46
|
-
required: true;
|
|
47
|
-
};
|
|
48
|
-
};
|
|
49
40
|
type __VLS_WithDefaults<P, D> = {
|
|
50
41
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
51
42
|
default: D[K];
|
|
@@ -54,3 +45,12 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
54
45
|
type __VLS_Prettify<T> = {
|
|
55
46
|
[K in keyof T]: T[K];
|
|
56
47
|
} & {};
|
|
48
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
49
|
+
type __VLS_TypePropsToOption<T> = {
|
|
50
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
51
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
52
|
+
} : {
|
|
53
|
+
type: import('vue').PropType<T[K]>;
|
|
54
|
+
required: true;
|
|
55
|
+
};
|
|
56
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rebilly/revel",
|
|
3
|
-
"version": "6.30.
|
|
3
|
+
"version": "6.30.41",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist",
|
|
6
6
|
"CHANGELOG.md"
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"style-dictionary": "^4.0.0",
|
|
73
73
|
"typescript": "^5.4.5",
|
|
74
74
|
"v-calendar": "^3.1.2",
|
|
75
|
-
"vite": "^5.
|
|
75
|
+
"vite": "^5.4.0",
|
|
76
76
|
"vite-plugin-vue-docgen": "^0.3.4",
|
|
77
77
|
"vitest": "^1.6.0",
|
|
78
78
|
"vue": "3.2.47",
|