@deot/vc-components 1.0.27 → 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 +835 -432
- package/dist/index.d.ts +460 -22
- package/dist/index.iife.js +825 -422
- package/dist/index.js +833 -434
- package/dist/index.style.css +1 -1
- package/dist/index.umd.cjs +825 -422
- 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
|
-
|
|
1275
|
+
trigger: {
|
|
1276
|
+
type: StringConstructor;
|
|
1277
|
+
default: string;
|
|
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: {
|
|
1272
1294
|
type: StringConstructor;
|
|
1273
1295
|
default: string;
|
|
1274
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
|
-
|
|
3488
|
+
trigger: {
|
|
3489
|
+
type: StringConstructor;
|
|
3490
|
+
default: string;
|
|
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: {
|
|
3391
3503
|
type: StringConstructor;
|
|
3392
3504
|
default: string;
|
|
3393
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: {
|
|
@@ -7098,6 +7390,18 @@ uncheckedText: {
|
|
|
7098
7390
|
type: StringConstructor;
|
|
7099
7391
|
default: string;
|
|
7100
7392
|
};
|
|
7393
|
+
width: {
|
|
7394
|
+
type: NumberConstructor;
|
|
7395
|
+
default: number;
|
|
7396
|
+
};
|
|
7397
|
+
height: {
|
|
7398
|
+
type: NumberConstructor;
|
|
7399
|
+
default: number;
|
|
7400
|
+
};
|
|
7401
|
+
borderWidth: {
|
|
7402
|
+
type: NumberConstructor;
|
|
7403
|
+
default: number;
|
|
7404
|
+
};
|
|
7101
7405
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], "click" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
7102
7406
|
modelValue: {
|
|
7103
7407
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
@@ -7126,6 +7430,18 @@ uncheckedText: {
|
|
|
7126
7430
|
type: StringConstructor;
|
|
7127
7431
|
default: string;
|
|
7128
7432
|
};
|
|
7433
|
+
width: {
|
|
7434
|
+
type: NumberConstructor;
|
|
7435
|
+
default: number;
|
|
7436
|
+
};
|
|
7437
|
+
height: {
|
|
7438
|
+
type: NumberConstructor;
|
|
7439
|
+
default: number;
|
|
7440
|
+
};
|
|
7441
|
+
borderWidth: {
|
|
7442
|
+
type: NumberConstructor;
|
|
7443
|
+
default: number;
|
|
7444
|
+
};
|
|
7129
7445
|
}>> & Readonly<{
|
|
7130
7446
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
7131
7447
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
@@ -7135,6 +7451,9 @@ modelValue: string | number | boolean;
|
|
|
7135
7451
|
disabled: boolean;
|
|
7136
7452
|
checkedValue: string | number | boolean;
|
|
7137
7453
|
uncheckedValue: string | number | boolean;
|
|
7454
|
+
height: number;
|
|
7455
|
+
width: number;
|
|
7456
|
+
borderWidth: number;
|
|
7138
7457
|
checkedText: string;
|
|
7139
7458
|
uncheckedText: string;
|
|
7140
7459
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -7330,7 +7649,6 @@ type: NumberConstructor;
|
|
|
7330
7649
|
default: number;
|
|
7331
7650
|
};
|
|
7332
7651
|
label: StringConstructor;
|
|
7333
|
-
customClass: StringConstructor;
|
|
7334
7652
|
labelClass: StringConstructor;
|
|
7335
7653
|
prop: StringConstructor;
|
|
7336
7654
|
width: NumberConstructor;
|
|
@@ -7371,7 +7689,6 @@ type: NumberConstructor;
|
|
|
7371
7689
|
default: number;
|
|
7372
7690
|
};
|
|
7373
7691
|
label: StringConstructor;
|
|
7374
|
-
customClass: StringConstructor;
|
|
7375
7692
|
labelClass: StringConstructor;
|
|
7376
7693
|
prop: StringConstructor;
|
|
7377
7694
|
width: NumberConstructor;
|
|
@@ -9262,17 +9579,111 @@ tag: string;
|
|
|
9262
9579
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
9263
9580
|
|
|
9264
9581
|
export declare const Popconfirm: DefineComponent<ExtractPropTypes< {
|
|
9265
|
-
|
|
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: {
|
|
9266
9595
|
type: StringConstructor;
|
|
9267
9596
|
default: string;
|
|
9268
9597
|
};
|
|
9269
|
-
|
|
9270
|
-
tag: {
|
|
9598
|
+
trigger: {
|
|
9271
9599
|
type: StringConstructor;
|
|
9272
9600
|
default: string;
|
|
9273
9601
|
};
|
|
9274
|
-
|
|
9275
|
-
|
|
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;
|
|
9276
9687
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
9277
9688
|
|
|
9278
9689
|
export declare const Popover: {
|
|
@@ -9929,6 +10340,8 @@ declare const props_5: {
|
|
|
9929
10340
|
type: BooleanConstructor;
|
|
9930
10341
|
default: boolean;
|
|
9931
10342
|
};
|
|
10343
|
+
x: NumberConstructor;
|
|
10344
|
+
y: NumberConstructor;
|
|
9932
10345
|
okText: {
|
|
9933
10346
|
type: (StringConstructor | BooleanConstructor)[];
|
|
9934
10347
|
default: string;
|
|
@@ -11003,6 +11416,18 @@ uncheckedText: {
|
|
|
11003
11416
|
type: StringConstructor;
|
|
11004
11417
|
default: string;
|
|
11005
11418
|
};
|
|
11419
|
+
width: {
|
|
11420
|
+
type: NumberConstructor;
|
|
11421
|
+
default: number;
|
|
11422
|
+
};
|
|
11423
|
+
height: {
|
|
11424
|
+
type: NumberConstructor;
|
|
11425
|
+
default: number;
|
|
11426
|
+
};
|
|
11427
|
+
borderWidth: {
|
|
11428
|
+
type: NumberConstructor;
|
|
11429
|
+
default: number;
|
|
11430
|
+
};
|
|
11006
11431
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], "click" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
11007
11432
|
modelValue: {
|
|
11008
11433
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
@@ -11031,6 +11456,18 @@ uncheckedText: {
|
|
|
11031
11456
|
type: StringConstructor;
|
|
11032
11457
|
default: string;
|
|
11033
11458
|
};
|
|
11459
|
+
width: {
|
|
11460
|
+
type: NumberConstructor;
|
|
11461
|
+
default: number;
|
|
11462
|
+
};
|
|
11463
|
+
height: {
|
|
11464
|
+
type: NumberConstructor;
|
|
11465
|
+
default: number;
|
|
11466
|
+
};
|
|
11467
|
+
borderWidth: {
|
|
11468
|
+
type: NumberConstructor;
|
|
11469
|
+
default: number;
|
|
11470
|
+
};
|
|
11034
11471
|
}>> & Readonly<{
|
|
11035
11472
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
11036
11473
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
@@ -11040,6 +11477,9 @@ modelValue: string | number | boolean;
|
|
|
11040
11477
|
disabled: boolean;
|
|
11041
11478
|
checkedValue: string | number | boolean;
|
|
11042
11479
|
uncheckedValue: string | number | boolean;
|
|
11480
|
+
height: number;
|
|
11481
|
+
width: number;
|
|
11482
|
+
borderWidth: number;
|
|
11043
11483
|
checkedText: string;
|
|
11044
11484
|
uncheckedText: string;
|
|
11045
11485
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -11235,7 +11675,6 @@ type: NumberConstructor;
|
|
|
11235
11675
|
default: number;
|
|
11236
11676
|
};
|
|
11237
11677
|
label: StringConstructor;
|
|
11238
|
-
customClass: StringConstructor;
|
|
11239
11678
|
labelClass: StringConstructor;
|
|
11240
11679
|
prop: StringConstructor;
|
|
11241
11680
|
width: NumberConstructor;
|
|
@@ -11276,7 +11715,6 @@ type: NumberConstructor;
|
|
|
11276
11715
|
default: number;
|
|
11277
11716
|
};
|
|
11278
11717
|
label: StringConstructor;
|
|
11279
|
-
customClass: StringConstructor;
|
|
11280
11718
|
labelClass: StringConstructor;
|
|
11281
11719
|
prop: StringConstructor;
|
|
11282
11720
|
width: NumberConstructor;
|