@dao-style/core 1.6.1-beta.8 → 1.7.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/dist/components/dropdown/dropdown-item.d.ts +40 -1
- package/dist/components/dropdown/dropdown-item.vue.d.ts +18 -0
- package/dist/components/dropdown/props.d.ts +8 -0
- package/dist/components/message/message-inner.vue.d.ts +47 -0
- package/dist/components/message/message.d.ts +48 -8
- package/dist/components/message/message.vue.d.ts +18 -2
- package/dist/components/message/props.d.ts +4 -0
- package/dist/dao-style.js +6 -6
- package/dist/dao-style.mjs +4811 -4333
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -8,6 +8,8 @@ declare const DaoDropdownItem: {
|
|
|
8
8
|
type: import("./props").DropdownItemType;
|
|
9
9
|
disabled: boolean;
|
|
10
10
|
color: import("./props").DropdownItemColor;
|
|
11
|
+
tooltipContent: string;
|
|
12
|
+
tooltipDisabled: boolean;
|
|
11
13
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
12
14
|
type: {
|
|
13
15
|
type: import("vue").PropType<import("./props").DropdownItemType>;
|
|
@@ -23,9 +25,17 @@ declare const DaoDropdownItem: {
|
|
|
23
25
|
default: string;
|
|
24
26
|
validator: (value: string) => boolean;
|
|
25
27
|
};
|
|
28
|
+
tooltipContent: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
tooltipDisabled: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
26
36
|
}>> & {
|
|
27
37
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
28
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "disabled" | "color">;
|
|
38
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "disabled" | "color" | "tooltipContent" | "tooltipDisabled">;
|
|
29
39
|
$attrs: {
|
|
30
40
|
[x: string]: unknown;
|
|
31
41
|
};
|
|
@@ -54,6 +64,14 @@ declare const DaoDropdownItem: {
|
|
|
54
64
|
default: string;
|
|
55
65
|
validator: (value: string) => boolean;
|
|
56
66
|
};
|
|
67
|
+
tooltipContent: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
71
|
+
tooltipDisabled: {
|
|
72
|
+
type: BooleanConstructor;
|
|
73
|
+
default: boolean;
|
|
74
|
+
};
|
|
57
75
|
}>> & {
|
|
58
76
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
59
77
|
}, {
|
|
@@ -65,6 +83,8 @@ declare const DaoDropdownItem: {
|
|
|
65
83
|
type: import("./props").DropdownItemType;
|
|
66
84
|
disabled: boolean;
|
|
67
85
|
color: import("./props").DropdownItemColor;
|
|
86
|
+
tooltipContent: string;
|
|
87
|
+
tooltipDisabled: boolean;
|
|
68
88
|
}, {}, string> & {
|
|
69
89
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
70
90
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -100,6 +120,14 @@ declare const DaoDropdownItem: {
|
|
|
100
120
|
default: string;
|
|
101
121
|
validator: (value: string) => boolean;
|
|
102
122
|
};
|
|
123
|
+
tooltipContent: {
|
|
124
|
+
type: StringConstructor;
|
|
125
|
+
default: string;
|
|
126
|
+
};
|
|
127
|
+
tooltipDisabled: {
|
|
128
|
+
type: BooleanConstructor;
|
|
129
|
+
default: boolean;
|
|
130
|
+
};
|
|
103
131
|
}>> & {
|
|
104
132
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
105
133
|
} & import("vue").ShallowUnwrapRef<{
|
|
@@ -126,6 +154,14 @@ declare const DaoDropdownItem: {
|
|
|
126
154
|
default: string;
|
|
127
155
|
validator: (value: string) => boolean;
|
|
128
156
|
};
|
|
157
|
+
tooltipContent: {
|
|
158
|
+
type: StringConstructor;
|
|
159
|
+
default: string;
|
|
160
|
+
};
|
|
161
|
+
tooltipDisabled: {
|
|
162
|
+
type: BooleanConstructor;
|
|
163
|
+
default: boolean;
|
|
164
|
+
};
|
|
129
165
|
}>> & {
|
|
130
166
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
131
167
|
}, {
|
|
@@ -137,10 +173,13 @@ declare const DaoDropdownItem: {
|
|
|
137
173
|
type: import("./props").DropdownItemType;
|
|
138
174
|
disabled: boolean;
|
|
139
175
|
color: import("./props").DropdownItemColor;
|
|
176
|
+
tooltipContent: string;
|
|
177
|
+
tooltipDisabled: boolean;
|
|
140
178
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
141
179
|
$props: Partial<DropdownItemProps>;
|
|
142
180
|
$slots: {
|
|
143
181
|
default: SlotFn;
|
|
182
|
+
tooltipContent: SlotFn;
|
|
144
183
|
};
|
|
145
184
|
});
|
|
146
185
|
export default DaoDropdownItem;
|
|
@@ -13,6 +13,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13
13
|
default: string;
|
|
14
14
|
validator: (value: string) => boolean;
|
|
15
15
|
};
|
|
16
|
+
tooltipContent: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
tooltipDisabled: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
16
24
|
}, {
|
|
17
25
|
classList: import("vue").ComputedRef<string[]>;
|
|
18
26
|
itemAttrs: import("vue").ComputedRef<{
|
|
@@ -33,11 +41,21 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
41
|
default: string;
|
|
34
42
|
validator: (value: string) => boolean;
|
|
35
43
|
};
|
|
44
|
+
tooltipContent: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
48
|
+
tooltipDisabled: {
|
|
49
|
+
type: BooleanConstructor;
|
|
50
|
+
default: boolean;
|
|
51
|
+
};
|
|
36
52
|
}>> & {
|
|
37
53
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
38
54
|
}, {
|
|
39
55
|
type: import("./props").DropdownItemType;
|
|
40
56
|
disabled: boolean;
|
|
41
57
|
color: import("./props").DropdownItemColor;
|
|
58
|
+
tooltipContent: string;
|
|
59
|
+
tooltipDisabled: boolean;
|
|
42
60
|
}>;
|
|
43
61
|
export default _default;
|
|
@@ -46,6 +46,14 @@ export declare const dropdownItemProps: {
|
|
|
46
46
|
default: string;
|
|
47
47
|
validator: (value: string) => boolean;
|
|
48
48
|
};
|
|
49
|
+
tooltipContent: {
|
|
50
|
+
type: StringConstructor;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
tooltipDisabled: {
|
|
54
|
+
type: BooleanConstructor;
|
|
55
|
+
default: boolean;
|
|
56
|
+
};
|
|
49
57
|
};
|
|
50
58
|
export type DropdownProps = ExtractPropTypes<typeof dropdownProps>;
|
|
51
59
|
export type DropdownItemProps = ExtractPropTypes<typeof dropdownItemProps>;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
type: {
|
|
3
|
+
type: import("vue").PropType<import("./types").DaoMessageType>;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
title: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
content: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
isCloseShow: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
}, {
|
|
19
|
+
typeClass: import("vue").ComputedRef<string>;
|
|
20
|
+
typeIconName: import("vue").ComputedRef<string>;
|
|
21
|
+
onlyContent: import("vue").ComputedRef<string | false | import("vue").Slot | undefined>;
|
|
22
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "close"[], "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
+
type: {
|
|
24
|
+
type: import("vue").PropType<import("./types").DaoMessageType>;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
title: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
content: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
isCloseShow: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
}>> & {
|
|
40
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
41
|
+
}, {
|
|
42
|
+
type: import("./types").DaoMessageType;
|
|
43
|
+
title: string;
|
|
44
|
+
content: string;
|
|
45
|
+
isCloseShow: boolean;
|
|
46
|
+
}>;
|
|
47
|
+
export default _default;
|
|
@@ -9,12 +9,17 @@ declare const DaoMessage: {
|
|
|
9
9
|
modelValue: boolean | undefined;
|
|
10
10
|
title: string;
|
|
11
11
|
content: string;
|
|
12
|
+
simple: boolean;
|
|
12
13
|
isCloseShow: boolean;
|
|
13
14
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
14
15
|
modelValue: {
|
|
15
16
|
type: import("vue").PropType<boolean | undefined>;
|
|
16
17
|
default: undefined;
|
|
17
18
|
};
|
|
19
|
+
simple: {
|
|
20
|
+
type: import("vue").PropType<boolean>;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
18
23
|
type: {
|
|
19
24
|
type: import("vue").PropType<import("./types").DaoMessageType>;
|
|
20
25
|
default: string;
|
|
@@ -37,7 +42,7 @@ declare const DaoMessage: {
|
|
|
37
42
|
onClosed?: ((...args: any[]) => any) | undefined;
|
|
38
43
|
onBeforeClose?: ((...args: any[]) => any) | undefined;
|
|
39
44
|
onBeforeShow?: ((...args: any[]) => any) | undefined;
|
|
40
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "modelValue" | "title" | "content" | "isCloseShow">;
|
|
45
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "modelValue" | "title" | "content" | "simple" | "isCloseShow">;
|
|
41
46
|
$attrs: {
|
|
42
47
|
[x: string]: unknown;
|
|
43
48
|
};
|
|
@@ -56,6 +61,10 @@ declare const DaoMessage: {
|
|
|
56
61
|
type: import("vue").PropType<boolean | undefined>;
|
|
57
62
|
default: undefined;
|
|
58
63
|
};
|
|
64
|
+
simple: {
|
|
65
|
+
type: import("vue").PropType<boolean>;
|
|
66
|
+
default: boolean;
|
|
67
|
+
};
|
|
59
68
|
type: {
|
|
60
69
|
type: import("vue").PropType<import("./types").DaoMessageType>;
|
|
61
70
|
default: string;
|
|
@@ -80,15 +89,23 @@ declare const DaoMessage: {
|
|
|
80
89
|
onBeforeShow?: ((...args: any[]) => any) | undefined;
|
|
81
90
|
}, {
|
|
82
91
|
typeClass: import("vue").ComputedRef<string>;
|
|
83
|
-
typeIconName: import("vue").ComputedRef<string>;
|
|
84
92
|
closeMessage: () => void;
|
|
85
93
|
isMessageShow: import("vue").ComputedRef<boolean>;
|
|
86
|
-
|
|
94
|
+
omit: {
|
|
95
|
+
<T extends object, K extends import("lodash").PropertyName[]>(object: T | null | undefined, ...paths: K): Pick<T, Exclude<keyof T, K[number]>>;
|
|
96
|
+
<T_1 extends object, K_1 extends keyof T_1>(object: T_1 | null | undefined, ...paths: import("lodash").Many<K_1>[]): import("lodash").Omit<T_1, K_1>;
|
|
97
|
+
<T_2 extends object>(object: T_2 | null | undefined, ...paths: import("lodash").Many<import("lodash").PropertyName>[]): Partial<T_2>;
|
|
98
|
+
};
|
|
99
|
+
pick: {
|
|
100
|
+
<T_3 extends object, U extends keyof T_3>(object: T_3, ...props: import("lodash").Many<U>[]): Pick<T_3, U>;
|
|
101
|
+
<T_4>(object: T_4 | null | undefined, ...props: import("lodash").PropertyPath[]): Partial<T_4>;
|
|
102
|
+
};
|
|
87
103
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("show" | "update:modelValue" | "closed" | "beforeClose" | "beforeShow")[], string, {
|
|
88
104
|
type: import("./types").DaoMessageType;
|
|
89
105
|
modelValue: boolean | undefined;
|
|
90
106
|
title: string;
|
|
91
107
|
content: string;
|
|
108
|
+
simple: boolean;
|
|
92
109
|
isCloseShow: boolean;
|
|
93
110
|
}, {}, string> & {
|
|
94
111
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -109,12 +126,16 @@ declare const DaoMessage: {
|
|
|
109
126
|
};
|
|
110
127
|
$forceUpdate: () => void;
|
|
111
128
|
$nextTick: typeof import("vue").nextTick;
|
|
112
|
-
$watch<
|
|
129
|
+
$watch<T_5 extends string | ((...args: any) => any)>(source: T_5, cb: T_5 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
113
130
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
114
131
|
modelValue: {
|
|
115
132
|
type: import("vue").PropType<boolean | undefined>;
|
|
116
133
|
default: undefined;
|
|
117
134
|
};
|
|
135
|
+
simple: {
|
|
136
|
+
type: import("vue").PropType<boolean>;
|
|
137
|
+
default: boolean;
|
|
138
|
+
};
|
|
118
139
|
type: {
|
|
119
140
|
type: import("vue").PropType<import("./types").DaoMessageType>;
|
|
120
141
|
default: string;
|
|
@@ -139,10 +160,17 @@ declare const DaoMessage: {
|
|
|
139
160
|
onBeforeShow?: ((...args: any[]) => any) | undefined;
|
|
140
161
|
} & import("vue").ShallowUnwrapRef<{
|
|
141
162
|
typeClass: import("vue").ComputedRef<string>;
|
|
142
|
-
typeIconName: import("vue").ComputedRef<string>;
|
|
143
163
|
closeMessage: () => void;
|
|
144
164
|
isMessageShow: import("vue").ComputedRef<boolean>;
|
|
145
|
-
|
|
165
|
+
omit: {
|
|
166
|
+
<T extends object, K extends import("lodash").PropertyName[]>(object: T | null | undefined, ...paths: K): Pick<T, Exclude<keyof T, K[number]>>;
|
|
167
|
+
<T_1 extends object, K_1 extends keyof T_1>(object: T_1 | null | undefined, ...paths: import("lodash").Many<K_1>[]): import("lodash").Omit<T_1, K_1>;
|
|
168
|
+
<T_2 extends object>(object: T_2 | null | undefined, ...paths: import("lodash").Many<import("lodash").PropertyName>[]): Partial<T_2>;
|
|
169
|
+
};
|
|
170
|
+
pick: {
|
|
171
|
+
<T_3 extends object, U extends keyof T_3>(object: T_3, ...props: import("lodash").Many<U>[]): Pick<T_3, U>;
|
|
172
|
+
<T_4>(object: T_4 | null | undefined, ...props: import("lodash").PropertyPath[]): Partial<T_4>;
|
|
173
|
+
};
|
|
146
174
|
}> & {} & import("vue").ComponentCustomProperties & {};
|
|
147
175
|
__isFragment?: undefined;
|
|
148
176
|
__isTeleport?: undefined;
|
|
@@ -152,6 +180,10 @@ declare const DaoMessage: {
|
|
|
152
180
|
type: import("vue").PropType<boolean | undefined>;
|
|
153
181
|
default: undefined;
|
|
154
182
|
};
|
|
183
|
+
simple: {
|
|
184
|
+
type: import("vue").PropType<boolean>;
|
|
185
|
+
default: boolean;
|
|
186
|
+
};
|
|
155
187
|
type: {
|
|
156
188
|
type: import("vue").PropType<import("./types").DaoMessageType>;
|
|
157
189
|
default: string;
|
|
@@ -176,15 +208,23 @@ declare const DaoMessage: {
|
|
|
176
208
|
onBeforeShow?: ((...args: any[]) => any) | undefined;
|
|
177
209
|
}, {
|
|
178
210
|
typeClass: import("vue").ComputedRef<string>;
|
|
179
|
-
typeIconName: import("vue").ComputedRef<string>;
|
|
180
211
|
closeMessage: () => void;
|
|
181
212
|
isMessageShow: import("vue").ComputedRef<boolean>;
|
|
182
|
-
|
|
213
|
+
omit: {
|
|
214
|
+
<T extends object, K extends import("lodash").PropertyName[]>(object: T | null | undefined, ...paths: K): Pick<T, Exclude<keyof T, K[number]>>;
|
|
215
|
+
<T_1 extends object, K_1 extends keyof T_1>(object: T_1 | null | undefined, ...paths: import("lodash").Many<K_1>[]): import("lodash").Omit<T_1, K_1>;
|
|
216
|
+
<T_2 extends object>(object: T_2 | null | undefined, ...paths: import("lodash").Many<import("lodash").PropertyName>[]): Partial<T_2>;
|
|
217
|
+
};
|
|
218
|
+
pick: {
|
|
219
|
+
<T_3 extends object, U extends keyof T_3>(object: T_3, ...props: import("lodash").Many<U>[]): Pick<T_3, U>;
|
|
220
|
+
<T_4>(object: T_4 | null | undefined, ...props: import("lodash").PropertyPath[]): Partial<T_4>;
|
|
221
|
+
};
|
|
183
222
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("show" | "update:modelValue" | "closed" | "beforeClose" | "beforeShow")[], "show" | "update:modelValue" | "closed" | "beforeClose" | "beforeShow", {
|
|
184
223
|
type: import("./types").DaoMessageType;
|
|
185
224
|
modelValue: boolean | undefined;
|
|
186
225
|
title: string;
|
|
187
226
|
content: string;
|
|
227
|
+
simple: boolean;
|
|
188
228
|
isCloseShow: boolean;
|
|
189
229
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
190
230
|
$props: Partial<MessageProps>;
|
|
@@ -3,6 +3,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3
3
|
type: import("vue").PropType<boolean | undefined>;
|
|
4
4
|
default: undefined;
|
|
5
5
|
};
|
|
6
|
+
simple: {
|
|
7
|
+
type: import("vue").PropType<boolean>;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
6
10
|
type: {
|
|
7
11
|
type: import("vue").PropType<import("./types").DaoMessageType>;
|
|
8
12
|
default: string;
|
|
@@ -21,15 +25,26 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
21
25
|
};
|
|
22
26
|
}, {
|
|
23
27
|
typeClass: import("vue").ComputedRef<string>;
|
|
24
|
-
typeIconName: import("vue").ComputedRef<string>;
|
|
25
28
|
closeMessage: () => void;
|
|
26
29
|
isMessageShow: import("vue").ComputedRef<boolean>;
|
|
27
|
-
|
|
30
|
+
omit: {
|
|
31
|
+
<T extends object, K extends import("lodash").PropertyName[]>(object: T | null | undefined, ...paths: K): Pick<T, Exclude<keyof T, K[number]>>;
|
|
32
|
+
<T_1 extends object, K_1 extends keyof T_1>(object: T_1 | null | undefined, ...paths: import("lodash").Many<K_1>[]): import("lodash").Omit<T_1, K_1>;
|
|
33
|
+
<T_2 extends object>(object: T_2 | null | undefined, ...paths: import("lodash").Many<import("lodash").PropertyName>[]): Partial<T_2>;
|
|
34
|
+
};
|
|
35
|
+
pick: {
|
|
36
|
+
<T_3 extends object, U extends keyof T_3>(object: T_3, ...props: import("lodash").Many<U>[]): Pick<T_3, U>;
|
|
37
|
+
<T_4>(object: T_4 | null | undefined, ...props: import("lodash").PropertyPath[]): Partial<T_4>;
|
|
38
|
+
};
|
|
28
39
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("show" | "update:modelValue" | "closed" | "beforeClose" | "beforeShow")[], "show" | "update:modelValue" | "closed" | "beforeClose" | "beforeShow", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
40
|
modelValue: {
|
|
30
41
|
type: import("vue").PropType<boolean | undefined>;
|
|
31
42
|
default: undefined;
|
|
32
43
|
};
|
|
44
|
+
simple: {
|
|
45
|
+
type: import("vue").PropType<boolean>;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
33
48
|
type: {
|
|
34
49
|
type: import("vue").PropType<import("./types").DaoMessageType>;
|
|
35
50
|
default: string;
|
|
@@ -57,6 +72,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
57
72
|
modelValue: boolean | undefined;
|
|
58
73
|
title: string;
|
|
59
74
|
content: string;
|
|
75
|
+
simple: boolean;
|
|
60
76
|
isCloseShow: boolean;
|
|
61
77
|
}>;
|
|
62
78
|
export default _default;
|