ra-element 0.1.44 → 0.1.47
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 +3 -1
- package/lib/components/ra-form-item/index.vue.d.ts +77 -0
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +9139 -8957
- package/lib/ra-element.es.js.map +1 -1
- package/lib/ra-element.umd.js +8 -8
- package/lib/ra-element.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ import { default as RaDatePicker } from './ra-date-picker/index.vue';
|
|
|
6
6
|
import { default as RaDialog } from './ra-dialog/index.vue';
|
|
7
7
|
import { default as RaDialogSelect } from './ra-dialog-select/index.vue';
|
|
8
8
|
import { default as RaForm } from './ra-form/index.vue';
|
|
9
|
+
import { default as RaFormItem } from './ra-form-item/index.vue';
|
|
9
10
|
import { default as RaHelpTip } from './ra-help-tip/index.vue';
|
|
10
11
|
import { default as RaInput } from './ra-input/index.vue';
|
|
11
12
|
import { default as RaPagination } from './ra-pagination/index.vue';
|
|
@@ -18,7 +19,7 @@ import { default as RaToolTip } from './ra-tool-tip/index.vue';
|
|
|
18
19
|
import { default as RaTreeSelect } from './ra-tree-select/index.vue';
|
|
19
20
|
import { default as RaUpload } from './ra-upload/index.vue';
|
|
20
21
|
declare const install: (app: App) => void;
|
|
21
|
-
export { RaAutoScroll, RaButton, RaCheckboxGroup, RaDatePicker, RaDialog, RaDialogSelect, RaForm, RaHelpTip, RaInput, RaPagination, RaRadioGroup, RaSelect, RaSvg, RaTable, RaTextarea, RaToolTip, RaTreeSelect, RaUpload, };
|
|
22
|
+
export { RaAutoScroll, RaButton, RaCheckboxGroup, RaDatePicker, RaDialog, RaDialogSelect, RaForm, RaFormItem, RaHelpTip, RaInput, RaPagination, RaRadioGroup, RaSelect, RaSvg, RaTable, RaTextarea, RaToolTip, RaTreeSelect, RaUpload, };
|
|
22
23
|
export default install;
|
|
23
24
|
declare module 'vue' {
|
|
24
25
|
interface GlobalComponents {
|
|
@@ -29,6 +30,7 @@ declare module 'vue' {
|
|
|
29
30
|
RaDialog: typeof RaDialog;
|
|
30
31
|
RaDialogSelect: typeof RaDialogSelect;
|
|
31
32
|
RaForm: typeof RaForm;
|
|
33
|
+
RaFormItem: typeof RaFormItem;
|
|
32
34
|
RaHelpTip: typeof RaHelpTip;
|
|
33
35
|
RaInput: typeof RaInput;
|
|
34
36
|
RaPagination: typeof RaPagination;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {};
|
|
7
|
+
rootEl: any;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
11
|
+
itemType: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
actionType: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
label: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
prop: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
required: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
modelValue: {
|
|
32
|
+
type: import('vue').PropType<any>;
|
|
33
|
+
};
|
|
34
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
35
|
+
change: (...args: any[]) => void;
|
|
36
|
+
"update:modelValue": (value: any) => void;
|
|
37
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
38
|
+
itemType: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
actionType: {
|
|
43
|
+
type: StringConstructor;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
label: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
prop: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
54
|
+
required: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
modelValue: {
|
|
59
|
+
type: import('vue').PropType<any>;
|
|
60
|
+
};
|
|
61
|
+
}>> & Readonly<{
|
|
62
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
63
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
64
|
+
}>, {
|
|
65
|
+
label: string;
|
|
66
|
+
required: boolean;
|
|
67
|
+
prop: string;
|
|
68
|
+
itemType: string;
|
|
69
|
+
actionType: string;
|
|
70
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
71
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
72
|
+
export default _default;
|
|
73
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
74
|
+
new (): {
|
|
75
|
+
$slots: S;
|
|
76
|
+
};
|
|
77
|
+
};
|