@dazhicheng/ui 1.5.14 → 1.5.16
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/dist/index.d.ts +0 -2
- package/dist/index.js +6829 -7169
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/dist/components/tt-part/index.d.ts +0 -398
- package/dist/components/tt-part/index.vue.d.ts +0 -253
- package/dist/components/tt-part/type.d.ts +0 -100
- package/dist/components/tt-part-item/index.d.ts +0 -105
- package/dist/components/tt-part-item/index.vue.d.ts +0 -71
- package/dist/components/tt-part-item/type.d.ts +0 -81
- package/dist/components/tt-validate/index.d.ts +0 -1
- package/dist/components/tt-validate/src/ErrorMessage.d.ts +0 -61
- package/dist/components/tt-validate/src/Field.d.ts +0 -430
- package/dist/components/tt-validate/src/FieldArray.d.ts +0 -47
- package/dist/components/tt-validate/src/Form.d.ts +0 -271
- package/dist/components/tt-validate/src/config.d.ts +0 -14
- package/dist/components/tt-validate/src/defineRule.d.ts +0 -9
- package/dist/components/tt-validate/src/index.d.ts +0 -36
- package/dist/components/tt-validate/src/symbols.d.ts +0 -6
- package/dist/components/tt-validate/src/types/common.d.ts +0 -11
- package/dist/components/tt-validate/src/types/forms.d.ts +0 -280
- package/dist/components/tt-validate/src/types/index.d.ts +0 -3
- package/dist/components/tt-validate/src/types/paths.d.ts +0 -142
- package/dist/components/tt-validate/src/types/shared.d.ts +0 -19
- package/dist/components/tt-validate/src/useField.d.ts +0 -30
- package/dist/components/tt-validate/src/useFieldArray.d.ts +0 -3
- package/dist/components/tt-validate/src/useFieldError.d.ts +0 -5
- package/dist/components/tt-validate/src/useFieldState.d.ts +0 -47
- package/dist/components/tt-validate/src/useFieldValue.d.ts +0 -5
- package/dist/components/tt-validate/src/useForm.d.ts +0 -23
- package/dist/components/tt-validate/src/useFormErrors.d.ts +0 -4
- package/dist/components/tt-validate/src/useFormValues.d.ts +0 -4
- package/dist/components/tt-validate/src/useIsFieldDirty.d.ts +0 -5
- package/dist/components/tt-validate/src/useIsFieldTouched.d.ts +0 -5
- package/dist/components/tt-validate/src/useIsFieldValid.d.ts +0 -5
- package/dist/components/tt-validate/src/useIsFormDirty.d.ts +0 -4
- package/dist/components/tt-validate/src/useIsFormTouched.d.ts +0 -4
- package/dist/components/tt-validate/src/useIsFormValid.d.ts +0 -4
- package/dist/components/tt-validate/src/useIsSubmitting.d.ts +0 -4
- package/dist/components/tt-validate/src/useIsValidating.d.ts +0 -4
- package/dist/components/tt-validate/src/useResetForm.d.ts +0 -2
- package/dist/components/tt-validate/src/useSetFieldError.d.ts +0 -5
- package/dist/components/tt-validate/src/useSetFieldTouched.d.ts +0 -5
- package/dist/components/tt-validate/src/useSetFieldValue.d.ts +0 -5
- package/dist/components/tt-validate/src/useSetFormErrors.d.ts +0 -4
- package/dist/components/tt-validate/src/useSetFormTouched.d.ts +0 -4
- package/dist/components/tt-validate/src/useSetFormValues.d.ts +0 -4
- package/dist/components/tt-validate/src/useSubmitCount.d.ts +0 -4
- package/dist/components/tt-validate/src/useSubmitForm.d.ts +0 -2
- package/dist/components/tt-validate/src/useValidateField.d.ts +0 -6
- package/dist/components/tt-validate/src/useValidateForm.d.ts +0 -5
- package/dist/components/tt-validate/src/utils/assertions.d.ts +0 -54
- package/dist/components/tt-validate/src/utils/common.d.ts +0 -48
- package/dist/components/tt-validate/src/utils/events.d.ts +0 -1
- package/dist/components/tt-validate/src/utils/index.d.ts +0 -5
- package/dist/components/tt-validate/src/utils/rules.d.ts +0 -13
- package/dist/components/tt-validate/src/utils/shared.d.ts +0 -19
- package/dist/components/tt-validate/src/utils/vnode.d.ts +0 -22
- package/dist/components/tt-validate/src/validate.d.ts +0 -21
- package/dist/components/tt-validate/zod/index.d.ts +0 -1
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
import { ExtractPublicPropTypes, PropType } from 'vue';
|
|
2
|
-
export declare const sjzyPartProps: {
|
|
3
|
-
modelValue: {
|
|
4
|
-
required: boolean;
|
|
5
|
-
type: BooleanConstructor;
|
|
6
|
-
default: boolean;
|
|
7
|
-
};
|
|
8
|
-
isExpand: {
|
|
9
|
-
required: boolean;
|
|
10
|
-
type: BooleanConstructor;
|
|
11
|
-
default: null;
|
|
12
|
-
};
|
|
13
|
-
showExpand: {
|
|
14
|
-
required: boolean;
|
|
15
|
-
type: BooleanConstructor;
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
|
-
defaultExpand: {
|
|
19
|
-
required: boolean;
|
|
20
|
-
type: BooleanConstructor;
|
|
21
|
-
default: boolean;
|
|
22
|
-
};
|
|
23
|
-
title: {
|
|
24
|
-
required: boolean;
|
|
25
|
-
type: StringConstructor;
|
|
26
|
-
default: string;
|
|
27
|
-
};
|
|
28
|
-
type: {
|
|
29
|
-
required: boolean;
|
|
30
|
-
type: StringConstructor;
|
|
31
|
-
default: string;
|
|
32
|
-
validator(value: "inline" | "outline" | "none"): boolean;
|
|
33
|
-
};
|
|
34
|
-
shadow: {
|
|
35
|
-
required: boolean;
|
|
36
|
-
type: BooleanConstructor;
|
|
37
|
-
default: null;
|
|
38
|
-
};
|
|
39
|
-
colSpan: {
|
|
40
|
-
required: boolean;
|
|
41
|
-
type: NumberConstructor;
|
|
42
|
-
default: number;
|
|
43
|
-
};
|
|
44
|
-
colGap: {
|
|
45
|
-
required: boolean;
|
|
46
|
-
type: NumberConstructor;
|
|
47
|
-
default: number;
|
|
48
|
-
};
|
|
49
|
-
labelWidth: {
|
|
50
|
-
required: boolean;
|
|
51
|
-
type: StringConstructor;
|
|
52
|
-
default: string;
|
|
53
|
-
};
|
|
54
|
-
labelPosition: {
|
|
55
|
-
required: boolean;
|
|
56
|
-
type: StringConstructor;
|
|
57
|
-
default: string;
|
|
58
|
-
};
|
|
59
|
-
segmentClass: {
|
|
60
|
-
required: boolean;
|
|
61
|
-
type: StringConstructor;
|
|
62
|
-
default: string;
|
|
63
|
-
};
|
|
64
|
-
headerClass: {
|
|
65
|
-
required: boolean;
|
|
66
|
-
type: StringConstructor;
|
|
67
|
-
default: string;
|
|
68
|
-
};
|
|
69
|
-
areaClass: {
|
|
70
|
-
required: boolean;
|
|
71
|
-
type: StringConstructor;
|
|
72
|
-
default: string;
|
|
73
|
-
};
|
|
74
|
-
headerBorder: {
|
|
75
|
-
required: boolean;
|
|
76
|
-
type: BooleanConstructor;
|
|
77
|
-
default: boolean;
|
|
78
|
-
};
|
|
79
|
-
iconType: {
|
|
80
|
-
required: boolean;
|
|
81
|
-
type: StringConstructor;
|
|
82
|
-
default: string;
|
|
83
|
-
};
|
|
84
|
-
iconTextShow: {
|
|
85
|
-
required: boolean;
|
|
86
|
-
type: BooleanConstructor;
|
|
87
|
-
default: boolean;
|
|
88
|
-
};
|
|
89
|
-
showBefore: {
|
|
90
|
-
required: boolean;
|
|
91
|
-
type: BooleanConstructor;
|
|
92
|
-
default: boolean;
|
|
93
|
-
};
|
|
94
|
-
/** 子描述信息的样式 */
|
|
95
|
-
itemType: {
|
|
96
|
-
type: PropType<"default" | "border">;
|
|
97
|
-
default: string;
|
|
98
|
-
};
|
|
99
|
-
};
|
|
100
|
-
export type TtPartProps = ExtractPublicPropTypes<typeof sjzyPartProps>;
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
export * from './type';
|
|
2
|
-
export declare const TtPartItem: import('../../../../utils/src').SFCWithInstall<{
|
|
3
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
4
|
-
items: {
|
|
5
|
-
type: import('vue').PropType<import('./type').IFePartItem[]>;
|
|
6
|
-
default: () => never[];
|
|
7
|
-
};
|
|
8
|
-
direction: {
|
|
9
|
-
type: import('vue').PropType<"vertical" | "horizontal">;
|
|
10
|
-
default: string;
|
|
11
|
-
};
|
|
12
|
-
data: {
|
|
13
|
-
type: import('vue').PropType<{
|
|
14
|
-
[x: string]: any;
|
|
15
|
-
}>;
|
|
16
|
-
default: () => {};
|
|
17
|
-
};
|
|
18
|
-
showEmpty: {
|
|
19
|
-
type: BooleanConstructor;
|
|
20
|
-
default: boolean;
|
|
21
|
-
};
|
|
22
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
23
|
-
data: {
|
|
24
|
-
[x: string]: any;
|
|
25
|
-
};
|
|
26
|
-
items: import('./type').IFePartItem[];
|
|
27
|
-
direction: "horizontal" | "vertical";
|
|
28
|
-
showEmpty: boolean;
|
|
29
|
-
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
30
|
-
P: {};
|
|
31
|
-
B: {};
|
|
32
|
-
D: {};
|
|
33
|
-
C: {};
|
|
34
|
-
M: {};
|
|
35
|
-
Defaults: {};
|
|
36
|
-
}, Readonly<import('vue').ExtractPropTypes<{
|
|
37
|
-
items: {
|
|
38
|
-
type: import('vue').PropType<import('./type').IFePartItem[]>;
|
|
39
|
-
default: () => never[];
|
|
40
|
-
};
|
|
41
|
-
direction: {
|
|
42
|
-
type: import('vue').PropType<"vertical" | "horizontal">;
|
|
43
|
-
default: string;
|
|
44
|
-
};
|
|
45
|
-
data: {
|
|
46
|
-
type: import('vue').PropType<{
|
|
47
|
-
[x: string]: any;
|
|
48
|
-
}>;
|
|
49
|
-
default: () => {};
|
|
50
|
-
};
|
|
51
|
-
showEmpty: {
|
|
52
|
-
type: BooleanConstructor;
|
|
53
|
-
default: boolean;
|
|
54
|
-
};
|
|
55
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
56
|
-
data: {
|
|
57
|
-
[x: string]: any;
|
|
58
|
-
};
|
|
59
|
-
items: import('./type').IFePartItem[];
|
|
60
|
-
direction: "horizontal" | "vertical";
|
|
61
|
-
showEmpty: boolean;
|
|
62
|
-
}>;
|
|
63
|
-
__isFragment?: never;
|
|
64
|
-
__isTeleport?: never;
|
|
65
|
-
__isSuspense?: never;
|
|
66
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
67
|
-
items: {
|
|
68
|
-
type: import('vue').PropType<import('./type').IFePartItem[]>;
|
|
69
|
-
default: () => never[];
|
|
70
|
-
};
|
|
71
|
-
direction: {
|
|
72
|
-
type: import('vue').PropType<"vertical" | "horizontal">;
|
|
73
|
-
default: string;
|
|
74
|
-
};
|
|
75
|
-
data: {
|
|
76
|
-
type: import('vue').PropType<{
|
|
77
|
-
[x: string]: any;
|
|
78
|
-
}>;
|
|
79
|
-
default: () => {};
|
|
80
|
-
};
|
|
81
|
-
showEmpty: {
|
|
82
|
-
type: BooleanConstructor;
|
|
83
|
-
default: boolean;
|
|
84
|
-
};
|
|
85
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
86
|
-
data: {
|
|
87
|
-
[x: string]: any;
|
|
88
|
-
};
|
|
89
|
-
items: import('./type').IFePartItem[];
|
|
90
|
-
direction: "horizontal" | "vertical";
|
|
91
|
-
showEmpty: boolean;
|
|
92
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
93
|
-
$slots: Readonly<{
|
|
94
|
-
[key: string]: (props: {
|
|
95
|
-
scope: any;
|
|
96
|
-
}) => any;
|
|
97
|
-
default: () => any;
|
|
98
|
-
}> & {
|
|
99
|
-
[key: string]: (props: {
|
|
100
|
-
scope: any;
|
|
101
|
-
}) => any;
|
|
102
|
-
default: () => any;
|
|
103
|
-
};
|
|
104
|
-
})> & Record<string, any>;
|
|
105
|
-
export default TtPartItem;
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
import { IFePartItem } from './type';
|
|
2
|
-
declare function __VLS_template(): {
|
|
3
|
-
attrs: Partial<{}>;
|
|
4
|
-
slots: Readonly<{
|
|
5
|
-
[key: string]: (props: {
|
|
6
|
-
scope: any;
|
|
7
|
-
}) => any;
|
|
8
|
-
default: () => any;
|
|
9
|
-
}> & {
|
|
10
|
-
[key: string]: (props: {
|
|
11
|
-
scope: any;
|
|
12
|
-
}) => any;
|
|
13
|
-
default: () => any;
|
|
14
|
-
};
|
|
15
|
-
refs: {};
|
|
16
|
-
rootEl: any;
|
|
17
|
-
};
|
|
18
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
|
-
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
20
|
-
items: {
|
|
21
|
-
type: import('vue').PropType<IFePartItem[]>;
|
|
22
|
-
default: () => never[];
|
|
23
|
-
};
|
|
24
|
-
direction: {
|
|
25
|
-
type: import('vue').PropType<"vertical" | "horizontal">;
|
|
26
|
-
default: string;
|
|
27
|
-
};
|
|
28
|
-
data: {
|
|
29
|
-
type: import('vue').PropType<{
|
|
30
|
-
[x: string]: any;
|
|
31
|
-
}>;
|
|
32
|
-
default: () => {};
|
|
33
|
-
};
|
|
34
|
-
showEmpty: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
39
|
-
items: {
|
|
40
|
-
type: import('vue').PropType<IFePartItem[]>;
|
|
41
|
-
default: () => never[];
|
|
42
|
-
};
|
|
43
|
-
direction: {
|
|
44
|
-
type: import('vue').PropType<"vertical" | "horizontal">;
|
|
45
|
-
default: string;
|
|
46
|
-
};
|
|
47
|
-
data: {
|
|
48
|
-
type: import('vue').PropType<{
|
|
49
|
-
[x: string]: any;
|
|
50
|
-
}>;
|
|
51
|
-
default: () => {};
|
|
52
|
-
};
|
|
53
|
-
showEmpty: {
|
|
54
|
-
type: BooleanConstructor;
|
|
55
|
-
default: boolean;
|
|
56
|
-
};
|
|
57
|
-
}>> & Readonly<{}>, {
|
|
58
|
-
data: {
|
|
59
|
-
[x: string]: any;
|
|
60
|
-
};
|
|
61
|
-
items: IFePartItem[];
|
|
62
|
-
direction: "horizontal" | "vertical";
|
|
63
|
-
showEmpty: boolean;
|
|
64
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
65
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
66
|
-
export default _default;
|
|
67
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
68
|
-
new (): {
|
|
69
|
-
$slots: S;
|
|
70
|
-
};
|
|
71
|
-
};
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
import { ImageProps } from 'element-plus';
|
|
2
|
-
import { PropType } from 'vue';
|
|
3
|
-
type Recordable<T = any> = Record<string, T>;
|
|
4
|
-
export type IFePartItem = {
|
|
5
|
-
/** 绑定字段 */
|
|
6
|
-
prop: string;
|
|
7
|
-
/** label名称 */
|
|
8
|
-
label?: string;
|
|
9
|
-
/** 内容 */
|
|
10
|
-
content?: any;
|
|
11
|
-
/** 占位默认1 */
|
|
12
|
-
colspan?: number | ((renderCallbackParams: Recordable) => number);
|
|
13
|
-
/** 占位默认1 */
|
|
14
|
-
rowspan?: number;
|
|
15
|
-
/** 是否展示tooltip */
|
|
16
|
-
toolTip?: boolean;
|
|
17
|
-
/** tooltip展示的行数 */
|
|
18
|
-
toolTipLine?: number;
|
|
19
|
-
/** toolTip最大宽度 */
|
|
20
|
-
toolTipMaxWidth?: number;
|
|
21
|
-
/** toolTip最大高度 */
|
|
22
|
-
toolTipMaxHeight?: number;
|
|
23
|
-
/** 单位 */
|
|
24
|
-
unit?: string;
|
|
25
|
-
/** 是否有按钮连接 */
|
|
26
|
-
hasLink?: boolean;
|
|
27
|
-
/** itemClass */
|
|
28
|
-
itemClass?: string;
|
|
29
|
-
/** labelClass */
|
|
30
|
-
labelClass?: string;
|
|
31
|
-
/** contentClass */
|
|
32
|
-
contentClass?: string;
|
|
33
|
-
/** 图片懒加载 */
|
|
34
|
-
lazy?: boolean;
|
|
35
|
-
/** 图片填充方式 */
|
|
36
|
-
fit?: ImageProps['fit'];
|
|
37
|
-
/** 是否展示暂无图片 */
|
|
38
|
-
showNoImage?: boolean;
|
|
39
|
-
/** 图片没有数据的标题 */
|
|
40
|
-
noDataTitle?: string;
|
|
41
|
-
/** 过滤器 */
|
|
42
|
-
filter?: any;
|
|
43
|
-
/** 过滤器配置 */
|
|
44
|
-
filterParams?: any;
|
|
45
|
-
/** 是否隐藏 */
|
|
46
|
-
hidden?: boolean;
|
|
47
|
-
/** 是否展示 */
|
|
48
|
-
ifShow?: boolean | ((renderCallbackParams: Recordable) => boolean);
|
|
49
|
-
/** 是否展示空内容 */
|
|
50
|
-
showEmpty?: boolean;
|
|
51
|
-
/** 是否展示左侧线 */
|
|
52
|
-
noBorder?: boolean;
|
|
53
|
-
/** 间隔虚线位置靠下 */
|
|
54
|
-
borderBottom?: boolean;
|
|
55
|
-
};
|
|
56
|
-
export declare const fePartItemProps: {
|
|
57
|
-
/** 字段配置 */
|
|
58
|
-
items: {
|
|
59
|
-
type: PropType<IFePartItem[]>;
|
|
60
|
-
default: () => never[];
|
|
61
|
-
};
|
|
62
|
-
/** 布局方向 */
|
|
63
|
-
direction: {
|
|
64
|
-
type: PropType<"vertical" | "horizontal">;
|
|
65
|
-
default: string;
|
|
66
|
-
};
|
|
67
|
-
/** 数据对象 */
|
|
68
|
-
data: {
|
|
69
|
-
type: PropType<{
|
|
70
|
-
[x: string]: any;
|
|
71
|
-
}>;
|
|
72
|
-
default: () => {};
|
|
73
|
-
};
|
|
74
|
-
/** 展示空数据 */
|
|
75
|
-
showEmpty: {
|
|
76
|
-
type: BooleanConstructor;
|
|
77
|
-
default: boolean;
|
|
78
|
-
};
|
|
79
|
-
};
|
|
80
|
-
export type SjzyPartItemType = IFePartItem;
|
|
81
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './src';
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
import { VNode } from 'vue';
|
|
2
|
-
export type ErrorMessageSlotProps = {
|
|
3
|
-
message: string | undefined;
|
|
4
|
-
};
|
|
5
|
-
declare const ErrorMessageImpl: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
6
|
-
/**
|
|
7
|
-
* 指定用于渲染错误消息的标签或组件。
|
|
8
|
-
* 如果未提供,则默认不指定特定标签。
|
|
9
|
-
* @type {string}
|
|
10
|
-
* @default undefined
|
|
11
|
-
*/
|
|
12
|
-
as: {
|
|
13
|
-
type: StringConstructor;
|
|
14
|
-
default: undefined;
|
|
15
|
-
};
|
|
16
|
-
/**
|
|
17
|
-
* 用于标识表单字段的名称,从表单上下文中获取该字段的错误消息。
|
|
18
|
-
* 该属性是必需的。
|
|
19
|
-
* @type {string}
|
|
20
|
-
* @required
|
|
21
|
-
*/
|
|
22
|
-
name: {
|
|
23
|
-
type: StringConstructor;
|
|
24
|
-
required: true;
|
|
25
|
-
};
|
|
26
|
-
}>, () => VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
27
|
-
[key: string]: any;
|
|
28
|
-
}> | VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
29
|
-
[key: string]: any;
|
|
30
|
-
}>[] | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
31
|
-
/**
|
|
32
|
-
* 指定用于渲染错误消息的标签或组件。
|
|
33
|
-
* 如果未提供,则默认不指定特定标签。
|
|
34
|
-
* @type {string}
|
|
35
|
-
* @default undefined
|
|
36
|
-
*/
|
|
37
|
-
as: {
|
|
38
|
-
type: StringConstructor;
|
|
39
|
-
default: undefined;
|
|
40
|
-
};
|
|
41
|
-
/**
|
|
42
|
-
* 用于标识表单字段的名称,从表单上下文中获取该字段的错误消息。
|
|
43
|
-
* 该属性是必需的。
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @required
|
|
46
|
-
*/
|
|
47
|
-
name: {
|
|
48
|
-
type: StringConstructor;
|
|
49
|
-
required: true;
|
|
50
|
-
};
|
|
51
|
-
}>> & Readonly<{}>, {
|
|
52
|
-
as: string;
|
|
53
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
54
|
-
export declare const ErrorMessage: typeof ErrorMessageImpl & {
|
|
55
|
-
new (): {
|
|
56
|
-
$slots: {
|
|
57
|
-
default: (arg: ErrorMessageSlotProps) => VNode[];
|
|
58
|
-
};
|
|
59
|
-
};
|
|
60
|
-
};
|
|
61
|
-
export {};
|