ra-element 0.1.6 → 0.1.7
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/docs/ra-table.md +1 -0
- package/lib/components/index.d.ts +1 -20
- package/lib/components/ra-auto-scroll/index.vue.d.ts +76 -100
- package/lib/components/ra-button/index.vue.d.ts +599 -772
- package/lib/components/ra-checkbox-group/index.vue.d.ts +329 -442
- package/lib/components/ra-date-picker/index.vue.d.ts +1062 -1261
- package/lib/components/ra-dialog/index.vue.d.ts +931 -1130
- package/lib/components/ra-dialog-select/index.vue.d.ts +57 -81
- package/lib/components/ra-help-tip/index.vue.d.ts +41 -65
- package/lib/components/ra-input/index.vue.d.ts +1042 -1256
- package/lib/components/ra-pagination/index.vue.d.ts +528 -643
- package/lib/components/ra-radio-group/index.vue.d.ts +425 -538
- package/lib/components/ra-select/index.vue.d.ts +1656 -1759
- package/lib/components/ra-svg/index.vue.d.ts +11 -35
- package/lib/components/ra-table/component/pagination-group.vue.d.ts +80 -104
- package/lib/components/ra-textarea/index.vue.d.ts +31 -55
- package/lib/components/ra-tool-tip/index.vue.d.ts +14 -38
- package/lib/components/ra-tree-select/index.vue.d.ts +35 -59
- package/lib/components/ra-upload/index.vue.d.ts +149 -173
- package/lib/index.d.ts +6 -6
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +980 -958
- package/lib/ra-element.umd.js +11 -11
- package/package.json +1 -1
|
@@ -4,85 +4,61 @@ interface optionsItem {
|
|
|
4
4
|
disabled?: boolean;
|
|
5
5
|
children?: optionsItem[];
|
|
6
6
|
}
|
|
7
|
-
declare const _default: import('vue').DefineComponent<
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
{
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
};
|
|
65
|
-
}>
|
|
66
|
-
> &
|
|
67
|
-
Readonly<{
|
|
68
|
-
onInput?: ((...args: any[]) => any) | undefined;
|
|
69
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
70
|
-
'onUpdate:modelValue'?: ((...args: any[]) => any) | undefined;
|
|
71
|
-
}>,
|
|
72
|
-
{
|
|
73
|
-
width: number;
|
|
74
|
-
modelValue: unknown[];
|
|
75
|
-
options: any;
|
|
76
|
-
placeholder: string;
|
|
77
|
-
dialogTitle: string;
|
|
78
|
-
},
|
|
79
|
-
{},
|
|
80
|
-
{},
|
|
81
|
-
{},
|
|
82
|
-
string,
|
|
83
|
-
import('vue').ComponentProvideOptions,
|
|
84
|
-
true,
|
|
85
|
-
{},
|
|
86
|
-
HTMLDivElement
|
|
87
|
-
>;
|
|
7
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
8
|
+
modelValue: {
|
|
9
|
+
type: ArrayConstructor;
|
|
10
|
+
default: () => never[];
|
|
11
|
+
};
|
|
12
|
+
placeholder: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
dialogTitle: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
options: {
|
|
21
|
+
type: PropType<optionsItem[]>;
|
|
22
|
+
default: () => never[];
|
|
23
|
+
};
|
|
24
|
+
width: {
|
|
25
|
+
type: NumberConstructor;
|
|
26
|
+
default: number;
|
|
27
|
+
};
|
|
28
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
29
|
+
input: (...args: any[]) => void;
|
|
30
|
+
change: (...args: any[]) => void;
|
|
31
|
+
"update:modelValue": (...args: any[]) => void;
|
|
32
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
33
|
+
modelValue: {
|
|
34
|
+
type: ArrayConstructor;
|
|
35
|
+
default: () => never[];
|
|
36
|
+
};
|
|
37
|
+
placeholder: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
dialogTitle: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
options: {
|
|
46
|
+
type: PropType<optionsItem[]>;
|
|
47
|
+
default: () => never[];
|
|
48
|
+
};
|
|
49
|
+
width: {
|
|
50
|
+
type: NumberConstructor;
|
|
51
|
+
default: number;
|
|
52
|
+
};
|
|
53
|
+
}>> & Readonly<{
|
|
54
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
55
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
56
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
57
|
+
}>, {
|
|
58
|
+
width: number;
|
|
59
|
+
modelValue: unknown[];
|
|
60
|
+
options: any;
|
|
61
|
+
placeholder: string;
|
|
62
|
+
dialogTitle: string;
|
|
63
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
88
64
|
export default _default;
|
|
@@ -7,71 +7,47 @@ declare function __VLS_template(): {
|
|
|
7
7
|
rootEl: any;
|
|
8
8
|
};
|
|
9
9
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
{
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
};
|
|
52
|
-
helpStyle: {
|
|
53
|
-
type: ObjectConstructor;
|
|
54
|
-
default: () => {};
|
|
55
|
-
};
|
|
56
|
-
}>
|
|
57
|
-
> &
|
|
58
|
-
Readonly<{}>,
|
|
59
|
-
{
|
|
60
|
-
width: number;
|
|
61
|
-
placement: string;
|
|
62
|
-
tipText: string;
|
|
63
|
-
helpStyle: Record<string, any>;
|
|
64
|
-
},
|
|
65
|
-
{},
|
|
66
|
-
{},
|
|
67
|
-
{},
|
|
68
|
-
string,
|
|
69
|
-
import('vue').ComponentProvideOptions,
|
|
70
|
-
true,
|
|
71
|
-
{},
|
|
72
|
-
any
|
|
73
|
-
>;
|
|
74
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult['slots']>;
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
11
|
+
width: {
|
|
12
|
+
type: NumberConstructor;
|
|
13
|
+
default: number;
|
|
14
|
+
};
|
|
15
|
+
placement: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
tipText: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
helpStyle: {
|
|
24
|
+
type: ObjectConstructor;
|
|
25
|
+
default: () => {};
|
|
26
|
+
};
|
|
27
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
28
|
+
width: {
|
|
29
|
+
type: NumberConstructor;
|
|
30
|
+
default: number;
|
|
31
|
+
};
|
|
32
|
+
placement: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
tipText: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
helpStyle: {
|
|
41
|
+
type: ObjectConstructor;
|
|
42
|
+
default: () => {};
|
|
43
|
+
};
|
|
44
|
+
}>> & Readonly<{}>, {
|
|
45
|
+
width: number;
|
|
46
|
+
placement: string;
|
|
47
|
+
tipText: string;
|
|
48
|
+
helpStyle: Record<string, any>;
|
|
49
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
50
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
75
51
|
export default _default;
|
|
76
52
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
77
53
|
new (): {
|