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.
- package/dist/component/Breadcrumb.d.ts +23 -2
- package/dist/component/ClassNameControl.d.ts +1 -1
- package/dist/component/Control/APIControl.d.ts +2 -2
- package/dist/component/Control/OptionControl.d.ts +3 -3
- package/dist/component/Control/PopoverEdit.d.ts +4 -4
- package/dist/component/Control/ValidationControl.d.ts +1 -1
- package/dist/component/Editor.d.ts +20 -1
- package/dist/component/IFramePreview.d.ts +2 -1
- package/dist/component/NodeWrapper.d.ts +1 -1
- package/dist/component/Panel/RenderersPanel.d.ts +1 -2
- package/dist/component/Preview.d.ts +3 -1
- package/dist/component/RegionWrapper.d.ts +4 -0
- package/dist/component/ScaffoldModal.d.ts +1 -1
- package/dist/component/VRenderer.d.ts +4 -0
- package/dist/component/base/InputComponentName.d.ts +1 -1
- 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/component/base/ShortcutKey.d.ts +23 -0
- package/dist/env.d.ts +1 -1
- package/dist/exports.min.js +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.min.js +1 -1
- package/dist/manager.d.ts +16 -4
- package/dist/plugin/Alert.d.ts +1 -1
- package/dist/plugin/Button.d.ts +1 -1
- package/dist/plugin/Card.d.ts +1 -0
- package/dist/plugin/Cards.d.ts +2 -1
- 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 +40 -0
- package/dist/plugin/Dialog.d.ts +1 -1
- package/dist/plugin/Drawer.d.ts +1 -1
- package/dist/plugin/DropDownButton.d.ts +1 -1
- package/dist/plugin/Each.d.ts +1 -1
- 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/Formula.d.ts +3 -3
- package/dist/plugin/Form/InputURL.d.ts +1 -0
- package/dist/plugin/Form/Switch.d.ts +2 -0
- package/dist/plugin/Grid.d.ts +1 -0
- package/dist/plugin/HBox.d.ts +1 -0
- package/dist/plugin/IFrame.d.ts +3 -3
- package/dist/plugin/Json.d.ts +1 -0
- package/dist/plugin/List.d.ts +2 -1
- 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/Page.d.ts +1 -1
- 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/Table.d.ts +1 -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 +8 -7
- package/dist/store/editor.d.ts +58 -22
- package/dist/store/node.d.ts +6 -0
- package/dist/style.css +1 -1
- package/dist/util.d.ts +1 -1
- package/package.json +9 -3
- package/src/component/schemaTpl.tsx +2157 -0
- package/src/plugin/Alert.tsx +87 -0
- package/src/plugin/AnchorNav.tsx +233 -0
- package/src/plugin/Audio.tsx +154 -0
- package/src/plugin/Avatar.tsx +77 -0
- package/src/plugin/Breadcrumb.tsx +107 -0
- package/src/plugin/Button.tsx +281 -0
- package/src/plugin/ButtonGroup.tsx +85 -0
- package/src/plugin/ButtonToolbar.tsx +87 -0
- package/src/plugin/CRUD.tsx +1835 -0
- package/src/plugin/Card.tsx +290 -0
- package/src/plugin/Cards.tsx +318 -0
- package/src/plugin/Carousel.tsx +377 -0
- package/src/plugin/Chart.tsx +218 -0
- package/src/plugin/CodeView.tsx +60 -0
- package/src/plugin/Collapse.tsx +136 -0
- package/src/plugin/CollapseGroup.tsx +167 -0
- package/src/plugin/Container.tsx +40 -0
- package/src/plugin/Custom.tsx +128 -0
- package/src/plugin/CustomRegion.tsx +156 -0
- package/src/plugin/Date.tsx +74 -0
- package/src/plugin/Datetime.tsx +68 -0
- package/src/plugin/Dialog.tsx +176 -0
- package/src/plugin/Divider.tsx +36 -0
- package/src/plugin/Drawer.tsx +214 -0
- package/src/plugin/DropDownButton.tsx +235 -0
- package/src/plugin/Each.tsx +150 -0
- package/src/plugin/ErrorRenderer.tsx +15 -0
- package/src/plugin/Flex.tsx +151 -0
- package/src/plugin/Form/ButtonGroupSelect.tsx +75 -0
- package/src/plugin/Form/ButtonToolbar.tsx +110 -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 +81 -0
- package/src/plugin/Form/Combo.tsx +582 -0
- package/src/plugin/Form/ConditionBuilder.tsx +315 -0
- package/src/plugin/Form/Control.tsx +139 -0
- package/src/plugin/Form/DiffEditor.tsx +111 -0
- package/src/plugin/Form/FieldSet.tsx +163 -0
- package/src/plugin/Form/Form.tsx +687 -0
- package/src/plugin/Form/Formula.tsx +79 -0
- package/src/plugin/Form/Group.tsx +295 -0
- package/src/plugin/Form/Hidden.tsx +44 -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 +221 -0
- package/src/plugin/Form/InputGroup.tsx +96 -0
- package/src/plugin/Form/InputImage.tsx +266 -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 +89 -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 +57 -0
- package/src/plugin/Form/InputRichText.tsx +186 -0
- package/src/plugin/Form/InputSubForm.tsx +189 -0
- package/src/plugin/Form/InputTable.tsx +434 -0
- package/src/plugin/Form/InputTag.tsx +70 -0
- package/src/plugin/Form/InputText.tsx +186 -0
- package/src/plugin/Form/InputTime.tsx +85 -0
- package/src/plugin/Form/InputTree.tsx +229 -0
- package/src/plugin/Form/InputURL.tsx +34 -0
- package/src/plugin/Form/InputYear.tsx +35 -0
- package/src/plugin/Form/Item.tsx +327 -0
- package/src/plugin/Form/ListSelect.tsx +73 -0
- package/src/plugin/Form/LocationPicker.tsx +62 -0
- package/src/plugin/Form/MatrixCheckboxes.tsx +136 -0
- package/src/plugin/Form/NestedSelect.tsx +211 -0
- package/src/plugin/Form/Picker.tsx +209 -0
- package/src/plugin/Form/Radios.tsx +119 -0
- package/src/plugin/Form/Select.tsx +233 -0
- package/src/plugin/Form/Static.tsx +322 -0
- package/src/plugin/Form/Switch.tsx +107 -0
- package/src/plugin/Form/TabsTransfer.tsx +259 -0
- package/src/plugin/Form/Textarea.tsx +83 -0
- package/src/plugin/Form/Transfer.tsx +368 -0
- package/src/plugin/Form/TreeSelect.tsx +263 -0
- package/src/plugin/Form/UUID.tsx +48 -0
- package/src/plugin/Grid.tsx +798 -0
- package/src/plugin/HBox.tsx +727 -0
- package/src/plugin/IFrame.tsx +70 -0
- package/src/plugin/Image.tsx +314 -0
- package/src/plugin/Images.tsx +231 -0
- package/src/plugin/Json.tsx +69 -0
- package/src/plugin/Link.tsx +93 -0
- package/src/plugin/List.tsx +278 -0
- package/src/plugin/ListItem.tsx +229 -0
- package/src/plugin/Log.tsx +52 -0
- package/src/plugin/Mapping.tsx +149 -0
- package/src/plugin/Markdown.tsx +47 -0
- package/src/plugin/Nav.tsx +184 -0
- package/src/plugin/Operation.tsx +95 -0
- package/src/plugin/Others/Action.tsx +426 -0
- package/src/plugin/Others/BasicToolbar.tsx +585 -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 +306 -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 +84 -0
- package/src/plugin/Progress.tsx +125 -0
- package/src/plugin/Property.tsx +139 -0
- package/src/plugin/QRCode.tsx +96 -0
- package/src/plugin/Reset.tsx +23 -0
- package/src/plugin/Service.tsx +162 -0
- package/src/plugin/Sparkline.tsx +40 -0
- package/src/plugin/Status.tsx +76 -0
- package/src/plugin/Steps.tsx +128 -0
- package/src/plugin/Submit.tsx +23 -0
- package/src/plugin/Table.tsx +428 -0
- package/src/plugin/TableView.tsx +709 -0
- package/src/plugin/Tabs.tsx +362 -0
- package/src/plugin/Tasks.tsx +274 -0
- package/src/plugin/Time.tsx +68 -0
- package/src/plugin/TooltipWrapper.tsx +193 -0
- package/src/plugin/Tpl.tsx +158 -0
- package/src/plugin/Video.tsx +158 -0
- package/src/plugin/WebComponent.tsx +53 -0
- package/src/plugin/Wizard.tsx +740 -0
- package/src/plugin/Wrapper.tsx +107 -0
- package/src/plugin.ts +1050 -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,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);
|