@rebilly/revel 6.13.0 → 6.13.1

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,10 @@
1
+ ## [6.13.1](https://github.com/Rebilly/rebilly/compare/revel-v6.13.0...revel-v6.13.1) (2024-01-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **revel:** Update RSelect to include components ([#3075](https://github.com/Rebilly/rebilly/issues/3075)) ([3de7524](https://github.com/Rebilly/rebilly/commit/3de752466b2ce6c1b499fab01ed00e277bb32515))
7
+
1
8
  ## [6.13.0](https://github.com/Rebilly/rebilly/compare/revel-v6.12.1...revel-v6.13.0) (2024-01-25)
2
9
 
3
10
 
@@ -97,7 +97,7 @@ declare const _default: import("vue").DefineComponent<{
97
97
  'r-is-active': boolean;
98
98
  };
99
99
  title(): string;
100
- divRole(): "button" | "";
100
+ divRole(): "" | "button";
101
101
  href(): string;
102
102
  }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
103
103
  /**
@@ -72,7 +72,7 @@ declare const _default: import("vue").DefineComponent<{
72
72
  * Therfore on update, it sends the opposite of the current state (as the user has just changed it).
73
73
  * It's up to the parent to update it's model and pass the new value as property, so the checkbox can update itself.
74
74
  */
75
- getNegateInternalState(): boolean | any[];
75
+ getNegateInternalState(): boolean | unknown[];
76
76
  change(): void;
77
77
  }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
78
78
  /**
@@ -287,11 +287,11 @@ declare const _default: import("vue").DefineComponent<{
287
287
  placement: string;
288
288
  timezone: string;
289
289
  is24hr: boolean;
290
- locale: string;
291
- availableDates: Record<string, any>;
292
290
  timePicker: boolean;
291
+ availableDates: Record<string, any>;
293
292
  columns: number;
294
293
  minDate: string | Record<string, any> | Date;
295
294
  maxDate: string | Record<string, any> | Date;
295
+ locale: string;
296
296
  }>;
297
297
  export default _default;
@@ -5,7 +5,7 @@ import type { DateRange } from './types';
5
5
  import type { Voidable } from '../../types';
6
6
  declare const _default: import("vue").DefineComponent<{
7
7
  modelValue: {
8
- type: PropType<string | DateRange<string | Moment | Date>>;
8
+ type: PropType<string | DateRange>;
9
9
  default: null;
10
10
  };
11
11
  calendarToggle: {
@@ -67,7 +67,7 @@ declare const _default: import("vue").DefineComponent<{
67
67
  calendarPresetsPeriodsList(): [string, import("./calendar-presets").CalendarPresetPeriod][];
68
68
  isValidDatesPeriod(): boolean;
69
69
  isRelative(): boolean;
70
- selectedRelativeParams(): import("./calendar-presets").CalendarPresetPeriod | DateRange<string | Moment | Date> | {
70
+ selectedRelativeParams(): import("./calendar-presets").CalendarPresetPeriod | DateRange | {
71
71
  start: string;
72
72
  end: string;
73
73
  } | {
@@ -102,14 +102,14 @@ declare const _default: import("vue").DefineComponent<{
102
102
  getFormattedPresetPeriod(presetName: CalendarPreset): string;
103
103
  validateDatesPeriod(period: Voidable<Moment | string | Date>): boolean;
104
104
  toggle(name: string): void;
105
- parsePeriod(period: string | DateRange): import("./calendar-presets").CalendarPresetPeriod | DateRange<string | Moment | Date> | {
105
+ parsePeriod(period: string | DateRange): import("./calendar-presets").CalendarPresetPeriod | DateRange | {
106
106
  start: string;
107
107
  end: string;
108
108
  } | null;
109
109
  relativeFilterChange(presetName: CalendarPresetLabel): void;
110
110
  }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "preset-select"[], "preset-select", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
111
111
  modelValue: {
112
- type: PropType<string | DateRange<string | Moment | Date>>;
112
+ type: PropType<string | DateRange>;
113
113
  default: null;
114
114
  };
115
115
  calendarToggle: {
@@ -157,7 +157,7 @@ declare const _default: import("vue").DefineComponent<{
157
157
  }, {
158
158
  placeholder: string;
159
159
  disabled: boolean;
160
- modelValue: string | DateRange<string | Moment | Date>;
160
+ modelValue: string | DateRange;
161
161
  timezone: string;
162
162
  is24hr: boolean;
163
163
  calendarToggle: Function;