@rebilly/revel 6.30.25 → 6.30.27
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 -6
- package/dist/components/r-checkbox/r-checkbox.vue.d.ts +57 -111
- package/dist/components/r-date-input/r-calendar.vue.d.ts +46 -146
- package/dist/components/r-date-input/r-date-input.vue.d.ts +85 -239
- package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +58 -146
- package/dist/components/r-date-input/r-range-calendar.vue.d.ts +45 -168
- package/dist/revel.mjs +3993 -4394
- package/dist/revel.umd.js +4 -4
- package/package.json +1 -1
|
@@ -1,197 +1,74 @@
|
|
|
1
|
-
import { type PropType } from 'vue';
|
|
2
1
|
import moment from 'moment';
|
|
3
2
|
import 'v-calendar/style.css';
|
|
4
3
|
import type { DateRange } from './types';
|
|
5
|
-
|
|
6
|
-
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
interface Props {
|
|
7
5
|
/**
|
|
8
6
|
* Used to specify selected dates
|
|
9
7
|
* @model
|
|
10
8
|
*/
|
|
11
|
-
modelValue
|
|
12
|
-
type: PropType<string | Date | DateRange<moment.Moment | Date>>;
|
|
13
|
-
default: () => Date;
|
|
14
|
-
};
|
|
15
|
-
/**
|
|
16
|
-
* Disable
|
|
17
|
-
*/
|
|
18
|
-
disabled: {
|
|
19
|
-
type: BooleanConstructor;
|
|
20
|
-
default: boolean;
|
|
21
|
-
};
|
|
22
|
-
/**
|
|
23
|
-
* Validation result sent by Vuelidate
|
|
24
|
-
*/
|
|
25
|
-
validate: {
|
|
26
|
-
type: PropType<ValidationState>;
|
|
27
|
-
default: null;
|
|
28
|
-
};
|
|
29
|
-
/**
|
|
30
|
-
* Define if the time format is 24H
|
|
31
|
-
*/
|
|
32
|
-
is24hr: {
|
|
33
|
-
type: BooleanConstructor;
|
|
34
|
-
default: boolean;
|
|
35
|
-
};
|
|
36
|
-
/**
|
|
37
|
-
* Time picker
|
|
38
|
-
*/
|
|
39
|
-
timePicker: {
|
|
40
|
-
type: BooleanConstructor;
|
|
41
|
-
default: boolean;
|
|
42
|
-
};
|
|
43
|
-
/**
|
|
44
|
-
* Time zone
|
|
45
|
-
*/
|
|
46
|
-
timezone: {
|
|
47
|
-
type: StringConstructor;
|
|
48
|
-
default: string;
|
|
49
|
-
};
|
|
50
|
-
/**
|
|
51
|
-
* Placeholder
|
|
52
|
-
*/
|
|
53
|
-
placeholder: {
|
|
54
|
-
type: StringConstructor;
|
|
55
|
-
default: string;
|
|
56
|
-
};
|
|
57
|
-
}, {
|
|
58
|
-
themeStyles: {
|
|
59
|
-
wrapper: {
|
|
60
|
-
background: string;
|
|
61
|
-
borderRadius: string;
|
|
62
|
-
boxShadow: string;
|
|
63
|
-
border: string;
|
|
64
|
-
fontFamily: string;
|
|
65
|
-
};
|
|
66
|
-
header: {
|
|
67
|
-
padding: string;
|
|
68
|
-
};
|
|
69
|
-
headerTitle: {
|
|
70
|
-
fontSize: string;
|
|
71
|
-
lineHeight: string;
|
|
72
|
-
fontFamily: string;
|
|
73
|
-
fontWeight: string;
|
|
74
|
-
color: string;
|
|
75
|
-
};
|
|
76
|
-
weekdays: {
|
|
77
|
-
fontSize: string;
|
|
78
|
-
lineHeight: string;
|
|
79
|
-
color: string;
|
|
80
|
-
fontWeight: string;
|
|
81
|
-
};
|
|
82
|
-
dayCell: {
|
|
83
|
-
backgroundColor: string;
|
|
84
|
-
}; /**
|
|
85
|
-
* Used to specify selected dates
|
|
86
|
-
* @model
|
|
87
|
-
*/
|
|
88
|
-
dayContent: {
|
|
89
|
-
fontSize: string;
|
|
90
|
-
lineHeight: string;
|
|
91
|
-
color: string;
|
|
92
|
-
width: string;
|
|
93
|
-
height: string;
|
|
94
|
-
};
|
|
95
|
-
dayContentHover: {
|
|
96
|
-
backgroundColor: string;
|
|
97
|
-
};
|
|
98
|
-
verticalDivider: {
|
|
99
|
-
borderLeft: string;
|
|
100
|
-
};
|
|
101
|
-
bars: {
|
|
102
|
-
backgroundColor: string;
|
|
103
|
-
};
|
|
104
|
-
tintColor: string;
|
|
105
|
-
};
|
|
106
|
-
popoverConfigs: Partial<import("v-calendar/dist/types/src/utils/popovers.js").PopoverOptions>;
|
|
107
|
-
masks: {
|
|
108
|
-
input: string;
|
|
109
|
-
};
|
|
110
|
-
modelConfig: {
|
|
111
|
-
start?: undefined;
|
|
112
|
-
end?: undefined;
|
|
113
|
-
} | {
|
|
114
|
-
start: {
|
|
115
|
-
timeAdjust: string;
|
|
116
|
-
};
|
|
117
|
-
end: {
|
|
118
|
-
timeAdjust: string;
|
|
119
|
-
};
|
|
120
|
-
};
|
|
121
|
-
}, unknown, {
|
|
122
|
-
prepareValueDropdown(): {
|
|
123
|
-
start: string | Date;
|
|
124
|
-
end: string | Date;
|
|
125
|
-
isRelative: boolean;
|
|
126
|
-
relativeFilterValue: Nullable<string>;
|
|
127
|
-
} | null;
|
|
128
|
-
prepareValueDatepicker(): {
|
|
129
|
-
start: Date;
|
|
130
|
-
end: Date;
|
|
131
|
-
} | undefined;
|
|
132
|
-
mode(): "date" | "dateTime";
|
|
133
|
-
}, {
|
|
134
|
-
onPeriodInput(period: DateRange): void;
|
|
135
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
136
|
-
/**
|
|
137
|
-
* Used to specify selected dates
|
|
138
|
-
* @model
|
|
139
|
-
*/
|
|
140
|
-
modelValue: {
|
|
141
|
-
type: PropType<string | Date | DateRange<moment.Moment | Date>>;
|
|
142
|
-
default: () => Date;
|
|
143
|
-
};
|
|
9
|
+
modelValue?: Date | string | DateRange;
|
|
144
10
|
/**
|
|
145
11
|
* Disable
|
|
146
12
|
*/
|
|
147
|
-
disabled
|
|
148
|
-
type: BooleanConstructor;
|
|
149
|
-
default: boolean;
|
|
150
|
-
};
|
|
151
|
-
/**
|
|
152
|
-
* Validation result sent by Vuelidate
|
|
153
|
-
*/
|
|
154
|
-
validate: {
|
|
155
|
-
type: PropType<ValidationState>;
|
|
156
|
-
default: null;
|
|
157
|
-
};
|
|
13
|
+
disabled?: boolean;
|
|
158
14
|
/**
|
|
159
15
|
* Define if the time format is 24H
|
|
160
16
|
*/
|
|
161
|
-
is24hr
|
|
162
|
-
type: BooleanConstructor;
|
|
163
|
-
default: boolean;
|
|
164
|
-
};
|
|
17
|
+
is24hr?: boolean;
|
|
165
18
|
/**
|
|
166
19
|
* Time picker
|
|
167
20
|
*/
|
|
168
|
-
timePicker
|
|
169
|
-
type: BooleanConstructor;
|
|
170
|
-
default: boolean;
|
|
171
|
-
};
|
|
21
|
+
timePicker?: boolean;
|
|
172
22
|
/**
|
|
173
23
|
* Time zone
|
|
174
24
|
*/
|
|
175
|
-
timezone
|
|
176
|
-
type: StringConstructor;
|
|
177
|
-
default: string;
|
|
178
|
-
};
|
|
25
|
+
timezone?: string;
|
|
179
26
|
/**
|
|
180
27
|
* Placeholder
|
|
181
28
|
*/
|
|
182
|
-
placeholder
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
}>> & {
|
|
187
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
188
|
-
}, {
|
|
29
|
+
placeholder?: string;
|
|
30
|
+
}
|
|
31
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
32
|
+
modelValue: () => Date;
|
|
189
33
|
disabled: boolean;
|
|
190
|
-
modelValue: string | Date | DateRange<moment.Moment | Date>;
|
|
191
|
-
validate: ValidationState;
|
|
192
34
|
is24hr: boolean;
|
|
35
|
+
timePicker: boolean;
|
|
193
36
|
timezone: string;
|
|
194
37
|
placeholder: string;
|
|
38
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
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<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
41
|
+
modelValue: () => Date;
|
|
42
|
+
disabled: boolean;
|
|
43
|
+
is24hr: boolean;
|
|
44
|
+
timePicker: boolean;
|
|
45
|
+
timezone: string;
|
|
46
|
+
placeholder: string;
|
|
47
|
+
}>>> & {
|
|
48
|
+
"onUpdate:modelValue"?: ((value: string | Date | DateRange<moment.Moment | Date>) => any) | undefined;
|
|
49
|
+
}, {
|
|
50
|
+
disabled: boolean;
|
|
51
|
+
modelValue: string | Date | DateRange;
|
|
52
|
+
timezone: string;
|
|
53
|
+
is24hr: boolean;
|
|
54
|
+
placeholder: string;
|
|
195
55
|
timePicker: boolean;
|
|
196
56
|
}>;
|
|
197
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
|
+
type __VLS_WithDefaults<P, D> = {
|
|
68
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
69
|
+
default: D[K];
|
|
70
|
+
}> : P[K];
|
|
71
|
+
};
|
|
72
|
+
type __VLS_Prettify<T> = {
|
|
73
|
+
[K in keyof T]: T[K];
|
|
74
|
+
} & {};
|