@rebilly/revel 6.17.16 → 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 CHANGED
@@ -1,3 +1,17 @@
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
+
8
+ ## [6.18.0](https://github.com/Rebilly/rebilly/compare/revel-v6.17.16...revel-v6.18.0) (2024-03-19)
9
+
10
+
11
+ ### Features
12
+
13
+ * **revel:** adjust the tab items by flex-shrink ([#4145](https://github.com/Rebilly/rebilly/issues/4145)) ([95f8287](https://github.com/Rebilly/rebilly/commit/95f82878477b153e069957f91061b86a42b3a523))
14
+
1
15
  ## [6.17.16](https://github.com/Rebilly/rebilly/compare/revel-v6.17.15...revel-v6.17.16) (2024-03-18)
2
16
 
3
17
  ## [6.17.15](https://github.com/Rebilly/rebilly/compare/revel-v6.17.14...revel-v6.17.15) (2024-03-18)
@@ -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 | boolean | Date>;
9
- default: boolean;
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 | boolean | Date>;
112
- default: boolean;
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 | boolean | Date;
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
- } | null;
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;
@@ -63,8 +63,8 @@ declare const _default: import("vue").DefineComponent<{
63
63
  }>>, {
64
64
  value: string;
65
65
  active: boolean;
66
- hidden: boolean;
67
66
  panelId: string;
68
67
  to: Optional<Ref<RouteLocation>>;
68
+ hidden: boolean;
69
69
  }>;
70
70
  export default _default;