@lingxiteam/theme-utils 0.1.3

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.
Files changed (128) hide show
  1. package/README.md +83 -0
  2. package/dist/config/Button.d.ts +101 -0
  3. package/dist/config/Button.js +265 -0
  4. package/dist/config/Card.d.ts +137 -0
  5. package/dist/config/Card.js +149 -0
  6. package/dist/config/Cascader.d.ts +179 -0
  7. package/dist/config/Cascader.js +208 -0
  8. package/dist/config/Checkbox.d.ts +161 -0
  9. package/dist/config/Checkbox.js +161 -0
  10. package/dist/config/CheckboxGroup.d.ts +176 -0
  11. package/dist/config/CheckboxGroup.js +184 -0
  12. package/dist/config/Collapse.d.ts +170 -0
  13. package/dist/config/Collapse.js +308 -0
  14. package/dist/config/Container.d.ts +268 -0
  15. package/dist/config/Container.js +288 -0
  16. package/dist/config/DatePicker.d.ts +163 -0
  17. package/dist/config/DatePicker.js +163 -0
  18. package/dist/config/Description.d.ts +97 -0
  19. package/dist/config/Description.js +117 -0
  20. package/dist/config/Divider.d.ts +61 -0
  21. package/dist/config/Divider.js +61 -0
  22. package/dist/config/Form.d.ts +2700 -0
  23. package/dist/config/Form.js +1214 -0
  24. package/dist/config/Icon.d.ts +51 -0
  25. package/dist/config/Icon.js +51 -0
  26. package/dist/config/Input.d.ts +150 -0
  27. package/dist/config/Input.js +150 -0
  28. package/dist/config/InputNumber.d.ts +145 -0
  29. package/dist/config/InputNumber.js +145 -0
  30. package/dist/config/Link.d.ts +123 -0
  31. package/dist/config/Link.js +115 -0
  32. package/dist/config/MultipleSelect.d.ts +158 -0
  33. package/dist/config/MultipleSelect.js +166 -0
  34. package/dist/config/Radio.d.ts +171 -0
  35. package/dist/config/Radio.js +179 -0
  36. package/dist/config/RangePicker.d.ts +165 -0
  37. package/dist/config/RangePicker.js +165 -0
  38. package/dist/config/Select.d.ts +173 -0
  39. package/dist/config/Select.js +181 -0
  40. package/dist/config/StdUpload.d.ts +204 -0
  41. package/dist/config/StdUpload.js +208 -0
  42. package/dist/config/Switch.d.ts +137 -0
  43. package/dist/config/Switch.js +137 -0
  44. package/dist/config/Table.d.ts +398 -0
  45. package/dist/config/Table.js +527 -0
  46. package/dist/config/Tabs.d.ts +170 -0
  47. package/dist/config/Tabs.js +229 -0
  48. package/dist/config/Tag.d.ts +114 -0
  49. package/dist/config/Tag.js +314 -0
  50. package/dist/config/Text.d.ts +30 -0
  51. package/dist/config/Text.js +30 -0
  52. package/dist/config/TextArea.d.ts +142 -0
  53. package/dist/config/TextArea.js +142 -0
  54. package/dist/config/TimePicker.d.ts +164 -0
  55. package/dist/config/TimePicker.js +164 -0
  56. package/dist/config/Tree.d.ts +131 -0
  57. package/dist/config/Tree.js +175 -0
  58. package/dist/config/TreeSelect.d.ts +180 -0
  59. package/dist/config/TreeSelect.js +196 -0
  60. package/dist/css.d.ts +6 -0
  61. package/dist/css.js +121 -0
  62. package/dist/demo.d.ts +5 -0
  63. package/dist/demo.js +79 -0
  64. package/dist/h5config/Accordion.d.ts +338 -0
  65. package/dist/h5config/Accordion.js +445 -0
  66. package/dist/h5config/Button.d.ts +134 -0
  67. package/dist/h5config/Button.js +245 -0
  68. package/dist/h5config/Card.d.ts +268 -0
  69. package/dist/h5config/Card.js +425 -0
  70. package/dist/h5config/DAddressPicker.d.ts +196 -0
  71. package/dist/h5config/DAddressPicker.js +226 -0
  72. package/dist/h5config/DCheckbox.d.ts +203 -0
  73. package/dist/h5config/DCheckbox.js +237 -0
  74. package/dist/h5config/DForm.d.ts +1607 -0
  75. package/dist/h5config/DForm.js +897 -0
  76. package/dist/h5config/DMultiplePicker.d.ts +197 -0
  77. package/dist/h5config/DMultiplePicker.js +231 -0
  78. package/dist/h5config/DformDate.d.ts +199 -0
  79. package/dist/h5config/DformDate.js +229 -0
  80. package/dist/h5config/DformFile.d.ts +186 -0
  81. package/dist/h5config/DformFile.js +198 -0
  82. package/dist/h5config/DformImagePicker.d.ts +138 -0
  83. package/dist/h5config/DformImagePicker.js +150 -0
  84. package/dist/h5config/DformInput.d.ts +188 -0
  85. package/dist/h5config/DformInput.js +218 -0
  86. package/dist/h5config/DformInputNumber.d.ts +173 -0
  87. package/dist/h5config/DformInputNumber.js +203 -0
  88. package/dist/h5config/DformPicker.d.ts +198 -0
  89. package/dist/h5config/DformPicker.js +232 -0
  90. package/dist/h5config/DformRadio.d.ts +203 -0
  91. package/dist/h5config/DformRadio.js +237 -0
  92. package/dist/h5config/DformRangePicker.d.ts +199 -0
  93. package/dist/h5config/DformRangePicker.js +229 -0
  94. package/dist/h5config/DformSelect.d.ts +208 -0
  95. package/dist/h5config/DformSelect.js +260 -0
  96. package/dist/h5config/DformSwitch.d.ts +146 -0
  97. package/dist/h5config/DformSwitch.js +158 -0
  98. package/dist/h5config/DformTextArea.d.ts +184 -0
  99. package/dist/h5config/DformTextArea.js +214 -0
  100. package/dist/h5config/Divider.d.ts +53 -0
  101. package/dist/h5config/Divider.js +90 -0
  102. package/dist/h5config/FilterItems.d.ts +142 -0
  103. package/dist/h5config/FilterItems.js +181 -0
  104. package/dist/h5config/Grid.d.ts +117 -0
  105. package/dist/h5config/Grid.js +154 -0
  106. package/dist/h5config/Icon.d.ts +54 -0
  107. package/dist/h5config/Icon.js +54 -0
  108. package/dist/h5config/Link.d.ts +47 -0
  109. package/dist/h5config/Link.js +47 -0
  110. package/dist/h5config/LoadMore.d.ts +527 -0
  111. package/dist/h5config/LoadMore.js +940 -0
  112. package/dist/h5config/NoticeBarPlus.d.ts +104 -0
  113. package/dist/h5config/NoticeBarPlus.js +129 -0
  114. package/dist/h5config/SearchView.d.ts +128 -0
  115. package/dist/h5config/SearchView.js +163 -0
  116. package/dist/h5config/StaticTabs.d.ts +133 -0
  117. package/dist/h5config/StaticTabs.js +173 -0
  118. package/dist/h5config/Table.d.ts +182 -0
  119. package/dist/h5config/Table.js +566 -0
  120. package/dist/index.d.ts +4 -0
  121. package/dist/index.js +4 -0
  122. package/dist/lx-mobile.d.ts +9 -0
  123. package/dist/lx-mobile.js +153 -0
  124. package/dist/lx.d.ts +6 -0
  125. package/dist/lx.js +112 -0
  126. package/dist/utils.d.ts +12 -0
  127. package/dist/utils.js +65 -0
  128. package/package.json +38 -0
@@ -0,0 +1,184 @@
1
+ export declare const DformTextArea: {
2
+ type: string;
3
+ variable: {
4
+ inputBgColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ };
9
+ inputBorderRadius: {
10
+ type: string;
11
+ label: string;
12
+ groupsName: string;
13
+ };
14
+ labelTextColor: {
15
+ type: string;
16
+ label: string;
17
+ groupsName: string;
18
+ desc: string;
19
+ canEdit: boolean;
20
+ extendsKey: string;
21
+ };
22
+ labelLineHeight: {
23
+ type: string;
24
+ label: string;
25
+ groupsName: string;
26
+ desc: string;
27
+ canEdit: boolean;
28
+ extendsKey: string;
29
+ };
30
+ labelFontSize: {
31
+ type: string;
32
+ label: string;
33
+ groupsName: string;
34
+ desc: string;
35
+ canEdit: boolean;
36
+ extendsKey: string;
37
+ };
38
+ labelFontWeight: {
39
+ type: string;
40
+ label: string;
41
+ groupsName: string;
42
+ options: {
43
+ title: string;
44
+ value: string;
45
+ }[];
46
+ desc: string;
47
+ canEdit: boolean;
48
+ extendsKey: string;
49
+ };
50
+ textColor: {
51
+ type: string;
52
+ label: string;
53
+ groupsName: string;
54
+ desc: string;
55
+ canEdit: boolean;
56
+ extendsKey: string;
57
+ };
58
+ fontSize: {
59
+ type: string;
60
+ label: string;
61
+ groupsName: string;
62
+ desc: string;
63
+ canEdit: boolean;
64
+ extendsKey: string;
65
+ };
66
+ lineHeight: {
67
+ type: string;
68
+ label: string;
69
+ groupsName: string;
70
+ desc: string;
71
+ canEdit: boolean;
72
+ extendsKey: string;
73
+ };
74
+ fontWeight: {
75
+ type: string;
76
+ label: string;
77
+ groupsName: string;
78
+ options: {
79
+ title: string;
80
+ value: string;
81
+ }[];
82
+ desc: string;
83
+ canEdit: boolean;
84
+ extendsKey: string;
85
+ };
86
+ paddingValue: {
87
+ type: string;
88
+ label: string;
89
+ groupsName: string;
90
+ desc: string;
91
+ canEdit: boolean;
92
+ extendsKey: string;
93
+ };
94
+ headTextAlign: {
95
+ type: string;
96
+ label: string;
97
+ groupsName: string;
98
+ desc: string;
99
+ canEdit: boolean;
100
+ extendsKey: string;
101
+ options: {
102
+ title: string;
103
+ value: string;
104
+ }[];
105
+ };
106
+ };
107
+ groupsName: string;
108
+ icon: string;
109
+ title: string;
110
+ defaultValue: {
111
+ inputBgColor: string;
112
+ inputBorderRadius: string;
113
+ }[];
114
+ tpl: string;
115
+ components: {
116
+ id: string;
117
+ label: string;
118
+ compName: string;
119
+ type: string;
120
+ compType: number;
121
+ compLib: string;
122
+ props: {
123
+ name: string;
124
+ formCode: string;
125
+ autoLineFeed: boolean;
126
+ failScroll: boolean;
127
+ errorFlag: boolean;
128
+ hiddenBorder: string;
129
+ itemHasStar: boolean;
130
+ };
131
+ style: {
132
+ width: string;
133
+ };
134
+ isContainer: boolean;
135
+ isBusiObjContainer: boolean;
136
+ cmdgroup: string[];
137
+ platform: string;
138
+ setEvents: never[];
139
+ description: string;
140
+ image: string;
141
+ groupsName: string;
142
+ icon: string;
143
+ isLabelDropBoxChild: boolean;
144
+ components: {
145
+ id: string;
146
+ label: string;
147
+ compName: string;
148
+ type: string;
149
+ compType: number;
150
+ compLib: string;
151
+ props: {
152
+ name: string;
153
+ rows: number;
154
+ dformType: string;
155
+ title: string;
156
+ placeholder: string;
157
+ positionType: string;
158
+ status: string;
159
+ fieldProps: string;
160
+ };
161
+ style: {
162
+ inputContent: string;
163
+ };
164
+ isContainer: boolean;
165
+ isBusiObjContainer: boolean;
166
+ cmdgroup: string[];
167
+ platform: string;
168
+ setEvents: never[];
169
+ description: string;
170
+ image: string;
171
+ groupsName: string;
172
+ fieldProps: {
173
+ trigger: string;
174
+ valuePropName: string;
175
+ };
176
+ engineApi: string[];
177
+ isAppChildForm: boolean;
178
+ isLabelDropBoxChild: boolean;
179
+ components: never[];
180
+ path: string[];
181
+ }[];
182
+ path: string[];
183
+ }[];
184
+ };
@@ -0,0 +1,214 @@
1
+ export var DformTextArea = {
2
+ type: 'DformTextArea',
3
+ variable: {
4
+ inputBgColor: {
5
+ type: 'color',
6
+ label: '内容背景颜色',
7
+ groupsName: '背景颜色'
8
+ },
9
+ inputBorderRadius: {
10
+ type: 'px',
11
+ label: '内容背景圆角',
12
+ groupsName: '边框'
13
+ },
14
+ labelTextColor: {
15
+ type: 'color',
16
+ label: '标签文本颜色',
17
+ groupsName: '标签',
18
+ desc: '继承自表单,此处不可编辑',
19
+ canEdit: false,
20
+ extendsKey: 'DForm'
21
+ },
22
+ labelLineHeight: {
23
+ type: 'px',
24
+ label: '标签文本行高',
25
+ groupsName: '标签',
26
+ desc: '继承自表单,此处不可编辑',
27
+ canEdit: false,
28
+ extendsKey: 'DForm'
29
+ },
30
+ labelFontSize: {
31
+ type: 'px',
32
+ label: '标签文本尺寸',
33
+ groupsName: '标签',
34
+ desc: '继承自表单,此处不可编辑',
35
+ canEdit: false,
36
+ extendsKey: 'DForm'
37
+ },
38
+ labelFontWeight: {
39
+ type: 'select',
40
+ label: '标签文本字重',
41
+ groupsName: '标签',
42
+ options: [{
43
+ title: '100',
44
+ value: '100'
45
+ }, {
46
+ title: '200',
47
+ value: '200'
48
+ }, {
49
+ title: '300',
50
+ value: '300'
51
+ }, {
52
+ title: '400',
53
+ value: '400'
54
+ }, {
55
+ title: '500',
56
+ value: '500'
57
+ }],
58
+ desc: '继承自表单,此处不可编辑',
59
+ canEdit: false,
60
+ extendsKey: 'DForm'
61
+ },
62
+ textColor: {
63
+ type: 'color',
64
+ label: '文本颜色',
65
+ groupsName: '组件',
66
+ desc: '继承自表单,此处不可编辑',
67
+ canEdit: false,
68
+ extendsKey: 'DForm'
69
+ },
70
+ fontSize: {
71
+ type: 'px',
72
+ label: '文本尺寸',
73
+ groupsName: '组件',
74
+ desc: '继承自表单,此处不可编辑',
75
+ canEdit: false,
76
+ extendsKey: 'DForm'
77
+ },
78
+ lineHeight: {
79
+ type: 'px',
80
+ label: '文本行高',
81
+ groupsName: '组件',
82
+ desc: '继承自表单,此处不可编辑',
83
+ canEdit: false,
84
+ extendsKey: 'DForm'
85
+ },
86
+ fontWeight: {
87
+ type: 'select',
88
+ label: '文本字重',
89
+ groupsName: '组件',
90
+ options: [{
91
+ title: '100',
92
+ value: '100'
93
+ }, {
94
+ title: '200',
95
+ value: '200'
96
+ }, {
97
+ title: '300',
98
+ value: '300'
99
+ }, {
100
+ title: '400',
101
+ value: '400'
102
+ }, {
103
+ title: '500',
104
+ value: '500'
105
+ }],
106
+ desc: '继承自表单,此处不可编辑',
107
+ canEdit: false,
108
+ extendsKey: 'DForm'
109
+ },
110
+ paddingValue: {
111
+ type: 'marginInput',
112
+ label: '内边距',
113
+ groupsName: '组件',
114
+ desc: '继承自表单,此处不可编辑',
115
+ canEdit: false,
116
+ extendsKey: 'DForm'
117
+ },
118
+ headTextAlign: {
119
+ type: 'select',
120
+ label: '文字对齐方式',
121
+ groupsName: '组件',
122
+ desc: '继承自表单,此处不可编辑',
123
+ canEdit: false,
124
+ extendsKey: 'DForm',
125
+ options: [{
126
+ title: 'left',
127
+ value: 'left'
128
+ }, {
129
+ title: 'center',
130
+ value: 'center'
131
+ }, {
132
+ title: 'right',
133
+ value: 'right'
134
+ }]
135
+ }
136
+ },
137
+ groupsName: '表单',
138
+ icon: 'icon-ico-comp-app-DformTextArea',
139
+ title: '多行输入',
140
+ defaultValue: [{
141
+ inputBgColor: 'rgba(0,0,0,0)',
142
+ inputBorderRadius: '0px'
143
+ }],
144
+ tpl: "\n .lingxiteam-dform-area-group-value{\n background-color: inputBgColor;\n border-radius: inputBorderRadius;\n }",
145
+ components: [{
146
+ id: 'DForm_333712',
147
+ label: '表单',
148
+ compName: 'DForm',
149
+ type: 'DForm',
150
+ compType: 2,
151
+ compLib: '@/components',
152
+ props: {
153
+ name: '表单',
154
+ formCode: 'DForm_333712',
155
+ autoLineFeed: true,
156
+ failScroll: true,
157
+ errorFlag: true,
158
+ hiddenBorder: '0',
159
+ itemHasStar: true
160
+ },
161
+ style: {
162
+ width: 'auto'
163
+ },
164
+ isContainer: true,
165
+ isBusiObjContainer: true,
166
+ cmdgroup: ['basic'],
167
+ platform: 'h5',
168
+ setEvents: [],
169
+ description: '',
170
+ image: '',
171
+ groupsName: '容器',
172
+ icon: 'DForm',
173
+ isLabelDropBoxChild: false,
174
+ components: [{
175
+ id: 'DformTextArea_01195293',
176
+ label: '多行输入',
177
+ compName: 'DformTextArea',
178
+ type: 'DformTextArea',
179
+ compType: 2,
180
+ compLib: '@/components',
181
+ props: {
182
+ name: '多行输入',
183
+ rows: 3,
184
+ dformType: 'DformTextArea',
185
+ title: '多行输入',
186
+ placeholder: '请输入',
187
+ positionType: 'horizontal',
188
+ status: '1',
189
+ fieldProps: 'wdwq'
190
+ },
191
+ style: {
192
+ inputContent: '1'
193
+ },
194
+ isContainer: false,
195
+ isBusiObjContainer: false,
196
+ cmdgroup: ['basic'],
197
+ platform: 'h5',
198
+ setEvents: [],
199
+ description: '',
200
+ image: '',
201
+ groupsName: '表单',
202
+ fieldProps: {
203
+ trigger: 'onChange',
204
+ valuePropName: 'defaultValue'
205
+ },
206
+ engineApi: ['downloadFileByFileCode', 'getMaterialFile'],
207
+ isAppChildForm: true,
208
+ isLabelDropBoxChild: false,
209
+ components: [],
210
+ path: ['769713', 'View_769713_1', 'DForm_458695']
211
+ }],
212
+ path: ['769713', 'View_769713_1']
213
+ }]
214
+ };
@@ -0,0 +1,53 @@
1
+ export declare const Divider: {
2
+ type: string;
3
+ variable: {
4
+ textColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ };
9
+ };
10
+ groupsName: string;
11
+ icon: string;
12
+ title: string;
13
+ defaultValue: {}[];
14
+ tpl: string;
15
+ components: {
16
+ id: string;
17
+ label: string;
18
+ compName: string;
19
+ type: string;
20
+ compType: number;
21
+ compLib: string;
22
+ props: {
23
+ name: string;
24
+ visible: number;
25
+ type: string;
26
+ dashed: boolean;
27
+ dashedWidth: number;
28
+ dashedMargin: number;
29
+ showTitle: boolean;
30
+ dividerText: string;
31
+ orientation: string;
32
+ titleColor: string;
33
+ titleFontSize: number;
34
+ titleFontWeight: number;
35
+ contentPosition: string;
36
+ };
37
+ style: {
38
+ margin: string;
39
+ };
40
+ isContainer: boolean;
41
+ isBusiObjContainer: boolean;
42
+ cmdgroup: string[];
43
+ platform: string;
44
+ icon: string;
45
+ description: string;
46
+ image: string;
47
+ groupsName: string;
48
+ setEvents: never[];
49
+ isLabelDropBoxChild: boolean;
50
+ components: never[];
51
+ path: string[];
52
+ }[];
53
+ };
@@ -0,0 +1,90 @@
1
+ export var Divider = {
2
+ type: 'Divider',
3
+ variable: {
4
+ textColor: {
5
+ type: 'color',
6
+ label: '分割线颜色',
7
+ groupsName: '文字'
8
+ }
9
+ },
10
+ groupsName: '基础',
11
+ icon: 'icon-ico-comp-divider',
12
+ title: '分割线',
13
+ defaultValue: [{}],
14
+ tpl: "",
15
+ components: [{
16
+ id: 'Divider_0510467',
17
+ label: '分割线',
18
+ compName: 'Divider',
19
+ type: 'Divider',
20
+ compType: 1,
21
+ compLib: '@/components',
22
+ props: {
23
+ name: '分割线',
24
+ visible: 1,
25
+ type: 'horizontal',
26
+ dashed: false,
27
+ dashedWidth: 4,
28
+ dashedMargin: 4,
29
+ showTitle: false,
30
+ dividerText: '标题',
31
+ orientation: 'center',
32
+ titleColor: 'rgba(28,36,46,0.75)',
33
+ titleFontSize: 14,
34
+ titleFontWeight: 400,
35
+ contentPosition: 'center'
36
+ },
37
+ style: {
38
+ margin: '12px 0 12px 0'
39
+ },
40
+ isContainer: false,
41
+ isBusiObjContainer: false,
42
+ cmdgroup: ['basic'],
43
+ platform: 'h5',
44
+ icon: 'Divider',
45
+ description: '',
46
+ image: '',
47
+ groupsName: '基础',
48
+ setEvents: [],
49
+ isLabelDropBoxChild: false,
50
+ components: [],
51
+ path: ['769713', 'View_769713_1']
52
+ }, {
53
+ id: 'Divider_0510467',
54
+ label: '分割线',
55
+ compName: 'Divider',
56
+ type: 'Divider',
57
+ compType: 1,
58
+ compLib: '@/components',
59
+ props: {
60
+ name: '分割线',
61
+ visible: 1,
62
+ type: 'vertical',
63
+ dashed: false,
64
+ dashedWidth: 4,
65
+ dashedMargin: 4,
66
+ showTitle: false,
67
+ dividerText: '标题',
68
+ orientation: 'center',
69
+ titleColor: 'rgba(28,36,46,0.75)',
70
+ titleFontSize: 14,
71
+ titleFontWeight: 400,
72
+ contentPosition: 'center'
73
+ },
74
+ style: {
75
+ margin: '12px 0 12px 0'
76
+ },
77
+ isContainer: false,
78
+ isBusiObjContainer: false,
79
+ cmdgroup: ['basic'],
80
+ platform: 'h5',
81
+ icon: 'Divider',
82
+ description: '',
83
+ image: '',
84
+ groupsName: '基础',
85
+ setEvents: [],
86
+ isLabelDropBoxChild: false,
87
+ components: [],
88
+ path: ['769713', 'View_769713_1']
89
+ }]
90
+ };
@@ -0,0 +1,142 @@
1
+ export declare const FilterItems: {
2
+ type: string;
3
+ variable: {
4
+ backgroundColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ };
9
+ borderColor: {
10
+ type: string;
11
+ label: string;
12
+ groupsName: string;
13
+ };
14
+ borderRadius: {
15
+ type: string;
16
+ label: string;
17
+ groupsName: string;
18
+ };
19
+ textColor: {
20
+ type: string;
21
+ label: string;
22
+ groupsName: string;
23
+ };
24
+ fontSize: {
25
+ type: string;
26
+ label: string;
27
+ groupsName: string;
28
+ };
29
+ lineHeight: {
30
+ type: string;
31
+ label: string;
32
+ groupsName: string;
33
+ };
34
+ fontWeight: {
35
+ type: string;
36
+ label: string;
37
+ groupsName: string;
38
+ options: {
39
+ title: string;
40
+ value: string;
41
+ }[];
42
+ };
43
+ iconColor: {
44
+ type: string;
45
+ label: string;
46
+ groupsName: string;
47
+ };
48
+ iconCloseColor: {
49
+ type: string;
50
+ label: string;
51
+ groupsName: string;
52
+ };
53
+ iconSize: {
54
+ type: string;
55
+ label: string;
56
+ groupsName: string;
57
+ };
58
+ };
59
+ groupsName: string;
60
+ icon: string;
61
+ title: string;
62
+ defaultValue: {
63
+ backgroundColor: string;
64
+ borderColor: string;
65
+ borderRadius: string;
66
+ textColor: string;
67
+ fontSize: string;
68
+ lineHeight: string;
69
+ fontWeight: string;
70
+ iconColor: string;
71
+ iconSize: string;
72
+ iconCloseColor: string;
73
+ }[];
74
+ tpl: string;
75
+ components: {
76
+ id: string;
77
+ label: string;
78
+ compName: string;
79
+ type: string;
80
+ compType: number;
81
+ compLib: string;
82
+ props: {
83
+ name: string;
84
+ data: ({
85
+ data: {
86
+ id: string;
87
+ label: string;
88
+ }[];
89
+ filterId: string;
90
+ defaultText: string;
91
+ } | {
92
+ data: {
93
+ id: string;
94
+ label: string;
95
+ }[];
96
+ filterId: string;
97
+ defaultText?: undefined;
98
+ })[];
99
+ };
100
+ style: {};
101
+ isContainer: boolean;
102
+ isBusiObjContainer: boolean;
103
+ cmdgroup: string[];
104
+ platform: string;
105
+ setEvents: {
106
+ dataName: string;
107
+ dataId: number;
108
+ path: never[];
109
+ value: string;
110
+ params: {
111
+ title: string;
112
+ value: string;
113
+ name: string;
114
+ }[];
115
+ children: {
116
+ dataName: string;
117
+ dataId: number;
118
+ todoOptions: string[];
119
+ path: number[];
120
+ options: {
121
+ compId: string;
122
+ compName: string;
123
+ id: string;
124
+ pageJsonId: string;
125
+ value: string[];
126
+ };
127
+ actionObjId: string;
128
+ actionObjName: string;
129
+ value: string;
130
+ children: never[];
131
+ elseIfs: never[];
132
+ }[];
133
+ }[];
134
+ description: string;
135
+ image: string;
136
+ groupsName: string;
137
+ icon: string;
138
+ isLabelDropBoxChild: boolean;
139
+ components: never[];
140
+ path: string[];
141
+ }[];
142
+ };