amis-editor 4.1.0-beta.1 → 4.1.0-beta.20

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 +14 -7
  5. package/dist/component/RendererThumb.d.ts +5 -5
  6. package/dist/component/VRenderer.d.ts +4 -0
  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 +2 -42
  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/Form.d.ts +19 -3
  24. package/dist/plugin/Form/InputURL.d.ts +1 -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 +2155 -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 +1832 -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 +325 -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 +216 -0
  137. package/src/plugin/Form/Static.tsx +335 -0
  138. package/src/plugin/Form/Switch.tsx +116 -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,95 @@
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 TimeControlPlugin extends BasePlugin {
17
+ // 关联渲染器名字
18
+ rendererName = 'input-time';
19
+ $schema = '/schemas/TimeControlSchema.json';
20
+
21
+ // 组件名称
22
+ name = '时间框';
23
+ isBaseComponent = true;
24
+ icon = 'fa fa-clock-o';
25
+ description = `时分秒输入`;
26
+ docLink = '/amis/zh-CN/components/form/input-time';
27
+ tags = ['表单项'];
28
+ scaffold = {
29
+ type: 'input-time',
30
+ label: '时间',
31
+ name: 'time'
32
+ };
33
+ previewSchema: any = {
34
+ type: 'form',
35
+ className: 'text-left',
36
+ mode: 'horizontal',
37
+ wrapWithPanel: false,
38
+ body: {
39
+ ...this.scaffold
40
+ }
41
+ };
42
+
43
+ panelTitle = '时间框';
44
+ panelBody = [
45
+ getSchemaTpl('switchDefaultValue'),
46
+
47
+ {
48
+ type: 'input-text',
49
+ name: 'value',
50
+ label: '默认值',
51
+ visibleOn: 'typeof this.value !== "undefined"',
52
+ placeholder: '请输入相对值',
53
+ description: '支持 <code>now、+1day、-2weeks</code>这种相对值用法'
54
+ },
55
+ {
56
+ type: 'fieldSet',
57
+ title: '使用固定值',
58
+ collapsed: true,
59
+ collapsable: true,
60
+ className: 'fieldset',
61
+ visibleOn: 'typeof this.value !== "undefined"',
62
+ body: [
63
+ {
64
+ type: 'input-time',
65
+ name: 'value',
66
+ pipeIn: (value: any) =>
67
+ relativeValueRe.test(value) || ~['now', 'today'].indexOf(value)
68
+ ? ''
69
+ : value
70
+ }
71
+ ]
72
+ },
73
+ {
74
+ type: 'input-text',
75
+ name: 'timeFormat',
76
+ label: '值格式',
77
+ description:
78
+ '请参考 <a href="https://momentjs.com/" target="_blank">moment</a> 中的格式用法。',
79
+ pipeIn: defaultValue('HH:mm')
80
+ },
81
+ getSchemaTpl('clearable', {
82
+ pipeIn: defaultValue(true)
83
+ }),
84
+ {
85
+ type: 'input-text',
86
+ name: 'inputFormat',
87
+ label: '显示格式',
88
+ description:
89
+ '请参考 <a href="https://momentjs.com/" target="_blank">moment</a> 中的格式用法。',
90
+ pipeIn: defaultValue('HH:mm')
91
+ }
92
+ ];
93
+ }
94
+
95
+ registerEditorPlugin(TimeControlPlugin);
@@ -0,0 +1,240 @@
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 TreeControlPlugin extends BasePlugin {
17
+ // 关联渲染器名字
18
+ rendererName = 'input-tree';
19
+ $schema = '/schemas/TreeControlSchema.json';
20
+
21
+ // 组件名称
22
+ name = '树选择框';
23
+ isBaseComponent = true;
24
+ icon = 'fa fa-list-alt';
25
+ description = `树型结构来选择,可通过<code>options</code>来配置选项,也可通过<code>source</code>拉取选项`;
26
+ docLink = '/amis/zh-CN/components/form/input-tree';
27
+ tags = ['表单项'];
28
+ scaffold = {
29
+ type: 'input-tree',
30
+ label: '树选择框',
31
+ name: 'tree',
32
+ options: [
33
+ {
34
+ label: '选项A',
35
+ value: 'A',
36
+ children: [
37
+ {
38
+ label: '选项C',
39
+ value: 'C'
40
+ },
41
+ {
42
+ label: '选项D',
43
+ value: 'D'
44
+ }
45
+ ]
46
+ },
47
+
48
+ {
49
+ label: '选项B',
50
+ value: 'B'
51
+ }
52
+ ]
53
+ };
54
+ previewSchema: any = {
55
+ type: 'form',
56
+ className: 'text-left',
57
+ mode: 'horizontal',
58
+ wrapWithPanel: false,
59
+ body: {
60
+ ...this.scaffold
61
+ }
62
+ };
63
+
64
+ panelTitle = '树选择';
65
+ panelDefinitions = {
66
+ options: {
67
+ label: '选项 Options',
68
+ name: 'options',
69
+ type: 'combo',
70
+ multiple: true,
71
+ multiLine: true,
72
+ draggable: true,
73
+ addButtonText: '新增选项',
74
+ scaffold: {
75
+ label: '',
76
+ value: ''
77
+ },
78
+ items: [
79
+ {
80
+ type: 'group',
81
+ body: [
82
+ {
83
+ type: 'input-text',
84
+ name: 'label',
85
+ placeholder: '名称',
86
+ required: true
87
+ },
88
+
89
+ {
90
+ type: 'input-text',
91
+ name: 'value',
92
+ placeholder: '值',
93
+ unique: true
94
+ }
95
+ ]
96
+ },
97
+ {
98
+ $ref: 'options',
99
+ label: '子选项',
100
+ name: 'children',
101
+ addButtonText: '新增子选项'
102
+ }
103
+ ]
104
+ }
105
+ };
106
+ panelBody = [
107
+ getSchemaTpl('tabs', [
108
+ {
109
+ title: '常规',
110
+ body: [
111
+ getSchemaTpl('switchDefaultValue'),
112
+ {
113
+ type: 'input-text',
114
+ name: 'value',
115
+ label: '默认值',
116
+ visibleOn: 'typeof this.value !== "undefined"'
117
+ },
118
+ getSchemaTpl('fieldSet', {
119
+ title: '选项',
120
+ body: [
121
+ {
122
+ $ref: 'options',
123
+ name: 'options'
124
+ },
125
+ getSchemaTpl('source', {
126
+ sampleBuilder: (schema: any) =>
127
+ JSON.stringify(
128
+ {
129
+ status: 0,
130
+ msg: '',
131
+ data: {
132
+ options: [
133
+ {
134
+ label: '选项A',
135
+ value: 'a',
136
+ children: [
137
+ {
138
+ label: '子选项',
139
+ value: 'c'
140
+ }
141
+ ]
142
+ },
143
+
144
+ {
145
+ label: '选项B',
146
+ value: 'b'
147
+ }
148
+ ]
149
+ }
150
+ },
151
+ null,
152
+ 2
153
+ )
154
+ }),
155
+ {
156
+ label: '隐藏顶级',
157
+ name: 'hideRoot',
158
+ type: 'switch',
159
+ mode: 'inline',
160
+ className: 'w-full'
161
+ },
162
+ {
163
+ name: 'showIcon',
164
+ label: '是否显示图标',
165
+ type: 'switch',
166
+ mode: 'inline',
167
+ className: 'w-full',
168
+ pipeIn: defaultValue(true)
169
+ },
170
+ getSchemaTpl('multiple'),
171
+ {
172
+ name: 'cascade',
173
+ visibleOn: 'data.multiple',
174
+ label: '不自动选中子节点?',
175
+ type: 'switch',
176
+ description: '选中父级时,孩子节点是否自动选中',
177
+ mode: 'inline',
178
+ className: 'w-full'
179
+ },
180
+ {
181
+ name: 'withChildren',
182
+ visibleOn: 'data.cascade !== true && data.multiple',
183
+ label: '数值是否携带子节点',
184
+ type: 'switch',
185
+ disabledOn: 'data.onlyChildren',
186
+ mode: 'inline',
187
+ className: 'w-full'
188
+ },
189
+ {
190
+ name: 'onlyChildren',
191
+ visibleOn: 'data.cascade !== true && data.multiple',
192
+ label: '数值是否只包含子节点',
193
+ disabledOn: 'data.withChildren',
194
+ type: 'switch',
195
+ mode: 'inline',
196
+ className: 'w-full'
197
+ },
198
+ getSchemaTpl('joinValues'),
199
+ getSchemaTpl('delimiter'),
200
+ getSchemaTpl('extractValue'),
201
+ getSchemaTpl('autoFill')
202
+ ]
203
+ })
204
+ ]
205
+ },
206
+ {
207
+ title: '外观',
208
+ body: [
209
+ {
210
+ label: '顶级文字',
211
+ name: 'rootLabel',
212
+ type: 'input-text',
213
+ pipeIn: defaultValue('顶级'),
214
+ visibleOn: 'data.hideRoot !== true'
215
+ },
216
+
217
+ {
218
+ name: 'showIcon',
219
+ label: '是否显示图标',
220
+ type: 'switch',
221
+ mode: 'inline',
222
+ className: 'w-full',
223
+ pipeIn: defaultValue(true)
224
+ },
225
+
226
+ {
227
+ label: '是否显示单选按钮',
228
+ name: 'showRadio',
229
+ type: 'switch',
230
+ mode: 'inline',
231
+ className: 'w-full',
232
+ visibleOn: '!data.multiple'
233
+ }
234
+ ]
235
+ }
236
+ ])
237
+ ];
238
+ }
239
+
240
+ registerEditorPlugin(TreeControlPlugin);
@@ -0,0 +1,34 @@
1
+ import {registerEditorPlugin} from '../../manager';
2
+ import {TextControlPlugin} from './InputText';
3
+
4
+ export class URLControlPlugin extends TextControlPlugin {
5
+ // 关联渲染器名字
6
+ rendererName = 'input-url';
7
+ $schema = '/schemas/TextControlSchema.json';
8
+ name = 'URL输入框';
9
+ isBaseComponent = true;
10
+ icon = 'fa fa-link';
11
+
12
+ description = '验证输入是否为合法的 URL';
13
+ docLink = '/amis/zh-CN/components/form/input-url';
14
+
15
+ scaffold = {
16
+ type: 'input-url',
17
+ label: '链接',
18
+ name: 'url'
19
+ };
20
+
21
+ previewSchema = {
22
+ type: 'form',
23
+ className: 'text-left',
24
+ mode: 'horizontal',
25
+ wrapWithPanel: false,
26
+ body: {
27
+ ...this.scaffold
28
+ }
29
+ };
30
+
31
+ panelTitle = 'URL';
32
+ }
33
+
34
+ registerEditorPlugin(URLControlPlugin);
@@ -0,0 +1,35 @@
1
+ import {registerEditorPlugin} from '../../manager';
2
+
3
+ import {DateControlPlugin} from './InputDate';
4
+
5
+ export class YearControlPlugin extends DateControlPlugin {
6
+ // 关联渲染器名字
7
+ rendererName = 'input-year';
8
+ $schema = '/schemas/YearControlSchema.json';
9
+
10
+ // 组件名称
11
+ name = 'Year';
12
+ isBaseComponent = true;
13
+ icon = 'fa fa-calendar';
14
+ description = `年选择`;
15
+ docLink = '/amis/zh-CN/components/form/input-year';
16
+ tags = ['表单项'];
17
+ // @ts-ignore
18
+ scaffold = {
19
+ type: 'input-year',
20
+ name: 'year'
21
+ };
22
+ previewSchema: any = {
23
+ type: 'form',
24
+ wrapWithPanel: false,
25
+ body: [
26
+ {
27
+ ...this.scaffold
28
+ }
29
+ ]
30
+ };
31
+
32
+ panelTitle = 'Year';
33
+ }
34
+
35
+ registerEditorPlugin(YearControlPlugin);