@cloudbase/weda-ui 3.16.0 → 3.17.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/configs/components/container.js +0 -3
- package/dist/configs/components/wd-ad.d.ts +4 -0
- package/dist/configs/components/wd-ad.js +23 -0
- package/dist/configs/components/wd-cascader.d.ts +4 -0
- package/dist/configs/components/wd-checkbox.d.ts +4 -0
- package/dist/configs/components/wd-code-editor.d.ts +4 -0
- package/dist/configs/components/wd-date-range.d.ts +4 -0
- package/dist/configs/components/wd-date.d.ts +4 -0
- package/dist/configs/components/wd-department.d.ts +6 -0
- package/dist/configs/components/wd-department.js +1 -1
- package/dist/configs/components/wd-form-arr.d.ts +4 -0
- package/dist/configs/components/wd-form-detail.d.ts +4 -0
- package/dist/configs/components/wd-form-obj.d.ts +4 -0
- package/dist/configs/components/wd-input-email.d.ts +4 -0
- package/dist/configs/components/wd-input-number.d.ts +4 -0
- package/dist/configs/components/wd-input-phone.d.ts +4 -0
- package/dist/configs/components/wd-input-url.d.ts +4 -0
- package/dist/configs/components/wd-input.d.ts +4 -0
- package/dist/configs/components/wd-location.d.ts +4 -0
- package/dist/configs/components/wd-member.d.ts +4 -0
- package/dist/configs/components/wd-radio.d.ts +4 -0
- package/dist/configs/components/wd-rating.d.ts +4 -0
- package/dist/configs/components/wd-region.d.ts +4 -0
- package/dist/configs/components/wd-rich-text.d.ts +4 -0
- package/dist/configs/components/wd-select-multiple.d.ts +4 -0
- package/dist/configs/components/wd-select.d.ts +4 -0
- package/dist/configs/components/wd-switch.d.ts +4 -0
- package/dist/configs/components/wd-tag-select.d.ts +4 -0
- package/dist/configs/components/wd-tag.d.ts +4 -0
- package/dist/configs/components/wd-textarea.d.ts +4 -0
- package/dist/configs/components/wd-time.d.ts +4 -0
- package/dist/configs/components/wd-upload-file.d.ts +4 -0
- package/dist/configs/components/wd-upload-image.d.ts +195 -15
- package/dist/configs/components/wd-upload-image.js +125 -6
- package/dist/configs/index.d.ts +492 -4
- package/dist/configs/type-utils/type-form.d.ts +4 -0
- package/dist/configs/type-utils/type-form.js +4 -0
- package/dist/configs/type-utils/x-runtime-default.d.ts +2 -0
- package/dist/configs/type-utils/x-runtime-default.js +2 -0
- package/dist/configs/utils/field.d.ts +1 -0
- package/dist/configs/utils/field.js +95 -0
- package/dist/style/weda-ui.min.css +1 -1
- package/dist/web/components/form/uploader/index.d.ts +1 -0
- package/dist/web/components/form/uploader/index.js +7 -4
- package/dist/web/components/form/uploader/upload/index.d.ts +26 -0
- package/dist/web/components/form/uploader/upload/index.js +200 -0
- package/dist/web/components/form/uploader/uploader.h5.d.ts +6 -1
- package/dist/web/components/form/uploader/uploader.h5.js +26 -94
- package/dist/web/components/form/uploader/uploader.pc.d.ts +1 -1
- package/dist/web/components/form/uploader/uploader.pc.js +30 -100
- package/dist/web/components/form/uploader/util.d.ts +16 -0
- package/dist/web/components/form/uploader/util.js +106 -5
- package/dist/web/components/uploaderView/index.js +1 -1
- package/dist/web/components/wd-ad/wd-ad.js +2 -4
- package/dist/web/components/wd-upload-image/wd-upload-image.js +14 -4
- package/package.json +4 -4
- package/dist/web/components/form/uploader/useUploadFile.d.ts +0 -16
- package/dist/web/components/form/uploader/useUploadFile.js +0 -99
package/dist/configs/index.d.ts
CHANGED
|
@@ -348,6 +348,10 @@ export declare const components: {
|
|
|
348
348
|
props: string[];
|
|
349
349
|
};
|
|
350
350
|
readonly group: {
|
|
351
|
+
模板: {
|
|
352
|
+
'x-index': number;
|
|
353
|
+
expand: boolean;
|
|
354
|
+
};
|
|
351
355
|
标签项: {
|
|
352
356
|
'x-index': number;
|
|
353
357
|
expand: boolean;
|
|
@@ -612,6 +616,10 @@ export declare const components: {
|
|
|
612
616
|
readonly 'x-index': 2;
|
|
613
617
|
readonly expand: false;
|
|
614
618
|
};
|
|
619
|
+
readonly 模板: {
|
|
620
|
+
'x-index': number;
|
|
621
|
+
expand: boolean;
|
|
622
|
+
};
|
|
615
623
|
readonly 标签项: {
|
|
616
624
|
'x-index': number;
|
|
617
625
|
expand: boolean;
|
|
@@ -1008,6 +1016,10 @@ export declare const components: {
|
|
|
1008
1016
|
props: string[];
|
|
1009
1017
|
};
|
|
1010
1018
|
readonly group: {
|
|
1019
|
+
模板: {
|
|
1020
|
+
'x-index': number;
|
|
1021
|
+
expand: boolean;
|
|
1022
|
+
};
|
|
1011
1023
|
标签项: {
|
|
1012
1024
|
'x-index': number;
|
|
1013
1025
|
expand: boolean;
|
|
@@ -1331,6 +1343,10 @@ export declare const components: {
|
|
|
1331
1343
|
readonly icon: "../icons/Text.svg";
|
|
1332
1344
|
readonly category: "表单";
|
|
1333
1345
|
readonly group: {
|
|
1346
|
+
模板: {
|
|
1347
|
+
'x-index': number;
|
|
1348
|
+
expand: boolean;
|
|
1349
|
+
};
|
|
1334
1350
|
标签项: {
|
|
1335
1351
|
'x-index': number;
|
|
1336
1352
|
expand: boolean;
|
|
@@ -1488,6 +1504,10 @@ export declare const components: {
|
|
|
1488
1504
|
readonly icon: "../icons/Text.svg";
|
|
1489
1505
|
readonly category: "表单";
|
|
1490
1506
|
readonly group: {
|
|
1507
|
+
模板: {
|
|
1508
|
+
'x-index': number;
|
|
1509
|
+
expand: boolean;
|
|
1510
|
+
};
|
|
1491
1511
|
标签项: {
|
|
1492
1512
|
'x-index': number;
|
|
1493
1513
|
expand: boolean;
|
|
@@ -1580,6 +1600,8 @@ export declare const components: {
|
|
|
1580
1600
|
adTheme: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string>>;
|
|
1581
1601
|
adIntervals: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
1582
1602
|
gridCount: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<number>>;
|
|
1603
|
+
multiton: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
1604
|
+
disableFallbackSharePage: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
1583
1605
|
}>;
|
|
1584
1606
|
readonly classes: readonly [{
|
|
1585
1607
|
readonly name: "根元素";
|
|
@@ -2600,6 +2622,10 @@ export declare const components: {
|
|
|
2600
2622
|
readonly icon: "../icons/Text.svg";
|
|
2601
2623
|
readonly category: "表单";
|
|
2602
2624
|
readonly group: {
|
|
2625
|
+
模板: {
|
|
2626
|
+
'x-index': number;
|
|
2627
|
+
expand: boolean;
|
|
2628
|
+
};
|
|
2603
2629
|
标签项: {
|
|
2604
2630
|
'x-index': number;
|
|
2605
2631
|
expand: boolean;
|
|
@@ -12131,6 +12157,10 @@ export declare const components: {
|
|
|
12131
12157
|
props: string[];
|
|
12132
12158
|
};
|
|
12133
12159
|
readonly group: {
|
|
12160
|
+
模板: {
|
|
12161
|
+
'x-index': number;
|
|
12162
|
+
expand: boolean;
|
|
12163
|
+
};
|
|
12134
12164
|
标签项: {
|
|
12135
12165
|
'x-index': number;
|
|
12136
12166
|
expand: boolean;
|
|
@@ -12387,6 +12417,10 @@ export declare const components: {
|
|
|
12387
12417
|
props: string[];
|
|
12388
12418
|
};
|
|
12389
12419
|
readonly group: {
|
|
12420
|
+
模板: {
|
|
12421
|
+
'x-index': number;
|
|
12422
|
+
expand: boolean;
|
|
12423
|
+
};
|
|
12390
12424
|
标签项: {
|
|
12391
12425
|
'x-index': number;
|
|
12392
12426
|
expand: boolean;
|
|
@@ -13313,6 +13347,10 @@ export declare const components: {
|
|
|
13313
13347
|
props: string[];
|
|
13314
13348
|
};
|
|
13315
13349
|
readonly group: {
|
|
13350
|
+
模板: {
|
|
13351
|
+
'x-index': number;
|
|
13352
|
+
expand: boolean;
|
|
13353
|
+
};
|
|
13316
13354
|
标签项: {
|
|
13317
13355
|
'x-index': number;
|
|
13318
13356
|
expand: boolean;
|
|
@@ -13565,6 +13603,10 @@ export declare const components: {
|
|
|
13565
13603
|
props: string[];
|
|
13566
13604
|
};
|
|
13567
13605
|
readonly group: {
|
|
13606
|
+
模板: {
|
|
13607
|
+
'x-index': number;
|
|
13608
|
+
expand: boolean;
|
|
13609
|
+
};
|
|
13568
13610
|
标签项: {
|
|
13569
13611
|
'x-index': number;
|
|
13570
13612
|
expand: boolean;
|
|
@@ -13867,6 +13909,10 @@ export declare const components: {
|
|
|
13867
13909
|
props: string[];
|
|
13868
13910
|
};
|
|
13869
13911
|
readonly group: {
|
|
13912
|
+
模板: {
|
|
13913
|
+
'x-index': number;
|
|
13914
|
+
expand: boolean;
|
|
13915
|
+
};
|
|
13870
13916
|
标签项: {
|
|
13871
13917
|
'x-index': number;
|
|
13872
13918
|
expand: boolean;
|
|
@@ -14177,6 +14223,10 @@ export declare const components: {
|
|
|
14177
14223
|
props: string[];
|
|
14178
14224
|
};
|
|
14179
14225
|
readonly group: {
|
|
14226
|
+
模板: {
|
|
14227
|
+
'x-index': number;
|
|
14228
|
+
expand: boolean;
|
|
14229
|
+
};
|
|
14180
14230
|
标签项: {
|
|
14181
14231
|
'x-index': number;
|
|
14182
14232
|
expand: boolean;
|
|
@@ -14389,6 +14439,10 @@ export declare const components: {
|
|
|
14389
14439
|
props: string[];
|
|
14390
14440
|
};
|
|
14391
14441
|
readonly group: {
|
|
14442
|
+
模板: {
|
|
14443
|
+
'x-index': number;
|
|
14444
|
+
expand: boolean;
|
|
14445
|
+
};
|
|
14392
14446
|
标签项: {
|
|
14393
14447
|
'x-index': number;
|
|
14394
14448
|
expand: boolean;
|
|
@@ -14606,6 +14660,10 @@ export declare const components: {
|
|
|
14606
14660
|
props: string[];
|
|
14607
14661
|
};
|
|
14608
14662
|
readonly group: {
|
|
14663
|
+
模板: {
|
|
14664
|
+
'x-index': number;
|
|
14665
|
+
expand: boolean;
|
|
14666
|
+
};
|
|
14609
14667
|
标签项: {
|
|
14610
14668
|
'x-index': number;
|
|
14611
14669
|
expand: boolean;
|
|
@@ -14832,6 +14890,10 @@ export declare const components: {
|
|
|
14832
14890
|
props: string[];
|
|
14833
14891
|
};
|
|
14834
14892
|
readonly group: {
|
|
14893
|
+
模板: {
|
|
14894
|
+
'x-index': number;
|
|
14895
|
+
expand: boolean;
|
|
14896
|
+
};
|
|
14835
14897
|
标签项: {
|
|
14836
14898
|
'x-index': number;
|
|
14837
14899
|
expand: boolean;
|
|
@@ -15068,6 +15130,10 @@ export declare const components: {
|
|
|
15068
15130
|
props: string[];
|
|
15069
15131
|
};
|
|
15070
15132
|
readonly group: {
|
|
15133
|
+
模板: {
|
|
15134
|
+
'x-index': number;
|
|
15135
|
+
expand: boolean;
|
|
15136
|
+
};
|
|
15071
15137
|
标签项: {
|
|
15072
15138
|
'x-index': number;
|
|
15073
15139
|
expand: boolean;
|
|
@@ -15240,6 +15306,10 @@ export declare const components: {
|
|
|
15240
15306
|
props: string[];
|
|
15241
15307
|
};
|
|
15242
15308
|
group: {
|
|
15309
|
+
模板: {
|
|
15310
|
+
'x-index': number;
|
|
15311
|
+
expand: boolean;
|
|
15312
|
+
};
|
|
15243
15313
|
标签项: {
|
|
15244
15314
|
'x-index': number;
|
|
15245
15315
|
expand: boolean;
|
|
@@ -15360,6 +15430,7 @@ export declare const components: {
|
|
|
15360
15430
|
'x-helper-text': string;
|
|
15361
15431
|
}>;
|
|
15362
15432
|
value: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>>;
|
|
15433
|
+
template: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15363
15434
|
}>;
|
|
15364
15435
|
properties: import("@sinclair/typebox").TObject<{
|
|
15365
15436
|
name: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString & {
|
|
@@ -15371,7 +15442,55 @@ export declare const components: {
|
|
|
15371
15442
|
disabled: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15372
15443
|
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15373
15444
|
readOnly: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15445
|
+
uploadInstance: import("@sinclair/typebox").TObject<{
|
|
15446
|
+
config: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
15447
|
+
action: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15448
|
+
maxUploadCount: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15449
|
+
maxSize: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15450
|
+
isCompressBeforeUpload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15451
|
+
compressQuality: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15452
|
+
compressedWidth: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15453
|
+
compressedHeight: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15454
|
+
accepts: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15455
|
+
customUploadPath: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15456
|
+
}>>;
|
|
15457
|
+
beforeUpload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{}>>;
|
|
15458
|
+
onUploadProgress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TObject<{
|
|
15459
|
+
progress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15460
|
+
loading: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15461
|
+
cloudId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15462
|
+
tempUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15463
|
+
key: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15464
|
+
file: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TAny>;
|
|
15465
|
+
}>], import("@sinclair/typebox").TAny>>;
|
|
15466
|
+
onComplete: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
15467
|
+
progress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15468
|
+
loading: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15469
|
+
cloudId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15470
|
+
tempUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15471
|
+
key: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15472
|
+
file: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TAny>;
|
|
15473
|
+
}>>], import("@sinclair/typebox").TAny>>;
|
|
15474
|
+
onSuccess: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TObject<{
|
|
15475
|
+
progress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15476
|
+
loading: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15477
|
+
cloudId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15478
|
+
tempUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15479
|
+
key: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15480
|
+
file: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TAny>;
|
|
15481
|
+
}>], import("@sinclair/typebox").TAny>>;
|
|
15482
|
+
onFail: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TAny], import("@sinclair/typebox").TAny>>;
|
|
15483
|
+
}>;
|
|
15484
|
+
previewFile: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
15485
|
+
progress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15486
|
+
loading: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15487
|
+
cloudId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15488
|
+
tempUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15489
|
+
key: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15490
|
+
file: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TAny>;
|
|
15491
|
+
}>>;
|
|
15374
15492
|
}>;
|
|
15493
|
+
isContainer: true;
|
|
15375
15494
|
classes: ({
|
|
15376
15495
|
name: string;
|
|
15377
15496
|
selector: string;
|
|
@@ -15382,11 +15501,40 @@ export declare const components: {
|
|
|
15382
15501
|
description: string;
|
|
15383
15502
|
code: string;
|
|
15384
15503
|
})[];
|
|
15385
|
-
methods: {
|
|
15504
|
+
methods: ({
|
|
15386
15505
|
name: string;
|
|
15387
15506
|
label: string;
|
|
15388
15507
|
description: string;
|
|
15389
|
-
}
|
|
15508
|
+
} | {
|
|
15509
|
+
name: string;
|
|
15510
|
+
label: string;
|
|
15511
|
+
params: {
|
|
15512
|
+
properties: {
|
|
15513
|
+
cloudId: {
|
|
15514
|
+
title: string;
|
|
15515
|
+
type: string;
|
|
15516
|
+
};
|
|
15517
|
+
};
|
|
15518
|
+
};
|
|
15519
|
+
description: string;
|
|
15520
|
+
} | {
|
|
15521
|
+
name: string;
|
|
15522
|
+
label: string;
|
|
15523
|
+
params: import("@sinclair/typebox").TObject<{
|
|
15524
|
+
config: import("@sinclair/typebox").TObject<{
|
|
15525
|
+
action: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15526
|
+
maxUploadCount: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15527
|
+
maxSize: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15528
|
+
isCompressBeforeUpload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15529
|
+
compressQuality: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15530
|
+
compressedWidth: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15531
|
+
compressedHeight: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15532
|
+
accepts: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15533
|
+
customUploadPath: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15534
|
+
}>;
|
|
15535
|
+
}>;
|
|
15536
|
+
description?: undefined;
|
|
15537
|
+
})[];
|
|
15390
15538
|
events: ({
|
|
15391
15539
|
name: string;
|
|
15392
15540
|
title: string;
|
|
@@ -15398,6 +15546,48 @@ export declare const components: {
|
|
|
15398
15546
|
name: string;
|
|
15399
15547
|
title: string;
|
|
15400
15548
|
description: string;
|
|
15549
|
+
} | {
|
|
15550
|
+
name: string;
|
|
15551
|
+
title: string;
|
|
15552
|
+
detail: import("@sinclair/typebox").TObject<{
|
|
15553
|
+
config: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
15554
|
+
action: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15555
|
+
maxUploadCount: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15556
|
+
maxSize: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15557
|
+
isCompressBeforeUpload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15558
|
+
compressQuality: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15559
|
+
compressedWidth: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15560
|
+
compressedHeight: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15561
|
+
accepts: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15562
|
+
customUploadPath: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15563
|
+
}>>;
|
|
15564
|
+
beforeUpload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{}>>;
|
|
15565
|
+
onUploadProgress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TObject<{
|
|
15566
|
+
progress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15567
|
+
loading: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15568
|
+
cloudId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15569
|
+
tempUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15570
|
+
key: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15571
|
+
file: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TAny>;
|
|
15572
|
+
}>], import("@sinclair/typebox").TAny>>;
|
|
15573
|
+
onComplete: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
15574
|
+
progress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15575
|
+
loading: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15576
|
+
cloudId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15577
|
+
tempUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15578
|
+
key: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15579
|
+
file: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TAny>;
|
|
15580
|
+
}>>], import("@sinclair/typebox").TAny>>;
|
|
15581
|
+
onSuccess: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TObject<{
|
|
15582
|
+
progress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
15583
|
+
loading: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15584
|
+
cloudId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15585
|
+
tempUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15586
|
+
key: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15587
|
+
file: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TAny>;
|
|
15588
|
+
}>], import("@sinclair/typebox").TAny>>;
|
|
15589
|
+
onFail: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TAny], import("@sinclair/typebox").TAny>>;
|
|
15590
|
+
}>;
|
|
15401
15591
|
})[];
|
|
15402
15592
|
meta: {
|
|
15403
15593
|
description: string;
|
|
@@ -15414,6 +15604,10 @@ export declare const components: {
|
|
|
15414
15604
|
props: string[];
|
|
15415
15605
|
};
|
|
15416
15606
|
group: {
|
|
15607
|
+
模板: {
|
|
15608
|
+
'x-index': number;
|
|
15609
|
+
expand: boolean;
|
|
15610
|
+
};
|
|
15417
15611
|
标签项: {
|
|
15418
15612
|
'x-index': number;
|
|
15419
15613
|
expand: boolean;
|
|
@@ -15489,6 +15683,11 @@ export declare const components: {
|
|
|
15489
15683
|
} | {
|
|
15490
15684
|
body: string;
|
|
15491
15685
|
when: string;
|
|
15686
|
+
to?: undefined;
|
|
15687
|
+
} | {
|
|
15688
|
+
when: string;
|
|
15689
|
+
to: string;
|
|
15690
|
+
body: string;
|
|
15492
15691
|
})[];
|
|
15493
15692
|
};
|
|
15494
15693
|
compConfig: {
|
|
@@ -15671,6 +15870,10 @@ export declare const components: {
|
|
|
15671
15870
|
props: string[];
|
|
15672
15871
|
};
|
|
15673
15872
|
readonly group: {
|
|
15873
|
+
模板: {
|
|
15874
|
+
'x-index': number;
|
|
15875
|
+
expand: boolean;
|
|
15876
|
+
};
|
|
15674
15877
|
标签项: {
|
|
15675
15878
|
'x-index': number;
|
|
15676
15879
|
expand: boolean;
|
|
@@ -15893,6 +16096,10 @@ export declare const components: {
|
|
|
15893
16096
|
props: string[];
|
|
15894
16097
|
};
|
|
15895
16098
|
readonly group: {
|
|
16099
|
+
模板: {
|
|
16100
|
+
'x-index': number;
|
|
16101
|
+
expand: boolean;
|
|
16102
|
+
};
|
|
15896
16103
|
标签项: {
|
|
15897
16104
|
'x-index': number;
|
|
15898
16105
|
expand: boolean;
|
|
@@ -16007,6 +16214,7 @@ export declare const components: {
|
|
|
16007
16214
|
name: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
16008
16215
|
value: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString & {
|
|
16009
16216
|
title: string;
|
|
16217
|
+
default: any;
|
|
16010
16218
|
}>;
|
|
16011
16219
|
placeholder: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString & {
|
|
16012
16220
|
default: string;
|
|
@@ -16113,6 +16321,10 @@ export declare const components: {
|
|
|
16113
16321
|
props: string[];
|
|
16114
16322
|
};
|
|
16115
16323
|
readonly group: {
|
|
16324
|
+
模板: {
|
|
16325
|
+
'x-index': number;
|
|
16326
|
+
expand: boolean;
|
|
16327
|
+
};
|
|
16116
16328
|
标签项: {
|
|
16117
16329
|
'x-index': number;
|
|
16118
16330
|
expand: boolean;
|
|
@@ -16445,6 +16657,10 @@ export declare const components: {
|
|
|
16445
16657
|
props: string[];
|
|
16446
16658
|
};
|
|
16447
16659
|
readonly group: {
|
|
16660
|
+
模板: {
|
|
16661
|
+
'x-index': number;
|
|
16662
|
+
expand: boolean;
|
|
16663
|
+
};
|
|
16448
16664
|
标签项: {
|
|
16449
16665
|
'x-index': number;
|
|
16450
16666
|
expand: boolean;
|
|
@@ -16640,6 +16856,10 @@ export declare const components: {
|
|
|
16640
16856
|
props: string[];
|
|
16641
16857
|
};
|
|
16642
16858
|
readonly group: {
|
|
16859
|
+
模板: {
|
|
16860
|
+
'x-index': number;
|
|
16861
|
+
expand: boolean;
|
|
16862
|
+
};
|
|
16643
16863
|
标签项: {
|
|
16644
16864
|
'x-index': number;
|
|
16645
16865
|
expand: boolean;
|
|
@@ -16846,6 +17066,10 @@ export declare const components: {
|
|
|
16846
17066
|
props: string[];
|
|
16847
17067
|
};
|
|
16848
17068
|
readonly group: {
|
|
17069
|
+
模板: {
|
|
17070
|
+
'x-index': number;
|
|
17071
|
+
expand: boolean;
|
|
17072
|
+
};
|
|
16849
17073
|
标签项: {
|
|
16850
17074
|
'x-index': number;
|
|
16851
17075
|
expand: boolean;
|
|
@@ -17049,6 +17273,10 @@ export declare const components: {
|
|
|
17049
17273
|
props: string[];
|
|
17050
17274
|
};
|
|
17051
17275
|
readonly group: {
|
|
17276
|
+
模板: {
|
|
17277
|
+
'x-index': number;
|
|
17278
|
+
expand: boolean;
|
|
17279
|
+
};
|
|
17052
17280
|
标签项: {
|
|
17053
17281
|
'x-index': number;
|
|
17054
17282
|
expand: boolean;
|
|
@@ -17300,6 +17528,10 @@ export declare const components: {
|
|
|
17300
17528
|
props: string[];
|
|
17301
17529
|
};
|
|
17302
17530
|
readonly group: {
|
|
17531
|
+
模板: {
|
|
17532
|
+
'x-index': number;
|
|
17533
|
+
expand: boolean;
|
|
17534
|
+
};
|
|
17303
17535
|
标签项: {
|
|
17304
17536
|
'x-index': number;
|
|
17305
17537
|
expand: boolean;
|
|
@@ -17520,6 +17752,10 @@ export declare const components: {
|
|
|
17520
17752
|
props: string[];
|
|
17521
17753
|
};
|
|
17522
17754
|
readonly group: {
|
|
17755
|
+
模板: {
|
|
17756
|
+
'x-index': number;
|
|
17757
|
+
expand: boolean;
|
|
17758
|
+
};
|
|
17523
17759
|
标签项: {
|
|
17524
17760
|
'x-index': number;
|
|
17525
17761
|
expand: boolean;
|
|
@@ -17659,6 +17895,10 @@ export declare const components: {
|
|
|
17659
17895
|
readonly componentOrder: 355;
|
|
17660
17896
|
readonly category: "展示";
|
|
17661
17897
|
readonly group: {
|
|
17898
|
+
模板: {
|
|
17899
|
+
'x-index': number;
|
|
17900
|
+
expand: boolean;
|
|
17901
|
+
};
|
|
17662
17902
|
标签项: {
|
|
17663
17903
|
'x-index': number;
|
|
17664
17904
|
expand: boolean;
|
|
@@ -18376,6 +18616,10 @@ export declare const components: {
|
|
|
18376
18616
|
props: string[];
|
|
18377
18617
|
};
|
|
18378
18618
|
readonly group: {
|
|
18619
|
+
模板: {
|
|
18620
|
+
'x-index': number;
|
|
18621
|
+
expand: boolean;
|
|
18622
|
+
};
|
|
18379
18623
|
标签项: {
|
|
18380
18624
|
'x-index': number;
|
|
18381
18625
|
expand: boolean;
|
|
@@ -19543,6 +19787,10 @@ declare const _default: {
|
|
|
19543
19787
|
props: string[];
|
|
19544
19788
|
};
|
|
19545
19789
|
readonly group: {
|
|
19790
|
+
模板: {
|
|
19791
|
+
'x-index': number;
|
|
19792
|
+
expand: boolean;
|
|
19793
|
+
};
|
|
19546
19794
|
标签项: {
|
|
19547
19795
|
'x-index': number;
|
|
19548
19796
|
expand: boolean;
|
|
@@ -19807,6 +20055,10 @@ declare const _default: {
|
|
|
19807
20055
|
readonly 'x-index': 2;
|
|
19808
20056
|
readonly expand: false;
|
|
19809
20057
|
};
|
|
20058
|
+
readonly 模板: {
|
|
20059
|
+
'x-index': number;
|
|
20060
|
+
expand: boolean;
|
|
20061
|
+
};
|
|
19810
20062
|
readonly 标签项: {
|
|
19811
20063
|
'x-index': number;
|
|
19812
20064
|
expand: boolean;
|
|
@@ -20203,6 +20455,10 @@ declare const _default: {
|
|
|
20203
20455
|
props: string[];
|
|
20204
20456
|
};
|
|
20205
20457
|
readonly group: {
|
|
20458
|
+
模板: {
|
|
20459
|
+
'x-index': number;
|
|
20460
|
+
expand: boolean;
|
|
20461
|
+
};
|
|
20206
20462
|
标签项: {
|
|
20207
20463
|
'x-index': number;
|
|
20208
20464
|
expand: boolean;
|
|
@@ -20526,6 +20782,10 @@ declare const _default: {
|
|
|
20526
20782
|
readonly icon: "../icons/Text.svg";
|
|
20527
20783
|
readonly category: "表单";
|
|
20528
20784
|
readonly group: {
|
|
20785
|
+
模板: {
|
|
20786
|
+
'x-index': number;
|
|
20787
|
+
expand: boolean;
|
|
20788
|
+
};
|
|
20529
20789
|
标签项: {
|
|
20530
20790
|
'x-index': number;
|
|
20531
20791
|
expand: boolean;
|
|
@@ -20683,6 +20943,10 @@ declare const _default: {
|
|
|
20683
20943
|
readonly icon: "../icons/Text.svg";
|
|
20684
20944
|
readonly category: "表单";
|
|
20685
20945
|
readonly group: {
|
|
20946
|
+
模板: {
|
|
20947
|
+
'x-index': number;
|
|
20948
|
+
expand: boolean;
|
|
20949
|
+
};
|
|
20686
20950
|
标签项: {
|
|
20687
20951
|
'x-index': number;
|
|
20688
20952
|
expand: boolean;
|
|
@@ -20775,6 +21039,8 @@ declare const _default: {
|
|
|
20775
21039
|
adTheme: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string>>;
|
|
20776
21040
|
adIntervals: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
20777
21041
|
gridCount: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<number>>;
|
|
21042
|
+
multiton: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
21043
|
+
disableFallbackSharePage: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
20778
21044
|
}>;
|
|
20779
21045
|
readonly classes: readonly [{
|
|
20780
21046
|
readonly name: "根元素";
|
|
@@ -21795,6 +22061,10 @@ declare const _default: {
|
|
|
21795
22061
|
readonly icon: "../icons/Text.svg";
|
|
21796
22062
|
readonly category: "表单";
|
|
21797
22063
|
readonly group: {
|
|
22064
|
+
模板: {
|
|
22065
|
+
'x-index': number;
|
|
22066
|
+
expand: boolean;
|
|
22067
|
+
};
|
|
21798
22068
|
标签项: {
|
|
21799
22069
|
'x-index': number;
|
|
21800
22070
|
expand: boolean;
|
|
@@ -31326,6 +31596,10 @@ declare const _default: {
|
|
|
31326
31596
|
props: string[];
|
|
31327
31597
|
};
|
|
31328
31598
|
readonly group: {
|
|
31599
|
+
模板: {
|
|
31600
|
+
'x-index': number;
|
|
31601
|
+
expand: boolean;
|
|
31602
|
+
};
|
|
31329
31603
|
标签项: {
|
|
31330
31604
|
'x-index': number;
|
|
31331
31605
|
expand: boolean;
|
|
@@ -31582,6 +31856,10 @@ declare const _default: {
|
|
|
31582
31856
|
props: string[];
|
|
31583
31857
|
};
|
|
31584
31858
|
readonly group: {
|
|
31859
|
+
模板: {
|
|
31860
|
+
'x-index': number;
|
|
31861
|
+
expand: boolean;
|
|
31862
|
+
};
|
|
31585
31863
|
标签项: {
|
|
31586
31864
|
'x-index': number;
|
|
31587
31865
|
expand: boolean;
|
|
@@ -32508,6 +32786,10 @@ declare const _default: {
|
|
|
32508
32786
|
props: string[];
|
|
32509
32787
|
};
|
|
32510
32788
|
readonly group: {
|
|
32789
|
+
模板: {
|
|
32790
|
+
'x-index': number;
|
|
32791
|
+
expand: boolean;
|
|
32792
|
+
};
|
|
32511
32793
|
标签项: {
|
|
32512
32794
|
'x-index': number;
|
|
32513
32795
|
expand: boolean;
|
|
@@ -32760,6 +33042,10 @@ declare const _default: {
|
|
|
32760
33042
|
props: string[];
|
|
32761
33043
|
};
|
|
32762
33044
|
readonly group: {
|
|
33045
|
+
模板: {
|
|
33046
|
+
'x-index': number;
|
|
33047
|
+
expand: boolean;
|
|
33048
|
+
};
|
|
32763
33049
|
标签项: {
|
|
32764
33050
|
'x-index': number;
|
|
32765
33051
|
expand: boolean;
|
|
@@ -33062,6 +33348,10 @@ declare const _default: {
|
|
|
33062
33348
|
props: string[];
|
|
33063
33349
|
};
|
|
33064
33350
|
readonly group: {
|
|
33351
|
+
模板: {
|
|
33352
|
+
'x-index': number;
|
|
33353
|
+
expand: boolean;
|
|
33354
|
+
};
|
|
33065
33355
|
标签项: {
|
|
33066
33356
|
'x-index': number;
|
|
33067
33357
|
expand: boolean;
|
|
@@ -33372,6 +33662,10 @@ declare const _default: {
|
|
|
33372
33662
|
props: string[];
|
|
33373
33663
|
};
|
|
33374
33664
|
readonly group: {
|
|
33665
|
+
模板: {
|
|
33666
|
+
'x-index': number;
|
|
33667
|
+
expand: boolean;
|
|
33668
|
+
};
|
|
33375
33669
|
标签项: {
|
|
33376
33670
|
'x-index': number;
|
|
33377
33671
|
expand: boolean;
|
|
@@ -33584,6 +33878,10 @@ declare const _default: {
|
|
|
33584
33878
|
props: string[];
|
|
33585
33879
|
};
|
|
33586
33880
|
readonly group: {
|
|
33881
|
+
模板: {
|
|
33882
|
+
'x-index': number;
|
|
33883
|
+
expand: boolean;
|
|
33884
|
+
};
|
|
33587
33885
|
标签项: {
|
|
33588
33886
|
'x-index': number;
|
|
33589
33887
|
expand: boolean;
|
|
@@ -33801,6 +34099,10 @@ declare const _default: {
|
|
|
33801
34099
|
props: string[];
|
|
33802
34100
|
};
|
|
33803
34101
|
readonly group: {
|
|
34102
|
+
模板: {
|
|
34103
|
+
'x-index': number;
|
|
34104
|
+
expand: boolean;
|
|
34105
|
+
};
|
|
33804
34106
|
标签项: {
|
|
33805
34107
|
'x-index': number;
|
|
33806
34108
|
expand: boolean;
|
|
@@ -34027,6 +34329,10 @@ declare const _default: {
|
|
|
34027
34329
|
props: string[];
|
|
34028
34330
|
};
|
|
34029
34331
|
readonly group: {
|
|
34332
|
+
模板: {
|
|
34333
|
+
'x-index': number;
|
|
34334
|
+
expand: boolean;
|
|
34335
|
+
};
|
|
34030
34336
|
标签项: {
|
|
34031
34337
|
'x-index': number;
|
|
34032
34338
|
expand: boolean;
|
|
@@ -34263,6 +34569,10 @@ declare const _default: {
|
|
|
34263
34569
|
props: string[];
|
|
34264
34570
|
};
|
|
34265
34571
|
readonly group: {
|
|
34572
|
+
模板: {
|
|
34573
|
+
'x-index': number;
|
|
34574
|
+
expand: boolean;
|
|
34575
|
+
};
|
|
34266
34576
|
标签项: {
|
|
34267
34577
|
'x-index': number;
|
|
34268
34578
|
expand: boolean;
|
|
@@ -34435,6 +34745,10 @@ declare const _default: {
|
|
|
34435
34745
|
props: string[];
|
|
34436
34746
|
};
|
|
34437
34747
|
group: {
|
|
34748
|
+
模板: {
|
|
34749
|
+
'x-index': number;
|
|
34750
|
+
expand: boolean;
|
|
34751
|
+
};
|
|
34438
34752
|
标签项: {
|
|
34439
34753
|
'x-index': number;
|
|
34440
34754
|
expand: boolean;
|
|
@@ -34555,6 +34869,7 @@ declare const _default: {
|
|
|
34555
34869
|
'x-helper-text': string;
|
|
34556
34870
|
}>;
|
|
34557
34871
|
value: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>>;
|
|
34872
|
+
template: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34558
34873
|
}>;
|
|
34559
34874
|
properties: import("@sinclair/typebox").TObject<{
|
|
34560
34875
|
name: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString & {
|
|
@@ -34566,7 +34881,55 @@ declare const _default: {
|
|
|
34566
34881
|
disabled: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
34567
34882
|
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
34568
34883
|
readOnly: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
34884
|
+
uploadInstance: import("@sinclair/typebox").TObject<{
|
|
34885
|
+
config: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
34886
|
+
action: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34887
|
+
maxUploadCount: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34888
|
+
maxSize: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34889
|
+
isCompressBeforeUpload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
34890
|
+
compressQuality: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34891
|
+
compressedWidth: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34892
|
+
compressedHeight: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34893
|
+
accepts: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34894
|
+
customUploadPath: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34895
|
+
}>>;
|
|
34896
|
+
beforeUpload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{}>>;
|
|
34897
|
+
onUploadProgress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TObject<{
|
|
34898
|
+
progress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34899
|
+
loading: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
34900
|
+
cloudId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34901
|
+
tempUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34902
|
+
key: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34903
|
+
file: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TAny>;
|
|
34904
|
+
}>], import("@sinclair/typebox").TAny>>;
|
|
34905
|
+
onComplete: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
34906
|
+
progress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34907
|
+
loading: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
34908
|
+
cloudId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34909
|
+
tempUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34910
|
+
key: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34911
|
+
file: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TAny>;
|
|
34912
|
+
}>>], import("@sinclair/typebox").TAny>>;
|
|
34913
|
+
onSuccess: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TObject<{
|
|
34914
|
+
progress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34915
|
+
loading: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
34916
|
+
cloudId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34917
|
+
tempUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34918
|
+
key: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34919
|
+
file: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TAny>;
|
|
34920
|
+
}>], import("@sinclair/typebox").TAny>>;
|
|
34921
|
+
onFail: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TAny], import("@sinclair/typebox").TAny>>;
|
|
34922
|
+
}>;
|
|
34923
|
+
previewFile: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
34924
|
+
progress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34925
|
+
loading: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
34926
|
+
cloudId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34927
|
+
tempUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34928
|
+
key: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34929
|
+
file: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TAny>;
|
|
34930
|
+
}>>;
|
|
34569
34931
|
}>;
|
|
34932
|
+
isContainer: true;
|
|
34570
34933
|
classes: ({
|
|
34571
34934
|
name: string;
|
|
34572
34935
|
selector: string;
|
|
@@ -34577,11 +34940,40 @@ declare const _default: {
|
|
|
34577
34940
|
description: string;
|
|
34578
34941
|
code: string;
|
|
34579
34942
|
})[];
|
|
34580
|
-
methods: {
|
|
34943
|
+
methods: ({
|
|
34581
34944
|
name: string;
|
|
34582
34945
|
label: string;
|
|
34583
34946
|
description: string;
|
|
34584
|
-
}
|
|
34947
|
+
} | {
|
|
34948
|
+
name: string;
|
|
34949
|
+
label: string;
|
|
34950
|
+
params: {
|
|
34951
|
+
properties: {
|
|
34952
|
+
cloudId: {
|
|
34953
|
+
title: string;
|
|
34954
|
+
type: string;
|
|
34955
|
+
};
|
|
34956
|
+
};
|
|
34957
|
+
};
|
|
34958
|
+
description: string;
|
|
34959
|
+
} | {
|
|
34960
|
+
name: string;
|
|
34961
|
+
label: string;
|
|
34962
|
+
params: import("@sinclair/typebox").TObject<{
|
|
34963
|
+
config: import("@sinclair/typebox").TObject<{
|
|
34964
|
+
action: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34965
|
+
maxUploadCount: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34966
|
+
maxSize: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34967
|
+
isCompressBeforeUpload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
34968
|
+
compressQuality: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34969
|
+
compressedWidth: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34970
|
+
compressedHeight: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34971
|
+
accepts: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34972
|
+
customUploadPath: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34973
|
+
}>;
|
|
34974
|
+
}>;
|
|
34975
|
+
description?: undefined;
|
|
34976
|
+
})[];
|
|
34585
34977
|
events: ({
|
|
34586
34978
|
name: string;
|
|
34587
34979
|
title: string;
|
|
@@ -34593,6 +34985,48 @@ declare const _default: {
|
|
|
34593
34985
|
name: string;
|
|
34594
34986
|
title: string;
|
|
34595
34987
|
description: string;
|
|
34988
|
+
} | {
|
|
34989
|
+
name: string;
|
|
34990
|
+
title: string;
|
|
34991
|
+
detail: import("@sinclair/typebox").TObject<{
|
|
34992
|
+
config: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{
|
|
34993
|
+
action: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34994
|
+
maxUploadCount: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34995
|
+
maxSize: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34996
|
+
isCompressBeforeUpload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
34997
|
+
compressQuality: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34998
|
+
compressedWidth: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
34999
|
+
compressedHeight: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
35000
|
+
accepts: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
35001
|
+
customUploadPath: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
35002
|
+
}>>;
|
|
35003
|
+
beforeUpload: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TObject<{}>>;
|
|
35004
|
+
onUploadProgress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TObject<{
|
|
35005
|
+
progress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
35006
|
+
loading: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
35007
|
+
cloudId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
35008
|
+
tempUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
35009
|
+
key: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
35010
|
+
file: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TAny>;
|
|
35011
|
+
}>], import("@sinclair/typebox").TAny>>;
|
|
35012
|
+
onComplete: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
35013
|
+
progress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
35014
|
+
loading: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
35015
|
+
cloudId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
35016
|
+
tempUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
35017
|
+
key: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
35018
|
+
file: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TAny>;
|
|
35019
|
+
}>>], import("@sinclair/typebox").TAny>>;
|
|
35020
|
+
onSuccess: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TObject<{
|
|
35021
|
+
progress: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
35022
|
+
loading: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
35023
|
+
cloudId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
35024
|
+
tempUrl: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
35025
|
+
key: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
35026
|
+
file: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TAny>;
|
|
35027
|
+
}>], import("@sinclair/typebox").TAny>>;
|
|
35028
|
+
onFail: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TFunction<[import("@sinclair/typebox").TAny], import("@sinclair/typebox").TAny>>;
|
|
35029
|
+
}>;
|
|
34596
35030
|
})[];
|
|
34597
35031
|
meta: {
|
|
34598
35032
|
description: string;
|
|
@@ -34609,6 +35043,10 @@ declare const _default: {
|
|
|
34609
35043
|
props: string[];
|
|
34610
35044
|
};
|
|
34611
35045
|
group: {
|
|
35046
|
+
模板: {
|
|
35047
|
+
'x-index': number;
|
|
35048
|
+
expand: boolean;
|
|
35049
|
+
};
|
|
34612
35050
|
标签项: {
|
|
34613
35051
|
'x-index': number;
|
|
34614
35052
|
expand: boolean;
|
|
@@ -34684,6 +35122,11 @@ declare const _default: {
|
|
|
34684
35122
|
} | {
|
|
34685
35123
|
body: string;
|
|
34686
35124
|
when: string;
|
|
35125
|
+
to?: undefined;
|
|
35126
|
+
} | {
|
|
35127
|
+
when: string;
|
|
35128
|
+
to: string;
|
|
35129
|
+
body: string;
|
|
34687
35130
|
})[];
|
|
34688
35131
|
};
|
|
34689
35132
|
compConfig: {
|
|
@@ -34866,6 +35309,10 @@ declare const _default: {
|
|
|
34866
35309
|
props: string[];
|
|
34867
35310
|
};
|
|
34868
35311
|
readonly group: {
|
|
35312
|
+
模板: {
|
|
35313
|
+
'x-index': number;
|
|
35314
|
+
expand: boolean;
|
|
35315
|
+
};
|
|
34869
35316
|
标签项: {
|
|
34870
35317
|
'x-index': number;
|
|
34871
35318
|
expand: boolean;
|
|
@@ -35088,6 +35535,10 @@ declare const _default: {
|
|
|
35088
35535
|
props: string[];
|
|
35089
35536
|
};
|
|
35090
35537
|
readonly group: {
|
|
35538
|
+
模板: {
|
|
35539
|
+
'x-index': number;
|
|
35540
|
+
expand: boolean;
|
|
35541
|
+
};
|
|
35091
35542
|
标签项: {
|
|
35092
35543
|
'x-index': number;
|
|
35093
35544
|
expand: boolean;
|
|
@@ -35202,6 +35653,7 @@ declare const _default: {
|
|
|
35202
35653
|
name: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
35203
35654
|
value: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString & {
|
|
35204
35655
|
title: string;
|
|
35656
|
+
default: any;
|
|
35205
35657
|
}>;
|
|
35206
35658
|
placeholder: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString & {
|
|
35207
35659
|
default: string;
|
|
@@ -35308,6 +35760,10 @@ declare const _default: {
|
|
|
35308
35760
|
props: string[];
|
|
35309
35761
|
};
|
|
35310
35762
|
readonly group: {
|
|
35763
|
+
模板: {
|
|
35764
|
+
'x-index': number;
|
|
35765
|
+
expand: boolean;
|
|
35766
|
+
};
|
|
35311
35767
|
标签项: {
|
|
35312
35768
|
'x-index': number;
|
|
35313
35769
|
expand: boolean;
|
|
@@ -35640,6 +36096,10 @@ declare const _default: {
|
|
|
35640
36096
|
props: string[];
|
|
35641
36097
|
};
|
|
35642
36098
|
readonly group: {
|
|
36099
|
+
模板: {
|
|
36100
|
+
'x-index': number;
|
|
36101
|
+
expand: boolean;
|
|
36102
|
+
};
|
|
35643
36103
|
标签项: {
|
|
35644
36104
|
'x-index': number;
|
|
35645
36105
|
expand: boolean;
|
|
@@ -35835,6 +36295,10 @@ declare const _default: {
|
|
|
35835
36295
|
props: string[];
|
|
35836
36296
|
};
|
|
35837
36297
|
readonly group: {
|
|
36298
|
+
模板: {
|
|
36299
|
+
'x-index': number;
|
|
36300
|
+
expand: boolean;
|
|
36301
|
+
};
|
|
35838
36302
|
标签项: {
|
|
35839
36303
|
'x-index': number;
|
|
35840
36304
|
expand: boolean;
|
|
@@ -36041,6 +36505,10 @@ declare const _default: {
|
|
|
36041
36505
|
props: string[];
|
|
36042
36506
|
};
|
|
36043
36507
|
readonly group: {
|
|
36508
|
+
模板: {
|
|
36509
|
+
'x-index': number;
|
|
36510
|
+
expand: boolean;
|
|
36511
|
+
};
|
|
36044
36512
|
标签项: {
|
|
36045
36513
|
'x-index': number;
|
|
36046
36514
|
expand: boolean;
|
|
@@ -36244,6 +36712,10 @@ declare const _default: {
|
|
|
36244
36712
|
props: string[];
|
|
36245
36713
|
};
|
|
36246
36714
|
readonly group: {
|
|
36715
|
+
模板: {
|
|
36716
|
+
'x-index': number;
|
|
36717
|
+
expand: boolean;
|
|
36718
|
+
};
|
|
36247
36719
|
标签项: {
|
|
36248
36720
|
'x-index': number;
|
|
36249
36721
|
expand: boolean;
|
|
@@ -36495,6 +36967,10 @@ declare const _default: {
|
|
|
36495
36967
|
props: string[];
|
|
36496
36968
|
};
|
|
36497
36969
|
readonly group: {
|
|
36970
|
+
模板: {
|
|
36971
|
+
'x-index': number;
|
|
36972
|
+
expand: boolean;
|
|
36973
|
+
};
|
|
36498
36974
|
标签项: {
|
|
36499
36975
|
'x-index': number;
|
|
36500
36976
|
expand: boolean;
|
|
@@ -36715,6 +37191,10 @@ declare const _default: {
|
|
|
36715
37191
|
props: string[];
|
|
36716
37192
|
};
|
|
36717
37193
|
readonly group: {
|
|
37194
|
+
模板: {
|
|
37195
|
+
'x-index': number;
|
|
37196
|
+
expand: boolean;
|
|
37197
|
+
};
|
|
36718
37198
|
标签项: {
|
|
36719
37199
|
'x-index': number;
|
|
36720
37200
|
expand: boolean;
|
|
@@ -36854,6 +37334,10 @@ declare const _default: {
|
|
|
36854
37334
|
readonly componentOrder: 355;
|
|
36855
37335
|
readonly category: "展示";
|
|
36856
37336
|
readonly group: {
|
|
37337
|
+
模板: {
|
|
37338
|
+
'x-index': number;
|
|
37339
|
+
expand: boolean;
|
|
37340
|
+
};
|
|
36857
37341
|
标签项: {
|
|
36858
37342
|
'x-index': number;
|
|
36859
37343
|
expand: boolean;
|
|
@@ -37571,6 +38055,10 @@ declare const _default: {
|
|
|
37571
38055
|
props: string[];
|
|
37572
38056
|
};
|
|
37573
38057
|
readonly group: {
|
|
38058
|
+
模板: {
|
|
38059
|
+
'x-index': number;
|
|
38060
|
+
expand: boolean;
|
|
38061
|
+
};
|
|
37574
38062
|
标签项: {
|
|
37575
38063
|
'x-index': number;
|
|
37576
38064
|
expand: boolean;
|