ra-element 0.0.71 → 0.0.72
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/lib/components/index.d.ts +2 -2
- package/lib/components/ra-button/index.vue.d.ts +6 -6
- package/lib/components/ra-input/index.vue.d.ts +12 -12
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +1548 -1548
- package/lib/ra-element.umd.js +8 -8
- package/package.json +1 -1
- package/lib/components/{ra-text-area → ra-textarea}/index.vue.d.ts +2 -2
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
|
+
import { default as RaTextarea } from './ra-textarea/index.vue';
|
|
2
3
|
import { default as RaAutoScroll } from './ra-auto-scroll/index.vue';
|
|
3
4
|
import { default as RaButton } from './ra-button/index.vue';
|
|
4
5
|
import { default as RaCheckboxGroup } from './ra-checkbox-group/index.vue';
|
|
@@ -13,10 +14,9 @@ import { default as RaRadioGroup } from './ra-radio-group/index.vue';
|
|
|
13
14
|
import { default as RaSelect } from './ra-select/index.vue';
|
|
14
15
|
import { default as RaSvg } from './ra-svg/index.vue';
|
|
15
16
|
import { default as RaTable } from './ra-table/index.vue';
|
|
16
|
-
import { default as RaTextArea } from './ra-text-area/index.vue';
|
|
17
17
|
import { default as RaToolTip } from './ra-tool-tip/index.vue';
|
|
18
18
|
import { default as RaTreeSelect } from './ra-tree-select/index.vue';
|
|
19
19
|
import { default as RaUpload } from './ra-upload/index.vue';
|
|
20
20
|
declare const install: (app: App) => void;
|
|
21
|
-
export { RaAutoScroll, RaButton, RaCheckboxGroup, RaDatePicker, RaDialog, RaDialogSelect, RaForm, RaHelpTip, RaInput, RaPagination, RaRadioGroup, RaSelect, RaSvg, RaTable,
|
|
21
|
+
export { RaAutoScroll, RaButton, RaCheckboxGroup, RaDatePicker, RaDialog, RaDialogSelect, RaForm, RaHelpTip, RaInput, RaPagination, RaRadioGroup, RaSelect, RaSvg, RaTable, RaTextarea, RaToolTip, RaTreeSelect, RaUpload, };
|
|
22
22
|
export default install;
|
|
@@ -41,8 +41,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
41
41
|
readonly loadingIcon: string | import('vue').Component;
|
|
42
42
|
readonly autoInsertSpace: boolean;
|
|
43
43
|
}> & Omit<{
|
|
44
|
-
readonly disabled: boolean;
|
|
45
44
|
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
45
|
+
readonly disabled: boolean;
|
|
46
46
|
readonly link: boolean;
|
|
47
47
|
readonly circle: boolean;
|
|
48
48
|
readonly text: boolean;
|
|
@@ -60,7 +60,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
60
60
|
readonly color?: string | undefined;
|
|
61
61
|
readonly autoInsertSpace?: boolean | undefined;
|
|
62
62
|
onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
63
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "
|
|
63
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "disabled" | "link" | "circle" | "text" | "nativeType" | "loading" | "loadingIcon" | "plain" | "bg" | "autofocus" | "round" | "dark" | "autoInsertSpace" | "tag">;
|
|
64
64
|
$attrs: {
|
|
65
65
|
[x: string]: unknown;
|
|
66
66
|
};
|
|
@@ -295,7 +295,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
295
295
|
};
|
|
296
296
|
}>> & {
|
|
297
297
|
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
298
|
-
}, "
|
|
298
|
+
}, "type" | "disabled" | "link" | "circle" | "text" | "ref" | "size" | "nativeType" | "loading" | "loadingIcon" | "plain" | "bg" | "autofocus" | "round" | "dark" | "autoInsertSpace" | "tag" | "shouldAddSpace"> & import('vue').ShallowUnwrapRef<{
|
|
299
299
|
ref: import('vue').Ref<HTMLButtonElement | undefined>;
|
|
300
300
|
size: import('vue').ComputedRef<"" | "small" | "default" | "large">;
|
|
301
301
|
type: import('vue').ComputedRef<string>;
|
|
@@ -327,8 +327,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
327
327
|
readonly loadingIcon: string | import('vue').Component;
|
|
328
328
|
readonly autoInsertSpace: boolean;
|
|
329
329
|
}> & Omit<{
|
|
330
|
-
readonly disabled: boolean;
|
|
331
330
|
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
331
|
+
readonly disabled: boolean;
|
|
332
332
|
readonly link: boolean;
|
|
333
333
|
readonly circle: boolean;
|
|
334
334
|
readonly text: boolean;
|
|
@@ -346,7 +346,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
346
346
|
readonly color?: string | undefined;
|
|
347
347
|
readonly autoInsertSpace?: boolean | undefined;
|
|
348
348
|
onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
349
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "
|
|
349
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "disabled" | "link" | "circle" | "text" | "nativeType" | "loading" | "loadingIcon" | "plain" | "bg" | "autofocus" | "round" | "dark" | "autoInsertSpace" | "tag">;
|
|
350
350
|
$attrs: {
|
|
351
351
|
[x: string]: unknown;
|
|
352
352
|
};
|
|
@@ -581,7 +581,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
581
581
|
};
|
|
582
582
|
}>> & {
|
|
583
583
|
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
584
|
-
}, "
|
|
584
|
+
}, "type" | "disabled" | "link" | "circle" | "text" | "ref" | "size" | "nativeType" | "loading" | "loadingIcon" | "plain" | "bg" | "autofocus" | "round" | "dark" | "autoInsertSpace" | "tag" | "shouldAddSpace"> & import('vue').ShallowUnwrapRef<{
|
|
585
585
|
ref: import('vue').Ref<HTMLButtonElement | undefined>;
|
|
586
586
|
size: import('vue').ComputedRef<"" | "small" | "default" | "large">;
|
|
587
587
|
type: import('vue').ComputedRef<string>;
|
|
@@ -36,8 +36,10 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
36
36
|
readonly showWordLimit: boolean;
|
|
37
37
|
readonly autofocus: boolean;
|
|
38
38
|
}> & Omit<{
|
|
39
|
-
readonly
|
|
39
|
+
readonly rows: number;
|
|
40
|
+
readonly showWordLimit: boolean;
|
|
40
41
|
readonly type: string;
|
|
42
|
+
readonly disabled: boolean;
|
|
41
43
|
readonly autofocus: boolean;
|
|
42
44
|
readonly modelValue: string | number | null;
|
|
43
45
|
readonly validateEvent: boolean;
|
|
@@ -47,10 +49,9 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
47
49
|
readonly autosize: import('element-plus').InputAutoSize;
|
|
48
50
|
readonly autocomplete: string;
|
|
49
51
|
readonly showPassword: boolean;
|
|
50
|
-
readonly showWordLimit: boolean;
|
|
51
52
|
readonly inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
52
|
-
readonly rows: number;
|
|
53
53
|
readonly name?: string | undefined;
|
|
54
|
+
readonly maxlength?: (string | number) | undefined;
|
|
54
55
|
readonly form?: string | undefined;
|
|
55
56
|
readonly resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
|
|
56
57
|
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
@@ -59,7 +60,6 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
59
60
|
readonly prefixIcon?: (string | import('vue').Component) | undefined;
|
|
60
61
|
readonly placeholder?: string | undefined;
|
|
61
62
|
readonly inputmode?: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
62
|
-
readonly maxlength?: (string | number) | undefined;
|
|
63
63
|
readonly minlength?: (string | number) | undefined;
|
|
64
64
|
readonly formatter?: Function | undefined;
|
|
65
65
|
readonly parser?: Function | undefined;
|
|
@@ -77,7 +77,7 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
77
77
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
78
78
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
79
79
|
onClear?: (() => any) | undefined | undefined;
|
|
80
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "
|
|
80
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "rows" | "showWordLimit" | "type" | "disabled" | "autofocus" | "modelValue" | "validateEvent" | "tabindex" | "id" | "clearable" | "readonly" | "inputmode" | "autosize" | "autocomplete" | "showPassword" | "containerRole" | "inputStyle">;
|
|
81
81
|
$attrs: {
|
|
82
82
|
[x: string]: unknown;
|
|
83
83
|
};
|
|
@@ -513,7 +513,7 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
513
513
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
514
514
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
515
515
|
onClear?: (() => any) | undefined;
|
|
516
|
-
}, "
|
|
516
|
+
}, "rows" | "showWordLimit" | "type" | "textarea" | "disabled" | "input" | "select" | "ref" | "blur" | "focus" | "autofocus" | "clear" | "modelValue" | "validateEvent" | "tabindex" | "id" | "clearable" | "readonly" | "inputmode" | "autosize" | "autocomplete" | "showPassword" | "containerRole" | "inputStyle" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
|
|
517
517
|
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
518
518
|
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
519
519
|
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
@@ -554,8 +554,10 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
554
554
|
readonly showWordLimit: boolean;
|
|
555
555
|
readonly autofocus: boolean;
|
|
556
556
|
}> & Omit<{
|
|
557
|
-
readonly
|
|
557
|
+
readonly rows: number;
|
|
558
|
+
readonly showWordLimit: boolean;
|
|
558
559
|
readonly type: string;
|
|
560
|
+
readonly disabled: boolean;
|
|
559
561
|
readonly autofocus: boolean;
|
|
560
562
|
readonly modelValue: string | number | null;
|
|
561
563
|
readonly validateEvent: boolean;
|
|
@@ -565,10 +567,9 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
565
567
|
readonly autosize: import('element-plus').InputAutoSize;
|
|
566
568
|
readonly autocomplete: string;
|
|
567
569
|
readonly showPassword: boolean;
|
|
568
|
-
readonly showWordLimit: boolean;
|
|
569
570
|
readonly inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
570
|
-
readonly rows: number;
|
|
571
571
|
readonly name?: string | undefined;
|
|
572
|
+
readonly maxlength?: (string | number) | undefined;
|
|
572
573
|
readonly form?: string | undefined;
|
|
573
574
|
readonly resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
|
|
574
575
|
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
@@ -577,7 +578,6 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
577
578
|
readonly prefixIcon?: (string | import('vue').Component) | undefined;
|
|
578
579
|
readonly placeholder?: string | undefined;
|
|
579
580
|
readonly inputmode?: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
580
|
-
readonly maxlength?: (string | number) | undefined;
|
|
581
581
|
readonly minlength?: (string | number) | undefined;
|
|
582
582
|
readonly formatter?: Function | undefined;
|
|
583
583
|
readonly parser?: Function | undefined;
|
|
@@ -595,7 +595,7 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
595
595
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
596
596
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
597
597
|
onClear?: (() => any) | undefined | undefined;
|
|
598
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "
|
|
598
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "rows" | "showWordLimit" | "type" | "disabled" | "autofocus" | "modelValue" | "validateEvent" | "tabindex" | "id" | "clearable" | "readonly" | "inputmode" | "autosize" | "autocomplete" | "showPassword" | "containerRole" | "inputStyle">;
|
|
599
599
|
$attrs: {
|
|
600
600
|
[x: string]: unknown;
|
|
601
601
|
};
|
|
@@ -1031,7 +1031,7 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
1031
1031
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
1032
1032
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
1033
1033
|
onClear?: (() => any) | undefined;
|
|
1034
|
-
}, "
|
|
1034
|
+
}, "rows" | "showWordLimit" | "type" | "textarea" | "disabled" | "input" | "select" | "ref" | "blur" | "focus" | "autofocus" | "clear" | "modelValue" | "validateEvent" | "tabindex" | "id" | "clearable" | "readonly" | "inputmode" | "autosize" | "autocomplete" | "showPassword" | "containerRole" | "inputStyle" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
|
|
1035
1035
|
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
1036
1036
|
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
1037
1037
|
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|