@rebilly/revel 6.3.0 → 6.4.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 +14 -0
- package/dist/components/r-badge/r-badge.vue.d.ts +2 -2
- 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-file-upload/r-file-upload.vue.d.ts +1 -1
- package/dist/components/r-icon/r-icon-sprites.d.ts +1 -0
- package/dist/components/r-radio/r-radio.vue.d.ts +1 -1
- package/dist/components/r-select/r-select.vue.d.ts +4 -4
- package/dist/index.d.ts +4 -2
- package/dist/revel.mjs +1587 -1583
- package/dist/revel.umd.js +12 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [6.4.0](https://github.com/Rebilly/rebilly/compare/revel-v6.3.1...revel-v6.4.0) (2023-12-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **billing-portal:** Add tile component to billing portal ([#2511](https://github.com/Rebilly/rebilly/issues/2511)) ([6b16810](https://github.com/Rebilly/rebilly/commit/6b16810201f6d225b7c46c23363986a3ac9f462f))
|
|
7
|
+
|
|
8
|
+
## [6.3.1](https://github.com/Rebilly/rebilly/compare/revel-v6.3.0...revel-v6.3.1) (2023-12-04)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **revel:** Update how icon sheet is appended to the DOM ([#2477](https://github.com/Rebilly/rebilly/issues/2477)) ([0823497](https://github.com/Rebilly/rebilly/commit/0823497d8f8b39a3591b0b3d973527dec68ebb47))
|
|
14
|
+
|
|
1
15
|
## [6.3.0](https://github.com/Rebilly/rebilly/compare/revel-v6.2.2...revel-v6.3.0) (2023-12-04)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -15,7 +15,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15
15
|
};
|
|
16
16
|
}, unknown, unknown, {
|
|
17
17
|
classes(): Record<string, boolean>;
|
|
18
|
-
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
18
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "close")[], "click" | "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
19
|
/**
|
|
20
20
|
* Changes background color
|
|
21
21
|
*/
|
|
@@ -34,7 +34,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
34
34
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
35
35
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
36
36
|
}, {
|
|
37
|
-
close: boolean;
|
|
38
37
|
type: string;
|
|
38
|
+
close: boolean;
|
|
39
39
|
}>;
|
|
40
40
|
export default _default;
|
|
@@ -180,10 +180,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
180
180
|
default: null;
|
|
181
181
|
};
|
|
182
182
|
}>>, {
|
|
183
|
-
loading: boolean;
|
|
184
183
|
icon: string;
|
|
185
184
|
type: string;
|
|
186
185
|
link: boolean;
|
|
186
|
+
loading: boolean;
|
|
187
187
|
size: string;
|
|
188
188
|
disabled: boolean;
|
|
189
189
|
active: boolean;
|
|
@@ -136,9 +136,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
136
136
|
}>> & {
|
|
137
137
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
138
138
|
}, {
|
|
139
|
-
id: string;
|
|
140
139
|
caption: string;
|
|
141
140
|
label: string;
|
|
141
|
+
id: string;
|
|
142
142
|
value: string | boolean;
|
|
143
143
|
disabled: boolean;
|
|
144
144
|
modelValue: string | number | boolean | unknown[];
|
|
@@ -276,11 +276,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
276
276
|
}>> & {
|
|
277
277
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
278
278
|
}, {
|
|
279
|
-
columns: number;
|
|
280
|
-
id: string;
|
|
281
279
|
type: string;
|
|
282
280
|
caption: string;
|
|
283
281
|
label: string;
|
|
282
|
+
id: string;
|
|
284
283
|
placeholder: string;
|
|
285
284
|
disabled: boolean;
|
|
286
285
|
modelValue: string | Record<string, any> | Date;
|
|
@@ -290,6 +289,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
290
289
|
is24hr: boolean;
|
|
291
290
|
timePicker: boolean;
|
|
292
291
|
availableDates: Record<string, any>;
|
|
292
|
+
columns: number;
|
|
293
293
|
minDate: string | Record<string, any> | Date;
|
|
294
294
|
maxDate: string | Record<string, any> | Date;
|
|
295
295
|
locale: string;
|
|
@@ -34,7 +34,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
34
34
|
*/
|
|
35
35
|
setFocus(): void;
|
|
36
36
|
change(event: Event): void;
|
|
37
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
37
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "cancel" | "close")[], "input" | "cancel" | "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
38
38
|
/**
|
|
39
39
|
* Allow to submit multiple files
|
|
40
40
|
*/
|
|
@@ -121,10 +121,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
121
121
|
}>> & {
|
|
122
122
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
123
123
|
}, {
|
|
124
|
-
id: string;
|
|
125
124
|
name: string;
|
|
126
125
|
caption: string;
|
|
127
126
|
label: string;
|
|
127
|
+
id: string;
|
|
128
128
|
disabled: boolean;
|
|
129
129
|
modelValue: string | number | boolean | unknown[];
|
|
130
130
|
validate: ValidationState;
|
|
@@ -386,7 +386,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
386
386
|
handleAsyncLoadPrev(): Promise<void>;
|
|
387
387
|
handleAsyncLoadMore(count: number): Promise<void>;
|
|
388
388
|
handleAsyncLoadByQuery({ limit, offset }: Partial<Query>): Promise<void>;
|
|
389
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
389
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("select" | "close" | "update:modelValue" | "open" | "async-loaded" | "search-change" | "remove" | "tag")[], "select" | "close" | "update:modelValue" | "open" | "async-loaded" | "search-change" | "remove" | "tag", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
390
390
|
/**
|
|
391
391
|
* Specify if no option can be selected
|
|
392
392
|
*/
|
|
@@ -680,18 +680,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
680
680
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
681
681
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
682
682
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
683
|
-
onTag?: ((...args: any[]) => any) | undefined;
|
|
684
683
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
685
684
|
"onAsync-loaded"?: ((...args: any[]) => any) | undefined;
|
|
686
685
|
"onSearch-change"?: ((...args: any[]) => any) | undefined;
|
|
687
686
|
onRemove?: ((...args: any[]) => any) | undefined;
|
|
687
|
+
onTag?: ((...args: any[]) => any) | undefined;
|
|
688
688
|
}, {
|
|
689
|
-
loading: boolean;
|
|
690
|
-
id: string;
|
|
691
689
|
name: string;
|
|
692
690
|
label: string;
|
|
691
|
+
id: string;
|
|
693
692
|
max: number | boolean;
|
|
694
693
|
tabindex: number;
|
|
694
|
+
loading: boolean;
|
|
695
695
|
placeholder: string;
|
|
696
696
|
disabled: boolean;
|
|
697
697
|
modelValue: Nullable<OptionItem | Options>;
|
package/dist/index.d.ts
CHANGED
|
@@ -10,12 +10,14 @@ export { tokens, icons };
|
|
|
10
10
|
* install can be imported and called as a named import or as a default import (for plugin mode)
|
|
11
11
|
* It is also used by the doc examples and vitests)
|
|
12
12
|
*/
|
|
13
|
-
export declare const install: (app: App, { registerDirectives }?: {
|
|
13
|
+
export declare const install: (app: App, { registerDirectives, appendIconSheet }?: {
|
|
14
14
|
registerDirectives?: boolean | undefined;
|
|
15
|
+
appendIconSheet?: boolean | undefined;
|
|
15
16
|
}) => void;
|
|
16
17
|
declare const _default: {
|
|
17
|
-
install: (app: App<any>, { registerDirectives }?: {
|
|
18
|
+
install: (app: App<any>, { registerDirectives, appendIconSheet }?: {
|
|
18
19
|
registerDirectives?: boolean | undefined;
|
|
20
|
+
appendIconSheet?: boolean | undefined;
|
|
19
21
|
}) => void;
|
|
20
22
|
};
|
|
21
23
|
export default _default;
|