amis-editor 4.1.0-beta.2 → 4.1.0-beta.22

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