amis-editor 4.1.0-beta.4 → 4.2.0-beta.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (218) hide show
  1. package/dist/component/Breadcrumb.d.ts +23 -2
  2. package/dist/component/ClassNameControl.d.ts +1 -1
  3. package/dist/component/Control/APIControl.d.ts +2 -2
  4. package/dist/component/Control/OptionControl.d.ts +3 -3
  5. package/dist/component/Control/PopoverEdit.d.ts +4 -4
  6. package/dist/component/Control/ValidationControl.d.ts +1 -1
  7. package/dist/component/Editor.d.ts +20 -1
  8. package/dist/component/IFramePreview.d.ts +2 -1
  9. package/dist/component/NodeWrapper.d.ts +1 -1
  10. package/dist/component/Panel/RenderersPanel.d.ts +1 -2
  11. package/dist/component/Preview.d.ts +3 -1
  12. package/dist/component/RegionWrapper.d.ts +4 -0
  13. package/dist/component/ScaffoldModal.d.ts +1 -1
  14. package/dist/component/VRenderer.d.ts +4 -0
  15. package/dist/component/base/InputComponentName.d.ts +1 -1
  16. package/dist/component/base/SearchCustomRendererPanel.d.ts +15 -0
  17. package/dist/component/base/SearchPanel.d.ts +83 -0
  18. package/dist/component/base/SearchRendererPanel.d.ts +2 -42
  19. package/dist/component/base/ShortcutKey.d.ts +23 -0
  20. package/dist/env.d.ts +1 -1
  21. package/dist/exports.min.js +1 -1
  22. package/dist/index.d.ts +5 -1
  23. package/dist/index.min.js +1 -1
  24. package/dist/manager.d.ts +16 -4
  25. package/dist/plugin/Alert.d.ts +1 -1
  26. package/dist/plugin/Button.d.ts +1 -1
  27. package/dist/plugin/Card.d.ts +1 -0
  28. package/dist/plugin/Cards.d.ts +2 -1
  29. package/dist/plugin/Carousel.d.ts +1 -0
  30. package/dist/plugin/Chart.d.ts +1 -0
  31. package/dist/plugin/Collapse.d.ts +1 -0
  32. package/dist/plugin/Custom.d.ts +3 -0
  33. package/dist/plugin/CustomRegion.d.ts +40 -0
  34. package/dist/plugin/Dialog.d.ts +1 -1
  35. package/dist/plugin/Drawer.d.ts +1 -1
  36. package/dist/plugin/DropDownButton.d.ts +1 -1
  37. package/dist/plugin/Each.d.ts +1 -1
  38. package/dist/plugin/Flex.d.ts +1 -0
  39. package/dist/plugin/Form/Control.d.ts +1 -0
  40. package/dist/plugin/Form/Form.d.ts +19 -3
  41. package/dist/plugin/Form/Formula.d.ts +3 -3
  42. package/dist/plugin/Form/InputURL.d.ts +1 -0
  43. package/dist/plugin/Form/Switch.d.ts +2 -0
  44. package/dist/plugin/Grid.d.ts +1 -0
  45. package/dist/plugin/HBox.d.ts +1 -0
  46. package/dist/plugin/IFrame.d.ts +3 -3
  47. package/dist/plugin/Json.d.ts +1 -0
  48. package/dist/plugin/List.d.ts +2 -1
  49. package/dist/plugin/Mapping.d.ts +1 -0
  50. package/dist/plugin/Markdown.d.ts +1 -0
  51. package/dist/plugin/Nav.d.ts +1 -0
  52. package/dist/plugin/Page.d.ts +1 -1
  53. package/dist/plugin/Panel/Outline.d.ts +8 -0
  54. package/dist/plugin/Progress.d.ts +1 -0
  55. package/dist/plugin/QRCode.d.ts +1 -0
  56. package/dist/plugin/Reset.d.ts +0 -1
  57. package/dist/plugin/Service.d.ts +1 -0
  58. package/dist/plugin/Sparkline.d.ts +1 -0
  59. package/dist/plugin/Status.d.ts +1 -0
  60. package/dist/plugin/Steps.d.ts +1 -0
  61. package/dist/plugin/Submit.d.ts +0 -1
  62. package/dist/plugin/Table.d.ts +1 -1
  63. package/dist/plugin/TableView.d.ts +1 -0
  64. package/dist/plugin/Tasks.d.ts +1 -0
  65. package/dist/plugin/TooltipWrapper.d.ts +1 -0
  66. package/dist/plugin/Video.d.ts +1 -0
  67. package/dist/plugin/WebComponent.d.ts +1 -0
  68. package/dist/plugin/Wizard.d.ts +11 -2
  69. package/dist/plugin/Wrapper.d.ts +1 -0
  70. package/dist/plugin.d.ts +8 -7
  71. package/dist/store/editor.d.ts +58 -22
  72. package/dist/store/node.d.ts +6 -0
  73. package/dist/style.css +1 -1
  74. package/dist/util.d.ts +1 -1
  75. package/package.json +9 -3
  76. package/src/component/schemaTpl.tsx +2157 -0
  77. package/src/plugin/Alert.tsx +87 -0
  78. package/src/plugin/AnchorNav.tsx +233 -0
  79. package/src/plugin/Audio.tsx +154 -0
  80. package/src/plugin/Avatar.tsx +77 -0
  81. package/src/plugin/Breadcrumb.tsx +107 -0
  82. package/src/plugin/Button.tsx +281 -0
  83. package/src/plugin/ButtonGroup.tsx +85 -0
  84. package/src/plugin/ButtonToolbar.tsx +87 -0
  85. package/src/plugin/CRUD.tsx +1835 -0
  86. package/src/plugin/Card.tsx +290 -0
  87. package/src/plugin/Cards.tsx +318 -0
  88. package/src/plugin/Carousel.tsx +377 -0
  89. package/src/plugin/Chart.tsx +218 -0
  90. package/src/plugin/CodeView.tsx +60 -0
  91. package/src/plugin/Collapse.tsx +136 -0
  92. package/src/plugin/CollapseGroup.tsx +167 -0
  93. package/src/plugin/Container.tsx +40 -0
  94. package/src/plugin/Custom.tsx +128 -0
  95. package/src/plugin/CustomRegion.tsx +156 -0
  96. package/src/plugin/Date.tsx +74 -0
  97. package/src/plugin/Datetime.tsx +68 -0
  98. package/src/plugin/Dialog.tsx +176 -0
  99. package/src/plugin/Divider.tsx +36 -0
  100. package/src/plugin/Drawer.tsx +214 -0
  101. package/src/plugin/DropDownButton.tsx +235 -0
  102. package/src/plugin/Each.tsx +150 -0
  103. package/src/plugin/ErrorRenderer.tsx +15 -0
  104. package/src/plugin/Flex.tsx +151 -0
  105. package/src/plugin/Form/ButtonGroupSelect.tsx +75 -0
  106. package/src/plugin/Form/ButtonToolbar.tsx +110 -0
  107. package/src/plugin/Form/ChainedSelect.tsx +70 -0
  108. package/src/plugin/Form/Checkbox.tsx +87 -0
  109. package/src/plugin/Form/Checkboxes.tsx +167 -0
  110. package/src/plugin/Form/CodeEditor.tsx +81 -0
  111. package/src/plugin/Form/Combo.tsx +582 -0
  112. package/src/plugin/Form/ConditionBuilder.tsx +315 -0
  113. package/src/plugin/Form/Control.tsx +139 -0
  114. package/src/plugin/Form/DiffEditor.tsx +111 -0
  115. package/src/plugin/Form/FieldSet.tsx +163 -0
  116. package/src/plugin/Form/Form.tsx +687 -0
  117. package/src/plugin/Form/Formula.tsx +79 -0
  118. package/src/plugin/Form/Group.tsx +295 -0
  119. package/src/plugin/Form/Hidden.tsx +44 -0
  120. package/src/plugin/Form/InputArray.tsx +228 -0
  121. package/src/plugin/Form/InputCity.tsx +93 -0
  122. package/src/plugin/Form/InputColor.tsx +123 -0
  123. package/src/plugin/Form/InputDate.tsx +175 -0
  124. package/src/plugin/Form/InputDateRange.tsx +225 -0
  125. package/src/plugin/Form/InputDateTime.tsx +183 -0
  126. package/src/plugin/Form/InputDateTimeRange.tsx +221 -0
  127. package/src/plugin/Form/InputEmail.tsx +33 -0
  128. package/src/plugin/Form/InputExcel.tsx +85 -0
  129. package/src/plugin/Form/InputFile.tsx +221 -0
  130. package/src/plugin/Form/InputGroup.tsx +96 -0
  131. package/src/plugin/Form/InputImage.tsx +266 -0
  132. package/src/plugin/Form/InputKV.tsx +72 -0
  133. package/src/plugin/Form/InputMonth.tsx +35 -0
  134. package/src/plugin/Form/InputMonthRange.tsx +195 -0
  135. package/src/plugin/Form/InputNumber.tsx +89 -0
  136. package/src/plugin/Form/InputPassword.tsx +33 -0
  137. package/src/plugin/Form/InputQuarter.tsx +35 -0
  138. package/src/plugin/Form/InputQuarterRange.tsx +195 -0
  139. package/src/plugin/Form/InputRange.tsx +121 -0
  140. package/src/plugin/Form/InputRating.tsx +78 -0
  141. package/src/plugin/Form/InputRepeat.tsx +57 -0
  142. package/src/plugin/Form/InputRichText.tsx +186 -0
  143. package/src/plugin/Form/InputSubForm.tsx +189 -0
  144. package/src/plugin/Form/InputTable.tsx +434 -0
  145. package/src/plugin/Form/InputTag.tsx +70 -0
  146. package/src/plugin/Form/InputText.tsx +186 -0
  147. package/src/plugin/Form/InputTime.tsx +85 -0
  148. package/src/plugin/Form/InputTree.tsx +229 -0
  149. package/src/plugin/Form/InputURL.tsx +34 -0
  150. package/src/plugin/Form/InputYear.tsx +35 -0
  151. package/src/plugin/Form/Item.tsx +327 -0
  152. package/src/plugin/Form/ListSelect.tsx +73 -0
  153. package/src/plugin/Form/LocationPicker.tsx +62 -0
  154. package/src/plugin/Form/MatrixCheckboxes.tsx +136 -0
  155. package/src/plugin/Form/NestedSelect.tsx +211 -0
  156. package/src/plugin/Form/Picker.tsx +209 -0
  157. package/src/plugin/Form/Radios.tsx +119 -0
  158. package/src/plugin/Form/Select.tsx +233 -0
  159. package/src/plugin/Form/Static.tsx +322 -0
  160. package/src/plugin/Form/Switch.tsx +107 -0
  161. package/src/plugin/Form/TabsTransfer.tsx +259 -0
  162. package/src/plugin/Form/Textarea.tsx +83 -0
  163. package/src/plugin/Form/Transfer.tsx +368 -0
  164. package/src/plugin/Form/TreeSelect.tsx +263 -0
  165. package/src/plugin/Form/UUID.tsx +48 -0
  166. package/src/plugin/Grid.tsx +798 -0
  167. package/src/plugin/HBox.tsx +727 -0
  168. package/src/plugin/IFrame.tsx +70 -0
  169. package/src/plugin/Image.tsx +314 -0
  170. package/src/plugin/Images.tsx +231 -0
  171. package/src/plugin/Json.tsx +69 -0
  172. package/src/plugin/Link.tsx +93 -0
  173. package/src/plugin/List.tsx +278 -0
  174. package/src/plugin/ListItem.tsx +229 -0
  175. package/src/plugin/Log.tsx +52 -0
  176. package/src/plugin/Mapping.tsx +149 -0
  177. package/src/plugin/Markdown.tsx +47 -0
  178. package/src/plugin/Nav.tsx +184 -0
  179. package/src/plugin/Operation.tsx +95 -0
  180. package/src/plugin/Others/Action.tsx +426 -0
  181. package/src/plugin/Others/BasicToolbar.tsx +585 -0
  182. package/src/plugin/Others/DataDebug.tsx +134 -0
  183. package/src/plugin/Others/TableCell.tsx +480 -0
  184. package/src/plugin/Others/Unknown.tsx +37 -0
  185. package/src/plugin/Page.tsx +306 -0
  186. package/src/plugin/Panel/AvailableRenderers.tsx +41 -0
  187. package/src/plugin/Panel/Code.tsx +44 -0
  188. package/src/plugin/Panel/Name.tsx +26 -0
  189. package/src/plugin/Panel/Outline.tsx +40 -0
  190. package/src/plugin/Panel.tsx +243 -0
  191. package/src/plugin/Plain.tsx +84 -0
  192. package/src/plugin/Progress.tsx +125 -0
  193. package/src/plugin/Property.tsx +139 -0
  194. package/src/plugin/QRCode.tsx +96 -0
  195. package/src/plugin/Reset.tsx +23 -0
  196. package/src/plugin/Service.tsx +162 -0
  197. package/src/plugin/Sparkline.tsx +40 -0
  198. package/src/plugin/Status.tsx +76 -0
  199. package/src/plugin/Steps.tsx +128 -0
  200. package/src/plugin/Submit.tsx +23 -0
  201. package/src/plugin/Table.tsx +428 -0
  202. package/src/plugin/TableView.tsx +709 -0
  203. package/src/plugin/Tabs.tsx +362 -0
  204. package/src/plugin/Tasks.tsx +274 -0
  205. package/src/plugin/Time.tsx +68 -0
  206. package/src/plugin/TooltipWrapper.tsx +193 -0
  207. package/src/plugin/Tpl.tsx +158 -0
  208. package/src/plugin/Video.tsx +158 -0
  209. package/src/plugin/WebComponent.tsx +53 -0
  210. package/src/plugin/Wizard.tsx +740 -0
  211. package/src/plugin/Wrapper.tsx +107 -0
  212. package/src/plugin.ts +1050 -0
  213. package/dist/150a58f3318ca7541ed9.png +0 -0
  214. package/dist/471adb97c322b226e589.png +0 -0
  215. package/dist/4de5f42360bc5946c3c2.png +0 -0
  216. package/dist/4e9968bba3855f088fed.png +0 -0
  217. package/dist/7f09c38ebc687fea847a.png +0 -0
  218. package/dist/c94073576487510314ea.png +0 -0
@@ -0,0 +1,107 @@
1
+ import {getSchemaTpl, valuePipeOut} from '../../component/schemaTpl';
2
+ import {registerEditorPlugin} from '../../manager';
3
+ import {BasePlugin} from '../../plugin';
4
+
5
+ export class SwitchControlPlugin extends BasePlugin {
6
+ // 关联渲染器名字
7
+ rendererName = 'switch';
8
+ $schema = '/schemas/SwitchControlSchema.json';
9
+
10
+ order = -400;
11
+
12
+ // 组件名称
13
+ name = '开关';
14
+ isBaseComponent = true;
15
+ icon = 'fa fa-toggle-on';
16
+ description = `开关控件`;
17
+ docLink = '/amis/zh-CN/components/form/switch';
18
+ tags = ['表单项'];
19
+ scaffold = {
20
+ type: 'switch',
21
+ option: '开关',
22
+ name: 'switch',
23
+ falseValue: false,
24
+ trueValue: true
25
+ };
26
+ previewSchema: any = {
27
+ type: 'form',
28
+ className: 'text-left',
29
+ mode: 'horizontal',
30
+ wrapWithPanel: false,
31
+ body: [
32
+ {
33
+ ...this.scaffold,
34
+ label: '开关表单'
35
+ }
36
+ ]
37
+ };
38
+
39
+ panelTitle = '开关';
40
+ panelBody = [
41
+ getSchemaTpl('switchDefaultValue', {
42
+ pipeOut: (value: any, origin: any, data: any) =>
43
+ value ? data.trueValue : undefined
44
+ }),
45
+ {
46
+ type: 'switch',
47
+ name: 'value',
48
+ label: '默认勾选',
49
+ mode: 'inline',
50
+ className: 'w-full',
51
+ visibleOn: 'typeof this.value !== "undefined"',
52
+ pipeOut: (value: any, origin: any, data: any) =>
53
+ value ? data.trueValue : data.falseValue
54
+ },
55
+ {
56
+ name: 'option',
57
+ type: 'input-text',
58
+ label: '选项说明'
59
+ },
60
+ {
61
+ label: '选项位置',
62
+ name: 'optionAtLeft',
63
+ type: 'button-group-select',
64
+ size: 'sm',
65
+ value: false,
66
+ options: [
67
+ {
68
+ label: '左',
69
+ value: true
70
+ },
71
+
72
+ {
73
+ label: '右',
74
+ value: false
75
+ }
76
+ ]
77
+ },
78
+ {
79
+ type: 'input-text',
80
+ label: '勾选后的值',
81
+ name: 'trueValue',
82
+ value: true,
83
+ pipeOut: valuePipeOut
84
+ },
85
+ {
86
+ type: 'input-text',
87
+ label: '未勾选的值',
88
+ name: 'falseValue',
89
+ value: false,
90
+ pipeOut: valuePipeOut
91
+ },
92
+
93
+ {
94
+ name: 'onText',
95
+ type: 'input-text',
96
+ label: '开启时的文本'
97
+ },
98
+
99
+ {
100
+ name: 'offText',
101
+ type: 'input-text',
102
+ label: '关闭时的文本'
103
+ }
104
+ ];
105
+ }
106
+
107
+ registerEditorPlugin(SwitchControlPlugin);
@@ -0,0 +1,259 @@
1
+ import {getSchemaTpl} from '../../component/schemaTpl';
2
+ import {registerEditorPlugin} from '../../manager';
3
+ import {BasePlugin} from '../../plugin';
4
+
5
+ export class TabsTransferPlugin extends BasePlugin {
6
+ // 关联渲染器名字
7
+ rendererName = 'tabs-transfer';
8
+ $schema = '/schemas/TransferControlSchema.json';
9
+
10
+ // 组件名称
11
+ name = '组合穿梭器';
12
+ isBaseComponent = true;
13
+ icon = 'fa fa-th-list';
14
+ description = `组合穿梭器组件`;
15
+ docLink = '/amis/zh-CN/components/form/transfer';
16
+ tags = ['表单项'];
17
+ scaffold = {
18
+ label: '组合穿梭器',
19
+ type: 'tabs-transfer',
20
+ name: 'a',
21
+ sortable: true,
22
+ searchable: true,
23
+ options: [
24
+ {
25
+ label: '成员',
26
+ selectMode: 'tree',
27
+ children: [
28
+ {
29
+ label: '法师',
30
+ children: [
31
+ {
32
+ label: '诸葛亮',
33
+ value: 'zhugeliang'
34
+ }
35
+ ]
36
+ },
37
+ {
38
+ label: '战士',
39
+ children: [
40
+ {
41
+ label: '曹操',
42
+ value: 'caocao'
43
+ },
44
+ {
45
+ label: '钟无艳',
46
+ value: 'zhongwuyan'
47
+ }
48
+ ]
49
+ },
50
+ {
51
+ label: '打野',
52
+ children: [
53
+ {
54
+ label: '李白',
55
+ value: 'libai'
56
+ },
57
+ {
58
+ label: '韩信',
59
+ value: 'hanxin'
60
+ },
61
+ {
62
+ label: '云中君',
63
+ value: 'yunzhongjun'
64
+ }
65
+ ]
66
+ }
67
+ ]
68
+ },
69
+ {
70
+ label: '用户',
71
+ selectMode: 'chained',
72
+ children: [
73
+ {
74
+ label: '法师',
75
+ children: [
76
+ {
77
+ label: '诸葛亮',
78
+ value: 'zhugeliang2'
79
+ }
80
+ ]
81
+ },
82
+ {
83
+ label: '战士',
84
+ children: [
85
+ {
86
+ label: '曹操',
87
+ value: 'caocao2'
88
+ },
89
+ {
90
+ label: '钟无艳',
91
+ value: 'zhongwuyan2'
92
+ }
93
+ ]
94
+ },
95
+ {
96
+ label: '打野',
97
+ children: [
98
+ {
99
+ label: '李白',
100
+ value: 'libai2'
101
+ },
102
+ {
103
+ label: '韩信',
104
+ value: 'hanxin2'
105
+ },
106
+ {
107
+ label: '云中君',
108
+ value: 'yunzhongjun2'
109
+ }
110
+ ]
111
+ }
112
+ ]
113
+ }
114
+ ]
115
+ };
116
+ previewSchema: any = {
117
+ type: 'form',
118
+ className: 'text-left',
119
+ mode: 'horizontal',
120
+ wrapWithPanel: false,
121
+ body: [
122
+ {
123
+ ...this.scaffold
124
+ }
125
+ ]
126
+ };
127
+
128
+ panelTitle = '组合穿梭器';
129
+ panelDefinitions = {
130
+ options: {
131
+ label: '选项 Options',
132
+ name: 'options',
133
+ type: 'combo',
134
+ multiple: true,
135
+ multiLine: true,
136
+ draggable: true,
137
+ addButtonText: '新增选项',
138
+ scaffold: {
139
+ label: '',
140
+ value: ''
141
+ },
142
+ items: [
143
+ {
144
+ type: 'group',
145
+ body: [
146
+ {
147
+ type: 'input-text',
148
+ name: 'label',
149
+ placeholder: '名称',
150
+ required: true
151
+ },
152
+
153
+ {
154
+ type: 'input-text',
155
+ name: 'value',
156
+ placeholder: '值',
157
+ unique: true
158
+ }
159
+ ]
160
+ },
161
+ {
162
+ $ref: 'options',
163
+ label: '子选项',
164
+ name: 'children',
165
+ addButtonText: '新增子选项'
166
+ }
167
+ ]
168
+ }
169
+ };
170
+
171
+ panelBody = [
172
+ getSchemaTpl('switchDefaultValue'),
173
+
174
+ {
175
+ type: 'select',
176
+ name: 'value',
177
+ label: '默认值',
178
+ source: '${options}',
179
+ multiple: true,
180
+ visibleOn: 'typeof this.value !== "undefined"'
181
+ },
182
+
183
+ {
184
+ label: '可检索',
185
+ name: 'searchable',
186
+ type: 'switch',
187
+ mode: 'inline',
188
+ className: 'w-full'
189
+ },
190
+
191
+ getSchemaTpl('api', {
192
+ label: '检索接口',
193
+ name: 'searchApi'
194
+ }),
195
+
196
+ {
197
+ label: '查询时勾选展示模式',
198
+ name: 'searchResultMode',
199
+ type: 'select',
200
+ mode: 'inline',
201
+ className: 'w-full',
202
+ options: [
203
+ {
204
+ label: '列表形式',
205
+ value: 'list'
206
+ },
207
+ {
208
+ label: '表格形式',
209
+ value: 'table'
210
+ },
211
+ {
212
+ label: '树形选择形式',
213
+ value: 'tree'
214
+ },
215
+ {
216
+ label: '级联选择形式',
217
+ value: 'chained'
218
+ }
219
+ ]
220
+ },
221
+
222
+ {
223
+ label: '可排序',
224
+ name: 'sortable',
225
+ type: 'switch',
226
+ mode: 'inline',
227
+ className: 'w-full'
228
+ },
229
+
230
+ {
231
+ label: '左侧的标题文字',
232
+ name: 'selectTitle',
233
+ type: 'input-text'
234
+ },
235
+
236
+ {
237
+ label: '右侧结果的标题文字',
238
+ name: 'resultTitle',
239
+ type: 'input-text'
240
+ },
241
+
242
+ getSchemaTpl('fieldSet', {
243
+ title: '选项',
244
+ body: [
245
+ {
246
+ $ref: 'options',
247
+ name: 'options'
248
+ },
249
+ getSchemaTpl('source'),
250
+ getSchemaTpl('joinValues'),
251
+ getSchemaTpl('delimiter'),
252
+ getSchemaTpl('extractValue'),
253
+ getSchemaTpl('autoFill')
254
+ ]
255
+ })
256
+ ];
257
+ }
258
+
259
+ registerEditorPlugin(TabsTransferPlugin);
@@ -0,0 +1,83 @@
1
+ import {getSchemaTpl} from '../../component/schemaTpl';
2
+ import {registerEditorPlugin} from '../../manager';
3
+ import {BasePlugin} from '../../plugin';
4
+
5
+ export class TextareaControlPlugin extends BasePlugin {
6
+ // 关联渲染器名字
7
+ rendererName = 'textarea';
8
+ $schema = '/schemas/TextareaControlSchema.json';
9
+ order = -490;
10
+
11
+ // 组件名称
12
+ name = '多行文本框';
13
+ isBaseComponent = true;
14
+ icon = 'fa fa-paragraph';
15
+ description = `支持换行输入`;
16
+ docLink = '/amis/zh-CN/components/form/textarea';
17
+ tags = ['表单项'];
18
+ scaffold = {
19
+ type: 'textarea',
20
+ label: '多行文本',
21
+ name: 'textarea'
22
+ };
23
+ previewSchema: any = {
24
+ type: 'form',
25
+ className: 'text-left',
26
+ wrapWithPanel: false,
27
+ mode: 'horizontal',
28
+ body: {
29
+ ...this.scaffold
30
+ }
31
+ };
32
+
33
+ panelTitle = '多行文本';
34
+ panelBody = [
35
+ getSchemaTpl('switchDefaultValue'),
36
+ {
37
+ type: 'textarea',
38
+ name: 'value',
39
+ label: '默认值',
40
+ visibleOn: 'typeof this.value !== "undefined"'
41
+ },
42
+ {
43
+ type: 'input-number',
44
+ name: 'minRows',
45
+ value: 3,
46
+ label: '最小行数'
47
+ },
48
+ {
49
+ type: 'input-number',
50
+ name: 'maxRows',
51
+ value: 20,
52
+ label: '最大行数'
53
+ },
54
+ {
55
+ type: 'input-number',
56
+ name: 'minLength',
57
+ value: 5,
58
+ label: '最小字数限制'
59
+ },
60
+ {
61
+ type: 'input-number',
62
+ name: 'maxLength',
63
+ value: 120,
64
+ label: '最大字数限制'
65
+ },
66
+ getSchemaTpl('showCounter'),
67
+ {
68
+ type: 'switch',
69
+ name: 'readOnly',
70
+ label: '是否只读'
71
+ },
72
+ {
73
+ type: 'switch',
74
+ name: 'trimContents',
75
+ label: '去除首尾空白',
76
+ mode: 'inline',
77
+ className: 'w-full',
78
+ description: '开启后,将不允许用户输入前后空格'
79
+ }
80
+ ];
81
+ }
82
+
83
+ registerEditorPlugin(TextareaControlPlugin);