@deot/vc-components 1.0.28 → 1.0.29
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.cjs +782 -430
- package/dist/index.d.ts +406 -22
- package/dist/index.iife.js +768 -416
- package/dist/index.js +780 -432
- package/dist/index.style.css +1 -1
- package/dist/index.umd.cjs +768 -416
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1263,19 +1263,113 @@ cancelDisabled: boolean;
|
|
|
1263
1263
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1264
1264
|
|
|
1265
1265
|
export declare const Dropdown: DefineComponent<ExtractPropTypes< {
|
|
1266
|
-
|
|
1266
|
+
modelValue: {
|
|
1267
|
+
type: BooleanConstructor;
|
|
1268
|
+
default: boolean;
|
|
1269
|
+
};
|
|
1270
|
+
portalClass: (ObjectConstructor | StringConstructor)[];
|
|
1271
|
+
placement: {
|
|
1267
1272
|
type: StringConstructor;
|
|
1268
1273
|
default: string;
|
|
1269
1274
|
};
|
|
1270
|
-
|
|
1271
|
-
tag: {
|
|
1275
|
+
trigger: {
|
|
1272
1276
|
type: StringConstructor;
|
|
1273
1277
|
default: string;
|
|
1274
1278
|
};
|
|
1279
|
+
arrow: {
|
|
1280
|
+
type: BooleanConstructor;
|
|
1281
|
+
default: boolean;
|
|
1282
|
+
};
|
|
1283
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "close" | "update:modelValue" | "visible-change" | "ready")[], "click" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
1284
|
+
modelValue: {
|
|
1285
|
+
type: BooleanConstructor;
|
|
1286
|
+
default: boolean;
|
|
1287
|
+
};
|
|
1288
|
+
portalClass: (ObjectConstructor | StringConstructor)[];
|
|
1289
|
+
placement: {
|
|
1290
|
+
type: StringConstructor;
|
|
1291
|
+
default: string;
|
|
1292
|
+
};
|
|
1293
|
+
trigger: {
|
|
1294
|
+
type: StringConstructor;
|
|
1295
|
+
default: string;
|
|
1296
|
+
};
|
|
1297
|
+
arrow: {
|
|
1298
|
+
type: BooleanConstructor;
|
|
1299
|
+
default: boolean;
|
|
1300
|
+
};
|
|
1301
|
+
}>> & Readonly<{
|
|
1302
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
1303
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1304
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1305
|
+
onReady?: ((...args: any[]) => any) | undefined;
|
|
1306
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
1307
|
+
}>, {
|
|
1308
|
+
modelValue: boolean;
|
|
1309
|
+
placement: string;
|
|
1310
|
+
arrow: boolean;
|
|
1311
|
+
trigger: string;
|
|
1312
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1313
|
+
|
|
1314
|
+
export declare const DropdownItem: DefineComponent<ExtractPropTypes< {
|
|
1315
|
+
value: {
|
|
1316
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1317
|
+
value: undefined;
|
|
1318
|
+
};
|
|
1319
|
+
label: {
|
|
1320
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1321
|
+
value: undefined;
|
|
1322
|
+
};
|
|
1323
|
+
disabled: {
|
|
1324
|
+
type: BooleanConstructor;
|
|
1325
|
+
default: boolean;
|
|
1326
|
+
};
|
|
1327
|
+
selected: {
|
|
1328
|
+
type: BooleanConstructor;
|
|
1329
|
+
default: boolean;
|
|
1330
|
+
};
|
|
1331
|
+
divided: {
|
|
1332
|
+
type: BooleanConstructor;
|
|
1333
|
+
default: boolean;
|
|
1334
|
+
};
|
|
1335
|
+
closable: {
|
|
1336
|
+
type: BooleanConstructor;
|
|
1337
|
+
default: boolean;
|
|
1338
|
+
};
|
|
1339
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
1340
|
+
value: {
|
|
1341
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1342
|
+
value: undefined;
|
|
1343
|
+
};
|
|
1344
|
+
label: {
|
|
1345
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1346
|
+
value: undefined;
|
|
1347
|
+
};
|
|
1348
|
+
disabled: {
|
|
1349
|
+
type: BooleanConstructor;
|
|
1350
|
+
default: boolean;
|
|
1351
|
+
};
|
|
1352
|
+
selected: {
|
|
1353
|
+
type: BooleanConstructor;
|
|
1354
|
+
default: boolean;
|
|
1355
|
+
};
|
|
1356
|
+
divided: {
|
|
1357
|
+
type: BooleanConstructor;
|
|
1358
|
+
default: boolean;
|
|
1359
|
+
};
|
|
1360
|
+
closable: {
|
|
1361
|
+
type: BooleanConstructor;
|
|
1362
|
+
default: boolean;
|
|
1363
|
+
};
|
|
1275
1364
|
}>> & Readonly<{}>, {
|
|
1276
|
-
|
|
1365
|
+
closable: boolean;
|
|
1366
|
+
disabled: boolean;
|
|
1367
|
+
selected: boolean;
|
|
1368
|
+
divided: boolean;
|
|
1277
1369
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1278
1370
|
|
|
1371
|
+
export declare const DropdownMenu: DefineComponent< {}, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1372
|
+
|
|
1279
1373
|
export declare const Editor: DefineComponent<ExtractPropTypes< {
|
|
1280
1374
|
tag: {
|
|
1281
1375
|
type: StringConstructor;
|
|
@@ -3382,19 +3476,113 @@ cancelDisabled: boolean;
|
|
|
3382
3476
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3383
3477
|
|
|
3384
3478
|
export declare const MDropdown: DefineComponent<ExtractPropTypes< {
|
|
3385
|
-
|
|
3479
|
+
modelValue: {
|
|
3480
|
+
type: BooleanConstructor;
|
|
3481
|
+
default: boolean;
|
|
3482
|
+
};
|
|
3483
|
+
portalClass: (ObjectConstructor | StringConstructor)[];
|
|
3484
|
+
placement: {
|
|
3386
3485
|
type: StringConstructor;
|
|
3387
3486
|
default: string;
|
|
3388
3487
|
};
|
|
3389
|
-
|
|
3390
|
-
tag: {
|
|
3488
|
+
trigger: {
|
|
3391
3489
|
type: StringConstructor;
|
|
3392
3490
|
default: string;
|
|
3393
3491
|
};
|
|
3492
|
+
arrow: {
|
|
3493
|
+
type: BooleanConstructor;
|
|
3494
|
+
default: boolean;
|
|
3495
|
+
};
|
|
3496
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "close" | "update:modelValue" | "visible-change" | "ready")[], "click" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
3497
|
+
modelValue: {
|
|
3498
|
+
type: BooleanConstructor;
|
|
3499
|
+
default: boolean;
|
|
3500
|
+
};
|
|
3501
|
+
portalClass: (ObjectConstructor | StringConstructor)[];
|
|
3502
|
+
placement: {
|
|
3503
|
+
type: StringConstructor;
|
|
3504
|
+
default: string;
|
|
3505
|
+
};
|
|
3506
|
+
trigger: {
|
|
3507
|
+
type: StringConstructor;
|
|
3508
|
+
default: string;
|
|
3509
|
+
};
|
|
3510
|
+
arrow: {
|
|
3511
|
+
type: BooleanConstructor;
|
|
3512
|
+
default: boolean;
|
|
3513
|
+
};
|
|
3514
|
+
}>> & Readonly<{
|
|
3515
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
3516
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
3517
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3518
|
+
onReady?: ((...args: any[]) => any) | undefined;
|
|
3519
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
3520
|
+
}>, {
|
|
3521
|
+
modelValue: boolean;
|
|
3522
|
+
placement: string;
|
|
3523
|
+
arrow: boolean;
|
|
3524
|
+
trigger: string;
|
|
3525
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3526
|
+
|
|
3527
|
+
export declare const MDropdownItem: DefineComponent<ExtractPropTypes< {
|
|
3528
|
+
value: {
|
|
3529
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3530
|
+
value: undefined;
|
|
3531
|
+
};
|
|
3532
|
+
label: {
|
|
3533
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3534
|
+
value: undefined;
|
|
3535
|
+
};
|
|
3536
|
+
disabled: {
|
|
3537
|
+
type: BooleanConstructor;
|
|
3538
|
+
default: boolean;
|
|
3539
|
+
};
|
|
3540
|
+
selected: {
|
|
3541
|
+
type: BooleanConstructor;
|
|
3542
|
+
default: boolean;
|
|
3543
|
+
};
|
|
3544
|
+
divided: {
|
|
3545
|
+
type: BooleanConstructor;
|
|
3546
|
+
default: boolean;
|
|
3547
|
+
};
|
|
3548
|
+
closable: {
|
|
3549
|
+
type: BooleanConstructor;
|
|
3550
|
+
default: boolean;
|
|
3551
|
+
};
|
|
3552
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
3553
|
+
value: {
|
|
3554
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3555
|
+
value: undefined;
|
|
3556
|
+
};
|
|
3557
|
+
label: {
|
|
3558
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3559
|
+
value: undefined;
|
|
3560
|
+
};
|
|
3561
|
+
disabled: {
|
|
3562
|
+
type: BooleanConstructor;
|
|
3563
|
+
default: boolean;
|
|
3564
|
+
};
|
|
3565
|
+
selected: {
|
|
3566
|
+
type: BooleanConstructor;
|
|
3567
|
+
default: boolean;
|
|
3568
|
+
};
|
|
3569
|
+
divided: {
|
|
3570
|
+
type: BooleanConstructor;
|
|
3571
|
+
default: boolean;
|
|
3572
|
+
};
|
|
3573
|
+
closable: {
|
|
3574
|
+
type: BooleanConstructor;
|
|
3575
|
+
default: boolean;
|
|
3576
|
+
};
|
|
3394
3577
|
}>> & Readonly<{}>, {
|
|
3395
|
-
|
|
3578
|
+
closable: boolean;
|
|
3579
|
+
disabled: boolean;
|
|
3580
|
+
selected: boolean;
|
|
3581
|
+
divided: boolean;
|
|
3396
3582
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3397
3583
|
|
|
3584
|
+
export declare const MDropdownMenu: DefineComponent< {}, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3585
|
+
|
|
3398
3586
|
export declare const MEditor: DefineComponent<ExtractPropTypes< {
|
|
3399
3587
|
tag: {
|
|
3400
3588
|
type: StringConstructor;
|
|
@@ -5393,6 +5581,8 @@ export declare const Modal: {
|
|
|
5393
5581
|
type: BooleanConstructor;
|
|
5394
5582
|
default: boolean;
|
|
5395
5583
|
};
|
|
5584
|
+
x: NumberConstructor;
|
|
5585
|
+
y: NumberConstructor;
|
|
5396
5586
|
okText: {
|
|
5397
5587
|
type: (StringConstructor | BooleanConstructor)[];
|
|
5398
5588
|
default: string;
|
|
@@ -5511,6 +5701,8 @@ export declare const Modal: {
|
|
|
5511
5701
|
type: BooleanConstructor;
|
|
5512
5702
|
default: boolean;
|
|
5513
5703
|
};
|
|
5704
|
+
x: NumberConstructor;
|
|
5705
|
+
y: NumberConstructor;
|
|
5514
5706
|
okText: {
|
|
5515
5707
|
type: (StringConstructor | BooleanConstructor)[];
|
|
5516
5708
|
default: string;
|
|
@@ -5626,6 +5818,8 @@ draggable: {
|
|
|
5626
5818
|
type: BooleanConstructor;
|
|
5627
5819
|
default: boolean;
|
|
5628
5820
|
};
|
|
5821
|
+
x: NumberConstructor;
|
|
5822
|
+
y: NumberConstructor;
|
|
5629
5823
|
okText: {
|
|
5630
5824
|
type: (StringConstructor | BooleanConstructor)[];
|
|
5631
5825
|
default: string;
|
|
@@ -5745,6 +5939,8 @@ draggable: {
|
|
|
5745
5939
|
type: BooleanConstructor;
|
|
5746
5940
|
default: boolean;
|
|
5747
5941
|
};
|
|
5942
|
+
x: NumberConstructor;
|
|
5943
|
+
y: NumberConstructor;
|
|
5748
5944
|
okText: {
|
|
5749
5945
|
type: (StringConstructor | BooleanConstructor)[];
|
|
5750
5946
|
default: string;
|
|
@@ -5832,6 +6028,8 @@ draggable: {
|
|
|
5832
6028
|
type: BooleanConstructor;
|
|
5833
6029
|
default: boolean;
|
|
5834
6030
|
};
|
|
6031
|
+
x: NumberConstructor;
|
|
6032
|
+
y: NumberConstructor;
|
|
5835
6033
|
okText: {
|
|
5836
6034
|
type: (StringConstructor | BooleanConstructor)[];
|
|
5837
6035
|
default: string;
|
|
@@ -6009,17 +6207,111 @@ tag: string;
|
|
|
6009
6207
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6010
6208
|
|
|
6011
6209
|
export declare const MPopconfirm: DefineComponent<ExtractPropTypes< {
|
|
6012
|
-
|
|
6210
|
+
title: {
|
|
6211
|
+
type: PropType<string | Props["render"]>;
|
|
6212
|
+
default: string;
|
|
6213
|
+
};
|
|
6214
|
+
content: {
|
|
6215
|
+
type: PropType<string | Props["render"]>;
|
|
6216
|
+
default: string;
|
|
6217
|
+
};
|
|
6218
|
+
modelValue: {
|
|
6219
|
+
type: BooleanConstructor;
|
|
6220
|
+
default: boolean;
|
|
6221
|
+
};
|
|
6222
|
+
placement: {
|
|
6013
6223
|
type: StringConstructor;
|
|
6014
6224
|
default: string;
|
|
6015
6225
|
};
|
|
6016
|
-
|
|
6017
|
-
tag: {
|
|
6226
|
+
trigger: {
|
|
6018
6227
|
type: StringConstructor;
|
|
6019
6228
|
default: string;
|
|
6020
6229
|
};
|
|
6021
|
-
|
|
6022
|
-
|
|
6230
|
+
okText: {
|
|
6231
|
+
type: StringConstructor;
|
|
6232
|
+
default: string;
|
|
6233
|
+
};
|
|
6234
|
+
cancelText: {
|
|
6235
|
+
type: StringConstructor;
|
|
6236
|
+
default: string;
|
|
6237
|
+
};
|
|
6238
|
+
okType: {
|
|
6239
|
+
type: StringConstructor;
|
|
6240
|
+
default: string;
|
|
6241
|
+
};
|
|
6242
|
+
cancelType: {
|
|
6243
|
+
type: StringConstructor;
|
|
6244
|
+
default: string;
|
|
6245
|
+
};
|
|
6246
|
+
type: {
|
|
6247
|
+
type: StringConstructor;
|
|
6248
|
+
default: string;
|
|
6249
|
+
validator: (v: string) => boolean;
|
|
6250
|
+
};
|
|
6251
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
6252
|
+
portalClass: (ObjectConstructor | StringConstructor)[];
|
|
6253
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "close" | "update:modelValue" | "visible-change" | "ready" | "ok")[], "cancel" | "close" | "update:modelValue" | "visible-change" | "ready" | "ok", PublicProps, Readonly<ExtractPropTypes< {
|
|
6254
|
+
title: {
|
|
6255
|
+
type: PropType<string | Props["render"]>;
|
|
6256
|
+
default: string;
|
|
6257
|
+
};
|
|
6258
|
+
content: {
|
|
6259
|
+
type: PropType<string | Props["render"]>;
|
|
6260
|
+
default: string;
|
|
6261
|
+
};
|
|
6262
|
+
modelValue: {
|
|
6263
|
+
type: BooleanConstructor;
|
|
6264
|
+
default: boolean;
|
|
6265
|
+
};
|
|
6266
|
+
placement: {
|
|
6267
|
+
type: StringConstructor;
|
|
6268
|
+
default: string;
|
|
6269
|
+
};
|
|
6270
|
+
trigger: {
|
|
6271
|
+
type: StringConstructor;
|
|
6272
|
+
default: string;
|
|
6273
|
+
};
|
|
6274
|
+
okText: {
|
|
6275
|
+
type: StringConstructor;
|
|
6276
|
+
default: string;
|
|
6277
|
+
};
|
|
6278
|
+
cancelText: {
|
|
6279
|
+
type: StringConstructor;
|
|
6280
|
+
default: string;
|
|
6281
|
+
};
|
|
6282
|
+
okType: {
|
|
6283
|
+
type: StringConstructor;
|
|
6284
|
+
default: string;
|
|
6285
|
+
};
|
|
6286
|
+
cancelType: {
|
|
6287
|
+
type: StringConstructor;
|
|
6288
|
+
default: string;
|
|
6289
|
+
};
|
|
6290
|
+
type: {
|
|
6291
|
+
type: StringConstructor;
|
|
6292
|
+
default: string;
|
|
6293
|
+
validator: (v: string) => boolean;
|
|
6294
|
+
};
|
|
6295
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
6296
|
+
portalClass: (ObjectConstructor | StringConstructor)[];
|
|
6297
|
+
}>> & Readonly<{
|
|
6298
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
6299
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
6300
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6301
|
+
onReady?: ((...args: any[]) => any) | undefined;
|
|
6302
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
6303
|
+
onOk?: ((...args: any[]) => any) | undefined;
|
|
6304
|
+
}>, {
|
|
6305
|
+
title: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
6306
|
+
modelValue: boolean;
|
|
6307
|
+
type: string;
|
|
6308
|
+
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
6309
|
+
placement: string;
|
|
6310
|
+
trigger: string;
|
|
6311
|
+
okText: string;
|
|
6312
|
+
cancelText: string;
|
|
6313
|
+
okType: string;
|
|
6314
|
+
cancelType: string;
|
|
6023
6315
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6024
6316
|
|
|
6025
6317
|
export declare const MPopover: {
|
|
@@ -7357,7 +7649,6 @@ type: NumberConstructor;
|
|
|
7357
7649
|
default: number;
|
|
7358
7650
|
};
|
|
7359
7651
|
label: StringConstructor;
|
|
7360
|
-
customClass: StringConstructor;
|
|
7361
7652
|
labelClass: StringConstructor;
|
|
7362
7653
|
prop: StringConstructor;
|
|
7363
7654
|
width: NumberConstructor;
|
|
@@ -7398,7 +7689,6 @@ type: NumberConstructor;
|
|
|
7398
7689
|
default: number;
|
|
7399
7690
|
};
|
|
7400
7691
|
label: StringConstructor;
|
|
7401
|
-
customClass: StringConstructor;
|
|
7402
7692
|
labelClass: StringConstructor;
|
|
7403
7693
|
prop: StringConstructor;
|
|
7404
7694
|
width: NumberConstructor;
|
|
@@ -9289,17 +9579,111 @@ tag: string;
|
|
|
9289
9579
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
9290
9580
|
|
|
9291
9581
|
export declare const Popconfirm: DefineComponent<ExtractPropTypes< {
|
|
9292
|
-
|
|
9582
|
+
title: {
|
|
9583
|
+
type: PropType<string | Props["render"]>;
|
|
9584
|
+
default: string;
|
|
9585
|
+
};
|
|
9586
|
+
content: {
|
|
9587
|
+
type: PropType<string | Props["render"]>;
|
|
9588
|
+
default: string;
|
|
9589
|
+
};
|
|
9590
|
+
modelValue: {
|
|
9591
|
+
type: BooleanConstructor;
|
|
9592
|
+
default: boolean;
|
|
9593
|
+
};
|
|
9594
|
+
placement: {
|
|
9293
9595
|
type: StringConstructor;
|
|
9294
9596
|
default: string;
|
|
9295
9597
|
};
|
|
9296
|
-
|
|
9297
|
-
tag: {
|
|
9598
|
+
trigger: {
|
|
9298
9599
|
type: StringConstructor;
|
|
9299
9600
|
default: string;
|
|
9300
9601
|
};
|
|
9301
|
-
|
|
9302
|
-
|
|
9602
|
+
okText: {
|
|
9603
|
+
type: StringConstructor;
|
|
9604
|
+
default: string;
|
|
9605
|
+
};
|
|
9606
|
+
cancelText: {
|
|
9607
|
+
type: StringConstructor;
|
|
9608
|
+
default: string;
|
|
9609
|
+
};
|
|
9610
|
+
okType: {
|
|
9611
|
+
type: StringConstructor;
|
|
9612
|
+
default: string;
|
|
9613
|
+
};
|
|
9614
|
+
cancelType: {
|
|
9615
|
+
type: StringConstructor;
|
|
9616
|
+
default: string;
|
|
9617
|
+
};
|
|
9618
|
+
type: {
|
|
9619
|
+
type: StringConstructor;
|
|
9620
|
+
default: string;
|
|
9621
|
+
validator: (v: string) => boolean;
|
|
9622
|
+
};
|
|
9623
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
9624
|
+
portalClass: (ObjectConstructor | StringConstructor)[];
|
|
9625
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "close" | "update:modelValue" | "visible-change" | "ready" | "ok")[], "cancel" | "close" | "update:modelValue" | "visible-change" | "ready" | "ok", PublicProps, Readonly<ExtractPropTypes< {
|
|
9626
|
+
title: {
|
|
9627
|
+
type: PropType<string | Props["render"]>;
|
|
9628
|
+
default: string;
|
|
9629
|
+
};
|
|
9630
|
+
content: {
|
|
9631
|
+
type: PropType<string | Props["render"]>;
|
|
9632
|
+
default: string;
|
|
9633
|
+
};
|
|
9634
|
+
modelValue: {
|
|
9635
|
+
type: BooleanConstructor;
|
|
9636
|
+
default: boolean;
|
|
9637
|
+
};
|
|
9638
|
+
placement: {
|
|
9639
|
+
type: StringConstructor;
|
|
9640
|
+
default: string;
|
|
9641
|
+
};
|
|
9642
|
+
trigger: {
|
|
9643
|
+
type: StringConstructor;
|
|
9644
|
+
default: string;
|
|
9645
|
+
};
|
|
9646
|
+
okText: {
|
|
9647
|
+
type: StringConstructor;
|
|
9648
|
+
default: string;
|
|
9649
|
+
};
|
|
9650
|
+
cancelText: {
|
|
9651
|
+
type: StringConstructor;
|
|
9652
|
+
default: string;
|
|
9653
|
+
};
|
|
9654
|
+
okType: {
|
|
9655
|
+
type: StringConstructor;
|
|
9656
|
+
default: string;
|
|
9657
|
+
};
|
|
9658
|
+
cancelType: {
|
|
9659
|
+
type: StringConstructor;
|
|
9660
|
+
default: string;
|
|
9661
|
+
};
|
|
9662
|
+
type: {
|
|
9663
|
+
type: StringConstructor;
|
|
9664
|
+
default: string;
|
|
9665
|
+
validator: (v: string) => boolean;
|
|
9666
|
+
};
|
|
9667
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
9668
|
+
portalClass: (ObjectConstructor | StringConstructor)[];
|
|
9669
|
+
}>> & Readonly<{
|
|
9670
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
9671
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
9672
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9673
|
+
onReady?: ((...args: any[]) => any) | undefined;
|
|
9674
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
9675
|
+
onOk?: ((...args: any[]) => any) | undefined;
|
|
9676
|
+
}>, {
|
|
9677
|
+
title: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
9678
|
+
modelValue: boolean;
|
|
9679
|
+
type: string;
|
|
9680
|
+
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
9681
|
+
placement: string;
|
|
9682
|
+
trigger: string;
|
|
9683
|
+
okText: string;
|
|
9684
|
+
cancelText: string;
|
|
9685
|
+
okType: string;
|
|
9686
|
+
cancelType: string;
|
|
9303
9687
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
9304
9688
|
|
|
9305
9689
|
export declare const Popover: {
|
|
@@ -9956,6 +10340,8 @@ declare const props_5: {
|
|
|
9956
10340
|
type: BooleanConstructor;
|
|
9957
10341
|
default: boolean;
|
|
9958
10342
|
};
|
|
10343
|
+
x: NumberConstructor;
|
|
10344
|
+
y: NumberConstructor;
|
|
9959
10345
|
okText: {
|
|
9960
10346
|
type: (StringConstructor | BooleanConstructor)[];
|
|
9961
10347
|
default: string;
|
|
@@ -11289,7 +11675,6 @@ type: NumberConstructor;
|
|
|
11289
11675
|
default: number;
|
|
11290
11676
|
};
|
|
11291
11677
|
label: StringConstructor;
|
|
11292
|
-
customClass: StringConstructor;
|
|
11293
11678
|
labelClass: StringConstructor;
|
|
11294
11679
|
prop: StringConstructor;
|
|
11295
11680
|
width: NumberConstructor;
|
|
@@ -11330,7 +11715,6 @@ type: NumberConstructor;
|
|
|
11330
11715
|
default: number;
|
|
11331
11716
|
};
|
|
11332
11717
|
label: StringConstructor;
|
|
11333
|
-
customClass: StringConstructor;
|
|
11334
11718
|
labelClass: StringConstructor;
|
|
11335
11719
|
prop: StringConstructor;
|
|
11336
11720
|
width: NumberConstructor;
|