@cloudbase/weda-ui 3.8.2 → 3.9.1
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/dataView.d.ts +15 -0
- package/dist/configs/components/dataView.js +104 -6
- package/dist/configs/components/listView.d.ts +31 -0
- package/dist/configs/components/listView.js +145 -24
- package/dist/configs/components/wd-form.d.ts +2 -0
- package/dist/configs/components/wd-location.d.ts +13 -0
- package/dist/configs/components/wd-location.js +10 -0
- package/dist/configs/components/wd-markdown.d.ts +110 -0
- package/dist/configs/components/wd-markdown.js +171 -0
- package/dist/configs/components/wd-menu-layout.d.ts +13 -10
- package/dist/configs/components/wd-menu-layout.js +12 -1
- package/dist/configs/components/wd-menu-nav-tab-layou.d.ts +27 -0
- package/dist/configs/components/wd-menu-nav-tab-layou.js +31 -0
- package/dist/configs/components/wd-side-tab.js +1 -0
- package/dist/configs/components/wd-table.d.ts +3 -1
- package/dist/configs/components/wd-table.js +1 -0
- package/dist/configs/components/wd-top-tab.js +1 -0
- package/dist/configs/components/wd-upload-image.js +1 -1
- package/dist/configs/components/web-view.d.ts +6 -15
- package/dist/configs/components/web-view.js +12 -15
- package/dist/configs/index.d.ts +404 -40
- package/dist/configs/index.js +4 -0
- package/dist/configs/type-utils/error.d.ts +1 -0
- package/dist/configs/type-utils/error.js +3 -0
- package/dist/configs/utils/layout.d.ts +1 -1
- package/dist/configs/utils/layout.js +219 -7
- package/dist/style/index.scss +1 -1
- package/dist/web/components/dataView/index.js +5 -3
- package/dist/web/components/form/location/components/LocationH5/location.h5.js +19 -3
- package/dist/web/components/form/location/components/LocationPC/location.PC.js +7 -1
- package/dist/web/components/index.d.ts +2 -0
- package/dist/web/components/index.js +4 -0
- package/dist/web/components/listView/index.js +48 -13
- package/dist/web/components/listView/interface.d.ts +4 -0
- package/dist/web/components/listView/useQueryParams.d.ts +11 -0
- package/dist/web/components/listView/useQueryParams.js +23 -0
- package/dist/web/components/richTextView/index.js +4 -38
- package/dist/web/components/richTextView/useImgTransform.d.ts +1 -0
- package/dist/web/components/richTextView/useImgTransform.js +47 -0
- package/dist/web/components/slot/index.js +2 -1
- package/dist/web/components/wd-form/index.d.ts +1 -0
- package/dist/web/components/wd-location/wd-location.js +2 -2
- package/dist/web/components/wd-markdown/github-markdown-light.css +1139 -0
- package/dist/web/components/wd-markdown/index.d.ts +4 -0
- package/dist/web/components/wd-markdown/index.js +3 -0
- package/dist/web/components/wd-markdown/style.d.ts +3 -0
- package/dist/web/components/wd-markdown/style.js +3 -0
- package/dist/web/components/wd-markdown/wd-markdown.d.ts +7 -0
- package/dist/web/components/wd-markdown/wd-markdown.js +96 -0
- package/dist/web/components/wd-menu-layout/components/H5Menu.js +4 -1
- package/dist/web/components/wd-menu-layout/components/NavTabMenu.d.ts +3 -0
- package/dist/web/components/wd-menu-layout/components/NavTabMenu.js +7 -0
- package/dist/web/components/wd-menu-layout/wd-menu-layout.js +5 -2
- package/dist/web/components/wd-menu-nav-tab-layout/index.d.ts +6 -0
- package/dist/web/components/wd-menu-nav-tab-layout/index.js +5 -0
- package/dist/web/components/wd-table/components/FieldRender/index.js +5 -2
- package/dist/web/utils/error.d.ts +13 -0
- package/dist/web/utils/error.js +11 -0
- package/dist/web/utils/getModelParams.d.ts +2 -0
- package/dist/web/utils/getModelParams.js +73 -4
- package/package.json +4 -1
package/dist/configs/index.d.ts
CHANGED
|
@@ -1,4 +1,106 @@
|
|
|
1
1
|
export declare const components: {
|
|
2
|
+
WdMarkdown: {
|
|
3
|
+
readonly $schema: "https://comp-public-1303824488.cos.ap-shanghai.myqcloud.com/schema/lcds_component.json";
|
|
4
|
+
readonly data: import("@sinclair/typebox").TObject<{
|
|
5
|
+
value: import("@sinclair/typebox").TString;
|
|
6
|
+
options: import("@sinclair/typebox").TObject<{}>;
|
|
7
|
+
}>;
|
|
8
|
+
readonly properties: import("@sinclair/typebox").TObject<{
|
|
9
|
+
value: import("@sinclair/typebox").TString;
|
|
10
|
+
markdownInstance: import("@sinclair/typebox").TObject<{}>;
|
|
11
|
+
}>;
|
|
12
|
+
readonly classes: readonly [{
|
|
13
|
+
readonly name: "根元素";
|
|
14
|
+
readonly selector: ".wd-markdown";
|
|
15
|
+
readonly description: "链接组件根元素";
|
|
16
|
+
}, {
|
|
17
|
+
readonly name: "PC 端链接根元素";
|
|
18
|
+
readonly selector: ".wd-pc-markdown";
|
|
19
|
+
readonly description: "可以为 PC 端的链接编写样式";
|
|
20
|
+
}, {
|
|
21
|
+
readonly name: "H5 端链接根元素";
|
|
22
|
+
readonly selector: ".wd-h5-markdown";
|
|
23
|
+
readonly description: "可以为 H5 端的链接编写样式";
|
|
24
|
+
}, {
|
|
25
|
+
readonly name: "小程序端链接根元素";
|
|
26
|
+
readonly selector: ".wd-mp-markdown";
|
|
27
|
+
readonly description: "可以为小程序端的链接编写样式";
|
|
28
|
+
}];
|
|
29
|
+
readonly methods: readonly [{
|
|
30
|
+
readonly name: "updateMarkdownInstance";
|
|
31
|
+
readonly label: "更新markdown实例";
|
|
32
|
+
readonly description: "更新markdown实例";
|
|
33
|
+
readonly params: import("@sinclair/typebox").TObject<{
|
|
34
|
+
markdownInstance: import("@sinclair/typebox").TObject<{}>;
|
|
35
|
+
}>;
|
|
36
|
+
}];
|
|
37
|
+
readonly events: readonly [{
|
|
38
|
+
readonly title: "markdown Ready";
|
|
39
|
+
readonly name: "onReady";
|
|
40
|
+
readonly description: "当前markdown已完成实例初始化,可以调用markdown实例方法";
|
|
41
|
+
readonly detail: import("@sinclair/typebox").TObject<{
|
|
42
|
+
markdownInstance: import("@sinclair/typebox").TObject<{}>;
|
|
43
|
+
}>;
|
|
44
|
+
}];
|
|
45
|
+
readonly meta: {
|
|
46
|
+
readonly name: "WdMarkdown";
|
|
47
|
+
readonly componentName: "markdown";
|
|
48
|
+
readonly title: "Markdown";
|
|
49
|
+
readonly description: "用于markdown展示";
|
|
50
|
+
readonly figureIcon: "../figureIcons/RichTextView.svg";
|
|
51
|
+
readonly icon: "../icons/RichTextView.svg";
|
|
52
|
+
readonly category: "展示";
|
|
53
|
+
readonly categoryOrder: 400;
|
|
54
|
+
readonly componentOrder: 250;
|
|
55
|
+
readonly visible: any;
|
|
56
|
+
readonly inlineStyleForm: {
|
|
57
|
+
readonly $text: {
|
|
58
|
+
readonly visible: false;
|
|
59
|
+
};
|
|
60
|
+
readonly fontSize: {
|
|
61
|
+
readonly visible: false;
|
|
62
|
+
};
|
|
63
|
+
readonly color: {
|
|
64
|
+
readonly visible: false;
|
|
65
|
+
};
|
|
66
|
+
readonly fontWeight: {
|
|
67
|
+
readonly visible: false;
|
|
68
|
+
};
|
|
69
|
+
readonly lineHeight: {
|
|
70
|
+
readonly visible: false;
|
|
71
|
+
};
|
|
72
|
+
readonly justifyContent: {
|
|
73
|
+
readonly visible: false;
|
|
74
|
+
};
|
|
75
|
+
readonly flexDirection: {
|
|
76
|
+
readonly visible: false;
|
|
77
|
+
};
|
|
78
|
+
readonly border: {
|
|
79
|
+
readonly visible: false;
|
|
80
|
+
};
|
|
81
|
+
readonly background: {
|
|
82
|
+
readonly visible: false;
|
|
83
|
+
};
|
|
84
|
+
readonly boxShadow: {
|
|
85
|
+
readonly visible: false;
|
|
86
|
+
};
|
|
87
|
+
readonly opacity: {
|
|
88
|
+
readonly visible: false;
|
|
89
|
+
};
|
|
90
|
+
readonly alignItems: {
|
|
91
|
+
readonly visible: false;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
readonly templates: readonly [{
|
|
95
|
+
readonly when: "$attached";
|
|
96
|
+
readonly body: "\n[attributes]\n\":options\" = \"{\n html: false, // 在源码中启用 HTML 标签\n xhtmlOut: false, // 使用 / 来闭合单标签 (比如 <br />)。\n // 这个选项只对完全的 CommonMark 模式兼容。\n breaks: false, // 转换段落里的 换行符 到 <br>。\n langPrefix: 'language-', // 给围栏代码块的 CSS 语言前缀。对于额外的高亮代码非常有用。\n linkify: false, // 将类似 URL 的文本自动转换为链接。\n\n // 启用一些语言中立的替换 + 引号美化\n typographer: false,\n\n // 双 + 单引号替换对,当 typographer 启用时。\n // 或者智能引号等,可以是 String 或 Array。\n //\n // 比方说,你可以支持 '«»„“' 给俄罗斯人使用, '„“‚‘' 给德国人使用。\n quotes: '“”‘’',\n\n}\n\"\n";
|
|
97
|
+
}];
|
|
98
|
+
readonly docsUrl: "https://docs.cloudbase.net/lowcode/components/wedaUI/src/docs/compsdocs/show/WdMarkdown";
|
|
99
|
+
readonly shortcut: {
|
|
100
|
+
readonly props: readonly ["value"];
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
};
|
|
2
104
|
WdCodeEditor: {
|
|
3
105
|
readonly $schema: "https://comp-public-1303824488.cos.ap-shanghai.myqcloud.com/schema/lcds_component.json";
|
|
4
106
|
readonly data: import("@sinclair/typebox").TObject<{
|
|
@@ -3927,6 +4029,7 @@ export declare const components: {
|
|
|
3927
4029
|
requestid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
3928
4030
|
message: import("@sinclair/typebox").TString;
|
|
3929
4031
|
code: import("@sinclair/typebox").TString;
|
|
4032
|
+
original: import("@sinclair/typebox").TAny;
|
|
3930
4033
|
}>;
|
|
3931
4034
|
}>;
|
|
3932
4035
|
}];
|
|
@@ -6974,6 +7077,7 @@ export declare const components: {
|
|
|
6974
7077
|
'x-component': string;
|
|
6975
7078
|
'x-component-props': {
|
|
6976
7079
|
dataContainerType: string;
|
|
7080
|
+
methodName: string;
|
|
6977
7081
|
};
|
|
6978
7082
|
'x-props': {
|
|
6979
7083
|
'data-hidebind': boolean;
|
|
@@ -7026,6 +7130,18 @@ export declare const components: {
|
|
|
7026
7130
|
enum?: undefined;
|
|
7027
7131
|
};
|
|
7028
7132
|
state?: undefined;
|
|
7133
|
+
} | {
|
|
7134
|
+
type: string;
|
|
7135
|
+
target: string;
|
|
7136
|
+
schema: {
|
|
7137
|
+
'x-component-props': {
|
|
7138
|
+
dataSourceName: string;
|
|
7139
|
+
};
|
|
7140
|
+
enum?: undefined;
|
|
7141
|
+
'x-props'?: undefined;
|
|
7142
|
+
};
|
|
7143
|
+
condition?: undefined;
|
|
7144
|
+
state?: undefined;
|
|
7029
7145
|
})[];
|
|
7030
7146
|
description: string;
|
|
7031
7147
|
};
|
|
@@ -7193,6 +7309,8 @@ export declare const components: {
|
|
|
7193
7309
|
}[];
|
|
7194
7310
|
description: string;
|
|
7195
7311
|
};
|
|
7312
|
+
selectFieldType: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string>>;
|
|
7313
|
+
selectFields: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>>;
|
|
7196
7314
|
pagination: {
|
|
7197
7315
|
'x-index': number;
|
|
7198
7316
|
title: string;
|
|
@@ -7232,6 +7350,18 @@ export declare const components: {
|
|
|
7232
7350
|
description: string;
|
|
7233
7351
|
display: boolean;
|
|
7234
7352
|
};
|
|
7353
|
+
pageIndex: {
|
|
7354
|
+
'x-index': number;
|
|
7355
|
+
title: string;
|
|
7356
|
+
type: string;
|
|
7357
|
+
default: number;
|
|
7358
|
+
'x-group': string;
|
|
7359
|
+
'x-props': {
|
|
7360
|
+
min: number;
|
|
7361
|
+
};
|
|
7362
|
+
description: string;
|
|
7363
|
+
display: boolean;
|
|
7364
|
+
};
|
|
7235
7365
|
enableTotal: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
7236
7366
|
total: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
7237
7367
|
emptyText: {
|
|
@@ -7275,6 +7405,7 @@ export declare const components: {
|
|
|
7275
7405
|
description: string;
|
|
7276
7406
|
};
|
|
7277
7407
|
isSupportApis: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
7408
|
+
supportManyRelated: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
7278
7409
|
};
|
|
7279
7410
|
};
|
|
7280
7411
|
events: ({
|
|
@@ -7291,6 +7422,7 @@ export declare const components: {
|
|
|
7291
7422
|
requestid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
7292
7423
|
message: import("@sinclair/typebox").TString;
|
|
7293
7424
|
code: import("@sinclair/typebox").TString;
|
|
7425
|
+
original: import("@sinclair/typebox").TAny;
|
|
7294
7426
|
}>;
|
|
7295
7427
|
}>;
|
|
7296
7428
|
} | {
|
|
@@ -7313,7 +7445,9 @@ export declare const components: {
|
|
|
7313
7445
|
requestid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
7314
7446
|
message: import("@sinclair/typebox").TString;
|
|
7315
7447
|
code: import("@sinclair/typebox").TString;
|
|
7448
|
+
original: import("@sinclair/typebox").TAny;
|
|
7316
7449
|
}>;
|
|
7450
|
+
dataSourceVersion: import("@sinclair/typebox").TString;
|
|
7317
7451
|
}>;
|
|
7318
7452
|
methods: ({
|
|
7319
7453
|
name: string;
|
|
@@ -7495,6 +7629,7 @@ export declare const components: {
|
|
|
7495
7629
|
'x-component': string;
|
|
7496
7630
|
'x-component-props': {
|
|
7497
7631
|
dataContainerType: string;
|
|
7632
|
+
methodName: string;
|
|
7498
7633
|
};
|
|
7499
7634
|
'x-props': {
|
|
7500
7635
|
'data-hidebind': boolean;
|
|
@@ -7513,6 +7648,15 @@ export declare const components: {
|
|
|
7513
7648
|
schema: {
|
|
7514
7649
|
'x-component-props': string;
|
|
7515
7650
|
};
|
|
7651
|
+
} | {
|
|
7652
|
+
type: string;
|
|
7653
|
+
target: string;
|
|
7654
|
+
schema: {
|
|
7655
|
+
'x-component-props': {
|
|
7656
|
+
dataSourceName: string;
|
|
7657
|
+
};
|
|
7658
|
+
};
|
|
7659
|
+
condition?: undefined;
|
|
7516
7660
|
})[];
|
|
7517
7661
|
description: string;
|
|
7518
7662
|
};
|
|
@@ -7593,6 +7737,9 @@ export declare const components: {
|
|
|
7593
7737
|
description: string;
|
|
7594
7738
|
};
|
|
7595
7739
|
isSupportApis: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
7740
|
+
selectFieldType: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string>>;
|
|
7741
|
+
selectFields: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>>;
|
|
7742
|
+
supportManyRelated: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
7596
7743
|
};
|
|
7597
7744
|
};
|
|
7598
7745
|
events: ({
|
|
@@ -7609,11 +7756,13 @@ export declare const components: {
|
|
|
7609
7756
|
requestid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
7610
7757
|
message: import("@sinclair/typebox").TString;
|
|
7611
7758
|
code: import("@sinclair/typebox").TString;
|
|
7759
|
+
original: import("@sinclair/typebox").TAny;
|
|
7612
7760
|
}>;
|
|
7613
7761
|
}>;
|
|
7614
7762
|
})[];
|
|
7615
7763
|
properties: import("@sinclair/typebox").TObject<{
|
|
7616
7764
|
record: import("@sinclair/typebox").TObject<{}>;
|
|
7765
|
+
dataSourceVersion: import("@sinclair/typebox").TString;
|
|
7617
7766
|
}>;
|
|
7618
7767
|
methods: ({
|
|
7619
7768
|
name: string;
|
|
@@ -12702,6 +12851,7 @@ export declare const components: {
|
|
|
12702
12851
|
requestid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
12703
12852
|
message: import("@sinclair/typebox").TString;
|
|
12704
12853
|
code: import("@sinclair/typebox").TString;
|
|
12854
|
+
original: import("@sinclair/typebox").TAny;
|
|
12705
12855
|
}>;
|
|
12706
12856
|
sort: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{}>>;
|
|
12707
12857
|
pageNo: import("@sinclair/typebox").TNumber;
|
|
@@ -12710,6 +12860,7 @@ export declare const components: {
|
|
|
12710
12860
|
dataSourceData: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{}>>>;
|
|
12711
12861
|
total: import("@sinclair/typebox").TNumber;
|
|
12712
12862
|
records: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{}>>;
|
|
12863
|
+
dataSourceVersion: import("@sinclair/typebox").TString;
|
|
12713
12864
|
columnSets: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
12714
12865
|
key: import("@sinclair/typebox").TUnsafe<string>;
|
|
12715
12866
|
header: import("@sinclair/typebox").TString;
|
|
@@ -12750,7 +12901,6 @@ export declare const components: {
|
|
|
12750
12901
|
filterTypeOption: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>>;
|
|
12751
12902
|
}>>;
|
|
12752
12903
|
selectedRecords: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{}>>;
|
|
12753
|
-
dataSourceVersion: import("@sinclair/typebox").TString;
|
|
12754
12904
|
}>;
|
|
12755
12905
|
readonly classes: readonly [{
|
|
12756
12906
|
readonly name: "根元素";
|
|
@@ -12895,6 +13045,7 @@ export declare const components: {
|
|
|
12895
13045
|
requestid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
12896
13046
|
message: import("@sinclair/typebox").TString;
|
|
12897
13047
|
code: import("@sinclair/typebox").TString;
|
|
13048
|
+
original: import("@sinclair/typebox").TAny;
|
|
12898
13049
|
}>;
|
|
12899
13050
|
}>;
|
|
12900
13051
|
}, {
|
|
@@ -16584,6 +16735,19 @@ export declare const components: {
|
|
|
16584
16735
|
readonly name: string;
|
|
16585
16736
|
readonly title: string;
|
|
16586
16737
|
readonly description: string;
|
|
16738
|
+
}, {
|
|
16739
|
+
readonly title: "地图组件错误事件";
|
|
16740
|
+
readonly name: "error";
|
|
16741
|
+
readonly description: "地图加载失败,或地图组件使用异常时触发";
|
|
16742
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
16743
|
+
readonly detail: import("@sinclair/typebox").TObject<{
|
|
16744
|
+
error: import("@sinclair/typebox").TObject<{
|
|
16745
|
+
requestid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
16746
|
+
message: import("@sinclair/typebox").TString;
|
|
16747
|
+
code: import("@sinclair/typebox").TString;
|
|
16748
|
+
original: import("@sinclair/typebox").TAny;
|
|
16749
|
+
}>;
|
|
16750
|
+
}>;
|
|
16587
16751
|
}];
|
|
16588
16752
|
readonly meta: {
|
|
16589
16753
|
readonly description: "用于在表单中进行地图选点定位。";
|
|
@@ -18664,7 +18828,7 @@ export declare const components: {
|
|
|
18664
18828
|
headRightSlot: import("@sinclair/typebox").TUnsafe<import("react").ReactNode>;
|
|
18665
18829
|
contentSlot: import("@sinclair/typebox").TUnsafe<import("react").ReactNode>;
|
|
18666
18830
|
footerSlot: import("@sinclair/typebox").TUnsafe<import("react").ReactNode>;
|
|
18667
|
-
template: import("@sinclair/typebox").TUnsafe<"nav" | "tab" | "vertical" | "horizontal" | "plant">;
|
|
18831
|
+
template: import("@sinclair/typebox").TUnsafe<"nav" | "tab" | "vertical" | "horizontal" | "plant" | "navTab">;
|
|
18668
18832
|
menu: import("@sinclair/typebox").TObject<{
|
|
18669
18833
|
isMultiTerminal: import("@sinclair/typebox").TBoolean;
|
|
18670
18834
|
menuData: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TRecursive<import("@sinclair/typebox").TObject<{
|
|
@@ -18698,8 +18862,9 @@ export declare const components: {
|
|
|
18698
18862
|
subPackageName: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
18699
18863
|
}>>>;
|
|
18700
18864
|
}>;
|
|
18701
|
-
type: import("@sinclair/typebox").TUnsafe<"nav" | "tab" | "vertical" | "horizontal" | "plant">;
|
|
18865
|
+
type: import("@sinclair/typebox").TUnsafe<"nav" | "tab" | "vertical" | "horizontal" | "plant" | "navTab">;
|
|
18702
18866
|
defaultOpened: import("@sinclair/typebox").TBoolean;
|
|
18867
|
+
outerClickClosable: import("@sinclair/typebox").TBoolean;
|
|
18703
18868
|
}>;
|
|
18704
18869
|
readonly properties: import("@sinclair/typebox").TObject<{}>;
|
|
18705
18870
|
readonly classes: readonly [{
|
|
@@ -18830,7 +18995,7 @@ export declare const components: {
|
|
|
18830
18995
|
}, {
|
|
18831
18996
|
readonly when: "$attached";
|
|
18832
18997
|
readonly to: "headSlot";
|
|
18833
|
-
readonly body: "\n{{#with $self as |$self|}}\n{{#if (helper_utils '||' (helper_utils '===' $self.attributes.template 'tab') (helper_utils '===' $self.attributes.template 'nav'))}}\n[[directives]]\n\":if\" = false\n{{else}}\n[[directives]]\n\":if\" = true\n{{/if}}\n\n{{#if (helper_utils '&&' (helper_utils '!==' $self.attributes.template 'tab') (helper_utils '!==' $self.attributes.template 'nav'))}}\n[[template]]\ncomponent = 'WdIcon'\n[template.attributes]\ntype = 'custom'\nsrc = 'https://imgcache.qq.com/qcloud/tcloud_dtc/static/static_source_business/43d3b2b7-445c-4858-8eb0-50ac5d5cc08e.svg'\n[[template]]\ncomponent = 'WdText'\n[template.attributes]\ntext = '菜单标题'\nlevel = 'title-6'\n[template.extra.commonStyle.margin]\nleft = '8px'\n{{/if}}\n\n{{/with}}\n";
|
|
18998
|
+
readonly body: "\n{{#with $self as |$self|}}\n{{#if (helper_utils '||' (helper_utils '===' $self.attributes.template 'tab') (helper_utils '===' $self.attributes.template 'nav') (helper_utils '===' $self.attributes.template 'navTab'))}}\n[[directives]]\n\":if\" = false\n{{else}}\n[[directives]]\n\":if\" = true\n{{/if}}\n\n{{#if (helper_utils '&&' (helper_utils '!==' $self.attributes.template 'tab') (helper_utils '!==' $self.attributes.template 'nav') (helper_utils '!==' $self.attributes.template 'navTab'))}}\n[[template]]\ncomponent = 'WdIcon'\n[template.attributes]\ntype = 'custom'\nsrc = 'https://imgcache.qq.com/qcloud/tcloud_dtc/static/static_source_business/43d3b2b7-445c-4858-8eb0-50ac5d5cc08e.svg'\n[[template]]\ncomponent = 'WdText'\n[template.attributes]\ntext = '菜单标题'\nlevel = 'title-6'\n[template.extra.commonStyle.margin]\nleft = '8px'\n{{/if}}\n\n{{/with}}\n";
|
|
18834
18999
|
}, {
|
|
18835
19000
|
readonly when: "$attached";
|
|
18836
19001
|
readonly to: "headRightSlot";
|
|
@@ -18850,7 +19015,7 @@ export declare const components: {
|
|
|
18850
19015
|
}, {
|
|
18851
19016
|
readonly when: "template";
|
|
18852
19017
|
readonly to: "headSlot";
|
|
18853
|
-
readonly body: "\n{{#with $self as |$self|}}\n{{#if (helper_utils '||' (helper_utils '===' $self.attributes.template 'tab') (helper_utils '===' $self.attributes.template 'nav'))}}\n[[directives]]\n\":if\" = false\n{{else}}\n[[directives]]\n\":if\" = true\n{{/if}}\n\n{{#if (helper_utils '&&' (helper_utils '!==' $self.attributes.template 'tab') (helper_utils '!==' $self.attributes.template 'nav'))}}\n[[template]]\ncomponent = 'WdIcon'\n[template.attributes]\ntype = 'custom'\nsrc = 'https://imgcache.qq.com/qcloud/tcloud_dtc/static/static_source_business/43d3b2b7-445c-4858-8eb0-50ac5d5cc08e.svg'\n[[template]]\ncomponent = 'WdText'\n[template.attributes]\ntext = '菜单标题'\nlevel = 'title-6'\n[template.extra.commonStyle.margin]\nleft = '8px'\n{{/if}}\n\n{{/with}}\n";
|
|
19018
|
+
readonly body: "\n{{#with $self as |$self|}}\n{{#if (helper_utils '||' (helper_utils '===' $self.attributes.template 'tab') (helper_utils '===' $self.attributes.template 'nav') (helper_utils '===' $self.attributes.template 'navTab'))}}\n[[directives]]\n\":if\" = false\n{{else}}\n[[directives]]\n\":if\" = true\n{{/if}}\n\n{{#if (helper_utils '&&' (helper_utils '!==' $self.attributes.template 'tab') (helper_utils '!==' $self.attributes.template 'nav') (helper_utils '!==' $self.attributes.template 'navTab'))}}\n[[template]]\ncomponent = 'WdIcon'\n[template.attributes]\ntype = 'custom'\nsrc = 'https://imgcache.qq.com/qcloud/tcloud_dtc/static/static_source_business/43d3b2b7-445c-4858-8eb0-50ac5d5cc08e.svg'\n[[template]]\ncomponent = 'WdText'\n[template.attributes]\ntext = '菜单标题'\nlevel = 'title-6'\n[template.extra.commonStyle.margin]\nleft = '8px'\n{{/if}}\n\n{{/with}}\n";
|
|
18854
19019
|
}, {
|
|
18855
19020
|
readonly when: "template";
|
|
18856
19021
|
readonly to: "headRightSlot";
|
|
@@ -19031,6 +19196,32 @@ export declare const components: {
|
|
|
19031
19196
|
readonly configMeta: {};
|
|
19032
19197
|
readonly items: any;
|
|
19033
19198
|
};
|
|
19199
|
+
WdMenuNavTabLayout: {
|
|
19200
|
+
readonly $schema: "https://comp-public-1303824488.cos.ap-shanghai.myqcloud.com/schema/lcds_component.json";
|
|
19201
|
+
readonly data: import("@sinclair/typebox").TObject<{}>;
|
|
19202
|
+
readonly events: readonly [];
|
|
19203
|
+
readonly isContainer: true;
|
|
19204
|
+
readonly meta: {
|
|
19205
|
+
readonly name: "WdMenuNavTabLayout";
|
|
19206
|
+
readonly componentName: "MenuNavTabLayout";
|
|
19207
|
+
readonly title: "工字导航布局";
|
|
19208
|
+
readonly category: "布局";
|
|
19209
|
+
readonly description: "工字导航布局适用于H5/小程序包含顶部导航与底部Tab切换不同页面或功能模块的场景";
|
|
19210
|
+
readonly previewImageUrl: "https://qcloudimg.tencent-cloud.cn/raw/2cf29361b2dc0245518601d0f3443124.png";
|
|
19211
|
+
readonly categoryOrder: 200;
|
|
19212
|
+
readonly componentOrder: 70;
|
|
19213
|
+
readonly figureIcon: "../figureIcons/WdMenuNavTabLayout.svg";
|
|
19214
|
+
readonly icon: "../icons/WdMenuNavTabLayout.svg";
|
|
19215
|
+
readonly componentType: "layout";
|
|
19216
|
+
readonly templates: readonly [{
|
|
19217
|
+
readonly when: "$attached";
|
|
19218
|
+
readonly to: "$children";
|
|
19219
|
+
readonly body: string;
|
|
19220
|
+
}];
|
|
19221
|
+
};
|
|
19222
|
+
readonly configMeta: {};
|
|
19223
|
+
readonly items: any;
|
|
19224
|
+
};
|
|
19034
19225
|
WdMenuList: {
|
|
19035
19226
|
readonly $schema: "https://comp-public-1303824488.cos.ap-shanghai.myqcloud.com/schema/lcds_component.json";
|
|
19036
19227
|
readonly data: import("@sinclair/typebox").TObject<{
|
|
@@ -19689,21 +19880,12 @@ export declare const components: {
|
|
|
19689
19880
|
readonly name: "postMessage";
|
|
19690
19881
|
readonly label: "发送消息";
|
|
19691
19882
|
readonly description: "向页面发送消息";
|
|
19692
|
-
readonly
|
|
19693
|
-
|
|
19694
|
-
|
|
19695
|
-
|
|
19696
|
-
|
|
19697
|
-
|
|
19698
|
-
readonly title: "targetorigin";
|
|
19699
|
-
readonly description: "web端通过窗口的 origin 属性来指定哪些窗口能接收到消息事件";
|
|
19700
|
-
};
|
|
19701
|
-
readonly transfer: {
|
|
19702
|
-
readonly title: "transfer";
|
|
19703
|
-
readonly description: "是一串和 message 同时传递的 Transferable 对象。web端参数。";
|
|
19704
|
-
};
|
|
19705
|
-
};
|
|
19706
|
-
};
|
|
19883
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
19884
|
+
readonly params: import("@sinclair/typebox").TObject<{
|
|
19885
|
+
message: import("@sinclair/typebox").TString;
|
|
19886
|
+
targetorigin: import("@sinclair/typebox").TString;
|
|
19887
|
+
transfer: import("@sinclair/typebox").TString;
|
|
19888
|
+
}>;
|
|
19707
19889
|
}];
|
|
19708
19890
|
readonly events: [{
|
|
19709
19891
|
readonly name: "load";
|
|
@@ -20099,6 +20281,108 @@ export declare const actions: {
|
|
|
20099
20281
|
};
|
|
20100
20282
|
declare const _default: {
|
|
20101
20283
|
components: {
|
|
20284
|
+
WdMarkdown: {
|
|
20285
|
+
readonly $schema: "https://comp-public-1303824488.cos.ap-shanghai.myqcloud.com/schema/lcds_component.json";
|
|
20286
|
+
readonly data: import("@sinclair/typebox").TObject<{
|
|
20287
|
+
value: import("@sinclair/typebox").TString;
|
|
20288
|
+
options: import("@sinclair/typebox").TObject<{}>;
|
|
20289
|
+
}>;
|
|
20290
|
+
readonly properties: import("@sinclair/typebox").TObject<{
|
|
20291
|
+
value: import("@sinclair/typebox").TString;
|
|
20292
|
+
markdownInstance: import("@sinclair/typebox").TObject<{}>;
|
|
20293
|
+
}>;
|
|
20294
|
+
readonly classes: readonly [{
|
|
20295
|
+
readonly name: "根元素";
|
|
20296
|
+
readonly selector: ".wd-markdown";
|
|
20297
|
+
readonly description: "链接组件根元素";
|
|
20298
|
+
}, {
|
|
20299
|
+
readonly name: "PC 端链接根元素";
|
|
20300
|
+
readonly selector: ".wd-pc-markdown";
|
|
20301
|
+
readonly description: "可以为 PC 端的链接编写样式";
|
|
20302
|
+
}, {
|
|
20303
|
+
readonly name: "H5 端链接根元素";
|
|
20304
|
+
readonly selector: ".wd-h5-markdown";
|
|
20305
|
+
readonly description: "可以为 H5 端的链接编写样式";
|
|
20306
|
+
}, {
|
|
20307
|
+
readonly name: "小程序端链接根元素";
|
|
20308
|
+
readonly selector: ".wd-mp-markdown";
|
|
20309
|
+
readonly description: "可以为小程序端的链接编写样式";
|
|
20310
|
+
}];
|
|
20311
|
+
readonly methods: readonly [{
|
|
20312
|
+
readonly name: "updateMarkdownInstance";
|
|
20313
|
+
readonly label: "更新markdown实例";
|
|
20314
|
+
readonly description: "更新markdown实例";
|
|
20315
|
+
readonly params: import("@sinclair/typebox").TObject<{
|
|
20316
|
+
markdownInstance: import("@sinclair/typebox").TObject<{}>;
|
|
20317
|
+
}>;
|
|
20318
|
+
}];
|
|
20319
|
+
readonly events: readonly [{
|
|
20320
|
+
readonly title: "markdown Ready";
|
|
20321
|
+
readonly name: "onReady";
|
|
20322
|
+
readonly description: "当前markdown已完成实例初始化,可以调用markdown实例方法";
|
|
20323
|
+
readonly detail: import("@sinclair/typebox").TObject<{
|
|
20324
|
+
markdownInstance: import("@sinclair/typebox").TObject<{}>;
|
|
20325
|
+
}>;
|
|
20326
|
+
}];
|
|
20327
|
+
readonly meta: {
|
|
20328
|
+
readonly name: "WdMarkdown";
|
|
20329
|
+
readonly componentName: "markdown";
|
|
20330
|
+
readonly title: "Markdown";
|
|
20331
|
+
readonly description: "用于markdown展示";
|
|
20332
|
+
readonly figureIcon: "../figureIcons/RichTextView.svg";
|
|
20333
|
+
readonly icon: "../icons/RichTextView.svg";
|
|
20334
|
+
readonly category: "展示";
|
|
20335
|
+
readonly categoryOrder: 400;
|
|
20336
|
+
readonly componentOrder: 250;
|
|
20337
|
+
readonly visible: any;
|
|
20338
|
+
readonly inlineStyleForm: {
|
|
20339
|
+
readonly $text: {
|
|
20340
|
+
readonly visible: false;
|
|
20341
|
+
};
|
|
20342
|
+
readonly fontSize: {
|
|
20343
|
+
readonly visible: false;
|
|
20344
|
+
};
|
|
20345
|
+
readonly color: {
|
|
20346
|
+
readonly visible: false;
|
|
20347
|
+
};
|
|
20348
|
+
readonly fontWeight: {
|
|
20349
|
+
readonly visible: false;
|
|
20350
|
+
};
|
|
20351
|
+
readonly lineHeight: {
|
|
20352
|
+
readonly visible: false;
|
|
20353
|
+
};
|
|
20354
|
+
readonly justifyContent: {
|
|
20355
|
+
readonly visible: false;
|
|
20356
|
+
};
|
|
20357
|
+
readonly flexDirection: {
|
|
20358
|
+
readonly visible: false;
|
|
20359
|
+
};
|
|
20360
|
+
readonly border: {
|
|
20361
|
+
readonly visible: false;
|
|
20362
|
+
};
|
|
20363
|
+
readonly background: {
|
|
20364
|
+
readonly visible: false;
|
|
20365
|
+
};
|
|
20366
|
+
readonly boxShadow: {
|
|
20367
|
+
readonly visible: false;
|
|
20368
|
+
};
|
|
20369
|
+
readonly opacity: {
|
|
20370
|
+
readonly visible: false;
|
|
20371
|
+
};
|
|
20372
|
+
readonly alignItems: {
|
|
20373
|
+
readonly visible: false;
|
|
20374
|
+
};
|
|
20375
|
+
};
|
|
20376
|
+
readonly templates: readonly [{
|
|
20377
|
+
readonly when: "$attached";
|
|
20378
|
+
readonly body: "\n[attributes]\n\":options\" = \"{\n html: false, // 在源码中启用 HTML 标签\n xhtmlOut: false, // 使用 / 来闭合单标签 (比如 <br />)。\n // 这个选项只对完全的 CommonMark 模式兼容。\n breaks: false, // 转换段落里的 换行符 到 <br>。\n langPrefix: 'language-', // 给围栏代码块的 CSS 语言前缀。对于额外的高亮代码非常有用。\n linkify: false, // 将类似 URL 的文本自动转换为链接。\n\n // 启用一些语言中立的替换 + 引号美化\n typographer: false,\n\n // 双 + 单引号替换对,当 typographer 启用时。\n // 或者智能引号等,可以是 String 或 Array。\n //\n // 比方说,你可以支持 '«»„“' 给俄罗斯人使用, '„“‚‘' 给德国人使用。\n quotes: '“”‘’',\n\n}\n\"\n";
|
|
20379
|
+
}];
|
|
20380
|
+
readonly docsUrl: "https://docs.cloudbase.net/lowcode/components/wedaUI/src/docs/compsdocs/show/WdMarkdown";
|
|
20381
|
+
readonly shortcut: {
|
|
20382
|
+
readonly props: readonly ["value"];
|
|
20383
|
+
};
|
|
20384
|
+
};
|
|
20385
|
+
};
|
|
20102
20386
|
WdCodeEditor: {
|
|
20103
20387
|
readonly $schema: "https://comp-public-1303824488.cos.ap-shanghai.myqcloud.com/schema/lcds_component.json";
|
|
20104
20388
|
readonly data: import("@sinclair/typebox").TObject<{
|
|
@@ -24027,6 +24311,7 @@ declare const _default: {
|
|
|
24027
24311
|
requestid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
24028
24312
|
message: import("@sinclair/typebox").TString;
|
|
24029
24313
|
code: import("@sinclair/typebox").TString;
|
|
24314
|
+
original: import("@sinclair/typebox").TAny;
|
|
24030
24315
|
}>;
|
|
24031
24316
|
}>;
|
|
24032
24317
|
}];
|
|
@@ -27074,6 +27359,7 @@ declare const _default: {
|
|
|
27074
27359
|
'x-component': string;
|
|
27075
27360
|
'x-component-props': {
|
|
27076
27361
|
dataContainerType: string;
|
|
27362
|
+
methodName: string;
|
|
27077
27363
|
};
|
|
27078
27364
|
'x-props': {
|
|
27079
27365
|
'data-hidebind': boolean;
|
|
@@ -27126,6 +27412,18 @@ declare const _default: {
|
|
|
27126
27412
|
enum?: undefined;
|
|
27127
27413
|
};
|
|
27128
27414
|
state?: undefined;
|
|
27415
|
+
} | {
|
|
27416
|
+
type: string;
|
|
27417
|
+
target: string;
|
|
27418
|
+
schema: {
|
|
27419
|
+
'x-component-props': {
|
|
27420
|
+
dataSourceName: string;
|
|
27421
|
+
};
|
|
27422
|
+
enum?: undefined;
|
|
27423
|
+
'x-props'?: undefined;
|
|
27424
|
+
};
|
|
27425
|
+
condition?: undefined;
|
|
27426
|
+
state?: undefined;
|
|
27129
27427
|
})[];
|
|
27130
27428
|
description: string;
|
|
27131
27429
|
};
|
|
@@ -27293,6 +27591,8 @@ declare const _default: {
|
|
|
27293
27591
|
}[];
|
|
27294
27592
|
description: string;
|
|
27295
27593
|
};
|
|
27594
|
+
selectFieldType: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string>>;
|
|
27595
|
+
selectFields: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>>;
|
|
27296
27596
|
pagination: {
|
|
27297
27597
|
'x-index': number;
|
|
27298
27598
|
title: string;
|
|
@@ -27332,6 +27632,18 @@ declare const _default: {
|
|
|
27332
27632
|
description: string;
|
|
27333
27633
|
display: boolean;
|
|
27334
27634
|
};
|
|
27635
|
+
pageIndex: {
|
|
27636
|
+
'x-index': number;
|
|
27637
|
+
title: string;
|
|
27638
|
+
type: string;
|
|
27639
|
+
default: number;
|
|
27640
|
+
'x-group': string;
|
|
27641
|
+
'x-props': {
|
|
27642
|
+
min: number;
|
|
27643
|
+
};
|
|
27644
|
+
description: string;
|
|
27645
|
+
display: boolean;
|
|
27646
|
+
};
|
|
27335
27647
|
enableTotal: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
27336
27648
|
total: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
27337
27649
|
emptyText: {
|
|
@@ -27375,6 +27687,7 @@ declare const _default: {
|
|
|
27375
27687
|
description: string;
|
|
27376
27688
|
};
|
|
27377
27689
|
isSupportApis: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
27690
|
+
supportManyRelated: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
27378
27691
|
};
|
|
27379
27692
|
};
|
|
27380
27693
|
events: ({
|
|
@@ -27391,6 +27704,7 @@ declare const _default: {
|
|
|
27391
27704
|
requestid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
27392
27705
|
message: import("@sinclair/typebox").TString;
|
|
27393
27706
|
code: import("@sinclair/typebox").TString;
|
|
27707
|
+
original: import("@sinclair/typebox").TAny;
|
|
27394
27708
|
}>;
|
|
27395
27709
|
}>;
|
|
27396
27710
|
} | {
|
|
@@ -27413,7 +27727,9 @@ declare const _default: {
|
|
|
27413
27727
|
requestid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
27414
27728
|
message: import("@sinclair/typebox").TString;
|
|
27415
27729
|
code: import("@sinclair/typebox").TString;
|
|
27730
|
+
original: import("@sinclair/typebox").TAny;
|
|
27416
27731
|
}>;
|
|
27732
|
+
dataSourceVersion: import("@sinclair/typebox").TString;
|
|
27417
27733
|
}>;
|
|
27418
27734
|
methods: ({
|
|
27419
27735
|
name: string;
|
|
@@ -27595,6 +27911,7 @@ declare const _default: {
|
|
|
27595
27911
|
'x-component': string;
|
|
27596
27912
|
'x-component-props': {
|
|
27597
27913
|
dataContainerType: string;
|
|
27914
|
+
methodName: string;
|
|
27598
27915
|
};
|
|
27599
27916
|
'x-props': {
|
|
27600
27917
|
'data-hidebind': boolean;
|
|
@@ -27613,6 +27930,15 @@ declare const _default: {
|
|
|
27613
27930
|
schema: {
|
|
27614
27931
|
'x-component-props': string;
|
|
27615
27932
|
};
|
|
27933
|
+
} | {
|
|
27934
|
+
type: string;
|
|
27935
|
+
target: string;
|
|
27936
|
+
schema: {
|
|
27937
|
+
'x-component-props': {
|
|
27938
|
+
dataSourceName: string;
|
|
27939
|
+
};
|
|
27940
|
+
};
|
|
27941
|
+
condition?: undefined;
|
|
27616
27942
|
})[];
|
|
27617
27943
|
description: string;
|
|
27618
27944
|
};
|
|
@@ -27693,6 +28019,9 @@ declare const _default: {
|
|
|
27693
28019
|
description: string;
|
|
27694
28020
|
};
|
|
27695
28021
|
isSupportApis: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
28022
|
+
selectFieldType: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnsafe<string>>;
|
|
28023
|
+
selectFields: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>>;
|
|
28024
|
+
supportManyRelated: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
27696
28025
|
};
|
|
27697
28026
|
};
|
|
27698
28027
|
events: ({
|
|
@@ -27709,11 +28038,13 @@ declare const _default: {
|
|
|
27709
28038
|
requestid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
27710
28039
|
message: import("@sinclair/typebox").TString;
|
|
27711
28040
|
code: import("@sinclair/typebox").TString;
|
|
28041
|
+
original: import("@sinclair/typebox").TAny;
|
|
27712
28042
|
}>;
|
|
27713
28043
|
}>;
|
|
27714
28044
|
})[];
|
|
27715
28045
|
properties: import("@sinclair/typebox").TObject<{
|
|
27716
28046
|
record: import("@sinclair/typebox").TObject<{}>;
|
|
28047
|
+
dataSourceVersion: import("@sinclair/typebox").TString;
|
|
27717
28048
|
}>;
|
|
27718
28049
|
methods: ({
|
|
27719
28050
|
name: string;
|
|
@@ -32802,6 +33133,7 @@ declare const _default: {
|
|
|
32802
33133
|
requestid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
32803
33134
|
message: import("@sinclair/typebox").TString;
|
|
32804
33135
|
code: import("@sinclair/typebox").TString;
|
|
33136
|
+
original: import("@sinclair/typebox").TAny;
|
|
32805
33137
|
}>;
|
|
32806
33138
|
sort: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{}>>;
|
|
32807
33139
|
pageNo: import("@sinclair/typebox").TNumber;
|
|
@@ -32810,6 +33142,7 @@ declare const _default: {
|
|
|
32810
33142
|
dataSourceData: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{}>>>;
|
|
32811
33143
|
total: import("@sinclair/typebox").TNumber;
|
|
32812
33144
|
records: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{}>>;
|
|
33145
|
+
dataSourceVersion: import("@sinclair/typebox").TString;
|
|
32813
33146
|
columnSets: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
32814
33147
|
key: import("@sinclair/typebox").TUnsafe<string>;
|
|
32815
33148
|
header: import("@sinclair/typebox").TString;
|
|
@@ -32850,7 +33183,6 @@ declare const _default: {
|
|
|
32850
33183
|
filterTypeOption: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>>;
|
|
32851
33184
|
}>>;
|
|
32852
33185
|
selectedRecords: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{}>>;
|
|
32853
|
-
dataSourceVersion: import("@sinclair/typebox").TString;
|
|
32854
33186
|
}>;
|
|
32855
33187
|
readonly classes: readonly [{
|
|
32856
33188
|
readonly name: "根元素";
|
|
@@ -32995,6 +33327,7 @@ declare const _default: {
|
|
|
32995
33327
|
requestid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
32996
33328
|
message: import("@sinclair/typebox").TString;
|
|
32997
33329
|
code: import("@sinclair/typebox").TString;
|
|
33330
|
+
original: import("@sinclair/typebox").TAny;
|
|
32998
33331
|
}>;
|
|
32999
33332
|
}>;
|
|
33000
33333
|
}, {
|
|
@@ -36684,6 +37017,19 @@ declare const _default: {
|
|
|
36684
37017
|
readonly name: string;
|
|
36685
37018
|
readonly title: string;
|
|
36686
37019
|
readonly description: string;
|
|
37020
|
+
}, {
|
|
37021
|
+
readonly title: "地图组件错误事件";
|
|
37022
|
+
readonly name: "error";
|
|
37023
|
+
readonly description: "地图加载失败,或地图组件使用异常时触发";
|
|
37024
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
37025
|
+
readonly detail: import("@sinclair/typebox").TObject<{
|
|
37026
|
+
error: import("@sinclair/typebox").TObject<{
|
|
37027
|
+
requestid: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
37028
|
+
message: import("@sinclair/typebox").TString;
|
|
37029
|
+
code: import("@sinclair/typebox").TString;
|
|
37030
|
+
original: import("@sinclair/typebox").TAny;
|
|
37031
|
+
}>;
|
|
37032
|
+
}>;
|
|
36687
37033
|
}];
|
|
36688
37034
|
readonly meta: {
|
|
36689
37035
|
readonly description: "用于在表单中进行地图选点定位。";
|
|
@@ -38764,7 +39110,7 @@ declare const _default: {
|
|
|
38764
39110
|
headRightSlot: import("@sinclair/typebox").TUnsafe<import("react").ReactNode>;
|
|
38765
39111
|
contentSlot: import("@sinclair/typebox").TUnsafe<import("react").ReactNode>;
|
|
38766
39112
|
footerSlot: import("@sinclair/typebox").TUnsafe<import("react").ReactNode>;
|
|
38767
|
-
template: import("@sinclair/typebox").TUnsafe<"nav" | "tab" | "vertical" | "horizontal" | "plant">;
|
|
39113
|
+
template: import("@sinclair/typebox").TUnsafe<"nav" | "tab" | "vertical" | "horizontal" | "plant" | "navTab">;
|
|
38768
39114
|
menu: import("@sinclair/typebox").TObject<{
|
|
38769
39115
|
isMultiTerminal: import("@sinclair/typebox").TBoolean;
|
|
38770
39116
|
menuData: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TRecursive<import("@sinclair/typebox").TObject<{
|
|
@@ -38798,8 +39144,9 @@ declare const _default: {
|
|
|
38798
39144
|
subPackageName: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
38799
39145
|
}>>>;
|
|
38800
39146
|
}>;
|
|
38801
|
-
type: import("@sinclair/typebox").TUnsafe<"nav" | "tab" | "vertical" | "horizontal" | "plant">;
|
|
39147
|
+
type: import("@sinclair/typebox").TUnsafe<"nav" | "tab" | "vertical" | "horizontal" | "plant" | "navTab">;
|
|
38802
39148
|
defaultOpened: import("@sinclair/typebox").TBoolean;
|
|
39149
|
+
outerClickClosable: import("@sinclair/typebox").TBoolean;
|
|
38803
39150
|
}>;
|
|
38804
39151
|
readonly properties: import("@sinclair/typebox").TObject<{}>;
|
|
38805
39152
|
readonly classes: readonly [{
|
|
@@ -38930,7 +39277,7 @@ declare const _default: {
|
|
|
38930
39277
|
}, {
|
|
38931
39278
|
readonly when: "$attached";
|
|
38932
39279
|
readonly to: "headSlot";
|
|
38933
|
-
readonly body: "\n{{#with $self as |$self|}}\n{{#if (helper_utils '||' (helper_utils '===' $self.attributes.template 'tab') (helper_utils '===' $self.attributes.template 'nav'))}}\n[[directives]]\n\":if\" = false\n{{else}}\n[[directives]]\n\":if\" = true\n{{/if}}\n\n{{#if (helper_utils '&&' (helper_utils '!==' $self.attributes.template 'tab') (helper_utils '!==' $self.attributes.template 'nav'))}}\n[[template]]\ncomponent = 'WdIcon'\n[template.attributes]\ntype = 'custom'\nsrc = 'https://imgcache.qq.com/qcloud/tcloud_dtc/static/static_source_business/43d3b2b7-445c-4858-8eb0-50ac5d5cc08e.svg'\n[[template]]\ncomponent = 'WdText'\n[template.attributes]\ntext = '菜单标题'\nlevel = 'title-6'\n[template.extra.commonStyle.margin]\nleft = '8px'\n{{/if}}\n\n{{/with}}\n";
|
|
39280
|
+
readonly body: "\n{{#with $self as |$self|}}\n{{#if (helper_utils '||' (helper_utils '===' $self.attributes.template 'tab') (helper_utils '===' $self.attributes.template 'nav') (helper_utils '===' $self.attributes.template 'navTab'))}}\n[[directives]]\n\":if\" = false\n{{else}}\n[[directives]]\n\":if\" = true\n{{/if}}\n\n{{#if (helper_utils '&&' (helper_utils '!==' $self.attributes.template 'tab') (helper_utils '!==' $self.attributes.template 'nav') (helper_utils '!==' $self.attributes.template 'navTab'))}}\n[[template]]\ncomponent = 'WdIcon'\n[template.attributes]\ntype = 'custom'\nsrc = 'https://imgcache.qq.com/qcloud/tcloud_dtc/static/static_source_business/43d3b2b7-445c-4858-8eb0-50ac5d5cc08e.svg'\n[[template]]\ncomponent = 'WdText'\n[template.attributes]\ntext = '菜单标题'\nlevel = 'title-6'\n[template.extra.commonStyle.margin]\nleft = '8px'\n{{/if}}\n\n{{/with}}\n";
|
|
38934
39281
|
}, {
|
|
38935
39282
|
readonly when: "$attached";
|
|
38936
39283
|
readonly to: "headRightSlot";
|
|
@@ -38950,7 +39297,7 @@ declare const _default: {
|
|
|
38950
39297
|
}, {
|
|
38951
39298
|
readonly when: "template";
|
|
38952
39299
|
readonly to: "headSlot";
|
|
38953
|
-
readonly body: "\n{{#with $self as |$self|}}\n{{#if (helper_utils '||' (helper_utils '===' $self.attributes.template 'tab') (helper_utils '===' $self.attributes.template 'nav'))}}\n[[directives]]\n\":if\" = false\n{{else}}\n[[directives]]\n\":if\" = true\n{{/if}}\n\n{{#if (helper_utils '&&' (helper_utils '!==' $self.attributes.template 'tab') (helper_utils '!==' $self.attributes.template 'nav'))}}\n[[template]]\ncomponent = 'WdIcon'\n[template.attributes]\ntype = 'custom'\nsrc = 'https://imgcache.qq.com/qcloud/tcloud_dtc/static/static_source_business/43d3b2b7-445c-4858-8eb0-50ac5d5cc08e.svg'\n[[template]]\ncomponent = 'WdText'\n[template.attributes]\ntext = '菜单标题'\nlevel = 'title-6'\n[template.extra.commonStyle.margin]\nleft = '8px'\n{{/if}}\n\n{{/with}}\n";
|
|
39300
|
+
readonly body: "\n{{#with $self as |$self|}}\n{{#if (helper_utils '||' (helper_utils '===' $self.attributes.template 'tab') (helper_utils '===' $self.attributes.template 'nav') (helper_utils '===' $self.attributes.template 'navTab'))}}\n[[directives]]\n\":if\" = false\n{{else}}\n[[directives]]\n\":if\" = true\n{{/if}}\n\n{{#if (helper_utils '&&' (helper_utils '!==' $self.attributes.template 'tab') (helper_utils '!==' $self.attributes.template 'nav') (helper_utils '!==' $self.attributes.template 'navTab'))}}\n[[template]]\ncomponent = 'WdIcon'\n[template.attributes]\ntype = 'custom'\nsrc = 'https://imgcache.qq.com/qcloud/tcloud_dtc/static/static_source_business/43d3b2b7-445c-4858-8eb0-50ac5d5cc08e.svg'\n[[template]]\ncomponent = 'WdText'\n[template.attributes]\ntext = '菜单标题'\nlevel = 'title-6'\n[template.extra.commonStyle.margin]\nleft = '8px'\n{{/if}}\n\n{{/with}}\n";
|
|
38954
39301
|
}, {
|
|
38955
39302
|
readonly when: "template";
|
|
38956
39303
|
readonly to: "headRightSlot";
|
|
@@ -39131,6 +39478,32 @@ declare const _default: {
|
|
|
39131
39478
|
readonly configMeta: {};
|
|
39132
39479
|
readonly items: any;
|
|
39133
39480
|
};
|
|
39481
|
+
WdMenuNavTabLayout: {
|
|
39482
|
+
readonly $schema: "https://comp-public-1303824488.cos.ap-shanghai.myqcloud.com/schema/lcds_component.json";
|
|
39483
|
+
readonly data: import("@sinclair/typebox").TObject<{}>;
|
|
39484
|
+
readonly events: readonly [];
|
|
39485
|
+
readonly isContainer: true;
|
|
39486
|
+
readonly meta: {
|
|
39487
|
+
readonly name: "WdMenuNavTabLayout";
|
|
39488
|
+
readonly componentName: "MenuNavTabLayout";
|
|
39489
|
+
readonly title: "工字导航布局";
|
|
39490
|
+
readonly category: "布局";
|
|
39491
|
+
readonly description: "工字导航布局适用于H5/小程序包含顶部导航与底部Tab切换不同页面或功能模块的场景";
|
|
39492
|
+
readonly previewImageUrl: "https://qcloudimg.tencent-cloud.cn/raw/2cf29361b2dc0245518601d0f3443124.png";
|
|
39493
|
+
readonly categoryOrder: 200;
|
|
39494
|
+
readonly componentOrder: 70;
|
|
39495
|
+
readonly figureIcon: "../figureIcons/WdMenuNavTabLayout.svg";
|
|
39496
|
+
readonly icon: "../icons/WdMenuNavTabLayout.svg";
|
|
39497
|
+
readonly componentType: "layout";
|
|
39498
|
+
readonly templates: readonly [{
|
|
39499
|
+
readonly when: "$attached";
|
|
39500
|
+
readonly to: "$children";
|
|
39501
|
+
readonly body: string;
|
|
39502
|
+
}];
|
|
39503
|
+
};
|
|
39504
|
+
readonly configMeta: {};
|
|
39505
|
+
readonly items: any;
|
|
39506
|
+
};
|
|
39134
39507
|
WdMenuList: {
|
|
39135
39508
|
readonly $schema: "https://comp-public-1303824488.cos.ap-shanghai.myqcloud.com/schema/lcds_component.json";
|
|
39136
39509
|
readonly data: import("@sinclair/typebox").TObject<{
|
|
@@ -39789,21 +40162,12 @@ declare const _default: {
|
|
|
39789
40162
|
readonly name: "postMessage";
|
|
39790
40163
|
readonly label: "发送消息";
|
|
39791
40164
|
readonly description: "向页面发送消息";
|
|
39792
|
-
readonly
|
|
39793
|
-
|
|
39794
|
-
|
|
39795
|
-
|
|
39796
|
-
|
|
39797
|
-
|
|
39798
|
-
readonly title: "targetorigin";
|
|
39799
|
-
readonly description: "web端通过窗口的 origin 属性来指定哪些窗口能接收到消息事件";
|
|
39800
|
-
};
|
|
39801
|
-
readonly transfer: {
|
|
39802
|
-
readonly title: "transfer";
|
|
39803
|
-
readonly description: "是一串和 message 同时传递的 Transferable 对象。web端参数。";
|
|
39804
|
-
};
|
|
39805
|
-
};
|
|
39806
|
-
};
|
|
40165
|
+
readonly 'x-platforms': readonly ["MOBILEWEB", "PCWEB"];
|
|
40166
|
+
readonly params: import("@sinclair/typebox").TObject<{
|
|
40167
|
+
message: import("@sinclair/typebox").TString;
|
|
40168
|
+
targetorigin: import("@sinclair/typebox").TString;
|
|
40169
|
+
transfer: import("@sinclair/typebox").TString;
|
|
40170
|
+
}>;
|
|
39807
40171
|
}];
|
|
39808
40172
|
readonly events: [{
|
|
39809
40173
|
readonly name: "load";
|