@cloudbase/weda-ui 3.15.8 → 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 +17 -8
- package/dist/configs/components/wd-select-multiple.js +43 -10
- package/dist/configs/components/wd-select.d.ts +17 -8
- package/dist/configs/components/wd-select.js +85 -8
- 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 +536 -20
- 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 +3 -0
- package/dist/configs/type-utils/x-runtime-default.js +3 -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/form/uploaderFile/uploadFile.h5.js +3 -5
- package/dist/web/components/form/uploaderFile/uploadFile.pc.js +3 -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-select/relationSelect/relationSelect.js +2 -2
- package/dist/web/components/wd-select/select/index.js +3 -2
- package/dist/web/components/wd-select/select/selectUI.js +3 -3
- package/dist/web/components/wd-select/wd-select.d.ts +2 -0
- package/dist/web/components/wd-select/wd-select.js +9 -3
- package/dist/web/components/wd-select-multiple/wd-select-multiple.d.ts +2 -0
- package/dist/web/components/wd-select-multiple/wd-select-multiple.js +9 -3
- package/dist/web/components/wd-upload-image/wd-upload-image.js +14 -4
- package/package.json +5 -5
- 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;
|
|
@@ -13651,7 +13693,6 @@ export declare const components: {
|
|
|
13651
13693
|
required: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
13652
13694
|
requiredMsg: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
13653
13695
|
requiredFlag: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
13654
|
-
staticSearchable: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
13655
13696
|
extra: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
13656
13697
|
after: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
13657
13698
|
before: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
@@ -13704,10 +13745,9 @@ export declare const components: {
|
|
|
13704
13745
|
default: string;
|
|
13705
13746
|
'x-index': number;
|
|
13706
13747
|
}>;
|
|
13748
|
+
searchable: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
13707
13749
|
searchPlaceholder: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
13708
|
-
|
|
13709
|
-
'x-index': number;
|
|
13710
|
-
}>;
|
|
13750
|
+
filterable: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
13711
13751
|
enableRelationalSetting: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
13712
13752
|
enableRelationalRefresh: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
13713
13753
|
enableAddRelationButton: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
@@ -13818,12 +13858,21 @@ export declare const components: {
|
|
|
13818
13858
|
readonly detail: import("@sinclair/typebox").TObject<{
|
|
13819
13859
|
value: import("@sinclair/typebox").TString;
|
|
13820
13860
|
}>;
|
|
13861
|
+
}, {
|
|
13862
|
+
readonly name: "focus";
|
|
13863
|
+
readonly title: "聚焦";
|
|
13864
|
+
}, {
|
|
13865
|
+
readonly name: "blur";
|
|
13866
|
+
readonly title: "失焦";
|
|
13867
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
13821
13868
|
}, {
|
|
13822
13869
|
readonly name: "onSettingButtonClick";
|
|
13823
13870
|
readonly title: "点击设置按钮";
|
|
13871
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
13824
13872
|
}, {
|
|
13825
13873
|
readonly name: "onAddRelationButtonClick";
|
|
13826
13874
|
readonly title: "点击新建按钮";
|
|
13875
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
13827
13876
|
}, {
|
|
13828
13877
|
readonly name: "onRelationTagClick";
|
|
13829
13878
|
readonly title: "点击标签";
|
|
@@ -13860,6 +13909,10 @@ export declare const components: {
|
|
|
13860
13909
|
props: string[];
|
|
13861
13910
|
};
|
|
13862
13911
|
readonly group: {
|
|
13912
|
+
模板: {
|
|
13913
|
+
'x-index': number;
|
|
13914
|
+
expand: boolean;
|
|
13915
|
+
};
|
|
13863
13916
|
标签项: {
|
|
13864
13917
|
'x-index': number;
|
|
13865
13918
|
expand: boolean;
|
|
@@ -13951,7 +14004,6 @@ export declare const components: {
|
|
|
13951
14004
|
required: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
13952
14005
|
requiredMsg: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
13953
14006
|
requiredFlag: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
13954
|
-
staticSearchable: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
13955
14007
|
extra: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
13956
14008
|
after: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
13957
14009
|
before: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
@@ -14003,10 +14055,9 @@ export declare const components: {
|
|
|
14003
14055
|
default: string;
|
|
14004
14056
|
'x-index': number;
|
|
14005
14057
|
}>;
|
|
14058
|
+
searchable: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
14006
14059
|
searchPlaceholder: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
14007
|
-
|
|
14008
|
-
'x-index': number;
|
|
14009
|
-
}>;
|
|
14060
|
+
filterable: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
14010
14061
|
enableRelationalSetting: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
14011
14062
|
enableRelationalRefresh: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
14012
14063
|
enableRelationOptionJump: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
@@ -14121,12 +14172,21 @@ export declare const components: {
|
|
|
14121
14172
|
readonly detail: import("@sinclair/typebox").TObject<{
|
|
14122
14173
|
value: import("@sinclair/typebox").TString;
|
|
14123
14174
|
}>;
|
|
14175
|
+
}, {
|
|
14176
|
+
readonly name: "focus";
|
|
14177
|
+
readonly title: "聚焦";
|
|
14178
|
+
}, {
|
|
14179
|
+
readonly name: "blur";
|
|
14180
|
+
readonly title: "失焦";
|
|
14181
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
14124
14182
|
}, {
|
|
14125
14183
|
readonly name: "onSettingButtonClick";
|
|
14126
14184
|
readonly title: "点击设置按钮";
|
|
14185
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
14127
14186
|
}, {
|
|
14128
14187
|
readonly name: "onAddRelationButtonClick";
|
|
14129
14188
|
readonly title: "点击新建按钮";
|
|
14189
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
14130
14190
|
}, {
|
|
14131
14191
|
readonly name: "onRelationTagClick";
|
|
14132
14192
|
readonly title: "点击标签";
|
|
@@ -14163,6 +14223,10 @@ export declare const components: {
|
|
|
14163
14223
|
props: string[];
|
|
14164
14224
|
};
|
|
14165
14225
|
readonly group: {
|
|
14226
|
+
模板: {
|
|
14227
|
+
'x-index': number;
|
|
14228
|
+
expand: boolean;
|
|
14229
|
+
};
|
|
14166
14230
|
标签项: {
|
|
14167
14231
|
'x-index': number;
|
|
14168
14232
|
expand: boolean;
|
|
@@ -14375,6 +14439,10 @@ export declare const components: {
|
|
|
14375
14439
|
props: string[];
|
|
14376
14440
|
};
|
|
14377
14441
|
readonly group: {
|
|
14442
|
+
模板: {
|
|
14443
|
+
'x-index': number;
|
|
14444
|
+
expand: boolean;
|
|
14445
|
+
};
|
|
14378
14446
|
标签项: {
|
|
14379
14447
|
'x-index': number;
|
|
14380
14448
|
expand: boolean;
|
|
@@ -14592,6 +14660,10 @@ export declare const components: {
|
|
|
14592
14660
|
props: string[];
|
|
14593
14661
|
};
|
|
14594
14662
|
readonly group: {
|
|
14663
|
+
模板: {
|
|
14664
|
+
'x-index': number;
|
|
14665
|
+
expand: boolean;
|
|
14666
|
+
};
|
|
14595
14667
|
标签项: {
|
|
14596
14668
|
'x-index': number;
|
|
14597
14669
|
expand: boolean;
|
|
@@ -14818,6 +14890,10 @@ export declare const components: {
|
|
|
14818
14890
|
props: string[];
|
|
14819
14891
|
};
|
|
14820
14892
|
readonly group: {
|
|
14893
|
+
模板: {
|
|
14894
|
+
'x-index': number;
|
|
14895
|
+
expand: boolean;
|
|
14896
|
+
};
|
|
14821
14897
|
标签项: {
|
|
14822
14898
|
'x-index': number;
|
|
14823
14899
|
expand: boolean;
|
|
@@ -15054,6 +15130,10 @@ export declare const components: {
|
|
|
15054
15130
|
props: string[];
|
|
15055
15131
|
};
|
|
15056
15132
|
readonly group: {
|
|
15133
|
+
模板: {
|
|
15134
|
+
'x-index': number;
|
|
15135
|
+
expand: boolean;
|
|
15136
|
+
};
|
|
15057
15137
|
标签项: {
|
|
15058
15138
|
'x-index': number;
|
|
15059
15139
|
expand: boolean;
|
|
@@ -15226,6 +15306,10 @@ export declare const components: {
|
|
|
15226
15306
|
props: string[];
|
|
15227
15307
|
};
|
|
15228
15308
|
group: {
|
|
15309
|
+
模板: {
|
|
15310
|
+
'x-index': number;
|
|
15311
|
+
expand: boolean;
|
|
15312
|
+
};
|
|
15229
15313
|
标签项: {
|
|
15230
15314
|
'x-index': number;
|
|
15231
15315
|
expand: boolean;
|
|
@@ -15346,6 +15430,7 @@ export declare const components: {
|
|
|
15346
15430
|
'x-helper-text': string;
|
|
15347
15431
|
}>;
|
|
15348
15432
|
value: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>>;
|
|
15433
|
+
template: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15349
15434
|
}>;
|
|
15350
15435
|
properties: import("@sinclair/typebox").TObject<{
|
|
15351
15436
|
name: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString & {
|
|
@@ -15357,7 +15442,55 @@ export declare const components: {
|
|
|
15357
15442
|
disabled: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15358
15443
|
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
15359
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
|
+
}>>;
|
|
15360
15492
|
}>;
|
|
15493
|
+
isContainer: true;
|
|
15361
15494
|
classes: ({
|
|
15362
15495
|
name: string;
|
|
15363
15496
|
selector: string;
|
|
@@ -15368,11 +15501,40 @@ export declare const components: {
|
|
|
15368
15501
|
description: string;
|
|
15369
15502
|
code: string;
|
|
15370
15503
|
})[];
|
|
15371
|
-
methods: {
|
|
15504
|
+
methods: ({
|
|
15372
15505
|
name: string;
|
|
15373
15506
|
label: string;
|
|
15374
15507
|
description: string;
|
|
15375
|
-
}
|
|
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
|
+
})[];
|
|
15376
15538
|
events: ({
|
|
15377
15539
|
name: string;
|
|
15378
15540
|
title: string;
|
|
@@ -15384,6 +15546,48 @@ export declare const components: {
|
|
|
15384
15546
|
name: string;
|
|
15385
15547
|
title: string;
|
|
15386
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
|
+
}>;
|
|
15387
15591
|
})[];
|
|
15388
15592
|
meta: {
|
|
15389
15593
|
description: string;
|
|
@@ -15400,6 +15604,10 @@ export declare const components: {
|
|
|
15400
15604
|
props: string[];
|
|
15401
15605
|
};
|
|
15402
15606
|
group: {
|
|
15607
|
+
模板: {
|
|
15608
|
+
'x-index': number;
|
|
15609
|
+
expand: boolean;
|
|
15610
|
+
};
|
|
15403
15611
|
标签项: {
|
|
15404
15612
|
'x-index': number;
|
|
15405
15613
|
expand: boolean;
|
|
@@ -15475,6 +15683,11 @@ export declare const components: {
|
|
|
15475
15683
|
} | {
|
|
15476
15684
|
body: string;
|
|
15477
15685
|
when: string;
|
|
15686
|
+
to?: undefined;
|
|
15687
|
+
} | {
|
|
15688
|
+
when: string;
|
|
15689
|
+
to: string;
|
|
15690
|
+
body: string;
|
|
15478
15691
|
})[];
|
|
15479
15692
|
};
|
|
15480
15693
|
compConfig: {
|
|
@@ -15657,6 +15870,10 @@ export declare const components: {
|
|
|
15657
15870
|
props: string[];
|
|
15658
15871
|
};
|
|
15659
15872
|
readonly group: {
|
|
15873
|
+
模板: {
|
|
15874
|
+
'x-index': number;
|
|
15875
|
+
expand: boolean;
|
|
15876
|
+
};
|
|
15660
15877
|
标签项: {
|
|
15661
15878
|
'x-index': number;
|
|
15662
15879
|
expand: boolean;
|
|
@@ -15879,6 +16096,10 @@ export declare const components: {
|
|
|
15879
16096
|
props: string[];
|
|
15880
16097
|
};
|
|
15881
16098
|
readonly group: {
|
|
16099
|
+
模板: {
|
|
16100
|
+
'x-index': number;
|
|
16101
|
+
expand: boolean;
|
|
16102
|
+
};
|
|
15882
16103
|
标签项: {
|
|
15883
16104
|
'x-index': number;
|
|
15884
16105
|
expand: boolean;
|
|
@@ -15993,6 +16214,7 @@ export declare const components: {
|
|
|
15993
16214
|
name: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
15994
16215
|
value: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString & {
|
|
15995
16216
|
title: string;
|
|
16217
|
+
default: any;
|
|
15996
16218
|
}>;
|
|
15997
16219
|
placeholder: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString & {
|
|
15998
16220
|
default: string;
|
|
@@ -16099,6 +16321,10 @@ export declare const components: {
|
|
|
16099
16321
|
props: string[];
|
|
16100
16322
|
};
|
|
16101
16323
|
readonly group: {
|
|
16324
|
+
模板: {
|
|
16325
|
+
'x-index': number;
|
|
16326
|
+
expand: boolean;
|
|
16327
|
+
};
|
|
16102
16328
|
标签项: {
|
|
16103
16329
|
'x-index': number;
|
|
16104
16330
|
expand: boolean;
|
|
@@ -16431,6 +16657,10 @@ export declare const components: {
|
|
|
16431
16657
|
props: string[];
|
|
16432
16658
|
};
|
|
16433
16659
|
readonly group: {
|
|
16660
|
+
模板: {
|
|
16661
|
+
'x-index': number;
|
|
16662
|
+
expand: boolean;
|
|
16663
|
+
};
|
|
16434
16664
|
标签项: {
|
|
16435
16665
|
'x-index': number;
|
|
16436
16666
|
expand: boolean;
|
|
@@ -16626,6 +16856,10 @@ export declare const components: {
|
|
|
16626
16856
|
props: string[];
|
|
16627
16857
|
};
|
|
16628
16858
|
readonly group: {
|
|
16859
|
+
模板: {
|
|
16860
|
+
'x-index': number;
|
|
16861
|
+
expand: boolean;
|
|
16862
|
+
};
|
|
16629
16863
|
标签项: {
|
|
16630
16864
|
'x-index': number;
|
|
16631
16865
|
expand: boolean;
|
|
@@ -16832,6 +17066,10 @@ export declare const components: {
|
|
|
16832
17066
|
props: string[];
|
|
16833
17067
|
};
|
|
16834
17068
|
readonly group: {
|
|
17069
|
+
模板: {
|
|
17070
|
+
'x-index': number;
|
|
17071
|
+
expand: boolean;
|
|
17072
|
+
};
|
|
16835
17073
|
标签项: {
|
|
16836
17074
|
'x-index': number;
|
|
16837
17075
|
expand: boolean;
|
|
@@ -17035,6 +17273,10 @@ export declare const components: {
|
|
|
17035
17273
|
props: string[];
|
|
17036
17274
|
};
|
|
17037
17275
|
readonly group: {
|
|
17276
|
+
模板: {
|
|
17277
|
+
'x-index': number;
|
|
17278
|
+
expand: boolean;
|
|
17279
|
+
};
|
|
17038
17280
|
标签项: {
|
|
17039
17281
|
'x-index': number;
|
|
17040
17282
|
expand: boolean;
|
|
@@ -17286,6 +17528,10 @@ export declare const components: {
|
|
|
17286
17528
|
props: string[];
|
|
17287
17529
|
};
|
|
17288
17530
|
readonly group: {
|
|
17531
|
+
模板: {
|
|
17532
|
+
'x-index': number;
|
|
17533
|
+
expand: boolean;
|
|
17534
|
+
};
|
|
17289
17535
|
标签项: {
|
|
17290
17536
|
'x-index': number;
|
|
17291
17537
|
expand: boolean;
|
|
@@ -17506,6 +17752,10 @@ export declare const components: {
|
|
|
17506
17752
|
props: string[];
|
|
17507
17753
|
};
|
|
17508
17754
|
readonly group: {
|
|
17755
|
+
模板: {
|
|
17756
|
+
'x-index': number;
|
|
17757
|
+
expand: boolean;
|
|
17758
|
+
};
|
|
17509
17759
|
标签项: {
|
|
17510
17760
|
'x-index': number;
|
|
17511
17761
|
expand: boolean;
|
|
@@ -17645,6 +17895,10 @@ export declare const components: {
|
|
|
17645
17895
|
readonly componentOrder: 355;
|
|
17646
17896
|
readonly category: "展示";
|
|
17647
17897
|
readonly group: {
|
|
17898
|
+
模板: {
|
|
17899
|
+
'x-index': number;
|
|
17900
|
+
expand: boolean;
|
|
17901
|
+
};
|
|
17648
17902
|
标签项: {
|
|
17649
17903
|
'x-index': number;
|
|
17650
17904
|
expand: boolean;
|
|
@@ -18362,6 +18616,10 @@ export declare const components: {
|
|
|
18362
18616
|
props: string[];
|
|
18363
18617
|
};
|
|
18364
18618
|
readonly group: {
|
|
18619
|
+
模板: {
|
|
18620
|
+
'x-index': number;
|
|
18621
|
+
expand: boolean;
|
|
18622
|
+
};
|
|
18365
18623
|
标签项: {
|
|
18366
18624
|
'x-index': number;
|
|
18367
18625
|
expand: boolean;
|
|
@@ -19529,6 +19787,10 @@ declare const _default: {
|
|
|
19529
19787
|
props: string[];
|
|
19530
19788
|
};
|
|
19531
19789
|
readonly group: {
|
|
19790
|
+
模板: {
|
|
19791
|
+
'x-index': number;
|
|
19792
|
+
expand: boolean;
|
|
19793
|
+
};
|
|
19532
19794
|
标签项: {
|
|
19533
19795
|
'x-index': number;
|
|
19534
19796
|
expand: boolean;
|
|
@@ -19793,6 +20055,10 @@ declare const _default: {
|
|
|
19793
20055
|
readonly 'x-index': 2;
|
|
19794
20056
|
readonly expand: false;
|
|
19795
20057
|
};
|
|
20058
|
+
readonly 模板: {
|
|
20059
|
+
'x-index': number;
|
|
20060
|
+
expand: boolean;
|
|
20061
|
+
};
|
|
19796
20062
|
readonly 标签项: {
|
|
19797
20063
|
'x-index': number;
|
|
19798
20064
|
expand: boolean;
|
|
@@ -20189,6 +20455,10 @@ declare const _default: {
|
|
|
20189
20455
|
props: string[];
|
|
20190
20456
|
};
|
|
20191
20457
|
readonly group: {
|
|
20458
|
+
模板: {
|
|
20459
|
+
'x-index': number;
|
|
20460
|
+
expand: boolean;
|
|
20461
|
+
};
|
|
20192
20462
|
标签项: {
|
|
20193
20463
|
'x-index': number;
|
|
20194
20464
|
expand: boolean;
|
|
@@ -20512,6 +20782,10 @@ declare const _default: {
|
|
|
20512
20782
|
readonly icon: "../icons/Text.svg";
|
|
20513
20783
|
readonly category: "表单";
|
|
20514
20784
|
readonly group: {
|
|
20785
|
+
模板: {
|
|
20786
|
+
'x-index': number;
|
|
20787
|
+
expand: boolean;
|
|
20788
|
+
};
|
|
20515
20789
|
标签项: {
|
|
20516
20790
|
'x-index': number;
|
|
20517
20791
|
expand: boolean;
|
|
@@ -20669,6 +20943,10 @@ declare const _default: {
|
|
|
20669
20943
|
readonly icon: "../icons/Text.svg";
|
|
20670
20944
|
readonly category: "表单";
|
|
20671
20945
|
readonly group: {
|
|
20946
|
+
模板: {
|
|
20947
|
+
'x-index': number;
|
|
20948
|
+
expand: boolean;
|
|
20949
|
+
};
|
|
20672
20950
|
标签项: {
|
|
20673
20951
|
'x-index': number;
|
|
20674
20952
|
expand: boolean;
|
|
@@ -20761,6 +21039,8 @@ declare const _default: {
|
|
|
20761
21039
|
adTheme: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string>>;
|
|
20762
21040
|
adIntervals: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
20763
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>;
|
|
20764
21044
|
}>;
|
|
20765
21045
|
readonly classes: readonly [{
|
|
20766
21046
|
readonly name: "根元素";
|
|
@@ -21781,6 +22061,10 @@ declare const _default: {
|
|
|
21781
22061
|
readonly icon: "../icons/Text.svg";
|
|
21782
22062
|
readonly category: "表单";
|
|
21783
22063
|
readonly group: {
|
|
22064
|
+
模板: {
|
|
22065
|
+
'x-index': number;
|
|
22066
|
+
expand: boolean;
|
|
22067
|
+
};
|
|
21784
22068
|
标签项: {
|
|
21785
22069
|
'x-index': number;
|
|
21786
22070
|
expand: boolean;
|
|
@@ -31312,6 +31596,10 @@ declare const _default: {
|
|
|
31312
31596
|
props: string[];
|
|
31313
31597
|
};
|
|
31314
31598
|
readonly group: {
|
|
31599
|
+
模板: {
|
|
31600
|
+
'x-index': number;
|
|
31601
|
+
expand: boolean;
|
|
31602
|
+
};
|
|
31315
31603
|
标签项: {
|
|
31316
31604
|
'x-index': number;
|
|
31317
31605
|
expand: boolean;
|
|
@@ -31568,6 +31856,10 @@ declare const _default: {
|
|
|
31568
31856
|
props: string[];
|
|
31569
31857
|
};
|
|
31570
31858
|
readonly group: {
|
|
31859
|
+
模板: {
|
|
31860
|
+
'x-index': number;
|
|
31861
|
+
expand: boolean;
|
|
31862
|
+
};
|
|
31571
31863
|
标签项: {
|
|
31572
31864
|
'x-index': number;
|
|
31573
31865
|
expand: boolean;
|
|
@@ -32494,6 +32786,10 @@ declare const _default: {
|
|
|
32494
32786
|
props: string[];
|
|
32495
32787
|
};
|
|
32496
32788
|
readonly group: {
|
|
32789
|
+
模板: {
|
|
32790
|
+
'x-index': number;
|
|
32791
|
+
expand: boolean;
|
|
32792
|
+
};
|
|
32497
32793
|
标签项: {
|
|
32498
32794
|
'x-index': number;
|
|
32499
32795
|
expand: boolean;
|
|
@@ -32746,6 +33042,10 @@ declare const _default: {
|
|
|
32746
33042
|
props: string[];
|
|
32747
33043
|
};
|
|
32748
33044
|
readonly group: {
|
|
33045
|
+
模板: {
|
|
33046
|
+
'x-index': number;
|
|
33047
|
+
expand: boolean;
|
|
33048
|
+
};
|
|
32749
33049
|
标签项: {
|
|
32750
33050
|
'x-index': number;
|
|
32751
33051
|
expand: boolean;
|
|
@@ -32832,7 +33132,6 @@ declare const _default: {
|
|
|
32832
33132
|
required: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
32833
33133
|
requiredMsg: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
32834
33134
|
requiredFlag: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
32835
|
-
staticSearchable: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
32836
33135
|
extra: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
32837
33136
|
after: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
32838
33137
|
before: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
@@ -32885,10 +33184,9 @@ declare const _default: {
|
|
|
32885
33184
|
default: string;
|
|
32886
33185
|
'x-index': number;
|
|
32887
33186
|
}>;
|
|
33187
|
+
searchable: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
32888
33188
|
searchPlaceholder: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
32889
|
-
|
|
32890
|
-
'x-index': number;
|
|
32891
|
-
}>;
|
|
33189
|
+
filterable: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
32892
33190
|
enableRelationalSetting: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
32893
33191
|
enableRelationalRefresh: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
32894
33192
|
enableAddRelationButton: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
@@ -32999,12 +33297,21 @@ declare const _default: {
|
|
|
32999
33297
|
readonly detail: import("@sinclair/typebox").TObject<{
|
|
33000
33298
|
value: import("@sinclair/typebox").TString;
|
|
33001
33299
|
}>;
|
|
33300
|
+
}, {
|
|
33301
|
+
readonly name: "focus";
|
|
33302
|
+
readonly title: "聚焦";
|
|
33303
|
+
}, {
|
|
33304
|
+
readonly name: "blur";
|
|
33305
|
+
readonly title: "失焦";
|
|
33306
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
33002
33307
|
}, {
|
|
33003
33308
|
readonly name: "onSettingButtonClick";
|
|
33004
33309
|
readonly title: "点击设置按钮";
|
|
33310
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
33005
33311
|
}, {
|
|
33006
33312
|
readonly name: "onAddRelationButtonClick";
|
|
33007
33313
|
readonly title: "点击新建按钮";
|
|
33314
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
33008
33315
|
}, {
|
|
33009
33316
|
readonly name: "onRelationTagClick";
|
|
33010
33317
|
readonly title: "点击标签";
|
|
@@ -33041,6 +33348,10 @@ declare const _default: {
|
|
|
33041
33348
|
props: string[];
|
|
33042
33349
|
};
|
|
33043
33350
|
readonly group: {
|
|
33351
|
+
模板: {
|
|
33352
|
+
'x-index': number;
|
|
33353
|
+
expand: boolean;
|
|
33354
|
+
};
|
|
33044
33355
|
标签项: {
|
|
33045
33356
|
'x-index': number;
|
|
33046
33357
|
expand: boolean;
|
|
@@ -33132,7 +33443,6 @@ declare const _default: {
|
|
|
33132
33443
|
required: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
33133
33444
|
requiredMsg: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
33134
33445
|
requiredFlag: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
33135
|
-
staticSearchable: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
33136
33446
|
extra: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
33137
33447
|
after: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
33138
33448
|
before: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
@@ -33184,10 +33494,9 @@ declare const _default: {
|
|
|
33184
33494
|
default: string;
|
|
33185
33495
|
'x-index': number;
|
|
33186
33496
|
}>;
|
|
33497
|
+
searchable: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
33187
33498
|
searchPlaceholder: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
33188
|
-
|
|
33189
|
-
'x-index': number;
|
|
33190
|
-
}>;
|
|
33499
|
+
filterable: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
33191
33500
|
enableRelationalSetting: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
33192
33501
|
enableRelationalRefresh: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
33193
33502
|
enableRelationOptionJump: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
@@ -33302,12 +33611,21 @@ declare const _default: {
|
|
|
33302
33611
|
readonly detail: import("@sinclair/typebox").TObject<{
|
|
33303
33612
|
value: import("@sinclair/typebox").TString;
|
|
33304
33613
|
}>;
|
|
33614
|
+
}, {
|
|
33615
|
+
readonly name: "focus";
|
|
33616
|
+
readonly title: "聚焦";
|
|
33617
|
+
}, {
|
|
33618
|
+
readonly name: "blur";
|
|
33619
|
+
readonly title: "失焦";
|
|
33620
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
33305
33621
|
}, {
|
|
33306
33622
|
readonly name: "onSettingButtonClick";
|
|
33307
33623
|
readonly title: "点击设置按钮";
|
|
33624
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
33308
33625
|
}, {
|
|
33309
33626
|
readonly name: "onAddRelationButtonClick";
|
|
33310
33627
|
readonly title: "点击新建按钮";
|
|
33628
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
33311
33629
|
}, {
|
|
33312
33630
|
readonly name: "onRelationTagClick";
|
|
33313
33631
|
readonly title: "点击标签";
|
|
@@ -33344,6 +33662,10 @@ declare const _default: {
|
|
|
33344
33662
|
props: string[];
|
|
33345
33663
|
};
|
|
33346
33664
|
readonly group: {
|
|
33665
|
+
模板: {
|
|
33666
|
+
'x-index': number;
|
|
33667
|
+
expand: boolean;
|
|
33668
|
+
};
|
|
33347
33669
|
标签项: {
|
|
33348
33670
|
'x-index': number;
|
|
33349
33671
|
expand: boolean;
|
|
@@ -33556,6 +33878,10 @@ declare const _default: {
|
|
|
33556
33878
|
props: string[];
|
|
33557
33879
|
};
|
|
33558
33880
|
readonly group: {
|
|
33881
|
+
模板: {
|
|
33882
|
+
'x-index': number;
|
|
33883
|
+
expand: boolean;
|
|
33884
|
+
};
|
|
33559
33885
|
标签项: {
|
|
33560
33886
|
'x-index': number;
|
|
33561
33887
|
expand: boolean;
|
|
@@ -33773,6 +34099,10 @@ declare const _default: {
|
|
|
33773
34099
|
props: string[];
|
|
33774
34100
|
};
|
|
33775
34101
|
readonly group: {
|
|
34102
|
+
模板: {
|
|
34103
|
+
'x-index': number;
|
|
34104
|
+
expand: boolean;
|
|
34105
|
+
};
|
|
33776
34106
|
标签项: {
|
|
33777
34107
|
'x-index': number;
|
|
33778
34108
|
expand: boolean;
|
|
@@ -33999,6 +34329,10 @@ declare const _default: {
|
|
|
33999
34329
|
props: string[];
|
|
34000
34330
|
};
|
|
34001
34331
|
readonly group: {
|
|
34332
|
+
模板: {
|
|
34333
|
+
'x-index': number;
|
|
34334
|
+
expand: boolean;
|
|
34335
|
+
};
|
|
34002
34336
|
标签项: {
|
|
34003
34337
|
'x-index': number;
|
|
34004
34338
|
expand: boolean;
|
|
@@ -34235,6 +34569,10 @@ declare const _default: {
|
|
|
34235
34569
|
props: string[];
|
|
34236
34570
|
};
|
|
34237
34571
|
readonly group: {
|
|
34572
|
+
模板: {
|
|
34573
|
+
'x-index': number;
|
|
34574
|
+
expand: boolean;
|
|
34575
|
+
};
|
|
34238
34576
|
标签项: {
|
|
34239
34577
|
'x-index': number;
|
|
34240
34578
|
expand: boolean;
|
|
@@ -34407,6 +34745,10 @@ declare const _default: {
|
|
|
34407
34745
|
props: string[];
|
|
34408
34746
|
};
|
|
34409
34747
|
group: {
|
|
34748
|
+
模板: {
|
|
34749
|
+
'x-index': number;
|
|
34750
|
+
expand: boolean;
|
|
34751
|
+
};
|
|
34410
34752
|
标签项: {
|
|
34411
34753
|
'x-index': number;
|
|
34412
34754
|
expand: boolean;
|
|
@@ -34527,6 +34869,7 @@ declare const _default: {
|
|
|
34527
34869
|
'x-helper-text': string;
|
|
34528
34870
|
}>;
|
|
34529
34871
|
value: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>>;
|
|
34872
|
+
template: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
34530
34873
|
}>;
|
|
34531
34874
|
properties: import("@sinclair/typebox").TObject<{
|
|
34532
34875
|
name: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString & {
|
|
@@ -34538,7 +34881,55 @@ declare const _default: {
|
|
|
34538
34881
|
disabled: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
34539
34882
|
visible: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
34540
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
|
+
}>>;
|
|
34541
34931
|
}>;
|
|
34932
|
+
isContainer: true;
|
|
34542
34933
|
classes: ({
|
|
34543
34934
|
name: string;
|
|
34544
34935
|
selector: string;
|
|
@@ -34549,11 +34940,40 @@ declare const _default: {
|
|
|
34549
34940
|
description: string;
|
|
34550
34941
|
code: string;
|
|
34551
34942
|
})[];
|
|
34552
|
-
methods: {
|
|
34943
|
+
methods: ({
|
|
34553
34944
|
name: string;
|
|
34554
34945
|
label: string;
|
|
34555
34946
|
description: string;
|
|
34556
|
-
}
|
|
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
|
+
})[];
|
|
34557
34977
|
events: ({
|
|
34558
34978
|
name: string;
|
|
34559
34979
|
title: string;
|
|
@@ -34565,6 +34985,48 @@ declare const _default: {
|
|
|
34565
34985
|
name: string;
|
|
34566
34986
|
title: string;
|
|
34567
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
|
+
}>;
|
|
34568
35030
|
})[];
|
|
34569
35031
|
meta: {
|
|
34570
35032
|
description: string;
|
|
@@ -34581,6 +35043,10 @@ declare const _default: {
|
|
|
34581
35043
|
props: string[];
|
|
34582
35044
|
};
|
|
34583
35045
|
group: {
|
|
35046
|
+
模板: {
|
|
35047
|
+
'x-index': number;
|
|
35048
|
+
expand: boolean;
|
|
35049
|
+
};
|
|
34584
35050
|
标签项: {
|
|
34585
35051
|
'x-index': number;
|
|
34586
35052
|
expand: boolean;
|
|
@@ -34656,6 +35122,11 @@ declare const _default: {
|
|
|
34656
35122
|
} | {
|
|
34657
35123
|
body: string;
|
|
34658
35124
|
when: string;
|
|
35125
|
+
to?: undefined;
|
|
35126
|
+
} | {
|
|
35127
|
+
when: string;
|
|
35128
|
+
to: string;
|
|
35129
|
+
body: string;
|
|
34659
35130
|
})[];
|
|
34660
35131
|
};
|
|
34661
35132
|
compConfig: {
|
|
@@ -34838,6 +35309,10 @@ declare const _default: {
|
|
|
34838
35309
|
props: string[];
|
|
34839
35310
|
};
|
|
34840
35311
|
readonly group: {
|
|
35312
|
+
模板: {
|
|
35313
|
+
'x-index': number;
|
|
35314
|
+
expand: boolean;
|
|
35315
|
+
};
|
|
34841
35316
|
标签项: {
|
|
34842
35317
|
'x-index': number;
|
|
34843
35318
|
expand: boolean;
|
|
@@ -35060,6 +35535,10 @@ declare const _default: {
|
|
|
35060
35535
|
props: string[];
|
|
35061
35536
|
};
|
|
35062
35537
|
readonly group: {
|
|
35538
|
+
模板: {
|
|
35539
|
+
'x-index': number;
|
|
35540
|
+
expand: boolean;
|
|
35541
|
+
};
|
|
35063
35542
|
标签项: {
|
|
35064
35543
|
'x-index': number;
|
|
35065
35544
|
expand: boolean;
|
|
@@ -35174,6 +35653,7 @@ declare const _default: {
|
|
|
35174
35653
|
name: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
35175
35654
|
value: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString & {
|
|
35176
35655
|
title: string;
|
|
35656
|
+
default: any;
|
|
35177
35657
|
}>;
|
|
35178
35658
|
placeholder: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString & {
|
|
35179
35659
|
default: string;
|
|
@@ -35280,6 +35760,10 @@ declare const _default: {
|
|
|
35280
35760
|
props: string[];
|
|
35281
35761
|
};
|
|
35282
35762
|
readonly group: {
|
|
35763
|
+
模板: {
|
|
35764
|
+
'x-index': number;
|
|
35765
|
+
expand: boolean;
|
|
35766
|
+
};
|
|
35283
35767
|
标签项: {
|
|
35284
35768
|
'x-index': number;
|
|
35285
35769
|
expand: boolean;
|
|
@@ -35612,6 +36096,10 @@ declare const _default: {
|
|
|
35612
36096
|
props: string[];
|
|
35613
36097
|
};
|
|
35614
36098
|
readonly group: {
|
|
36099
|
+
模板: {
|
|
36100
|
+
'x-index': number;
|
|
36101
|
+
expand: boolean;
|
|
36102
|
+
};
|
|
35615
36103
|
标签项: {
|
|
35616
36104
|
'x-index': number;
|
|
35617
36105
|
expand: boolean;
|
|
@@ -35807,6 +36295,10 @@ declare const _default: {
|
|
|
35807
36295
|
props: string[];
|
|
35808
36296
|
};
|
|
35809
36297
|
readonly group: {
|
|
36298
|
+
模板: {
|
|
36299
|
+
'x-index': number;
|
|
36300
|
+
expand: boolean;
|
|
36301
|
+
};
|
|
35810
36302
|
标签项: {
|
|
35811
36303
|
'x-index': number;
|
|
35812
36304
|
expand: boolean;
|
|
@@ -36013,6 +36505,10 @@ declare const _default: {
|
|
|
36013
36505
|
props: string[];
|
|
36014
36506
|
};
|
|
36015
36507
|
readonly group: {
|
|
36508
|
+
模板: {
|
|
36509
|
+
'x-index': number;
|
|
36510
|
+
expand: boolean;
|
|
36511
|
+
};
|
|
36016
36512
|
标签项: {
|
|
36017
36513
|
'x-index': number;
|
|
36018
36514
|
expand: boolean;
|
|
@@ -36216,6 +36712,10 @@ declare const _default: {
|
|
|
36216
36712
|
props: string[];
|
|
36217
36713
|
};
|
|
36218
36714
|
readonly group: {
|
|
36715
|
+
模板: {
|
|
36716
|
+
'x-index': number;
|
|
36717
|
+
expand: boolean;
|
|
36718
|
+
};
|
|
36219
36719
|
标签项: {
|
|
36220
36720
|
'x-index': number;
|
|
36221
36721
|
expand: boolean;
|
|
@@ -36467,6 +36967,10 @@ declare const _default: {
|
|
|
36467
36967
|
props: string[];
|
|
36468
36968
|
};
|
|
36469
36969
|
readonly group: {
|
|
36970
|
+
模板: {
|
|
36971
|
+
'x-index': number;
|
|
36972
|
+
expand: boolean;
|
|
36973
|
+
};
|
|
36470
36974
|
标签项: {
|
|
36471
36975
|
'x-index': number;
|
|
36472
36976
|
expand: boolean;
|
|
@@ -36687,6 +37191,10 @@ declare const _default: {
|
|
|
36687
37191
|
props: string[];
|
|
36688
37192
|
};
|
|
36689
37193
|
readonly group: {
|
|
37194
|
+
模板: {
|
|
37195
|
+
'x-index': number;
|
|
37196
|
+
expand: boolean;
|
|
37197
|
+
};
|
|
36690
37198
|
标签项: {
|
|
36691
37199
|
'x-index': number;
|
|
36692
37200
|
expand: boolean;
|
|
@@ -36826,6 +37334,10 @@ declare const _default: {
|
|
|
36826
37334
|
readonly componentOrder: 355;
|
|
36827
37335
|
readonly category: "展示";
|
|
36828
37336
|
readonly group: {
|
|
37337
|
+
模板: {
|
|
37338
|
+
'x-index': number;
|
|
37339
|
+
expand: boolean;
|
|
37340
|
+
};
|
|
36829
37341
|
标签项: {
|
|
36830
37342
|
'x-index': number;
|
|
36831
37343
|
expand: boolean;
|
|
@@ -37543,6 +38055,10 @@ declare const _default: {
|
|
|
37543
38055
|
props: string[];
|
|
37544
38056
|
};
|
|
37545
38057
|
readonly group: {
|
|
38058
|
+
模板: {
|
|
38059
|
+
'x-index': number;
|
|
38060
|
+
expand: boolean;
|
|
38061
|
+
};
|
|
37546
38062
|
标签项: {
|
|
37547
38063
|
'x-index': number;
|
|
37548
38064
|
expand: boolean;
|