amis-editor 4.0.2-beta.16 → 4.1.0-beta.19

Sign up to get free protection for your applications and to get access to all the features.
Files changed (195) 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 +15 -8
  5. package/dist/component/RendererThumb.d.ts +5 -5
  6. package/dist/component/VRenderer.d.ts +5 -1
  7. package/dist/component/base/SearchCustomRendererPanel.d.ts +15 -0
  8. package/dist/component/base/SearchPanel.d.ts +83 -0
  9. package/dist/component/base/SearchRendererPanel.d.ts +3 -43
  10. package/dist/exports.min.js +1 -1
  11. package/dist/index.d.ts +4 -1
  12. package/dist/index.min.js +1 -1
  13. package/dist/manager.d.ts +14 -3
  14. package/dist/plugin/Card.d.ts +1 -0
  15. package/dist/plugin/Cards.d.ts +1 -0
  16. package/dist/plugin/Carousel.d.ts +1 -0
  17. package/dist/plugin/Chart.d.ts +1 -0
  18. package/dist/plugin/Collapse.d.ts +1 -0
  19. package/dist/plugin/Custom.d.ts +3 -0
  20. package/dist/plugin/CustomRegion.d.ts +43 -0
  21. package/dist/plugin/Flex.d.ts +1 -0
  22. package/dist/plugin/Form/Control.d.ts +1 -0
  23. package/dist/plugin/Form/InputURL.d.ts +1 -0
  24. package/dist/plugin/Grid.d.ts +1 -0
  25. package/dist/plugin/HBox.d.ts +1 -0
  26. package/dist/plugin/Json.d.ts +1 -0
  27. package/dist/plugin/List.d.ts +1 -0
  28. package/dist/plugin/Mapping.d.ts +1 -0
  29. package/dist/plugin/Markdown.d.ts +1 -0
  30. package/dist/plugin/Nav.d.ts +1 -0
  31. package/dist/plugin/Panel/Outline.d.ts +8 -0
  32. package/dist/plugin/Progress.d.ts +1 -0
  33. package/dist/plugin/QRCode.d.ts +1 -0
  34. package/dist/plugin/Reset.d.ts +0 -1
  35. package/dist/plugin/Service.d.ts +1 -0
  36. package/dist/plugin/Sparkline.d.ts +1 -0
  37. package/dist/plugin/Status.d.ts +1 -0
  38. package/dist/plugin/Steps.d.ts +1 -0
  39. package/dist/plugin/Submit.d.ts +0 -1
  40. package/dist/plugin/TableView.d.ts +1 -0
  41. package/dist/plugin/Tasks.d.ts +1 -0
  42. package/dist/plugin/TooltipWrapper.d.ts +2 -0
  43. package/dist/plugin/Video.d.ts +1 -0
  44. package/dist/plugin/WebComponent.d.ts +1 -0
  45. package/dist/plugin/Wrapper.d.ts +1 -0
  46. package/dist/plugin.d.ts +2 -2
  47. package/dist/store/editor.d.ts +20 -2
  48. package/dist/store/node.d.ts +6 -0
  49. package/dist/style.css +1 -1
  50. package/dist/util.d.ts +7 -2
  51. package/package.json +6 -3
  52. package/src/component/schemaTpl.tsx +2155 -0
  53. package/src/plugin/.DS_Store +0 -0
  54. package/src/plugin/Alert.tsx +87 -0
  55. package/src/plugin/AnchorNav.tsx +233 -0
  56. package/src/plugin/Audio.tsx +161 -0
  57. package/src/plugin/Avatar.tsx +77 -0
  58. package/src/plugin/Breadcrumb.tsx +107 -0
  59. package/src/plugin/Button.tsx +283 -0
  60. package/src/plugin/ButtonGroup.tsx +88 -0
  61. package/src/plugin/ButtonToolbar.tsx +89 -0
  62. package/src/plugin/CRUD.tsx +1832 -0
  63. package/src/plugin/Card.tsx +290 -0
  64. package/src/plugin/Cards.tsx +315 -0
  65. package/src/plugin/Carousel.tsx +386 -0
  66. package/src/plugin/Chart.tsx +218 -0
  67. package/src/plugin/CodeView.tsx +60 -0
  68. package/src/plugin/Collapse.tsx +143 -0
  69. package/src/plugin/CollapseGroup.tsx +167 -0
  70. package/src/plugin/Container.tsx +44 -0
  71. package/src/plugin/Custom.tsx +128 -0
  72. package/src/plugin/CustomRegion.tsx +150 -0
  73. package/src/plugin/Date.tsx +81 -0
  74. package/src/plugin/Datetime.tsx +75 -0
  75. package/src/plugin/Dialog.tsx +178 -0
  76. package/src/plugin/Divider.tsx +36 -0
  77. package/src/plugin/Drawer.tsx +217 -0
  78. package/src/plugin/DropDownButton.tsx +234 -0
  79. package/src/plugin/Each.tsx +152 -0
  80. package/src/plugin/ErrorRenderer.tsx +15 -0
  81. package/src/plugin/Flex.tsx +156 -0
  82. package/src/plugin/Form/ButtonGroupSelect.tsx +86 -0
  83. package/src/plugin/Form/ButtonToolbar.tsx +121 -0
  84. package/src/plugin/Form/ChainedSelect.tsx +70 -0
  85. package/src/plugin/Form/Checkbox.tsx +87 -0
  86. package/src/plugin/Form/Checkboxes.tsx +167 -0
  87. package/src/plugin/Form/CodeEditor.tsx +91 -0
  88. package/src/plugin/Form/Combo.tsx +582 -0
  89. package/src/plugin/Form/ConditionBuilder.tsx +324 -0
  90. package/src/plugin/Form/Control.tsx +139 -0
  91. package/src/plugin/Form/DiffEditor.tsx +117 -0
  92. package/src/plugin/Form/FieldSet.tsx +175 -0
  93. package/src/plugin/Form/Form.tsx +692 -0
  94. package/src/plugin/Form/Formula.tsx +91 -0
  95. package/src/plugin/Form/Group.tsx +300 -0
  96. package/src/plugin/Form/Hidden.tsx +56 -0
  97. package/src/plugin/Form/InputArray.tsx +228 -0
  98. package/src/plugin/Form/InputCity.tsx +93 -0
  99. package/src/plugin/Form/InputColor.tsx +123 -0
  100. package/src/plugin/Form/InputDate.tsx +175 -0
  101. package/src/plugin/Form/InputDateRange.tsx +225 -0
  102. package/src/plugin/Form/InputDateTime.tsx +183 -0
  103. package/src/plugin/Form/InputDateTimeRange.tsx +221 -0
  104. package/src/plugin/Form/InputEmail.tsx +33 -0
  105. package/src/plugin/Form/InputExcel.tsx +85 -0
  106. package/src/plugin/Form/InputFile.tsx +228 -0
  107. package/src/plugin/Form/InputGroup.tsx +105 -0
  108. package/src/plugin/Form/InputImage.tsx +277 -0
  109. package/src/plugin/Form/InputKV.tsx +72 -0
  110. package/src/plugin/Form/InputMonth.tsx +35 -0
  111. package/src/plugin/Form/InputMonthRange.tsx +195 -0
  112. package/src/plugin/Form/InputNumber.tsx +97 -0
  113. package/src/plugin/Form/InputPassword.tsx +33 -0
  114. package/src/plugin/Form/InputQuarter.tsx +35 -0
  115. package/src/plugin/Form/InputQuarterRange.tsx +195 -0
  116. package/src/plugin/Form/InputRange.tsx +121 -0
  117. package/src/plugin/Form/InputRating.tsx +78 -0
  118. package/src/plugin/Form/InputRepeat.tsx +69 -0
  119. package/src/plugin/Form/InputRichText.tsx +197 -0
  120. package/src/plugin/Form/InputSubForm.tsx +198 -0
  121. package/src/plugin/Form/InputTable.tsx +434 -0
  122. package/src/plugin/Form/InputTag.tsx +81 -0
  123. package/src/plugin/Form/InputText.tsx +186 -0
  124. package/src/plugin/Form/InputTime.tsx +95 -0
  125. package/src/plugin/Form/InputTree.tsx +240 -0
  126. package/src/plugin/Form/InputURL.tsx +34 -0
  127. package/src/plugin/Form/InputYear.tsx +35 -0
  128. package/src/plugin/Form/Item.tsx +325 -0
  129. package/src/plugin/Form/ListSelect.tsx +84 -0
  130. package/src/plugin/Form/LocationPicker.tsx +75 -0
  131. package/src/plugin/Form/MatrixCheckboxes.tsx +147 -0
  132. package/src/plugin/Form/NestedSelect.tsx +222 -0
  133. package/src/plugin/Form/Picker.tsx +217 -0
  134. package/src/plugin/Form/Radios.tsx +130 -0
  135. package/src/plugin/Form/Select.tsx +216 -0
  136. package/src/plugin/Form/Static.tsx +335 -0
  137. package/src/plugin/Form/Switch.tsx +116 -0
  138. package/src/plugin/Form/TabsTransfer.tsx +270 -0
  139. package/src/plugin/Form/Textarea.tsx +94 -0
  140. package/src/plugin/Form/Transfer.tsx +379 -0
  141. package/src/plugin/Form/TreeSelect.tsx +263 -0
  142. package/src/plugin/Form/UUID.tsx +48 -0
  143. package/src/plugin/Grid.tsx +799 -0
  144. package/src/plugin/HBox.tsx +727 -0
  145. package/src/plugin/IFrame.tsx +72 -0
  146. package/src/plugin/Image.tsx +318 -0
  147. package/src/plugin/Images.tsx +238 -0
  148. package/src/plugin/Json.tsx +76 -0
  149. package/src/plugin/Link.tsx +95 -0
  150. package/src/plugin/List.tsx +278 -0
  151. package/src/plugin/ListItem.tsx +233 -0
  152. package/src/plugin/Log.tsx +52 -0
  153. package/src/plugin/Mapping.tsx +156 -0
  154. package/src/plugin/Markdown.tsx +47 -0
  155. package/src/plugin/Nav.tsx +186 -0
  156. package/src/plugin/Operation.tsx +97 -0
  157. package/src/plugin/Others/Action.tsx +428 -0
  158. package/src/plugin/Others/BasicToolbar.tsx +591 -0
  159. package/src/plugin/Others/DataDebug.tsx +134 -0
  160. package/src/plugin/Others/TableCell.tsx +480 -0
  161. package/src/plugin/Others/Unknown.tsx +37 -0
  162. package/src/plugin/Page.tsx +308 -0
  163. package/src/plugin/Panel/AvailableRenderers.tsx +41 -0
  164. package/src/plugin/Panel/Code.tsx +44 -0
  165. package/src/plugin/Panel/Name.tsx +26 -0
  166. package/src/plugin/Panel/Outline.tsx +40 -0
  167. package/src/plugin/Panel.tsx +243 -0
  168. package/src/plugin/Plain.tsx +91 -0
  169. package/src/plugin/Progress.tsx +132 -0
  170. package/src/plugin/Property.tsx +139 -0
  171. package/src/plugin/QRCode.tsx +98 -0
  172. package/src/plugin/Reset.tsx +23 -0
  173. package/src/plugin/Service.tsx +167 -0
  174. package/src/plugin/Sparkline.tsx +40 -0
  175. package/src/plugin/Status.tsx +78 -0
  176. package/src/plugin/Steps.tsx +140 -0
  177. package/src/plugin/Submit.tsx +23 -0
  178. package/src/plugin/Table.tsx +440 -0
  179. package/src/plugin/TableView.tsx +711 -0
  180. package/src/plugin/Tabs.tsx +364 -0
  181. package/src/plugin/Tasks.tsx +276 -0
  182. package/src/plugin/Time.tsx +75 -0
  183. package/src/plugin/TooltipWrapper.tsx +193 -0
  184. package/src/plugin/Tpl.tsx +162 -0
  185. package/src/plugin/Video.tsx +160 -0
  186. package/src/plugin/WebComponent.tsx +56 -0
  187. package/src/plugin/Wizard.tsx +743 -0
  188. package/src/plugin/Wrapper.tsx +107 -0
  189. package/src/plugin.ts +1046 -0
  190. package/dist/150a58f3318ca7541ed9.png +0 -0
  191. package/dist/471adb97c322b226e589.png +0 -0
  192. package/dist/4de5f42360bc5946c3c2.png +0 -0
  193. package/dist/4e9968bba3855f088fed.png +0 -0
  194. package/dist/7f09c38ebc687fea847a.png +0 -0
  195. package/dist/c94073576487510314ea.png +0 -0
@@ -0,0 +1,183 @@
1
+ import {relativeValueRe} from 'amis';
2
+ import {
3
+ defaultValue,
4
+ getSchemaTpl,
5
+ valuePipeOut
6
+ } from '../../component/schemaTpl';
7
+ import {registerEditorPlugin} from '../../manager';
8
+ import {
9
+ BasePlugin,
10
+ BasicSubRenderInfo,
11
+ RendererEventContext,
12
+ SubRendererInfo
13
+ } from '../../plugin';
14
+ import moment from 'moment';
15
+
16
+ export class DateTimeControlPlugin extends BasePlugin {
17
+ // 关联渲染器名字
18
+ rendererName = 'input-datetime';
19
+ $schema = '/schemas/DateTimeControlSchema.json';
20
+
21
+ // 组件名称
22
+ icon = 'fa fa-calendar';
23
+ name = '日期时间';
24
+ isBaseComponent = true;
25
+ description = '年月日时分选择';
26
+ docLink = '/amis/zh-CN/components/form/input-datetime';
27
+ tags = ['表单项'];
28
+ scaffold = {
29
+ type: 'input-datetime',
30
+ label: '日期时间',
31
+ name: 'datetime'
32
+ };
33
+ previewSchema: any = {
34
+ type: 'form',
35
+ className: 'text-left',
36
+ wrapWithPanel: false,
37
+ mode: 'horizontal',
38
+ body: [
39
+ {
40
+ ...this.scaffold
41
+ }
42
+ ]
43
+ };
44
+
45
+ panelTitle = '日期时间';
46
+ panelBody = [
47
+ getSchemaTpl('placeholder', {
48
+ pipeIn: defaultValue('请选择日期时间')
49
+ }),
50
+
51
+ {
52
+ type: 'input-text',
53
+ name: 'format',
54
+ label: '值格式',
55
+ description:
56
+ '请参考 <a href="https://momentjs.com/" target="_blank">moment</a> 中的格式用法。',
57
+ pipeIn: defaultValue('X'),
58
+ onChange: (value: any, oldValue: any, model: any, form: any) => {
59
+ form.setValueByName('value', '');
60
+ form.setValueByName('minDate', '');
61
+ form.setValueByName('maxDate', '');
62
+ }
63
+ },
64
+
65
+ getSchemaTpl('switchDefaultValue'),
66
+
67
+ {
68
+ type: 'input-text',
69
+ name: 'value',
70
+ label: '默认值',
71
+ visibleOn: 'typeof this.value !== "undefined"',
72
+ placeholder: '请输入相对值',
73
+ description: '支持 <code>now、+1day、-2weeks</code>这种相对值用法'
74
+ },
75
+
76
+ {
77
+ type: 'fieldSet',
78
+ title: '使用固定值',
79
+ collapsed: true,
80
+ collapsable: true,
81
+ className: 'fieldset',
82
+ visibleOn: 'typeof this.value !== "undefined"',
83
+ body: [
84
+ {
85
+ type: 'input-datetime',
86
+ name: 'value',
87
+ pipeIn: (value: any) =>
88
+ moment(
89
+ relativeValueRe.test(value) || ~['now', 'today'].indexOf(value)
90
+ ? ''
91
+ : value
92
+ ).format('X'),
93
+ pipeOut: (value: any, old: any, data: any) => {
94
+ return moment(parseInt(value, 10), 'X').format(data.format);
95
+ }
96
+ }
97
+ ]
98
+ },
99
+
100
+ getSchemaTpl('clearable', {
101
+ pipeIn: defaultValue(true)
102
+ }),
103
+
104
+ {
105
+ type: 'input-text',
106
+ name: 'inputFormat',
107
+ label: '显示格式',
108
+ description:
109
+ '请参考 <a href="https://momentjs.com/" target="_blank">moment</a> 中的格式用法。',
110
+ pipeIn: defaultValue('YYYY-MM-DD HH:mm')
111
+ },
112
+
113
+ {
114
+ type: 'input-text',
115
+ name: 'minDate',
116
+ label: '最小日期',
117
+ placeholder: '请输入相对值',
118
+ description:
119
+ '支持 <code>now、+1day、-2weeks</code>这种相对值用法,同时支持变量如<code>\\${start_date}</code>'
120
+ },
121
+
122
+ {
123
+ type: 'fieldSet',
124
+ title: '使用固定值',
125
+ collapsed: true,
126
+ collapsable: true,
127
+ className: 'fieldset',
128
+ body: [
129
+ {
130
+ type: 'input-date',
131
+ name: 'minDate',
132
+ pipeIn: (value: any) =>
133
+ moment(
134
+ relativeValueRe.test(value) || ~['now', 'today'].indexOf(value)
135
+ ? ''
136
+ : value
137
+ ).format('X'),
138
+ pipeOut: (value: any, old: any, data: any) => {
139
+ return moment(parseInt(value, 10), 'X').format(data.format);
140
+ }
141
+ }
142
+ ]
143
+ },
144
+
145
+ {
146
+ type: 'divider'
147
+ },
148
+
149
+ {
150
+ type: 'input-text',
151
+ name: 'maxDate',
152
+ label: '最大日期',
153
+ placeholder: '请输入相对值',
154
+ description:
155
+ '支持 <code>now、+1day、-2weeks</code>这种相对值用法,同时支持变量如<code>\\${start_date}</code>'
156
+ },
157
+
158
+ {
159
+ type: 'fieldSet',
160
+ title: '使用固定值',
161
+ collapsed: true,
162
+ collapsable: true,
163
+ className: 'fieldset',
164
+ body: [
165
+ {
166
+ type: 'input-date',
167
+ name: 'maxDate',
168
+ pipeIn: (value: any) =>
169
+ moment(
170
+ relativeValueRe.test(value) || ~['now', 'today'].indexOf(value)
171
+ ? ''
172
+ : value
173
+ ).format('X'),
174
+ pipeOut: (value: any, old: any, data: any) => {
175
+ return moment(parseInt(value, 10), 'X').format(data.format);
176
+ }
177
+ }
178
+ ]
179
+ }
180
+ ];
181
+ }
182
+
183
+ registerEditorPlugin(DateTimeControlPlugin);
@@ -0,0 +1,221 @@
1
+ import {relativeValueRe} from 'amis';
2
+ import {defaultValue, getSchemaTpl} from '../../component/schemaTpl';
3
+ import {registerEditorPlugin} from '../../manager';
4
+ import {
5
+ BasePlugin,
6
+ BasicSubRenderInfo,
7
+ RendererEventContext,
8
+ SubRendererInfo
9
+ } from '../../plugin';
10
+ import moment from 'moment';
11
+
12
+ export class DateTimeRangeControlPlugin extends BasePlugin {
13
+ // 关联渲染器名字
14
+ rendererName = 'input-datetime-range';
15
+ $schema = '/schemas/DateTimeRangeControlSchema.json';
16
+
17
+ order = -440;
18
+
19
+ // 组件名称
20
+ icon = 'fa fa-calendar';
21
+ name = '日期时间范围';
22
+ isBaseComponent = true;
23
+ description =
24
+ '日期时间范围选择,可通过<code>minDate</code>、<code>maxDate</code>设定最小、最大日期';
25
+ docLink = '/amis/zh-CN/components/form/input-datetime-range';
26
+ tags = ['表单项'];
27
+ scaffold = {
28
+ type: 'input-datetime-range',
29
+ label: '日期时间范围',
30
+ name: 'input-datetime-range'
31
+ };
32
+ previewSchema: any = {
33
+ type: 'form',
34
+ className: 'text-left',
35
+ mode: 'horizontal',
36
+ wrapWithPanel: false,
37
+ body: [
38
+ {
39
+ ...this.scaffold
40
+ }
41
+ ]
42
+ };
43
+
44
+ panelTitle = '日期时间范围';
45
+ panelBody = [
46
+ getSchemaTpl('placeholder', {
47
+ pipeIn: defaultValue('请选择日期时间范围')
48
+ }),
49
+
50
+ {
51
+ type: 'input-text',
52
+ name: 'format',
53
+ label: '值格式',
54
+ description:
55
+ '请参考 <a href="https://momentjs.com/" target="_blank">moment</a> 中的格式用法。',
56
+ pipeIn: defaultValue('X'),
57
+ onChange: (value: any, oldValue: any, model: any, form: any) => {
58
+ form.setValueByName('value', '');
59
+ form.setValueByName('minDate', '');
60
+ form.setValueByName('maxDate', '');
61
+ }
62
+ },
63
+
64
+ getSchemaTpl('switchDefaultValue'),
65
+
66
+ {
67
+ type: 'input-text',
68
+ name: 'value',
69
+ label: '默认值',
70
+ visibleOn: 'typeof this.value !== "undefined"',
71
+ placeholder: '请输入相对值',
72
+ description:
73
+ '支持 <code>now、+1day、-2weeks</code>这种相对值用法,由于包含开始和结束时间,请用逗号隔开。'
74
+ },
75
+
76
+ {
77
+ type: 'fieldSet',
78
+ title: '使用固定值',
79
+ visibleOn: 'typeof this.value !== "undefined"',
80
+ collapsed: true,
81
+ collapsable: true,
82
+ className: 'fieldset',
83
+ body: [
84
+ {
85
+ type: 'input-datetime-range',
86
+ name: 'value',
87
+ pipeIn: (value: any) =>
88
+ value
89
+ ? value
90
+ .split(',')
91
+ .map((item: any) =>
92
+ moment(
93
+ relativeValueRe.test(item) ||
94
+ ~['now', 'today'].indexOf(item)
95
+ ? ''
96
+ : item
97
+ ).format('X')
98
+ )
99
+ : '',
100
+ pipeOut: (value: any, old: any, data: any) => {
101
+ let {format} = data;
102
+ if (format) {
103
+ let val = value.split(',');
104
+ value = val
105
+ .map((item: string) =>
106
+ moment(parseInt(item, 10), 'X').format(format)
107
+ )
108
+ .join(',');
109
+ }
110
+ return value;
111
+ }
112
+ }
113
+ ]
114
+ },
115
+ getSchemaTpl('clearable', {
116
+ pipeIn: defaultValue(true)
117
+ }),
118
+ {
119
+ type: 'input-text',
120
+ name: 'minDate',
121
+ label: '最小日期时间',
122
+ placeholder: '请输入相对值',
123
+ description:
124
+ '支持 <code>now、+1day、-2weeks</code>这种相对值用法,同时支持变量如<code>\\${start_date}</code>'
125
+ },
126
+
127
+ {
128
+ type: 'fieldSet',
129
+ title: '使用固定值',
130
+ collapsed: true,
131
+ collapsable: true,
132
+ className: 'fieldset',
133
+ body: [
134
+ {
135
+ type: 'input-datetime',
136
+ name: 'minDate',
137
+ pipeIn: (value: any) =>
138
+ moment(
139
+ relativeValueRe.test(value) || ~['now', 'today'].indexOf(value)
140
+ ? ''
141
+ : value
142
+ ).format('X'),
143
+ pipeOut: (value: any, old: any, data: any) => {
144
+ return moment(parseInt(value, 10), 'X').format(data.format);
145
+ }
146
+ }
147
+ ]
148
+ },
149
+
150
+ {
151
+ type: 'divider'
152
+ },
153
+
154
+ {
155
+ type: 'input-text',
156
+ name: 'maxDate',
157
+ label: '最大日期时间',
158
+ placeholder: '请输入相对值',
159
+ description:
160
+ '支持 <code>now、+1day、-2weeks</code>这种相对值用法,同时支持变量如<code>\\${start_date}</code>'
161
+ },
162
+
163
+ {
164
+ type: 'fieldSet',
165
+ title: '使用固定值',
166
+ collapsed: true,
167
+ collapsable: true,
168
+ className: 'fieldset',
169
+ body: [
170
+ {
171
+ type: 'input-datetime',
172
+ name: 'maxDate',
173
+ pipeIn: (value: any) =>
174
+ moment(
175
+ relativeValueRe.test(value) || ~['now', 'today'].indexOf(value)
176
+ ? ''
177
+ : value
178
+ ).format('X'),
179
+ pipeOut: (value: any, old: any, data: any) => {
180
+ return moment(parseInt(value, 10), 'X').format(data.format);
181
+ }
182
+ }
183
+ ]
184
+ },
185
+ {
186
+ type: 'input-text',
187
+ name: 'minDuration',
188
+ label: '限制最小跨度',
189
+ description: '比如 2days'
190
+ },
191
+ {
192
+ type: 'input-text',
193
+ name: 'ranges',
194
+ label: '日期范围快捷键',
195
+ description:
196
+ '比如 today, yesterday, 1dayago, 7daysago, 90daysago, prevweek, thismonth, prevmonth, prevquarter, thisquarter'
197
+ },
198
+ {
199
+ type: 'input-text',
200
+ name: 'maxDuration',
201
+ label: '限制最大跨度',
202
+ description: '比如 1year'
203
+ },
204
+ {
205
+ name: 'utc',
206
+ label: '是否使用 UTC 时间',
207
+ type: 'switch',
208
+ mode: 'inline',
209
+ className: 'block'
210
+ },
211
+ {
212
+ name: 'embed',
213
+ label: '是否内嵌模式',
214
+ type: 'switch',
215
+ mode: 'inline',
216
+ className: 'block'
217
+ }
218
+ ];
219
+ }
220
+
221
+ registerEditorPlugin(DateTimeRangeControlPlugin);
@@ -0,0 +1,33 @@
1
+ import {registerEditorPlugin} from '../../manager';
2
+ import {TextControlPlugin} from './InputText';
3
+
4
+ export class EmailControlPlugin extends TextControlPlugin {
5
+ // 关联渲染器名字
6
+ rendererName = 'input-email';
7
+ $schema = '/schemas/TextControlSchema.json';
8
+ name = '邮箱框';
9
+ isBaseComponent = true;
10
+ icon = 'fa fa-envelope-o';
11
+
12
+ description = '验证输入是否符合邮箱的格式';
13
+
14
+ scaffold = {
15
+ type: 'input-email',
16
+ label: '邮箱',
17
+ name: 'email'
18
+ };
19
+
20
+ previewSchema = {
21
+ type: 'form',
22
+ className: 'text-left',
23
+ mode: 'horizontal',
24
+ wrapWithPanel: false,
25
+ body: {
26
+ ...this.scaffold
27
+ }
28
+ };
29
+
30
+ panelTitle = this.name;
31
+ }
32
+
33
+ registerEditorPlugin(EmailControlPlugin);
@@ -0,0 +1,85 @@
1
+ /**
2
+ * @file input-excel 组件的素项目部
3
+ */
4
+ import {
5
+ defaultValue,
6
+ getSchemaTpl,
7
+ valuePipeOut
8
+ } from '../../component/schemaTpl';
9
+ import {registerEditorPlugin} from '../../manager';
10
+ import {
11
+ BasePlugin,
12
+ BasicSubRenderInfo,
13
+ RendererEventContext,
14
+ SubRendererInfo
15
+ } from '../../plugin';
16
+
17
+ export class ExcelControlPlugin extends BasePlugin {
18
+ // 关联渲染器名字
19
+ rendererName = 'input-excel';
20
+ $schema = '/schemas/ExcelControlSchema.json';
21
+
22
+ // 组件名称
23
+ name = '上传 Excel';
24
+ isBaseComponent = true;
25
+ icon = 'fa fa-eyedropper';
26
+ description = '自动解析 Excel';
27
+ docLink = '/amis/zh-CN/components/form/input-excel';
28
+ tags = ['表单项'];
29
+ scaffold = {
30
+ type: 'input-excel',
31
+ label: 'Excel',
32
+ name: 'excel'
33
+ };
34
+ previewSchema: any = {
35
+ type: 'form',
36
+ className: 'text-left',
37
+ mode: 'horizontal',
38
+ wrapWithPanel: false,
39
+ body: [
40
+ {
41
+ ...this.scaffold
42
+ }
43
+ ]
44
+ };
45
+ panelTitle = '上传 Excel';
46
+ panelBody = [
47
+ {
48
+ label: '解析模式',
49
+ name: 'parseMode',
50
+ type: 'select',
51
+ options: [
52
+ {
53
+ label: '对象',
54
+ value: 'object'
55
+ },
56
+ {label: '数组', value: 'array'}
57
+ ]
58
+ },
59
+ {
60
+ type: 'switch',
61
+ name: 'allSheets',
62
+ label: '是否解析所有 Sheet',
63
+ mode: 'inline',
64
+ className: 'w-full'
65
+ },
66
+ {
67
+ type: 'switch',
68
+ name: 'plainText',
69
+ label: '是否解析为纯文本',
70
+ pipeIn: defaultValue(true),
71
+ mode: 'inline',
72
+ className: 'w-full'
73
+ },
74
+ {
75
+ type: 'switch',
76
+ name: 'includeEmpty',
77
+ label: '是否包含空内容',
78
+ mode: 'inline',
79
+ visibleOn: 'data.parseMode === "array"',
80
+ className: 'w-full'
81
+ }
82
+ ];
83
+ }
84
+
85
+ registerEditorPlugin(ExcelControlPlugin);