@rebilly/revel 6.30.16 → 6.30.17
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 +1 -1
- package/dist/components/r-alert/r-alert.vue.d.ts +4 -3
- package/dist/components/r-avatar/r-avatar.vue.d.ts +4 -4
- package/dist/components/r-badge/r-badge.vue.d.ts +1 -1
- package/dist/components/r-button/r-button.vue.d.ts +12 -11
- package/dist/components/r-checkbox/r-checkbox.vue.d.ts +5 -5
- package/dist/components/r-date-input/r-date-input.vue.d.ts +9 -9
- package/dist/components/r-file-upload/r-file-upload.vue.d.ts +1 -1
- package/dist/components/r-grid/columnTypes/badge.vue.d.ts +2 -2
- package/dist/components/r-grid/columnTypes/index.d.ts +2 -2
- package/dist/components/r-grid/r-grid.vue.d.ts +4 -4
- package/dist/components/r-icon/r-icon-sprites.d.ts +3 -1
- package/dist/components/r-icon/r-icon.vue.d.ts +36 -49
- package/dist/components/r-input/r-input.vue.d.ts +8 -8
- package/dist/components/r-radio/r-radio.vue.d.ts +6 -6
- package/dist/components/r-select/r-select.vue.d.ts +5 -5
- package/dist/components/r-tabs/r-tabs.vue.d.ts +2 -2
- package/dist/components/r-toast/r-toast.vue.d.ts +1 -1
- package/dist/components/r-toggle/r-toggle.vue.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/revel.mjs +1195 -1232
- package/dist/revel.umd.js +4 -4
- package/package.json +1 -1
|
@@ -33,7 +33,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
33
|
* Radio input value
|
|
34
34
|
*/
|
|
35
35
|
value: {
|
|
36
|
-
type: (
|
|
36
|
+
type: (BooleanConstructor | ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
37
37
|
required: true;
|
|
38
38
|
};
|
|
39
39
|
/**
|
|
@@ -51,7 +51,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
51
|
default: null;
|
|
52
52
|
};
|
|
53
53
|
modelValue: {
|
|
54
|
-
type: (
|
|
54
|
+
type: (BooleanConstructor | ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
55
55
|
default: null;
|
|
56
56
|
};
|
|
57
57
|
}, unknown, unknown, {
|
|
@@ -97,7 +97,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
97
97
|
* Radio input value
|
|
98
98
|
*/
|
|
99
99
|
value: {
|
|
100
|
-
type: (
|
|
100
|
+
type: (BooleanConstructor | ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
101
101
|
required: true;
|
|
102
102
|
};
|
|
103
103
|
/**
|
|
@@ -115,17 +115,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
115
115
|
default: null;
|
|
116
116
|
};
|
|
117
117
|
modelValue: {
|
|
118
|
-
type: (
|
|
118
|
+
type: (BooleanConstructor | ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
119
119
|
default: null;
|
|
120
120
|
};
|
|
121
121
|
}>> & {
|
|
122
122
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
123
123
|
}, {
|
|
124
|
-
|
|
124
|
+
id: string;
|
|
125
125
|
caption: string;
|
|
126
126
|
label: string;
|
|
127
|
+
name: string;
|
|
127
128
|
disabled: boolean;
|
|
128
|
-
id: string;
|
|
129
129
|
modelValue: string | number | boolean | unknown[];
|
|
130
130
|
validate: ValidationState;
|
|
131
131
|
}>;
|
|
@@ -390,7 +390,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
390
390
|
handleAsyncLoadPrev(): Promise<void>;
|
|
391
391
|
handleAsyncLoadMore(count: number): Promise<void>;
|
|
392
392
|
handleAsyncLoadByQuery({ limit, offset }: Partial<Query>): Promise<void>;
|
|
393
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
393
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "tag" | "select" | "open" | "update:modelValue" | "async-loaded" | "search-change" | "remove")[], "close" | "tag" | "select" | "open" | "update:modelValue" | "async-loaded" | "search-change" | "remove", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
394
394
|
/**
|
|
395
395
|
* Specify if no option can be selected
|
|
396
396
|
*/
|
|
@@ -684,17 +684,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
684
684
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
685
685
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
686
686
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
687
|
+
onTag?: ((...args: any[]) => any) | undefined;
|
|
687
688
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
688
689
|
"onAsync-loaded"?: ((...args: any[]) => any) | undefined;
|
|
689
690
|
"onSearch-change"?: ((...args: any[]) => any) | undefined;
|
|
690
691
|
onRemove?: ((...args: any[]) => any) | undefined;
|
|
691
|
-
onTag?: ((...args: any[]) => any) | undefined;
|
|
692
692
|
}, {
|
|
693
|
-
name: string;
|
|
694
|
-
label: string;
|
|
695
|
-
disabled: boolean;
|
|
696
693
|
loading: boolean;
|
|
697
694
|
id: string;
|
|
695
|
+
label: string;
|
|
696
|
+
name: string;
|
|
697
|
+
disabled: boolean;
|
|
698
698
|
modelValue: Nullable<OptionItem | Options>;
|
|
699
699
|
validate: ValidationState;
|
|
700
700
|
placeholder: string;
|
|
@@ -3495,9 +3495,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3495
3495
|
query: import("vue-router").LocationQuery;
|
|
3496
3496
|
hash: string;
|
|
3497
3497
|
redirectedFrom: any | undefined;
|
|
3498
|
-
name: import("vue-router").RouteRecordNameGeneric | null;
|
|
3499
3498
|
meta: import("vue-router").RouteMeta;
|
|
3500
3499
|
path: string;
|
|
3500
|
+
name: import("vue-router").RouteRecordNameGeneric | null;
|
|
3501
3501
|
params: import("vue-router").RouteParamsGeneric;
|
|
3502
3502
|
} | undefined;
|
|
3503
3503
|
}[];
|
|
@@ -6966,9 +6966,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6966
6966
|
query: import("vue-router").LocationQuery;
|
|
6967
6967
|
hash: string;
|
|
6968
6968
|
redirectedFrom: any | undefined;
|
|
6969
|
-
name: import("vue-router").RouteRecordNameGeneric | null;
|
|
6970
6969
|
meta: import("vue-router").RouteMeta;
|
|
6971
6970
|
path: string;
|
|
6971
|
+
name: import("vue-router").RouteRecordNameGeneric | null;
|
|
6972
6972
|
params: import("vue-router").RouteParamsGeneric;
|
|
6973
6973
|
} | undefined;
|
|
6974
6974
|
} | undefined;
|
|
@@ -128,8 +128,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
128
128
|
}>> & {
|
|
129
129
|
onHide?: ((...args: any[]) => any) | undefined;
|
|
130
130
|
}, {
|
|
131
|
-
type: string;
|
|
132
131
|
title: string;
|
|
132
|
+
type: string;
|
|
133
133
|
autoHide: boolean;
|
|
134
134
|
hideDelay: number;
|
|
135
135
|
visible: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export * from './components';
|
|
|
6
6
|
export * from './directives';
|
|
7
7
|
export { createRToastManager };
|
|
8
8
|
export { tokens, icons };
|
|
9
|
+
export type { IconNames } from './components/r-icon/r-icon-sprites';
|
|
9
10
|
/**
|
|
10
11
|
* This plugin registers all revel components and directives
|
|
11
12
|
* install can be imported and called as a named import or as a default import (for plugin mode)
|