@rebilly/revel 8.14.2 → 8.16.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 +3 -3
- package/dist/components/r-alert/r-alert.vue.d.ts +2 -29
- package/dist/components/r-avatar/r-avatar.vue.d.ts +1 -10
- package/dist/components/r-badge/r-badge.vue.d.ts +8 -31
- package/dist/components/r-button/r-button.vue.d.ts +3 -46
- package/dist/components/r-button-group/r-button-group.vue.d.ts +2 -23
- package/dist/components/r-checkbox/r-checkbox.vue.d.ts +5 -40
- package/dist/components/r-date-input/r-calendar.vue.d.ts +5 -36
- package/dist/components/r-date-input/r-date-input.vue.d.ts +10 -69
- package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +6 -41
- package/dist/components/r-date-input/r-range-calendar.vue.d.ts +7 -38
- package/dist/components/r-field-group/r-field-group.vue.d.ts +1 -1
- package/dist/components/r-file-upload/r-file-upload.vue.d.ts +5 -30
- package/dist/components/r-flex/r-flex-item.vue.d.ts +2 -31
- package/dist/components/r-flex/r-flex.vue.d.ts +2 -37
- package/dist/components/r-grid/r-grid-cell.vue.d.ts +2 -31
- package/dist/components/r-grid/r-grid.vue.d.ts +2 -35
- package/dist/components/r-icon/r-icon.vue.d.ts +6 -29
- package/dist/components/r-img/r-img.vue.d.ts +6 -33
- package/dist/components/r-input/r-input.vue.d.ts +7 -78
- package/dist/components/r-loader/r-loader.vue.d.ts +2 -29
- package/dist/components/r-modal/r-modal.vue.d.ts +10 -43
- package/dist/components/r-month-picker/r-month-picker.vue.d.ts +8 -41
- package/dist/components/r-pagination/r-pagination.vue.d.ts +4 -27
- package/dist/components/r-pagination-control/r-pagination-control.vue.d.ts +1 -1
- package/dist/components/r-popper/r-popper.vue.d.ts +5 -52
- package/dist/components/r-radio/r-radio.vue.d.ts +5 -38
- package/dist/components/r-repeater/r-repeater.vue.d.ts +2 -27
- package/dist/components/r-select/r-select.vue.d.ts +121 -9
- package/dist/components/r-tabs/r-tab.vue.d.ts +7 -7
- package/dist/components/r-tabs/r-tabs.vue.d.ts +21 -6842
- package/dist/components/r-tabs/types.d.ts +1 -1
- package/dist/components/r-tile/r-tile.vue.d.ts +1 -1
- package/dist/components/r-toast/r-toast.vue.d.ts +5 -40
- package/dist/components/r-toggle/r-toggle.vue.d.ts +5 -32
- package/dist/composables/use-validate.d.ts +1 -1
- package/dist/playground/Playground-copyme.vue.d.ts +1 -1
- package/dist/revel.mjs +6019 -6189
- package/dist/revel.umd.js +120 -121
- package/dist/style.css +1 -1
- package/package.json +3 -3
|
@@ -12,7 +12,7 @@ type __VLS_Slots = {} & {
|
|
|
12
12
|
} & {
|
|
13
13
|
actions?: (props: typeof __VLS_11) => any;
|
|
14
14
|
};
|
|
15
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
15
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
16
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
17
17
|
export default _default;
|
|
18
18
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -33,53 +33,18 @@ interface Props {
|
|
|
33
33
|
*/
|
|
34
34
|
container?: Nullable<HTMLElement>;
|
|
35
35
|
}
|
|
36
|
-
declare const _default: import("vue").DefineComponent<
|
|
37
|
-
type: string;
|
|
38
|
-
title: string;
|
|
39
|
-
message: string;
|
|
40
|
-
allowClose: boolean;
|
|
41
|
-
visible: boolean;
|
|
42
|
-
autoHide: boolean;
|
|
43
|
-
hideDelay: number;
|
|
44
|
-
container: null;
|
|
45
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
36
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
46
37
|
hide: (...args: any[]) => void;
|
|
47
|
-
}, string, import("vue").
|
|
48
|
-
type: string;
|
|
49
|
-
title: string;
|
|
50
|
-
message: string;
|
|
51
|
-
allowClose: boolean;
|
|
52
|
-
visible: boolean;
|
|
53
|
-
autoHide: boolean;
|
|
54
|
-
hideDelay: number;
|
|
55
|
-
container: null;
|
|
56
|
-
}>>> & {
|
|
38
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
57
39
|
onHide?: ((...args: any[]) => any) | undefined;
|
|
58
|
-
}
|
|
40
|
+
}>, {
|
|
59
41
|
title: string;
|
|
60
42
|
type: ToastType;
|
|
61
43
|
autoHide: boolean;
|
|
62
44
|
hideDelay: number;
|
|
63
|
-
visible: boolean;
|
|
64
45
|
message: string | (() => unknown);
|
|
65
46
|
allowClose: boolean;
|
|
47
|
+
visible: boolean;
|
|
66
48
|
container: Nullable<HTMLElement>;
|
|
67
|
-
}>;
|
|
49
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
68
50
|
export default _default;
|
|
69
|
-
type __VLS_WithDefaults<P, D> = {
|
|
70
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
71
|
-
default: D[K];
|
|
72
|
-
}> : P[K];
|
|
73
|
-
};
|
|
74
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
75
|
-
type __VLS_TypePropsToOption<T> = {
|
|
76
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
77
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
78
|
-
} : {
|
|
79
|
-
type: import('vue').PropType<T[K]>;
|
|
80
|
-
required: true;
|
|
81
|
-
};
|
|
82
|
-
};
|
|
83
|
-
type __VLS_PrettifyLocal<T> = {
|
|
84
|
-
[K in keyof T]: T[K];
|
|
85
|
-
} & {};
|
|
@@ -16,41 +16,14 @@ interface Props {
|
|
|
16
16
|
*/
|
|
17
17
|
disabled?: boolean;
|
|
18
18
|
}
|
|
19
|
-
declare const _default: import("vue").DefineComponent<
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
modelValue: boolean;
|
|
23
|
-
disabled: boolean;
|
|
24
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
|
-
"update:modelValue": (value: boolean) => void;
|
|
26
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
27
|
-
label: null;
|
|
28
|
-
name: () => string;
|
|
29
|
-
modelValue: boolean;
|
|
30
|
-
disabled: boolean;
|
|
31
|
-
}>>> & {
|
|
19
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
20
|
+
"update:modelValue": (value: boolean) => any;
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
32
22
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
33
|
-
}
|
|
23
|
+
}>, {
|
|
34
24
|
label: Nullable<string>;
|
|
35
25
|
disabled: boolean;
|
|
36
26
|
modelValue: boolean;
|
|
37
27
|
name: string;
|
|
38
|
-
}>;
|
|
28
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
39
29
|
export default _default;
|
|
40
|
-
type __VLS_WithDefaults<P, D> = {
|
|
41
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
42
|
-
default: D[K];
|
|
43
|
-
}> : P[K];
|
|
44
|
-
};
|
|
45
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
46
|
-
type __VLS_TypePropsToOption<T> = {
|
|
47
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
48
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
49
|
-
} : {
|
|
50
|
-
type: import('vue').PropType<T[K]>;
|
|
51
|
-
required: true;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
|
-
type __VLS_PrettifyLocal<T> = {
|
|
55
|
-
[K in keyof T]: T[K];
|
|
56
|
-
} & {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ValidationState } from '../types';
|
|
2
|
-
export declare function useValidate(validate:
|
|
2
|
+
export declare function useValidate(validate: Voidable<ValidationState>): {
|
|
3
3
|
validateErrorMessages: import("vue").ComputedRef<string[]>;
|
|
4
4
|
isInvalid: import("vue").ComputedRef<boolean>;
|
|
5
5
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
2
|
export default _default;
|