@rebilly/revel 8.8.13 → 8.8.15
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 +6 -1
- package/README.md +2 -2
- package/dist/components/r-alert/r-alert.vue.d.ts +17 -15
- package/dist/components/r-avatar/r-avatar.vue.d.ts +11 -8
- package/dist/components/r-badge/r-badge.vue.d.ts +15 -12
- package/dist/components/r-button/r-button.vue.d.ts +25 -19
- package/dist/components/r-button-group/r-button-group.vue.d.ts +15 -12
- package/dist/components/r-checkbox/r-checkbox.vue.d.ts +15 -12
- package/dist/components/r-date-input/r-calendar.vue.d.ts +5 -5
- package/dist/components/r-date-input/r-date-input.vue.d.ts +7 -7
- package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +5 -5
- package/dist/components/r-date-input/r-range-calendar.vue.d.ts +5 -5
- package/dist/components/r-field-group/r-field-group.vue.d.ts +7 -4
- package/dist/components/r-file-upload/r-file-upload.vue.d.ts +18 -15
- package/dist/components/r-flex/r-flex-item.vue.d.ts +17 -14
- package/dist/components/r-flex/r-flex.vue.d.ts +15 -12
- package/dist/components/r-grid/r-grid-cell.vue.d.ts +16 -13
- package/dist/components/r-grid/r-grid.vue.d.ts +15 -12
- package/dist/components/r-icon/r-icon.vue.d.ts +5 -5
- package/dist/components/r-img/r-img.vue.d.ts +15 -12
- package/dist/components/r-input/r-input.vue.d.ts +13 -13
- package/dist/components/r-loader/r-loader.vue.d.ts +4 -4
- package/dist/components/r-modal/r-modal.vue.d.ts +34 -26
- package/dist/components/r-month-picker/r-month-picker.vue.d.ts +4 -4
- package/dist/components/r-pagination/r-pagination.vue.d.ts +17 -14
- package/dist/components/r-pagination-control/r-pagination-control.vue.d.ts +19 -16
- package/dist/components/r-popper/r-popper.vue.d.ts +33 -29
- package/dist/components/r-radio/r-radio.vue.d.ts +15 -12
- package/dist/components/r-repeater/r-repeater.vue.d.ts +26 -19
- package/dist/components/r-select/r-select.vue.d.ts +6 -6
- package/dist/components/r-tabs/r-tab.vue.d.ts +3 -2
- package/dist/components/r-tabs/r-tabs.vue.d.ts +1377 -5221
- package/dist/components/r-tile/r-tile.vue.d.ts +17 -9
- package/dist/components/r-toast/r-toast.vue.d.ts +4 -4
- package/dist/components/r-toggle/r-toggle.vue.d.ts +4 -4
- package/dist/index.d.ts +1 -1
- package/dist/revel.mjs +5 -2
- package/dist/revel.umd.js +1 -1
- package/package.json +12 -6
|
@@ -1,13 +1,21 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
1
|
+
declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}, __VLS_7: {}, __VLS_9: {}, __VLS_11: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
title?: (props: typeof __VLS_1) => any;
|
|
4
|
+
} & {
|
|
5
|
+
titleActions?: (props: typeof __VLS_3) => any;
|
|
6
|
+
} & {
|
|
7
|
+
contents?: (props: typeof __VLS_5) => any;
|
|
8
|
+
} & {
|
|
9
|
+
primary?: (props: typeof __VLS_7) => any;
|
|
10
|
+
} & {
|
|
11
|
+
secondary?: (props: typeof __VLS_9) => any;
|
|
12
|
+
} & {
|
|
13
|
+
actions?: (props: typeof __VLS_11) => any;
|
|
14
|
+
};
|
|
15
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
16
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
9
17
|
export default _default;
|
|
10
|
-
type
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
11
19
|
new (): {
|
|
12
20
|
$slots: S;
|
|
13
21
|
};
|
|
@@ -67,13 +67,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
67
67
|
}>;
|
|
68
68
|
export default _default;
|
|
69
69
|
type __VLS_WithDefaults<P, D> = {
|
|
70
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
|
70
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
71
71
|
default: D[K];
|
|
72
72
|
}> : P[K];
|
|
73
73
|
};
|
|
74
|
-
type __VLS_Prettify<T> = {
|
|
75
|
-
[K in keyof T]: T[K];
|
|
76
|
-
} & {};
|
|
77
74
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
78
75
|
type __VLS_TypePropsToOption<T> = {
|
|
79
76
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -83,3 +80,6 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
83
80
|
required: true;
|
|
84
81
|
};
|
|
85
82
|
};
|
|
83
|
+
type __VLS_PrettifyLocal<T> = {
|
|
84
|
+
[K in keyof T]: T[K];
|
|
85
|
+
} & {};
|
|
@@ -38,13 +38,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
38
38
|
}>;
|
|
39
39
|
export default _default;
|
|
40
40
|
type __VLS_WithDefaults<P, D> = {
|
|
41
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ?
|
|
41
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
42
42
|
default: D[K];
|
|
43
43
|
}> : P[K];
|
|
44
44
|
};
|
|
45
|
-
type __VLS_Prettify<T> = {
|
|
46
|
-
[K in keyof T]: T[K];
|
|
47
|
-
} & {};
|
|
48
45
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
49
46
|
type __VLS_TypePropsToOption<T> = {
|
|
50
47
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -54,3 +51,6 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
54
51
|
required: true;
|
|
55
52
|
};
|
|
56
53
|
};
|
|
54
|
+
type __VLS_PrettifyLocal<T> = {
|
|
55
|
+
[K in keyof T]: T[K];
|
|
56
|
+
} & {};
|
package/dist/index.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ export declare const install: (app: App, { registerDirectives, appendIconSheet }
|
|
|
17
17
|
appendIconSheet?: boolean | undefined;
|
|
18
18
|
}) => void;
|
|
19
19
|
declare const _default: {
|
|
20
|
-
install: (app: App
|
|
20
|
+
install: (app: App, { registerDirectives, appendIconSheet }?: {
|
|
21
21
|
registerDirectives?: boolean | undefined;
|
|
22
22
|
appendIconSheet?: boolean | undefined;
|
|
23
23
|
}) => void;
|
package/dist/revel.mjs
CHANGED
|
@@ -12779,8 +12779,11 @@ class kw {
|
|
|
12779
12779
|
}
|
|
12780
12780
|
else if (b && b.name === "RebillyConflictError")
|
|
12781
12781
|
b.message && p.push(b.message);
|
|
12782
|
-
else
|
|
12783
|
-
|
|
12782
|
+
else {
|
|
12783
|
+
if (b && b.name === "RebillyCanceledError")
|
|
12784
|
+
return p;
|
|
12785
|
+
b && b.name === "RebillyAppError" && b.message && p.push(b.message);
|
|
12786
|
+
}
|
|
12784
12787
|
return p.length ? p : [z];
|
|
12785
12788
|
}
|
|
12786
12789
|
}
|