@a2simcode/ui 0.0.178 → 0.0.180
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/dialog-full/index.d.ts +15 -0
- package/dist/components/dialog-full/src/index.vue.d.ts +17 -0
- package/dist/components/layer/src/layer.vue.d.ts +2 -2
- package/dist/simcode-ui.es.js +1192 -1178
- package/dist/simcode-ui.umd.js +1 -1
- package/dist/stats.html +1 -1
- package/dist/ui.css +1 -1
- package/docs/components/dialog-full.md +1 -1
- package/docs/components/meta/dialog-full.ts +6 -0
- package/docs/components/meta/layer.ts +1 -1
- package/package.json +1 -1
|
@@ -19,6 +19,10 @@ export declare const JDialogFull: {
|
|
|
19
19
|
type: BooleanConstructor;
|
|
20
20
|
default: boolean;
|
|
21
21
|
};
|
|
22
|
+
hasHeader: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
22
26
|
btnText: {
|
|
23
27
|
type: StringConstructor;
|
|
24
28
|
default: string;
|
|
@@ -94,6 +98,7 @@ export declare const JDialogFull: {
|
|
|
94
98
|
btnText: string;
|
|
95
99
|
destroyOnClose: boolean;
|
|
96
100
|
hasSaveBtn: boolean;
|
|
101
|
+
hasHeader: boolean;
|
|
97
102
|
visible: boolean;
|
|
98
103
|
subtitle: Function;
|
|
99
104
|
showCloseBtn: boolean;
|
|
@@ -125,6 +130,10 @@ export declare const JDialogFull: {
|
|
|
125
130
|
type: BooleanConstructor;
|
|
126
131
|
default: boolean;
|
|
127
132
|
};
|
|
133
|
+
hasHeader: {
|
|
134
|
+
type: BooleanConstructor;
|
|
135
|
+
default: boolean;
|
|
136
|
+
};
|
|
128
137
|
btnText: {
|
|
129
138
|
type: StringConstructor;
|
|
130
139
|
default: string;
|
|
@@ -194,6 +203,7 @@ export declare const JDialogFull: {
|
|
|
194
203
|
btnText: string;
|
|
195
204
|
destroyOnClose: boolean;
|
|
196
205
|
hasSaveBtn: boolean;
|
|
206
|
+
hasHeader: boolean;
|
|
197
207
|
visible: boolean;
|
|
198
208
|
subtitle: Function;
|
|
199
209
|
showCloseBtn: boolean;
|
|
@@ -222,6 +232,10 @@ export declare const JDialogFull: {
|
|
|
222
232
|
type: BooleanConstructor;
|
|
223
233
|
default: boolean;
|
|
224
234
|
};
|
|
235
|
+
hasHeader: {
|
|
236
|
+
type: BooleanConstructor;
|
|
237
|
+
default: boolean;
|
|
238
|
+
};
|
|
225
239
|
btnText: {
|
|
226
240
|
type: StringConstructor;
|
|
227
241
|
default: string;
|
|
@@ -297,6 +311,7 @@ export declare const JDialogFull: {
|
|
|
297
311
|
btnText: string;
|
|
298
312
|
destroyOnClose: boolean;
|
|
299
313
|
hasSaveBtn: boolean;
|
|
314
|
+
hasHeader: boolean;
|
|
300
315
|
visible: boolean;
|
|
301
316
|
subtitle: Function;
|
|
302
317
|
showCloseBtn: boolean;
|
|
@@ -48,6 +48,14 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
48
48
|
type: BooleanConstructor;
|
|
49
49
|
default: boolean;
|
|
50
50
|
};
|
|
51
|
+
/**
|
|
52
|
+
* @zh 是否有头部
|
|
53
|
+
* @defaultValue true
|
|
54
|
+
*/
|
|
55
|
+
hasHeader: {
|
|
56
|
+
type: BooleanConstructor;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
51
59
|
/**
|
|
52
60
|
* @zh 确定按钮文字
|
|
53
61
|
*/
|
|
@@ -176,6 +184,14 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
176
184
|
type: BooleanConstructor;
|
|
177
185
|
default: boolean;
|
|
178
186
|
};
|
|
187
|
+
/**
|
|
188
|
+
* @zh 是否有头部
|
|
189
|
+
* @defaultValue true
|
|
190
|
+
*/
|
|
191
|
+
hasHeader: {
|
|
192
|
+
type: BooleanConstructor;
|
|
193
|
+
default: boolean;
|
|
194
|
+
};
|
|
179
195
|
/**
|
|
180
196
|
* @zh 确定按钮文字
|
|
181
197
|
*/
|
|
@@ -273,6 +289,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
273
289
|
btnText: string;
|
|
274
290
|
destroyOnClose: boolean;
|
|
275
291
|
hasSaveBtn: boolean;
|
|
292
|
+
hasHeader: boolean;
|
|
276
293
|
visible: boolean;
|
|
277
294
|
subtitle: Function;
|
|
278
295
|
showCloseBtn: boolean;
|
|
@@ -60,7 +60,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
60
60
|
default: () => never[];
|
|
61
61
|
};
|
|
62
62
|
/**
|
|
63
|
-
* @zh
|
|
63
|
+
* @zh 是否有头部
|
|
64
64
|
* @defaultValue true
|
|
65
65
|
*/
|
|
66
66
|
hasHeader: {
|
|
@@ -175,7 +175,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
175
175
|
default: () => never[];
|
|
176
176
|
};
|
|
177
177
|
/**
|
|
178
|
-
* @zh
|
|
178
|
+
* @zh 是否有头部
|
|
179
179
|
* @defaultValue true
|
|
180
180
|
*/
|
|
181
181
|
hasHeader: {
|