@rebilly/revel 6.13.1 → 6.14.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-button/r-button.vue.d.ts +1 -1
- package/dist/components/r-checkbox/r-checkbox.vue.d.ts +1 -1
- package/dist/components/r-date-input/r-date-input.vue.d.ts +2 -2
- package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +5 -5
- package/dist/components/r-tabs/r-tabs.vue.d.ts +1057 -4849
- package/dist/components/r-toast/r-toast.vue.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [6.14.0](https://github.com/Rebilly/rebilly/compare/revel-v6.13.1...revel-v6.14.0) (2024-01-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **billing-portal:** Add send invoice modal ([#3132](https://github.com/Rebilly/rebilly/issues/3132)) ([9160622](https://github.com/Rebilly/rebilly/commit/9160622e63d83a7426db7b53c5bf5d235e93624a))
|
|
7
|
+
|
|
1
8
|
## [6.13.1](https://github.com/Rebilly/rebilly/compare/revel-v6.13.0...revel-v6.13.1) (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(): "" | "
|
|
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 |
|
|
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
|
-
|
|
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;
|