@rebilly/revel 8.8.13 → 8.8.15
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 +6 -1
- package/README.md +2 -2
- package/dist/components/r-alert/r-alert.vue.d.ts +17 -15
- package/dist/components/r-avatar/r-avatar.vue.d.ts +11 -8
- package/dist/components/r-badge/r-badge.vue.d.ts +15 -12
- package/dist/components/r-button/r-button.vue.d.ts +25 -19
- package/dist/components/r-button-group/r-button-group.vue.d.ts +15 -12
- package/dist/components/r-checkbox/r-checkbox.vue.d.ts +15 -12
- package/dist/components/r-date-input/r-calendar.vue.d.ts +5 -5
- package/dist/components/r-date-input/r-date-input.vue.d.ts +7 -7
- package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +5 -5
- package/dist/components/r-date-input/r-range-calendar.vue.d.ts +5 -5
- package/dist/components/r-field-group/r-field-group.vue.d.ts +7 -4
- package/dist/components/r-file-upload/r-file-upload.vue.d.ts +18 -15
- package/dist/components/r-flex/r-flex-item.vue.d.ts +17 -14
- package/dist/components/r-flex/r-flex.vue.d.ts +15 -12
- package/dist/components/r-grid/r-grid-cell.vue.d.ts +16 -13
- package/dist/components/r-grid/r-grid.vue.d.ts +15 -12
- package/dist/components/r-icon/r-icon.vue.d.ts +5 -5
- package/dist/components/r-img/r-img.vue.d.ts +15 -12
- package/dist/components/r-input/r-input.vue.d.ts +13 -13
- package/dist/components/r-loader/r-loader.vue.d.ts +4 -4
- package/dist/components/r-modal/r-modal.vue.d.ts +34 -26
- package/dist/components/r-month-picker/r-month-picker.vue.d.ts +4 -4
- package/dist/components/r-pagination/r-pagination.vue.d.ts +17 -14
- package/dist/components/r-pagination-control/r-pagination-control.vue.d.ts +19 -16
- package/dist/components/r-popper/r-popper.vue.d.ts +33 -29
- package/dist/components/r-radio/r-radio.vue.d.ts +15 -12
- package/dist/components/r-repeater/r-repeater.vue.d.ts +26 -19
- package/dist/components/r-select/r-select.vue.d.ts +6 -6
- package/dist/components/r-tabs/r-tab.vue.d.ts +3 -2
- package/dist/components/r-tabs/r-tabs.vue.d.ts +1377 -5221
- package/dist/components/r-tile/r-tile.vue.d.ts +17 -9
- package/dist/components/r-toast/r-toast.vue.d.ts +4 -4
- package/dist/components/r-toggle/r-toggle.vue.d.ts +4 -4
- package/dist/index.d.ts +1 -1
- package/dist/revel.mjs +5 -2
- package/dist/revel.umd.js +1 -1
- package/package.json +12 -6
package/CHANGELOG.md
CHANGED
|
@@ -1 +1,6 @@
|
|
|
1
|
-
## [8.8.
|
|
1
|
+
## [8.8.15](https://github.com/Rebilly/rebilly/compare/revel-v8.8.14...revel-v8.8.15) (2025-05-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **recomm, revel:** Fix unclear error message when quickbook connection is cancelled manually ([#11732](https://github.com/Rebilly/rebilly/issues/11732)) ([f3b4d0c](https://github.com/Rebilly/rebilly/commit/f3b4d0cc4ce6854404def541af6d1a7849dc6cd4))
|
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ Revel is the design system used by designers and developers at Rebilly to build
|
|
|
37
37
|
### Install dependecies and start development
|
|
38
38
|
|
|
39
39
|
```
|
|
40
|
-
|
|
40
|
+
pnpm install && pnpm nx run revel:docs:dev
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
### Commands
|
|
@@ -62,7 +62,7 @@ Sometimes it is easier to test a complex configuration directly in a vue applica
|
|
|
62
62
|
For this, we provide a playground server which can be run with:
|
|
63
63
|
|
|
64
64
|
```
|
|
65
|
-
|
|
65
|
+
pnpm nx run revel:playground:dev
|
|
66
66
|
```
|
|
67
67
|
|
|
68
68
|
Note: You must copy the playground component file
|
|
@@ -17,7 +17,11 @@ interface Props {
|
|
|
17
17
|
*/
|
|
18
18
|
icon?: IconNames;
|
|
19
19
|
}
|
|
20
|
-
declare
|
|
20
|
+
declare var __VLS_7: {};
|
|
21
|
+
type __VLS_Slots = {} & {
|
|
22
|
+
content?: (props: typeof __VLS_7) => any;
|
|
23
|
+
};
|
|
24
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
21
25
|
title: undefined;
|
|
22
26
|
icon: undefined;
|
|
23
27
|
type: string;
|
|
@@ -29,27 +33,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
29
33
|
permanent: boolean;
|
|
30
34
|
}>>>, {
|
|
31
35
|
title: string;
|
|
32
|
-
icon:
|
|
33
|
-
type: "
|
|
36
|
+
icon: IconNames;
|
|
37
|
+
type: "default" | "negative" | "positive" | "info" | "warning";
|
|
34
38
|
permanent: boolean;
|
|
35
|
-
}>, {
|
|
36
|
-
content?(_: {}): any;
|
|
37
39
|
}>;
|
|
40
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
38
41
|
export default _default;
|
|
39
|
-
|
|
40
42
|
type __VLS_WithDefaults<P, D> = {
|
|
41
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
|
43
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
42
44
|
default: D[K];
|
|
43
45
|
}> : P[K];
|
|
44
46
|
};
|
|
45
|
-
type __VLS_Prettify<T> = {
|
|
46
|
-
[K in keyof T]: T[K];
|
|
47
|
-
} & {};
|
|
48
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
49
|
-
new (): {
|
|
50
|
-
$slots: S;
|
|
51
|
-
};
|
|
52
|
-
};
|
|
53
47
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
54
48
|
type __VLS_TypePropsToOption<T> = {
|
|
55
49
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -59,3 +53,11 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
59
53
|
required: true;
|
|
60
54
|
};
|
|
61
55
|
};
|
|
56
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
57
|
+
new (): {
|
|
58
|
+
$slots: S;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
type __VLS_PrettifyLocal<T> = {
|
|
62
|
+
[K in keyof T]: T[K];
|
|
63
|
+
} & {};
|
|
@@ -21,15 +21,13 @@ interface Props {
|
|
|
21
21
|
*/
|
|
22
22
|
icon?: IconNames;
|
|
23
23
|
}
|
|
24
|
-
declare
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
export default _default;
|
|
28
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
29
|
-
new (): {
|
|
30
|
-
$slots: S;
|
|
31
|
-
};
|
|
24
|
+
declare var __VLS_7: {};
|
|
25
|
+
type __VLS_Slots = {} & {
|
|
26
|
+
default?: (props: typeof __VLS_7) => any;
|
|
32
27
|
};
|
|
28
|
+
declare const __VLS_component: 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>>>, {}>;
|
|
29
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
30
|
+
export default _default;
|
|
33
31
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
34
32
|
type __VLS_TypePropsToOption<T> = {
|
|
35
33
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -39,3 +37,8 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
39
37
|
required: true;
|
|
40
38
|
};
|
|
41
39
|
};
|
|
40
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
41
|
+
new (): {
|
|
42
|
+
$slots: S;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
@@ -8,7 +8,11 @@ interface Props {
|
|
|
8
8
|
*/
|
|
9
9
|
close?: boolean;
|
|
10
10
|
}
|
|
11
|
-
declare
|
|
11
|
+
declare var __VLS_1: {};
|
|
12
|
+
type __VLS_Slots = {} & {
|
|
13
|
+
default?: (props: typeof __VLS_1) => any;
|
|
14
|
+
};
|
|
15
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
12
16
|
type: string;
|
|
13
17
|
close: boolean;
|
|
14
18
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -23,23 +27,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
23
27
|
}, {
|
|
24
28
|
close: boolean;
|
|
25
29
|
type: string;
|
|
26
|
-
}>, {
|
|
27
|
-
default?(_: {}): any;
|
|
28
30
|
}>;
|
|
31
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
29
32
|
export default _default;
|
|
30
33
|
type __VLS_WithDefaults<P, D> = {
|
|
31
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
|
34
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
32
35
|
default: D[K];
|
|
33
36
|
}> : P[K];
|
|
34
37
|
};
|
|
35
|
-
type __VLS_Prettify<T> = {
|
|
36
|
-
[K in keyof T]: T[K];
|
|
37
|
-
} & {};
|
|
38
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
39
|
-
new (): {
|
|
40
|
-
$slots: S;
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
38
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
44
39
|
type __VLS_TypePropsToOption<T> = {
|
|
45
40
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -49,3 +44,11 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
49
44
|
required: true;
|
|
50
45
|
};
|
|
51
46
|
};
|
|
47
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
48
|
+
new (): {
|
|
49
|
+
$slots: S;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
type __VLS_PrettifyLocal<T> = {
|
|
53
|
+
[K in keyof T]: T[K];
|
|
54
|
+
} & {};
|
|
@@ -49,7 +49,17 @@ interface Props {
|
|
|
49
49
|
*/
|
|
50
50
|
icon?: IconNames;
|
|
51
51
|
}
|
|
52
|
-
declare
|
|
52
|
+
declare var __VLS_7: {}, __VLS_9: {}, __VLS_23: {}, __VLS_25: {};
|
|
53
|
+
type __VLS_Slots = {} & {
|
|
54
|
+
default?: (props: typeof __VLS_7) => any;
|
|
55
|
+
} & {
|
|
56
|
+
default?: (props: typeof __VLS_9) => any;
|
|
57
|
+
} & {
|
|
58
|
+
default?: (props: typeof __VLS_23) => any;
|
|
59
|
+
} & {
|
|
60
|
+
default?: (props: typeof __VLS_25) => any;
|
|
61
|
+
};
|
|
62
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
53
63
|
size: string;
|
|
54
64
|
link: boolean;
|
|
55
65
|
href: undefined;
|
|
@@ -78,36 +88,24 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
78
88
|
}>>>, {
|
|
79
89
|
loading: boolean;
|
|
80
90
|
link: boolean;
|
|
81
|
-
icon:
|
|
82
|
-
type: "default" | "primary" | "danger" | "
|
|
91
|
+
icon: IconNames;
|
|
92
|
+
type: "default" | "primary" | "danger" | "positive" | "plain" | "unstyled" | "link";
|
|
83
93
|
size: "small" | "regular" | "large";
|
|
84
94
|
href: string;
|
|
85
95
|
disabled: boolean;
|
|
86
96
|
active: boolean;
|
|
87
97
|
fluid: boolean;
|
|
88
98
|
capitalizeFirstLetter: boolean;
|
|
89
|
-
iconLeft:
|
|
90
|
-
iconRight:
|
|
91
|
-
}>, {
|
|
92
|
-
default?(_: {}): any;
|
|
93
|
-
default?(_: {}): any;
|
|
94
|
-
default?(_: {}): any;
|
|
95
|
-
default?(_: {}): any;
|
|
99
|
+
iconLeft: IconNames;
|
|
100
|
+
iconRight: IconNames;
|
|
96
101
|
}>;
|
|
102
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
97
103
|
export default _default;
|
|
98
104
|
type __VLS_WithDefaults<P, D> = {
|
|
99
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
|
105
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
100
106
|
default: D[K];
|
|
101
107
|
}> : P[K];
|
|
102
108
|
};
|
|
103
|
-
type __VLS_Prettify<T> = {
|
|
104
|
-
[K in keyof T]: T[K];
|
|
105
|
-
} & {};
|
|
106
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
107
|
-
new (): {
|
|
108
|
-
$slots: S;
|
|
109
|
-
};
|
|
110
|
-
};
|
|
111
109
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
112
110
|
type __VLS_TypePropsToOption<T> = {
|
|
113
111
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -117,3 +115,11 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
117
115
|
required: true;
|
|
118
116
|
};
|
|
119
117
|
};
|
|
118
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
119
|
+
new (): {
|
|
120
|
+
$slots: S;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
type __VLS_PrettifyLocal<T> = {
|
|
124
|
+
[K in keyof T]: T[K];
|
|
125
|
+
} & {};
|
|
@@ -4,29 +4,24 @@ interface Props {
|
|
|
4
4
|
*/
|
|
5
5
|
fluid: boolean;
|
|
6
6
|
}
|
|
7
|
-
declare
|
|
7
|
+
declare var __VLS_1: {};
|
|
8
|
+
type __VLS_Slots = {} & {
|
|
9
|
+
default?: (props: typeof __VLS_1) => any;
|
|
10
|
+
};
|
|
11
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
8
12
|
fluid: boolean;
|
|
9
13
|
}>, {}, 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
14
|
fluid: boolean;
|
|
11
15
|
}>>>, {
|
|
12
16
|
fluid: boolean;
|
|
13
|
-
}>, {
|
|
14
|
-
default?(_: {}): any;
|
|
15
17
|
}>;
|
|
18
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
16
19
|
export default _default;
|
|
17
20
|
type __VLS_WithDefaults<P, D> = {
|
|
18
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
|
21
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
19
22
|
default: D[K];
|
|
20
23
|
}> : P[K];
|
|
21
24
|
};
|
|
22
|
-
type __VLS_Prettify<T> = {
|
|
23
|
-
[K in keyof T]: T[K];
|
|
24
|
-
} & {};
|
|
25
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
26
|
-
new (): {
|
|
27
|
-
$slots: S;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
25
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
31
26
|
type __VLS_TypePropsToOption<T> = {
|
|
32
27
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -36,3 +31,11 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
36
31
|
required: true;
|
|
37
32
|
};
|
|
38
33
|
};
|
|
34
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
35
|
+
new (): {
|
|
36
|
+
$slots: S;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
type __VLS_PrettifyLocal<T> = {
|
|
40
|
+
[K in keyof T]: T[K];
|
|
41
|
+
} & {};
|
|
@@ -35,7 +35,11 @@ interface Props {
|
|
|
35
35
|
*/
|
|
36
36
|
validate?: Nullable<ValidationState>;
|
|
37
37
|
}
|
|
38
|
-
declare
|
|
38
|
+
declare var __VLS_1: {};
|
|
39
|
+
type __VLS_Slots = {} & {
|
|
40
|
+
label?: (props: typeof __VLS_1) => any;
|
|
41
|
+
};
|
|
42
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
39
43
|
label: string;
|
|
40
44
|
id: () => string;
|
|
41
45
|
caption: undefined;
|
|
@@ -66,23 +70,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
66
70
|
modelValue: string | number | boolean | string[];
|
|
67
71
|
fuzzy: boolean;
|
|
68
72
|
validate: Nullable<ValidationState>;
|
|
69
|
-
}>, {
|
|
70
|
-
label?(_: {}): any;
|
|
71
73
|
}>;
|
|
74
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
72
75
|
export default _default;
|
|
73
76
|
type __VLS_WithDefaults<P, D> = {
|
|
74
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
|
77
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
75
78
|
default: D[K];
|
|
76
79
|
}> : P[K];
|
|
77
80
|
};
|
|
78
|
-
type __VLS_Prettify<T> = {
|
|
79
|
-
[K in keyof T]: T[K];
|
|
80
|
-
} & {};
|
|
81
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
82
|
-
new (): {
|
|
83
|
-
$slots: S;
|
|
84
|
-
};
|
|
85
|
-
};
|
|
86
81
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
87
82
|
type __VLS_TypePropsToOption<T> = {
|
|
88
83
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -92,3 +87,11 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
92
87
|
required: true;
|
|
93
88
|
};
|
|
94
89
|
};
|
|
90
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
91
|
+
new (): {
|
|
92
|
+
$slots: S;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
type __VLS_PrettifyLocal<T> = {
|
|
96
|
+
[K in keyof T]: T[K];
|
|
97
|
+
} & {};
|
|
@@ -46,20 +46,17 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
46
46
|
}, {
|
|
47
47
|
type: string;
|
|
48
48
|
disabled: boolean;
|
|
49
|
-
modelValue:
|
|
49
|
+
modelValue: Date | string;
|
|
50
50
|
timezone: string;
|
|
51
51
|
modelConfig: object;
|
|
52
52
|
masks: object;
|
|
53
53
|
}>;
|
|
54
54
|
export default _default;
|
|
55
55
|
type __VLS_WithDefaults<P, D> = {
|
|
56
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
|
56
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
57
57
|
default: D[K];
|
|
58
58
|
}> : P[K];
|
|
59
59
|
};
|
|
60
|
-
type __VLS_Prettify<T> = {
|
|
61
|
-
[K in keyof T]: T[K];
|
|
62
|
-
} & {};
|
|
63
60
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
64
61
|
type __VLS_TypePropsToOption<T> = {
|
|
65
62
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -69,3 +66,6 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
69
66
|
required: true;
|
|
70
67
|
};
|
|
71
68
|
};
|
|
69
|
+
type __VLS_PrettifyLocal<T> = {
|
|
70
|
+
[K in keyof T]: T[K];
|
|
71
|
+
} & {};
|
|
@@ -137,7 +137,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
137
137
|
label: string;
|
|
138
138
|
type: string;
|
|
139
139
|
disabled: boolean;
|
|
140
|
-
modelValue:
|
|
140
|
+
modelValue: Date | object | string;
|
|
141
141
|
validate: Nullable<ValidationState>;
|
|
142
142
|
placement: string;
|
|
143
143
|
timezone: string;
|
|
@@ -145,8 +145,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
145
145
|
is24hr: boolean;
|
|
146
146
|
hideTimeHeader: boolean;
|
|
147
147
|
locale: string;
|
|
148
|
-
minDate:
|
|
149
|
-
maxDate:
|
|
148
|
+
minDate: Date | string | object;
|
|
149
|
+
maxDate: Date | string | object;
|
|
150
150
|
placeholder: string;
|
|
151
151
|
timePicker: boolean;
|
|
152
152
|
showValidateMessages: boolean;
|
|
@@ -154,13 +154,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
154
154
|
}>;
|
|
155
155
|
export default _default;
|
|
156
156
|
type __VLS_WithDefaults<P, D> = {
|
|
157
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
|
157
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
158
158
|
default: D[K];
|
|
159
159
|
}> : P[K];
|
|
160
160
|
};
|
|
161
|
-
type __VLS_Prettify<T> = {
|
|
162
|
-
[K in keyof T]: T[K];
|
|
163
|
-
} & {};
|
|
164
161
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
165
162
|
type __VLS_TypePropsToOption<T> = {
|
|
166
163
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -170,3 +167,6 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
170
167
|
required: true;
|
|
171
168
|
};
|
|
172
169
|
};
|
|
170
|
+
type __VLS_PrettifyLocal<T> = {
|
|
171
|
+
[K in keyof T]: T[K];
|
|
172
|
+
} & {};
|
|
@@ -57,7 +57,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
57
57
|
"onPreset-select"?: ((value: DateRange) => any) | undefined;
|
|
58
58
|
}, {
|
|
59
59
|
disabled: boolean;
|
|
60
|
-
modelValue:
|
|
60
|
+
modelValue: DateRange | string;
|
|
61
61
|
timezone: string;
|
|
62
62
|
is24hr: boolean;
|
|
63
63
|
placeholder: string;
|
|
@@ -67,13 +67,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
67
67
|
}>;
|
|
68
68
|
export default _default;
|
|
69
69
|
type __VLS_WithDefaults<P, D> = {
|
|
70
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
|
70
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
71
71
|
default: D[K];
|
|
72
72
|
}> : P[K];
|
|
73
73
|
};
|
|
74
|
-
type __VLS_Prettify<T> = {
|
|
75
|
-
[K in keyof T]: T[K];
|
|
76
|
-
} & {};
|
|
77
74
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
78
75
|
type __VLS_TypePropsToOption<T> = {
|
|
79
76
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -83,3 +80,6 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
83
80
|
required: true;
|
|
84
81
|
};
|
|
85
82
|
};
|
|
83
|
+
type __VLS_PrettifyLocal<T> = {
|
|
84
|
+
[K in keyof T]: T[K];
|
|
85
|
+
} & {};
|
|
@@ -48,7 +48,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
48
48
|
"onUpdate:modelValue"?: ((value: string | Date | DateRange<moment.Moment | Date>) => any) | undefined;
|
|
49
49
|
}, {
|
|
50
50
|
disabled: boolean;
|
|
51
|
-
modelValue:
|
|
51
|
+
modelValue: Date | string | DateRange;
|
|
52
52
|
timezone: string;
|
|
53
53
|
is24hr: boolean;
|
|
54
54
|
placeholder: string;
|
|
@@ -56,13 +56,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
56
56
|
}>;
|
|
57
57
|
export default _default;
|
|
58
58
|
type __VLS_WithDefaults<P, D> = {
|
|
59
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
|
59
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
60
60
|
default: D[K];
|
|
61
61
|
}> : P[K];
|
|
62
62
|
};
|
|
63
|
-
type __VLS_Prettify<T> = {
|
|
64
|
-
[K in keyof T]: T[K];
|
|
65
|
-
} & {};
|
|
66
63
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
67
64
|
type __VLS_TypePropsToOption<T> = {
|
|
68
65
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -72,3 +69,6 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
72
69
|
required: true;
|
|
73
70
|
};
|
|
74
71
|
};
|
|
72
|
+
type __VLS_PrettifyLocal<T> = {
|
|
73
|
+
[K in keyof T]: T[K];
|
|
74
|
+
} & {};
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
declare var __VLS_1: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_1) => any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
6
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
4
7
|
export default _default;
|
|
5
|
-
type
|
|
8
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
6
9
|
new (): {
|
|
7
10
|
$slots: S;
|
|
8
11
|
};
|
|
@@ -14,7 +14,14 @@ interface Props {
|
|
|
14
14
|
}
|
|
15
15
|
declare function openFileBrowser(): void;
|
|
16
16
|
declare function setFocus(): void;
|
|
17
|
-
declare
|
|
17
|
+
declare var __VLS_1: {
|
|
18
|
+
openFileBrowser: typeof openFileBrowser;
|
|
19
|
+
setFocus: typeof setFocus;
|
|
20
|
+
};
|
|
21
|
+
type __VLS_Slots = {} & {
|
|
22
|
+
default?: (props: typeof __VLS_1) => any;
|
|
23
|
+
};
|
|
24
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
18
25
|
multiple: boolean;
|
|
19
26
|
accept: string;
|
|
20
27
|
disabled: boolean;
|
|
@@ -34,26 +41,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
34
41
|
disabled: boolean;
|
|
35
42
|
multiple: boolean;
|
|
36
43
|
accept: string;
|
|
37
|
-
}>, {
|
|
38
|
-
default?(_: {
|
|
39
|
-
openFileBrowser: typeof openFileBrowser;
|
|
40
|
-
setFocus: typeof setFocus;
|
|
41
|
-
}): any;
|
|
42
44
|
}>;
|
|
45
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
43
46
|
export default _default;
|
|
44
47
|
type __VLS_WithDefaults<P, D> = {
|
|
45
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
|
48
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
46
49
|
default: D[K];
|
|
47
50
|
}> : P[K];
|
|
48
51
|
};
|
|
49
|
-
type __VLS_Prettify<T> = {
|
|
50
|
-
[K in keyof T]: T[K];
|
|
51
|
-
} & {};
|
|
52
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
53
|
-
new (): {
|
|
54
|
-
$slots: S;
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
52
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
58
53
|
type __VLS_TypePropsToOption<T> = {
|
|
59
54
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -63,3 +58,11 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
63
58
|
required: true;
|
|
64
59
|
};
|
|
65
60
|
};
|
|
61
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
62
|
+
new (): {
|
|
63
|
+
$slots: S;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
type __VLS_PrettifyLocal<T> = {
|
|
67
|
+
[K in keyof T]: T[K];
|
|
68
|
+
} & {};
|
|
@@ -21,7 +21,11 @@ export interface Props {
|
|
|
21
21
|
*/
|
|
22
22
|
flexNone?: boolean;
|
|
23
23
|
}
|
|
24
|
-
declare
|
|
24
|
+
declare var __VLS_1: {};
|
|
25
|
+
type __VLS_Slots = {} & {
|
|
26
|
+
default?: (props: typeof __VLS_1) => any;
|
|
27
|
+
};
|
|
28
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
25
29
|
span: string;
|
|
26
30
|
alignSelf: null;
|
|
27
31
|
wrap: null;
|
|
@@ -34,28 +38,19 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
34
38
|
offset: null;
|
|
35
39
|
flexNone: boolean;
|
|
36
40
|
}>>>, {
|
|
37
|
-
span: "fill" | "auto"
|
|
38
|
-
offset: Nullable<"auto"
|
|
41
|
+
span: FlexSize | "fill" | "auto";
|
|
42
|
+
offset: Nullable<FlexSize | "auto">;
|
|
39
43
|
wrap: Nullable<boolean>;
|
|
40
44
|
alignSelf: Nullable<Distribution>;
|
|
41
45
|
flexNone: boolean;
|
|
42
|
-
}>, {
|
|
43
|
-
default?(_: {}): any;
|
|
44
46
|
}>;
|
|
47
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
45
48
|
export default _default;
|
|
46
49
|
type __VLS_WithDefaults<P, D> = {
|
|
47
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
|
50
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
48
51
|
default: D[K];
|
|
49
52
|
}> : P[K];
|
|
50
53
|
};
|
|
51
|
-
type __VLS_Prettify<T> = {
|
|
52
|
-
[K in keyof T]: T[K];
|
|
53
|
-
} & {};
|
|
54
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
55
|
-
new (): {
|
|
56
|
-
$slots: S;
|
|
57
|
-
};
|
|
58
|
-
};
|
|
59
54
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
60
55
|
type __VLS_TypePropsToOption<T> = {
|
|
61
56
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -65,3 +60,11 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
65
60
|
required: true;
|
|
66
61
|
};
|
|
67
62
|
};
|
|
63
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
64
|
+
new (): {
|
|
65
|
+
$slots: S;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
type __VLS_PrettifyLocal<T> = {
|
|
69
|
+
[K in keyof T]: T[K];
|
|
70
|
+
} & {};
|