@rebilly/revel 6.30.40 → 6.30.42
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-month-picker/r-month-picker.vue.d.ts +52 -131
- 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/dist/revel.mjs +988 -1068
- package/dist/revel.umd.js +4 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
## [6.30.
|
|
1
|
+
## [6.30.42](https://github.com/Rebilly/rebilly/compare/revel-v6.30.41...revel-v6.30.42) (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>;
|