@rebilly/revel 6.18.0 → 6.19.0
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 +7 -0
- package/dist/components/r-date-input/r-calendar.vue.d.ts +7 -16
- package/dist/components/r-date-input/r-date-input.vue.d.ts +4 -4
- package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +1 -1
- package/dist/components/r-date-input/r-range-calendar.vue.d.ts +4 -21
- package/dist/components/r-date-input/shared-calendar-options.d.ts +2 -11
- package/dist/components/r-input/r-input.vue.d.ts +1 -1
- package/dist/components/r-tabs/r-tab.vue.d.ts +1 -1
- package/dist/revel.mjs +10108 -10495
- package/dist/revel.umd.js +115 -115
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/dist/common/date-picker-compat.d.ts +0 -1
- package/dist/components/r-date-input/v-calendar.es.d.ts +0 -459
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [6.19.0](https://github.com/Rebilly/rebilly/compare/revel-v6.18.0...revel-v6.19.0) (2024-03-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **revel:** Upgrade to v-calendar 3 ([#4135](https://github.com/Rebilly/rebilly/issues/4135)) ([1b982fc](https://github.com/Rebilly/rebilly/commit/1b982fcf233e00833d5ac5bfde5a3108f2a2dd8e))
|
|
7
|
+
|
|
1
8
|
## [6.18.0](https://github.com/Rebilly/rebilly/compare/revel-v6.17.16...revel-v6.18.0) (2024-03-19)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { type PropType } from 'vue';
|
|
2
|
+
import 'v-calendar/style.css';
|
|
2
3
|
import type { ValidationState } from '../../types';
|
|
3
4
|
declare const _default: import("vue").DefineComponent<{
|
|
4
5
|
/**
|
|
5
6
|
* Dates
|
|
6
7
|
*/
|
|
7
8
|
modelValue: {
|
|
8
|
-
type: PropType<string |
|
|
9
|
-
default:
|
|
9
|
+
type: PropType<string | Date>;
|
|
10
|
+
default: string;
|
|
10
11
|
};
|
|
11
12
|
/**
|
|
12
13
|
* Disable
|
|
@@ -89,17 +90,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
89
90
|
};
|
|
90
91
|
tintColor: string;
|
|
91
92
|
};
|
|
92
|
-
popoverConfigs:
|
|
93
|
-
placement: {};
|
|
94
|
-
visibility: string;
|
|
95
|
-
modifiers: {
|
|
96
|
-
name: string;
|
|
97
|
-
options: {
|
|
98
|
-
allowedAutoPlacements: string[];
|
|
99
|
-
fallbackPlacements: string[];
|
|
100
|
-
};
|
|
101
|
-
}[];
|
|
102
|
-
};
|
|
93
|
+
popoverConfigs: Partial<import("v-calendar/dist/types/src/utils/popovers.js").PopoverOptions>;
|
|
103
94
|
computedModelConfig: import("vue").ComputedRef<Record<string, any>>;
|
|
104
95
|
}, unknown, {}, {
|
|
105
96
|
onDateInput(date: Date): void;
|
|
@@ -108,8 +99,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
108
99
|
* Dates
|
|
109
100
|
*/
|
|
110
101
|
modelValue: {
|
|
111
|
-
type: PropType<string |
|
|
112
|
-
default:
|
|
102
|
+
type: PropType<string | Date>;
|
|
103
|
+
default: string;
|
|
113
104
|
};
|
|
114
105
|
/**
|
|
115
106
|
* Disable
|
|
@@ -151,7 +142,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
151
142
|
}, {
|
|
152
143
|
type: string;
|
|
153
144
|
disabled: boolean;
|
|
154
|
-
modelValue: string |
|
|
145
|
+
modelValue: string | Date;
|
|
155
146
|
validate: ValidationState;
|
|
156
147
|
timezone: string;
|
|
157
148
|
modelConfig: Record<string, any>;
|
|
@@ -284,14 +284,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
284
284
|
disabled: boolean;
|
|
285
285
|
modelValue: string | Date | Record<string, any>;
|
|
286
286
|
validate: ValidationState;
|
|
287
|
-
timezone: string;
|
|
288
287
|
is24hr: boolean;
|
|
288
|
+
locale: string;
|
|
289
|
+
timezone: string;
|
|
290
|
+
minDate: string | Date | Record<string, any>;
|
|
291
|
+
maxDate: string | Date | Record<string, any>;
|
|
289
292
|
placement: string;
|
|
290
293
|
timePicker: boolean;
|
|
291
294
|
placeholder: string;
|
|
292
295
|
availableDates: Record<string, any>;
|
|
293
|
-
minDate: string | Date | Record<string, any>;
|
|
294
|
-
maxDate: string | Date | Record<string, any>;
|
|
295
|
-
locale: string;
|
|
296
296
|
}>;
|
|
297
297
|
export default _default;
|
|
@@ -157,8 +157,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
157
157
|
}, {
|
|
158
158
|
disabled: boolean;
|
|
159
159
|
modelValue: string | DateRange;
|
|
160
|
-
timezone: string;
|
|
161
160
|
is24hr: boolean;
|
|
161
|
+
timezone: string;
|
|
162
162
|
calendarToggle: Function;
|
|
163
163
|
timePicker: boolean;
|
|
164
164
|
showPresets: boolean;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type PropType } from 'vue';
|
|
2
2
|
import moment from 'moment';
|
|
3
|
+
import 'v-calendar/style.css';
|
|
3
4
|
import type { DateRange } from './types';
|
|
4
5
|
import type { ValidationState } from '../../types';
|
|
5
6
|
declare const _default: import("vue").DefineComponent<{
|
|
@@ -99,25 +100,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
99
100
|
};
|
|
100
101
|
tintColor: string;
|
|
101
102
|
};
|
|
102
|
-
popoverConfigs:
|
|
103
|
-
placement: {};
|
|
104
|
-
visibility: string;
|
|
105
|
-
modifiers: {
|
|
106
|
-
name: string;
|
|
107
|
-
options: {
|
|
108
|
-
allowedAutoPlacements: string[];
|
|
109
|
-
fallbackPlacements: string[];
|
|
110
|
-
};
|
|
111
|
-
}[];
|
|
112
|
-
};
|
|
103
|
+
popoverConfigs: Partial<import("v-calendar/dist/types/src/utils/popovers.js").PopoverOptions>;
|
|
113
104
|
masks: {
|
|
114
105
|
input: string;
|
|
115
106
|
};
|
|
116
|
-
dragSelectAttributes: {
|
|
117
|
-
popover: {
|
|
118
|
-
visibility: string;
|
|
119
|
-
};
|
|
120
|
-
};
|
|
121
107
|
modelConfig: {
|
|
122
108
|
start?: undefined;
|
|
123
109
|
end?: undefined;
|
|
@@ -137,12 +123,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
137
123
|
relativeFilterValue: import("../../types").Nullable<string>;
|
|
138
124
|
} | null;
|
|
139
125
|
prepareValueDatepicker(): {
|
|
140
|
-
start: undefined;
|
|
141
|
-
end: undefined;
|
|
142
|
-
} | {
|
|
143
126
|
start: Date;
|
|
144
127
|
end: Date;
|
|
145
|
-
} |
|
|
128
|
+
} | undefined;
|
|
146
129
|
mode(): "date" | "dateTime";
|
|
147
130
|
}, {
|
|
148
131
|
onPeriodInput(period: DateRange): void;
|
|
@@ -203,8 +186,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
203
186
|
disabled: boolean;
|
|
204
187
|
modelValue: string | Date | DateRange<moment.Moment | Date>;
|
|
205
188
|
validate: ValidationState;
|
|
206
|
-
timezone: string;
|
|
207
189
|
is24hr: boolean;
|
|
190
|
+
timezone: string;
|
|
208
191
|
timePicker: boolean;
|
|
209
192
|
placeholder: string;
|
|
210
193
|
}>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { PopoverOptions } from 'v-calendar/dist/types/src/utils/popovers.js';
|
|
1
2
|
export declare const disabledAttribute: {
|
|
2
3
|
contentStyle: {
|
|
3
4
|
color: string;
|
|
@@ -51,14 +52,4 @@ export declare const themeStyles: {
|
|
|
51
52
|
};
|
|
52
53
|
export declare const getComputedPopoverConfigs: (context: {
|
|
53
54
|
attrs: Record<string, unknown>;
|
|
54
|
-
}) =>
|
|
55
|
-
placement: {};
|
|
56
|
-
visibility: string;
|
|
57
|
-
modifiers: {
|
|
58
|
-
name: string;
|
|
59
|
-
options: {
|
|
60
|
-
allowedAutoPlacements: string[];
|
|
61
|
-
fallbackPlacements: string[];
|
|
62
|
-
};
|
|
63
|
-
}[];
|
|
64
|
-
};
|
|
55
|
+
}) => Partial<PopoverOptions>;
|
|
@@ -386,12 +386,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
386
386
|
label: string;
|
|
387
387
|
modelValue: Nullable<string | number | boolean>;
|
|
388
388
|
validate: Record<string, any>;
|
|
389
|
+
inputEvents: Record<string, any>;
|
|
389
390
|
rows: string | number;
|
|
390
391
|
numeric: boolean;
|
|
391
392
|
helpText: string;
|
|
392
393
|
multiline: boolean;
|
|
393
394
|
submitOnEnter: boolean;
|
|
394
|
-
inputEvents: Record<string, any>;
|
|
395
395
|
leftIcon: string;
|
|
396
396
|
leftIconClickPointer: boolean;
|
|
397
397
|
rightIcon: string;
|