@rebilly/revel 6.12.0 → 6.13.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.13.0](https://github.com/Rebilly/rebilly/compare/revel-v6.12.1...revel-v6.13.0) (2024-01-25)
2
+
3
+
4
+ ### Features
5
+
6
+ * **billing portal:** Connect stores to UI ([#2983](https://github.com/Rebilly/rebilly/issues/2983)) ([eb17496](https://github.com/Rebilly/rebilly/commit/eb17496a7c8504cbbbc238b8a74f77e62df0cdb6))
7
+
8
+ ## [6.12.1](https://github.com/Rebilly/rebilly/compare/revel-v6.12.0...revel-v6.12.1) (2024-01-17)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **revel:** Update Revel to expose directives ([#2939](https://github.com/Rebilly/rebilly/issues/2939)) ([3d4d33d](https://github.com/Rebilly/rebilly/commit/3d4d33db79d601ca6dfc60a4f0f1db972820755b))
14
+
1
15
  ## [6.12.0](https://github.com/Rebilly/rebilly/compare/revel-v6.11.0...revel-v6.12.0) (2024-01-16)
2
16
 
3
17
 
@@ -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 | unknown[];
75
+ getNegateInternalState(): boolean | any[];
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
- timePicker: boolean;
290
+ locale: string;
291
291
  availableDates: Record<string, any>;
292
+ timePicker: boolean;
292
293
  columns: number;
293
294
  minDate: string | Record<string, any> | Date;
294
295
  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>;
8
+ type: PropType<string | DateRange<string | Moment | Date>>;
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 | {
70
+ selectedRelativeParams(): import("./calendar-presets").CalendarPresetPeriod | DateRange<string | Moment | Date> | {
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 | {
105
+ parsePeriod(period: string | DateRange): import("./calendar-presets").CalendarPresetPeriod | DateRange<string | Moment | Date> | {
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>;
112
+ type: PropType<string | DateRange<string | Moment | Date>>;
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;
160
+ modelValue: string | DateRange<string | Moment | Date>;
161
161
  timezone: string;
162
162
  is24hr: boolean;
163
163
  calendarToggle: Function;
@@ -18,6 +18,13 @@ declare const _default: import("vue").DefineComponent<{
18
18
  type: BooleanConstructor;
19
19
  default: boolean;
20
20
  };
21
+ /**
22
+ * Defines if the loading is displayed as a spinner
23
+ */
24
+ isLoaderSpinner: {
25
+ type: BooleanConstructor;
26
+ default: boolean;
27
+ };
21
28
  /**
22
29
  * Defines the property, which changes will trigger the fetching of data
23
30
  */
@@ -44,6 +51,13 @@ declare const _default: import("vue").DefineComponent<{
44
51
  type: BooleanConstructor;
45
52
  default: boolean;
46
53
  };
54
+ /**
55
+ * Defines if the loading is displayed as a spinner
56
+ */
57
+ isLoaderSpinner: {
58
+ type: BooleanConstructor;
59
+ default: boolean;
60
+ };
47
61
  /**
48
62
  * Defines the property, which changes will trigger the fetching of data
49
63
  */
@@ -54,5 +68,6 @@ declare const _default: import("vue").DefineComponent<{
54
68
  }>>, {
55
69
  watcher: Record<string, any>;
56
70
  isLoaderFullscreen: boolean;
71
+ isLoaderSpinner: boolean;
57
72
  }>;
58
73
  export default _default;