amis-editor 4.1.0-beta.2 → 4.1.0-beta.20
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/component/Breadcrumb.d.ts +23 -2
- package/dist/component/Editor.d.ts +19 -0
- package/dist/component/Panel/RenderersPanel.d.ts +1 -2
- package/dist/component/RegionWrapper.d.ts +4 -0
- package/dist/component/VRenderer.d.ts +4 -0
- package/dist/component/base/SearchCustomRendererPanel.d.ts +15 -0
- package/dist/component/base/SearchPanel.d.ts +83 -0
- package/dist/component/base/SearchRendererPanel.d.ts +2 -42
- package/dist/exports.min.js +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.min.js +1 -1
- package/dist/manager.d.ts +14 -3
- package/dist/plugin/Card.d.ts +1 -0
- package/dist/plugin/Cards.d.ts +1 -0
- package/dist/plugin/Carousel.d.ts +1 -0
- package/dist/plugin/Chart.d.ts +1 -0
- package/dist/plugin/Collapse.d.ts +1 -0
- package/dist/plugin/Custom.d.ts +3 -0
- package/dist/plugin/CustomRegion.d.ts +43 -0
- package/dist/plugin/Flex.d.ts +1 -0
- package/dist/plugin/Form/Control.d.ts +1 -0
- package/dist/plugin/Form/Form.d.ts +19 -3
- package/dist/plugin/Form/InputURL.d.ts +1 -0
- package/dist/plugin/Grid.d.ts +1 -0
- package/dist/plugin/HBox.d.ts +1 -0
- package/dist/plugin/Json.d.ts +1 -0
- package/dist/plugin/List.d.ts +1 -0
- package/dist/plugin/Mapping.d.ts +1 -0
- package/dist/plugin/Markdown.d.ts +1 -0
- package/dist/plugin/Nav.d.ts +1 -0
- package/dist/plugin/Panel/Outline.d.ts +8 -0
- package/dist/plugin/Progress.d.ts +1 -0
- package/dist/plugin/QRCode.d.ts +1 -0
- package/dist/plugin/Reset.d.ts +0 -1
- package/dist/plugin/Service.d.ts +1 -0
- package/dist/plugin/Sparkline.d.ts +1 -0
- package/dist/plugin/Status.d.ts +1 -0
- package/dist/plugin/Steps.d.ts +1 -0
- package/dist/plugin/Submit.d.ts +0 -1
- package/dist/plugin/TableView.d.ts +1 -0
- package/dist/plugin/Tasks.d.ts +1 -0
- package/dist/plugin/TooltipWrapper.d.ts +1 -0
- package/dist/plugin/Video.d.ts +1 -0
- package/dist/plugin/WebComponent.d.ts +1 -0
- package/dist/plugin/Wizard.d.ts +11 -2
- package/dist/plugin/Wrapper.d.ts +1 -0
- package/dist/plugin.d.ts +2 -2
- package/dist/store/editor.d.ts +20 -2
- package/dist/store/node.d.ts +6 -0
- package/dist/style.css +1 -1
- package/dist/util.d.ts +7 -2
- package/package.json +6 -3
- package/src/component/schemaTpl.tsx +2155 -0
- package/src/plugin/Alert.tsx +87 -0
- package/src/plugin/AnchorNav.tsx +233 -0
- package/src/plugin/Audio.tsx +161 -0
- package/src/plugin/Avatar.tsx +77 -0
- package/src/plugin/Breadcrumb.tsx +107 -0
- package/src/plugin/Button.tsx +283 -0
- package/src/plugin/ButtonGroup.tsx +88 -0
- package/src/plugin/ButtonToolbar.tsx +89 -0
- package/src/plugin/CRUD.tsx +1832 -0
- package/src/plugin/Card.tsx +290 -0
- package/src/plugin/Cards.tsx +315 -0
- package/src/plugin/Carousel.tsx +386 -0
- package/src/plugin/Chart.tsx +218 -0
- package/src/plugin/CodeView.tsx +60 -0
- package/src/plugin/Collapse.tsx +143 -0
- package/src/plugin/CollapseGroup.tsx +167 -0
- package/src/plugin/Container.tsx +44 -0
- package/src/plugin/Custom.tsx +128 -0
- package/src/plugin/CustomRegion.tsx +150 -0
- package/src/plugin/Date.tsx +81 -0
- package/src/plugin/Datetime.tsx +75 -0
- package/src/plugin/Dialog.tsx +178 -0
- package/src/plugin/Divider.tsx +36 -0
- package/src/plugin/Drawer.tsx +217 -0
- package/src/plugin/DropDownButton.tsx +234 -0
- package/src/plugin/Each.tsx +152 -0
- package/src/plugin/ErrorRenderer.tsx +15 -0
- package/src/plugin/Flex.tsx +156 -0
- package/src/plugin/Form/ButtonGroupSelect.tsx +86 -0
- package/src/plugin/Form/ButtonToolbar.tsx +121 -0
- package/src/plugin/Form/ChainedSelect.tsx +70 -0
- package/src/plugin/Form/Checkbox.tsx +87 -0
- package/src/plugin/Form/Checkboxes.tsx +167 -0
- package/src/plugin/Form/CodeEditor.tsx +91 -0
- package/src/plugin/Form/Combo.tsx +582 -0
- package/src/plugin/Form/ConditionBuilder.tsx +324 -0
- package/src/plugin/Form/Control.tsx +139 -0
- package/src/plugin/Form/DiffEditor.tsx +117 -0
- package/src/plugin/Form/FieldSet.tsx +175 -0
- package/src/plugin/Form/Form.tsx +692 -0
- package/src/plugin/Form/Formula.tsx +91 -0
- package/src/plugin/Form/Group.tsx +300 -0
- package/src/plugin/Form/Hidden.tsx +56 -0
- package/src/plugin/Form/InputArray.tsx +228 -0
- package/src/plugin/Form/InputCity.tsx +93 -0
- package/src/plugin/Form/InputColor.tsx +123 -0
- package/src/plugin/Form/InputDate.tsx +175 -0
- package/src/plugin/Form/InputDateRange.tsx +225 -0
- package/src/plugin/Form/InputDateTime.tsx +183 -0
- package/src/plugin/Form/InputDateTimeRange.tsx +221 -0
- package/src/plugin/Form/InputEmail.tsx +33 -0
- package/src/plugin/Form/InputExcel.tsx +85 -0
- package/src/plugin/Form/InputFile.tsx +228 -0
- package/src/plugin/Form/InputGroup.tsx +105 -0
- package/src/plugin/Form/InputImage.tsx +277 -0
- package/src/plugin/Form/InputKV.tsx +72 -0
- package/src/plugin/Form/InputMonth.tsx +35 -0
- package/src/plugin/Form/InputMonthRange.tsx +195 -0
- package/src/plugin/Form/InputNumber.tsx +97 -0
- package/src/plugin/Form/InputPassword.tsx +33 -0
- package/src/plugin/Form/InputQuarter.tsx +35 -0
- package/src/plugin/Form/InputQuarterRange.tsx +195 -0
- package/src/plugin/Form/InputRange.tsx +121 -0
- package/src/plugin/Form/InputRating.tsx +78 -0
- package/src/plugin/Form/InputRepeat.tsx +69 -0
- package/src/plugin/Form/InputRichText.tsx +197 -0
- package/src/plugin/Form/InputSubForm.tsx +198 -0
- package/src/plugin/Form/InputTable.tsx +434 -0
- package/src/plugin/Form/InputTag.tsx +81 -0
- package/src/plugin/Form/InputText.tsx +186 -0
- package/src/plugin/Form/InputTime.tsx +95 -0
- package/src/plugin/Form/InputTree.tsx +240 -0
- package/src/plugin/Form/InputURL.tsx +34 -0
- package/src/plugin/Form/InputYear.tsx +35 -0
- package/src/plugin/Form/Item.tsx +325 -0
- package/src/plugin/Form/ListSelect.tsx +84 -0
- package/src/plugin/Form/LocationPicker.tsx +75 -0
- package/src/plugin/Form/MatrixCheckboxes.tsx +147 -0
- package/src/plugin/Form/NestedSelect.tsx +222 -0
- package/src/plugin/Form/Picker.tsx +217 -0
- package/src/plugin/Form/Radios.tsx +130 -0
- package/src/plugin/Form/Select.tsx +216 -0
- package/src/plugin/Form/Static.tsx +335 -0
- package/src/plugin/Form/Switch.tsx +116 -0
- package/src/plugin/Form/TabsTransfer.tsx +270 -0
- package/src/plugin/Form/Textarea.tsx +94 -0
- package/src/plugin/Form/Transfer.tsx +379 -0
- package/src/plugin/Form/TreeSelect.tsx +263 -0
- package/src/plugin/Form/UUID.tsx +48 -0
- package/src/plugin/Grid.tsx +799 -0
- package/src/plugin/HBox.tsx +727 -0
- package/src/plugin/IFrame.tsx +72 -0
- package/src/plugin/Image.tsx +318 -0
- package/src/plugin/Images.tsx +238 -0
- package/src/plugin/Json.tsx +76 -0
- package/src/plugin/Link.tsx +95 -0
- package/src/plugin/List.tsx +278 -0
- package/src/plugin/ListItem.tsx +233 -0
- package/src/plugin/Log.tsx +52 -0
- package/src/plugin/Mapping.tsx +156 -0
- package/src/plugin/Markdown.tsx +47 -0
- package/src/plugin/Nav.tsx +186 -0
- package/src/plugin/Operation.tsx +97 -0
- package/src/plugin/Others/Action.tsx +428 -0
- package/src/plugin/Others/BasicToolbar.tsx +591 -0
- package/src/plugin/Others/DataDebug.tsx +134 -0
- package/src/plugin/Others/TableCell.tsx +480 -0
- package/src/plugin/Others/Unknown.tsx +37 -0
- package/src/plugin/Page.tsx +308 -0
- package/src/plugin/Panel/AvailableRenderers.tsx +41 -0
- package/src/plugin/Panel/Code.tsx +44 -0
- package/src/plugin/Panel/Name.tsx +26 -0
- package/src/plugin/Panel/Outline.tsx +40 -0
- package/src/plugin/Panel.tsx +243 -0
- package/src/plugin/Plain.tsx +91 -0
- package/src/plugin/Progress.tsx +132 -0
- package/src/plugin/Property.tsx +139 -0
- package/src/plugin/QRCode.tsx +98 -0
- package/src/plugin/Reset.tsx +23 -0
- package/src/plugin/Service.tsx +167 -0
- package/src/plugin/Sparkline.tsx +40 -0
- package/src/plugin/Status.tsx +78 -0
- package/src/plugin/Steps.tsx +140 -0
- package/src/plugin/Submit.tsx +23 -0
- package/src/plugin/Table.tsx +440 -0
- package/src/plugin/TableView.tsx +711 -0
- package/src/plugin/Tabs.tsx +364 -0
- package/src/plugin/Tasks.tsx +276 -0
- package/src/plugin/Time.tsx +75 -0
- package/src/plugin/TooltipWrapper.tsx +193 -0
- package/src/plugin/Tpl.tsx +162 -0
- package/src/plugin/Video.tsx +160 -0
- package/src/plugin/WebComponent.tsx +56 -0
- package/src/plugin/Wizard.tsx +743 -0
- package/src/plugin/Wrapper.tsx +107 -0
- package/src/plugin.ts +1046 -0
- package/dist/150a58f3318ca7541ed9.png +0 -0
- package/dist/471adb97c322b226e589.png +0 -0
- package/dist/4de5f42360bc5946c3c2.png +0 -0
- package/dist/4e9968bba3855f088fed.png +0 -0
- package/dist/7f09c38ebc687fea847a.png +0 -0
- 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);
|