@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,149 @@
1
+ export var Card = {
2
+ type: 'Card',
3
+ variable: {
4
+ textColor: {
5
+ type: 'color',
6
+ label: '标题文本颜色',
7
+ groupsName: '文字',
8
+ canEdit: false,
9
+ extendsKey: 'Container',
10
+ desc: '继承自容器,此处不可编辑'
11
+ },
12
+ lineHeight: {
13
+ type: 'px',
14
+ label: '标题文本行高',
15
+ groupsName: '文字',
16
+ canEdit: false,
17
+ extendsKey: 'Container',
18
+ desc: '继承自容器,此处不可编辑'
19
+ },
20
+ fontSize: {
21
+ type: 'px',
22
+ label: '标题文本尺寸',
23
+ groupsName: '文字',
24
+ canEdit: false,
25
+ extendsKey: 'Container',
26
+ desc: '继承自容器,此处不可编辑'
27
+ },
28
+ fontWeight: {
29
+ type: 'select',
30
+ label: '标题文本字重',
31
+ groupsName: '文字',
32
+ canEdit: false,
33
+ extendsKey: 'Container',
34
+ desc: '继承自容器,此处不可编辑',
35
+ options: [{
36
+ title: '100',
37
+ value: '100'
38
+ }, {
39
+ title: '200',
40
+ value: '200'
41
+ }, {
42
+ title: '300',
43
+ value: '300'
44
+ }, {
45
+ title: '400',
46
+ value: '400'
47
+ }, {
48
+ title: '500',
49
+ value: '500'
50
+ }]
51
+ },
52
+ backgroundColor: {
53
+ type: 'color',
54
+ label: '头部背景颜色',
55
+ groupsName: '背景颜色'
56
+ },
57
+ titleColor: {
58
+ type: 'color',
59
+ label: '装饰条颜色',
60
+ groupsName: '背景颜色'
61
+ },
62
+ tagSize: {
63
+ type: 'px',
64
+ label: '标题装饰符尺寸',
65
+ groupsName: '布局'
66
+ },
67
+ tagMargin: {
68
+ type: 'px',
69
+ label: '符号右外边距',
70
+ groupsName: '布局'
71
+ },
72
+ borderColor: {
73
+ type: 'color',
74
+ label: '边框颜色',
75
+ groupsName: '边框'
76
+ },
77
+ borderRadius: {
78
+ type: 'px',
79
+ label: '边框圆角',
80
+ groupsName: '边框'
81
+ },
82
+ bodyColor: {
83
+ type: 'color',
84
+ label: '内容区域背景',
85
+ groupsName: '背景颜色'
86
+ },
87
+ lineColor: {
88
+ type: 'color',
89
+ label: '分割线颜色',
90
+ groupsName: '边框'
91
+ }
92
+ },
93
+ groupsName: '容器',
94
+ icon: 'icon-ico-comp-card',
95
+ title: '卡片',
96
+ defaultValue: [{
97
+ fontSize: '14px',
98
+ backgroundColor: '#fff',
99
+ titleColor: '#0085D0',
100
+ tagSize: '16px',
101
+ tagMargin: '8px',
102
+ borderColor: '#f0f0f0',
103
+ borderRadius: '2px',
104
+ bodyColor: '#fff',
105
+ lineColor: '#f0f0f0'
106
+ }],
107
+ tpl: "\n .pcfactory-card{\n border-radius: borderRadius;\n }\n .ued-card.pcfactory-card-bordered .pcfactory-card-head {\n background-color: backgroundColor;\n border-color: lineColor;\n border-top-left-radius: borderRadius;\n border-top-right-radius: borderRadius;\n }\n .ued-card.pcfactory-card-bordered {\n border-color: borderColor;\n }\n .ued-card.pcfactory-card-bordered {\n border-color: borderColor;\n }\n .ued-card .ued-card-title-icon-auto>i {\n color: titleColor;\n margin-right: tagMargin;\n }\n .ued-card .ued-card-title-icon-auto span{\n color: titleColor;\n margin-right: tagMargin;\n }\n .ued-card .ued-card-title-icon-auto>i svg{\n width: tagSize;\n height: tagSize;\n }\n .ued-card .ued-card-title-icon-auto span svg{\n width: tagSize;\n height: tagSize;\n }\n .ued-card .pcfactory-card-body{\n background-color: bodyColor;\n border-bottom-right-radius: borderRadius;\n border-bottom-left-radius: borderRadius;\n }",
108
+ components: [{
109
+ id: 'Card_813627',
110
+ label: '卡片',
111
+ compName: 'Card',
112
+ type: 'Card',
113
+ compType: 0,
114
+ compLib: '$component',
115
+ props: {
116
+ name: '卡片',
117
+ basicStatus: 1,
118
+ cardIconType: 'auto',
119
+ extendNum: 3,
120
+ title: '标题',
121
+ bordered: true,
122
+ size: 'default',
123
+ hasHeader: true,
124
+ hasIcon: true,
125
+ prefixIcon: {
126
+ prefixIconTheme: 'outlined',
127
+ prefixIconType: 'info-circle'
128
+ }
129
+ },
130
+ style: {
131
+ padding: '20px 20px 20px 20px',
132
+ overflowY: 'visible',
133
+ margin: '0 0 16px 0'
134
+ },
135
+ isContainer: true,
136
+ isBusiObjContainer: false,
137
+ cmdgroup: ['basic'],
138
+ platform: 'pc',
139
+ icon: 'Card',
140
+ description: '',
141
+ image: '',
142
+ groupsName: '容器',
143
+ engineApi: ['sandBoxSafeRun', 'service.downloadFileByFileCode'],
144
+ setEvents: [],
145
+ isLabelDropBoxChild: false,
146
+ components: [],
147
+ path: ['998509', 'View_998509_1']
148
+ }]
149
+ };
@@ -0,0 +1,179 @@
1
+ export declare const Cascader: {
2
+ type: string;
3
+ variable: {
4
+ labelTextColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ desc: string;
9
+ canEdit: boolean;
10
+ extendsKey: string;
11
+ };
12
+ labelLineHeight: {
13
+ type: string;
14
+ label: string;
15
+ groupsName: string;
16
+ desc: string;
17
+ canEdit: boolean;
18
+ extendsKey: string;
19
+ };
20
+ labelFontSize: {
21
+ type: string;
22
+ label: string;
23
+ groupsName: string;
24
+ desc: string;
25
+ canEdit: boolean;
26
+ extendsKey: string;
27
+ };
28
+ textColor: {
29
+ type: string;
30
+ label: string;
31
+ groupsName: string;
32
+ desc: string;
33
+ canEdit: boolean;
34
+ extendsKey: string;
35
+ };
36
+ fontSize: {
37
+ type: string;
38
+ label: string;
39
+ groupsName: string;
40
+ desc: string;
41
+ canEdit: boolean;
42
+ extendsKey: string;
43
+ };
44
+ itemBorderColor: {
45
+ type: string;
46
+ label: string;
47
+ groupsName: string;
48
+ desc: string;
49
+ canEdit: boolean;
50
+ extendsKey: string;
51
+ };
52
+ itemBorderRadius: {
53
+ type: string;
54
+ label: string;
55
+ groupsName: string;
56
+ desc: string;
57
+ canEdit: boolean;
58
+ extendsKey: string;
59
+ };
60
+ iconFontSize: {
61
+ type: string;
62
+ label: string;
63
+ groupsName: string;
64
+ };
65
+ iconColor: {
66
+ type: string;
67
+ label: string;
68
+ groupsName: string;
69
+ };
70
+ };
71
+ groupsName: string;
72
+ icon: string;
73
+ title: string;
74
+ defaultValue: {
75
+ iconFontSize: string;
76
+ iconColor: string;
77
+ }[];
78
+ tpl: string;
79
+ components: {
80
+ id: string;
81
+ label: string;
82
+ compName: string;
83
+ type: string;
84
+ compType: number;
85
+ compLib: string;
86
+ props: {
87
+ name: string;
88
+ colSpan: number;
89
+ labelCol: number;
90
+ wrapperCol: number;
91
+ layout: string;
92
+ colon: boolean;
93
+ labelAlign: string;
94
+ basicStatus: number;
95
+ colSpace: number;
96
+ rowSpace: number;
97
+ formCode: string;
98
+ };
99
+ style: {
100
+ padding: string;
101
+ };
102
+ isContainer: boolean;
103
+ isBusiObjContainer: boolean;
104
+ cmdgroup: string[];
105
+ platform: string;
106
+ icon: string;
107
+ description: string;
108
+ image: string;
109
+ groupsName: string;
110
+ engineApi: string[];
111
+ setEvents: never[];
112
+ isLabelDropBoxChild: boolean;
113
+ components: {
114
+ id: string;
115
+ label: string;
116
+ compName: string;
117
+ type: string;
118
+ compType: number;
119
+ compLib: string;
120
+ props: {
121
+ name: string;
122
+ basicStatus: number;
123
+ multiple: string;
124
+ titleTip: string;
125
+ tipSize: string;
126
+ tipWidth: string;
127
+ tipHeight: string;
128
+ selfSpan: string;
129
+ labelCol: number;
130
+ wrapperCol: number;
131
+ size: string;
132
+ expandTrigger: string;
133
+ popupPlacement: string;
134
+ options: {
135
+ label: string;
136
+ key: string;
137
+ $$isParent: boolean;
138
+ title: string;
139
+ children: {
140
+ label: string;
141
+ key: string;
142
+ title: string;
143
+ children: {
144
+ label: string;
145
+ key: string;
146
+ title: string;
147
+ value: string;
148
+ }[];
149
+ value: string;
150
+ }[];
151
+ value: string;
152
+ }[];
153
+ popoverStyle: string;
154
+ showSearch: boolean;
155
+ allowClear: boolean;
156
+ formItemIndex: number;
157
+ fieldName: string;
158
+ };
159
+ style: {};
160
+ isContainer: boolean;
161
+ isBusiObjContainer: boolean;
162
+ cmdgroup: string[];
163
+ platform: string;
164
+ fieldProps: {
165
+ trigger: string;
166
+ valuePropName: string;
167
+ };
168
+ icon: string;
169
+ description: string;
170
+ image: string;
171
+ groupsName: string;
172
+ setEvents: never[];
173
+ isLabelDropBoxChild: boolean;
174
+ components: never[];
175
+ path: string[];
176
+ }[];
177
+ path: string[];
178
+ }[];
179
+ };
@@ -0,0 +1,208 @@
1
+ export var Cascader = {
2
+ type: 'Cascader',
3
+ variable: {
4
+ labelTextColor: {
5
+ type: 'color',
6
+ label: '标签文本颜色',
7
+ groupsName: '文字',
8
+ desc: '继承自表单,此处不可编辑',
9
+ canEdit: false,
10
+ extendsKey: 'Form'
11
+ },
12
+ labelLineHeight: {
13
+ type: 'px',
14
+ label: '标签文本行高',
15
+ groupsName: '文字',
16
+ desc: '继承自表单,此处不可编辑',
17
+ canEdit: false,
18
+ extendsKey: 'Form'
19
+ },
20
+ labelFontSize: {
21
+ type: 'px',
22
+ label: '标签文本尺寸',
23
+ groupsName: '文字',
24
+ desc: '继承自表单,此处不可编辑',
25
+ canEdit: false,
26
+ extendsKey: 'Form'
27
+ },
28
+ textColor: {
29
+ type: 'color',
30
+ label: '文本颜色',
31
+ groupsName: '文字',
32
+ desc: '继承自表单,此处不可编辑',
33
+ canEdit: false,
34
+ extendsKey: 'Form'
35
+ },
36
+ fontSize: {
37
+ type: 'px',
38
+ label: '文本尺寸',
39
+ groupsName: '文字',
40
+ desc: '继承自表单,此处不可编辑',
41
+ canEdit: false,
42
+ extendsKey: 'Form'
43
+ },
44
+ itemBorderColor: {
45
+ type: 'color',
46
+ label: '边框颜色',
47
+ groupsName: '边框',
48
+ desc: '继承自表单,此处不可编辑',
49
+ canEdit: false,
50
+ extendsKey: 'Form'
51
+ },
52
+ itemBorderRadius: {
53
+ type: 'px',
54
+ label: '边框圆角',
55
+ groupsName: '边框',
56
+ desc: '继承自表单,此处不可编辑',
57
+ canEdit: false,
58
+ extendsKey: 'Form'
59
+ },
60
+ iconFontSize: {
61
+ type: 'px',
62
+ label: '下拉图标尺寸',
63
+ groupsName: '文字'
64
+ },
65
+ iconColor: {
66
+ type: 'color',
67
+ label: '下拉图标颜色',
68
+ groupsName: '文字'
69
+ }
70
+ },
71
+ groupsName: '数据录入',
72
+ icon: 'icon-ico-comp-cascader',
73
+ title: '级联选择',
74
+ defaultValue: [{
75
+ iconFontSize: '12px',
76
+ iconColor: 'rgba(28,36,46,.25)'
77
+ }],
78
+ tpl: ".ued-cascader-wrap .pcfactory-select-arrow{\n color: iconColor;\n width: iconFontSize;\n height: iconFontSize;\n .anticon>svg{\n width: iconFontSize;\n height: iconFontSize;\n }\n }\n .ued-cascader-wrap .pcfactory-select-clear{\n color: iconColor;\n width: iconFontSize;\n height: iconFontSize;\n .anticon>svg{\n width: iconFontSize;\n height: iconFontSize;\n }\n }",
79
+ components: [{
80
+ id: 'Form_180373',
81
+ label: '表单',
82
+ compName: 'Form',
83
+ type: 'Form',
84
+ compType: 0,
85
+ compLib: 'comm',
86
+ props: {
87
+ name: '表单',
88
+ colSpan: 12,
89
+ labelCol: 8,
90
+ wrapperCol: 16,
91
+ layout: 'vertical',
92
+ colon: true,
93
+ labelAlign: 'right',
94
+ basicStatus: 1,
95
+ colSpace: 16,
96
+ rowSpace: 16,
97
+ formCode: 'Code_Form_180373'
98
+ },
99
+ style: {
100
+ padding: '0px 0px 0px 0px'
101
+ },
102
+ isContainer: true,
103
+ isBusiObjContainer: true,
104
+ cmdgroup: ['basic'],
105
+ platform: 'pc',
106
+ icon: 'Form',
107
+ description: '',
108
+ image: '',
109
+ groupsName: '容器',
110
+ engineApi: ['service.downloadFileByFileCode', 'getVisible', 'stateListener'],
111
+ setEvents: [],
112
+ isLabelDropBoxChild: false,
113
+ components: [{
114
+ id: 'Cascader_347221',
115
+ label: '级联选择',
116
+ compName: 'Cascader',
117
+ type: 'Cascader',
118
+ compType: 2,
119
+ compLib: 'comm',
120
+ props: {
121
+ name: '级联选择',
122
+ basicStatus: 1,
123
+ multiple: '1',
124
+ titleTip: 'notext',
125
+ tipSize: 'default',
126
+ tipWidth: '240px',
127
+ tipHeight: 'auto',
128
+ selfSpan: '',
129
+ labelCol: 8,
130
+ wrapperCol: 16,
131
+ size: 'default',
132
+ expandTrigger: 'click',
133
+ popupPlacement: 'bottomLeft',
134
+ options: [{
135
+ label: '标题1',
136
+ key: '4030963',
137
+ $$isParent: true,
138
+ title: '标题1',
139
+ children: [{
140
+ label: '副标题1',
141
+ key: '933413',
142
+ title: '副标题1',
143
+ children: [{
144
+ label: '正文1',
145
+ key: '800723',
146
+ title: '正文1',
147
+ value: '800723'
148
+ }],
149
+ value: '933413'
150
+ }],
151
+ value: '4030963'
152
+ }, {
153
+ label: '标题2',
154
+ key: '835883',
155
+ $$isParent: true,
156
+ title: '标题2',
157
+ children: [{
158
+ label: '副标题21',
159
+ key: '917029',
160
+ title: '副标题21',
161
+ children: [{
162
+ label: '正文21',
163
+ key: '03438',
164
+ title: '正文21',
165
+ value: '03438'
166
+ }],
167
+ value: '917029'
168
+ }, {
169
+ label: '副标题22',
170
+ key: '508799',
171
+ title: '副标题22',
172
+ children: [{
173
+ label: '正文22',
174
+ key: '82403476',
175
+ title: '正文22',
176
+ value: '82403476'
177
+ }],
178
+ value: '508799'
179
+ }],
180
+ value: '835883'
181
+ }],
182
+ popoverStyle: 'default',
183
+ showSearch: false,
184
+ allowClear: true,
185
+ formItemIndex: 0,
186
+ fieldName: 'ddf'
187
+ },
188
+ style: {},
189
+ isContainer: false,
190
+ isBusiObjContainer: false,
191
+ cmdgroup: ['basic'],
192
+ platform: 'pc',
193
+ fieldProps: {
194
+ trigger: 'onChange',
195
+ valuePropName: 'value'
196
+ },
197
+ icon: 'Cascader',
198
+ description: '',
199
+ image: '',
200
+ groupsName: '数据录入',
201
+ setEvents: [],
202
+ isLabelDropBoxChild: false,
203
+ components: [],
204
+ path: ['998509', 'Form_578466']
205
+ }],
206
+ path: ['998509']
207
+ }]
208
+ };
@@ -0,0 +1,161 @@
1
+ export declare const Checkbox: {
2
+ type: string;
3
+ variable: {
4
+ labelTextColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ desc: string;
9
+ canEdit: boolean;
10
+ extendsKey: string;
11
+ };
12
+ labelLineHeight: {
13
+ type: string;
14
+ label: string;
15
+ groupsName: string;
16
+ desc: string;
17
+ canEdit: boolean;
18
+ extendsKey: string;
19
+ };
20
+ labelFontSize: {
21
+ type: string;
22
+ label: string;
23
+ groupsName: string;
24
+ desc: string;
25
+ canEdit: boolean;
26
+ extendsKey: string;
27
+ };
28
+ textColor: {
29
+ type: string;
30
+ label: string;
31
+ groupsName: string;
32
+ desc: string;
33
+ canEdit: boolean;
34
+ extendsKey: string;
35
+ };
36
+ fontSize: {
37
+ type: string;
38
+ label: string;
39
+ groupsName: string;
40
+ desc: string;
41
+ canEdit: boolean;
42
+ extendsKey: string;
43
+ };
44
+ radioSize: {
45
+ type: string;
46
+ label: string;
47
+ groupsName: string;
48
+ };
49
+ radioBorderColor: {
50
+ type: string;
51
+ label: string;
52
+ groupsName: string;
53
+ };
54
+ radioBgColor: {
55
+ type: string;
56
+ label: string;
57
+ groupsName: string;
58
+ };
59
+ radioSeBorderColor: {
60
+ type: string;
61
+ label: string;
62
+ groupsName: string;
63
+ };
64
+ radioSeBgColor: {
65
+ type: string;
66
+ label: string;
67
+ groupsName: string;
68
+ };
69
+ };
70
+ groupsName: string;
71
+ icon: string;
72
+ title: string;
73
+ defaultValue: {
74
+ radioSize: string;
75
+ radioBorderColor: string;
76
+ radioBgColor: string;
77
+ radioSeBorderColor: string;
78
+ radioSeBgColor: string;
79
+ }[];
80
+ tpl: string;
81
+ components: {
82
+ id: string;
83
+ label: string;
84
+ compName: string;
85
+ type: string;
86
+ compType: number;
87
+ compLib: string;
88
+ props: {
89
+ name: string;
90
+ colSpan: number;
91
+ labelCol: number;
92
+ wrapperCol: number;
93
+ layout: string;
94
+ colon: boolean;
95
+ labelAlign: string;
96
+ basicStatus: number;
97
+ colSpace: number;
98
+ rowSpace: number;
99
+ formCode: string;
100
+ };
101
+ style: {
102
+ padding: string;
103
+ };
104
+ isContainer: boolean;
105
+ isBusiObjContainer: boolean;
106
+ cmdgroup: string[];
107
+ platform: string;
108
+ icon: string;
109
+ description: string;
110
+ image: string;
111
+ groupsName: string;
112
+ engineApi: string[];
113
+ setEvents: never[];
114
+ isLabelDropBoxChild: boolean;
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
+ basicStatus: number;
125
+ titleTip: string;
126
+ tipSize: string;
127
+ tipWidth: string;
128
+ tipHeight: string;
129
+ text: string;
130
+ selfSpan: string;
131
+ labelCol: number;
132
+ wrapperCol: number;
133
+ formItemIndex: number;
134
+ fieldName: string;
135
+ extendProps: {
136
+ key: string;
137
+ value: string;
138
+ }[];
139
+ };
140
+ style: {};
141
+ isContainer: boolean;
142
+ isBusiObjContainer: boolean;
143
+ cmdgroup: string[];
144
+ platform: string;
145
+ fieldProps: {
146
+ trigger: string;
147
+ valuePropName: string;
148
+ };
149
+ icon: string;
150
+ description: string;
151
+ image: string;
152
+ groupsName: string;
153
+ isInlineBlock: boolean;
154
+ setEvents: never[];
155
+ isLabelDropBoxChild: boolean;
156
+ components: never[];
157
+ path: string[];
158
+ }[];
159
+ path: string[];
160
+ }[];
161
+ };