amis-editor 4.1.0-beta.1 → 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 +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/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 +1 -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,75 @@
1
+ import {Button, SchemaObject} from 'amis';
2
+ import React from 'react';
3
+ import {registerEditorPlugin} from '../manager';
4
+ import {
5
+ BaseEventContext,
6
+ BasePlugin,
7
+ RegionConfig,
8
+ RendererInfo
9
+ } from '../plugin';
10
+ import {defaultValue, getSchemaTpl} from '../component/schemaTpl';
11
+ import {DatePlugin} from './Date';
12
+
13
+ export class DatetimePlugin extends DatePlugin {
14
+ // 关联渲染器名字
15
+ rendererName = 'datetime';
16
+
17
+ scaffold = {
18
+ type: 'datetime',
19
+ value: Math.round(Date.now() / 1000)
20
+ };
21
+
22
+ name = '日期时间展示';
23
+ isBaseComponent = true;
24
+ previewSchema = {
25
+ ...this.scaffold,
26
+ format: 'YYYY-MM-DD HH:mm:ss',
27
+ value: Math.round(Date.now() / 1000)
28
+ };
29
+ panelBodyCreator = (context: BaseEventContext) => {
30
+ return [
31
+ getSchemaTpl('tabs', [
32
+ {
33
+ title: '常规',
34
+ body: [
35
+ {
36
+ type: 'input-datetime',
37
+ name: 'value',
38
+ label: '日期时间数值'
39
+ },
40
+ {
41
+ type: 'input-text',
42
+ name: 'format',
43
+ label: '显示日期时间格式',
44
+ description: '请参考 moment 中的格式用法。',
45
+ pipeIn: defaultValue('YYYY-MM-DD HH:mm:ss')
46
+ },
47
+ {
48
+ type: 'input-text',
49
+ name: 'valueFormat',
50
+ label: '数据日期格式',
51
+ description: '请参考 moment 中的格式用法。',
52
+ pipeIn: defaultValue('X')
53
+ },
54
+ {
55
+ name: 'placeholder',
56
+ type: 'input-text',
57
+ pipeIn: defaultValue('-'),
58
+ label: '占位符'
59
+ }
60
+ ]
61
+ },
62
+ {
63
+ title: '外观',
64
+ body: [getSchemaTpl('className')]
65
+ },
66
+ {
67
+ title: '显隐',
68
+ body: [getSchemaTpl('ref'), getSchemaTpl('visible')]
69
+ }
70
+ ])
71
+ ];
72
+ };
73
+ }
74
+
75
+ registerEditorPlugin(DatetimePlugin);
@@ -0,0 +1,178 @@
1
+ import {Button, SchemaObject} from 'amis';
2
+ import {RendererConfig} from 'amis/lib/factory';
3
+ import React from 'react';
4
+ import {ContainerWrapper} from '../component/ContainerWrapper';
5
+ import {registerEditorPlugin} from '../manager';
6
+ import {BasePlugin, RegionConfig, RendererInfo} from '../plugin';
7
+ import {defaultValue, getSchemaTpl} from '../component/schemaTpl';
8
+ import {isObject, noop} from '../util';
9
+
10
+ export class DialogPlugin extends BasePlugin {
11
+ // 关联渲染器名字
12
+ rendererName = 'dialog';
13
+ $schema = '/schemas/DialogSchema.json';
14
+
15
+ // 组件名称
16
+ name = '弹框';
17
+ isBaseComponent = true;
18
+ wrapperProps = {
19
+ wrapperComponent: InlineModal,
20
+ onClose: noop,
21
+ show: true
22
+ };
23
+
24
+ regions: Array<RegionConfig> = [
25
+ {
26
+ key: 'body',
27
+ label: '内容区',
28
+ renderMethod: 'renderBody',
29
+ renderMethodOverride: (regions, insertRegion) =>
30
+ function (this: any, ...args: any[]) {
31
+ const info: RendererInfo = this.props.$$editor;
32
+ const dom = this.super(...args);
33
+
34
+ if (info && args[1] === 'body') {
35
+ return insertRegion(this, dom, regions, info, info.plugin.manager);
36
+ }
37
+
38
+ return dom;
39
+ }
40
+ },
41
+ {
42
+ key: 'actions',
43
+ label: '按钮组',
44
+ renderMethod: 'renderFooter',
45
+ wrapperResolve: dom => dom
46
+ }
47
+ ];
48
+
49
+ panelTitle = '弹框';
50
+ panelBody = [
51
+ getSchemaTpl('tabs', [
52
+ {
53
+ title: '常规',
54
+ body: [
55
+ {
56
+ label: '标题',
57
+ type: 'input-text',
58
+ name: 'title'
59
+ },
60
+
61
+ {
62
+ type: 'switch',
63
+ label: '数据映射',
64
+ name: 'data',
65
+ mode: 'inline',
66
+ className: 'block m-b-xs',
67
+ pipeIn: (value: any) => !!value,
68
+ pipeOut: (value: any) => (value ? {'&': '$$'} : null)
69
+ },
70
+
71
+ {
72
+ type: 'tpl',
73
+ visibleOn: '!this.data',
74
+ tpl: '<p class="text-sm text-muted">当没开启数据映射时,弹框中默认会拥有触发打开弹框按钮所在环境的所有数据。</p>'
75
+ },
76
+
77
+ {
78
+ type: 'input-kv',
79
+ syncDefaultValue: false,
80
+ name: 'data',
81
+ visibleOn: 'this.data',
82
+ descriptionClassName: 'help-block text-xs m-b-none',
83
+ description:
84
+ '<p>当开启数据映射时,弹框中的数据只会包含设置的部分,请绑定数据。如:<code>{"a": "\\${a}", "b": 2}</code></p><p>如果希望在默认的基础上定制,请先添加一个 Key 为 `&` Value 为 `\\$$` 作为第一行。</p><div>当值为 <code>__undefined</code>时,表示删除对应的字段,可以结合<code>{"&": "\\$$"}</code>来达到黑名单效果。</div>',
85
+ messages: {
86
+ validateFailed: '数据映射中存在错误,请仔细检查'
87
+ }
88
+ },
89
+
90
+ {
91
+ label: '按 Esc 关闭弹框',
92
+ type: 'switch',
93
+ name: 'closeOnEsc',
94
+ mode: 'inline',
95
+ className: 'block',
96
+ value: false
97
+ },
98
+
99
+ {
100
+ label: '点击弹框外区域关闭弹框',
101
+ type: 'switch',
102
+ name: 'closeOnOutside',
103
+ mode: 'inline',
104
+ className: 'block',
105
+ value: false
106
+ }
107
+ ]
108
+ },
109
+ {
110
+ title: '外观',
111
+ body: [
112
+ {
113
+ label: '尺寸',
114
+ type: 'button-group-select',
115
+ name: 'size',
116
+ size: 'sm',
117
+ className: 'block',
118
+ pipeIn: defaultValue(''),
119
+ options: [
120
+ {
121
+ label: '小',
122
+ value: 'sm'
123
+ },
124
+ {
125
+ label: '默认',
126
+ value: ''
127
+ },
128
+ {
129
+ label: '中',
130
+ value: 'md'
131
+ },
132
+ {
133
+ label: '大',
134
+ value: 'lg'
135
+ },
136
+ {
137
+ label: '超大',
138
+ value: 'xl'
139
+ }
140
+ ]
141
+ },
142
+
143
+ {
144
+ label: '是否显示关闭按钮',
145
+ type: 'switch',
146
+ name: 'showCloseButton',
147
+ mode: 'inline',
148
+ className: 'block',
149
+ value: true
150
+ },
151
+
152
+ getSchemaTpl('className', {
153
+ name: 'headerClassName',
154
+ label: '顶部 CSS 类名'
155
+ }),
156
+
157
+ getSchemaTpl('className', {
158
+ name: 'bodyClassName',
159
+ label: '内容 CSS 类名'
160
+ })
161
+ ]
162
+ }
163
+ ])
164
+ ];
165
+
166
+ buildSubRenderers() {}
167
+ }
168
+
169
+ registerEditorPlugin(DialogPlugin);
170
+
171
+ export class InlineModal extends React.Component<any, any> {
172
+ componentDidMount() {}
173
+
174
+ render() {
175
+ const {children} = this.props;
176
+ return <div className="ae-InlineModel">{children}</div>;
177
+ }
178
+ }
@@ -0,0 +1,36 @@
1
+ import {registerEditorPlugin} from '../manager';
2
+ import {BasePlugin} from '../plugin';
3
+ import {getSchemaTpl} from '../component/schemaTpl';
4
+
5
+ export class DividerPlugin extends BasePlugin {
6
+ // 关联渲染器名字
7
+ rendererName = 'divider';
8
+ $schema = '/schemas/DividerSchema.json';
9
+
10
+ // 组件名称
11
+ name = '分隔线';
12
+ isBaseComponent = true;
13
+ icon = 'fa fa-minus';
14
+ description = '用来展示一个分割线,可用来做视觉上的隔离。';
15
+ scaffold = {
16
+ type: 'divider'
17
+ };
18
+ previewSchema: any = {
19
+ type: 'divider',
20
+ className: 'm-t-none m-b-none'
21
+ };
22
+
23
+ panelTitle = '分隔线';
24
+ panelBody = getSchemaTpl('tabs', [
25
+ {
26
+ title: '外观',
27
+ body: [getSchemaTpl('className')]
28
+ },
29
+ {
30
+ title: '显隐',
31
+ body: [getSchemaTpl('ref'), getSchemaTpl('visible')]
32
+ }
33
+ ]);
34
+ }
35
+
36
+ registerEditorPlugin(DividerPlugin);
@@ -0,0 +1,217 @@
1
+ import {Button, SchemaObject} from 'amis';
2
+ import {RendererConfig} from 'amis/lib/factory';
3
+ import React from 'react';
4
+ import {ContainerWrapper} from '../component/ContainerWrapper';
5
+ import {registerEditorPlugin} from '../manager';
6
+ import {BasePlugin, RegionConfig, RendererInfo} from '../plugin';
7
+ import {defaultValue, getSchemaTpl} from '../component/schemaTpl';
8
+ import {isObject, noop} from '../util';
9
+ import {InlineModal} from './Dialog';
10
+
11
+ export class DrawerPlugin extends BasePlugin {
12
+ // 关联渲染器名字
13
+ rendererName = 'drawer';
14
+ $schema = '/schemas/DrawerSchema.json';
15
+
16
+ // 组件名称
17
+ name = '抽屉式弹框';
18
+ isBaseComponent = true;
19
+ wrapperProps = {
20
+ wrapperComponent: InlineModal,
21
+ onClose: noop,
22
+ resizable: false,
23
+ show: true
24
+ };
25
+
26
+ regions: Array<RegionConfig> = [
27
+ {
28
+ key: 'body',
29
+ label: '内容区',
30
+ renderMethod: 'renderBody',
31
+ renderMethodOverride: (regions, insertRegion) =>
32
+ function (this: any, ...args: any[]) {
33
+ const info: RendererInfo = this.props.$$editor;
34
+ const dom = this.super(...args);
35
+
36
+ if (info && args[1] === 'body') {
37
+ return insertRegion(this, dom, regions, info, info.plugin.manager);
38
+ }
39
+
40
+ return dom;
41
+ }
42
+ },
43
+ {
44
+ key: 'actions',
45
+ label: '按钮组',
46
+ renderMethod: 'renderFooter',
47
+ wrapperResolve: dom => dom
48
+ }
49
+ ];
50
+
51
+ panelTitle = '弹框';
52
+ panelBody = [
53
+ getSchemaTpl('tabs', [
54
+ {
55
+ title: '常规',
56
+ body: [
57
+ {
58
+ label: '标题',
59
+ type: 'input-text',
60
+ name: 'title'
61
+ },
62
+
63
+ // {
64
+ // children: (
65
+ // <Button
66
+ // size="sm"
67
+ // className="m-b-sm"
68
+ // level="info"
69
+ // block
70
+ // onClick={() => this.manager.showInsertPanel('body')}
71
+ // >
72
+ // 新增内容
73
+ // </Button>
74
+ // )
75
+ // },
76
+
77
+ {
78
+ type: 'divider'
79
+ },
80
+
81
+ {
82
+ label: '位置',
83
+ type: 'button-group-select',
84
+ name: 'position',
85
+ value: 'right',
86
+ size: 'sm',
87
+ mode: 'inline',
88
+ className: 'block',
89
+ options: [
90
+ {
91
+ label: '左',
92
+ value: 'left'
93
+ },
94
+ {
95
+ label: '上',
96
+ value: 'top'
97
+ },
98
+ {
99
+ label: '右',
100
+ value: 'right'
101
+ },
102
+ {
103
+ label: '下',
104
+ value: 'bottom'
105
+ }
106
+ ],
107
+ description: '定义弹框从什么位置呼出'
108
+ },
109
+
110
+ {
111
+ type: 'switch',
112
+ label: '数据映射',
113
+ name: 'data',
114
+ mode: 'inline',
115
+ className: 'w-full m-b-xs',
116
+ pipeIn: (value: any) => !!value,
117
+ pipeOut: (value: any) => (value ? {'&': '$$'} : null)
118
+ },
119
+
120
+ {
121
+ type: 'tpl',
122
+ visibleOn: '!this.data',
123
+ tpl: '<p class="text-sm text-muted">当没开启数据映射时,弹框中默认会拥有触发打开弹框按钮所在环境的所有数据。</p>'
124
+ },
125
+
126
+ {
127
+ type: 'input-kv',
128
+ syncDefaultValue: false,
129
+ name: 'data',
130
+ visibleOn: 'this.data',
131
+ descriptionClassName: 'help-block text-xs m-b-none',
132
+ description:
133
+ '<p>当开启数据映射时,弹框中的数据只会包含设置的部分,请绑定数据。如:<code>{"a": "\\${a}", "b": 2}</code></p><p>如果希望在默认的基础上定制,请先添加一个 Key 为 `&` Value 为 `\\$$` 作为第一行。</p><div>当值为 <code>__undefined</code>时,表示删除对应的字段,可以结合<code>{"&": "\\$$"}</code>来达到黑名单效果。</div>'
134
+ },
135
+
136
+ {
137
+ type: 'switch',
138
+ name: 'closeOnOutside',
139
+ label: '点击外部关闭弹框',
140
+ mode: 'inline',
141
+ className: 'block'
142
+ },
143
+
144
+ {
145
+ label: '按 Esc 可关闭?',
146
+ type: 'switch',
147
+ name: 'closeOnEsc',
148
+ mode: 'inline',
149
+ className: 'block'
150
+ }
151
+ ]
152
+ },
153
+ {
154
+ title: '外观',
155
+ body: [
156
+ {
157
+ label: '尺寸',
158
+ type: 'button-group-select',
159
+ name: 'size',
160
+ size: 'sm',
161
+ mode: 'inline',
162
+ className: 'block',
163
+ options: [
164
+ {
165
+ label: '超小',
166
+ value: 'xs'
167
+ },
168
+ {
169
+ label: '小',
170
+ value: 'sm'
171
+ },
172
+ {
173
+ label: '中',
174
+ value: 'md'
175
+ },
176
+ {
177
+ label: '大',
178
+ value: 'lg'
179
+ },
180
+ {
181
+ label: '超大',
182
+ value: 'xl'
183
+ }
184
+ ]
185
+ },
186
+ {
187
+ type: 'switch',
188
+ name: 'overlay',
189
+ label: '是否显示蒙层',
190
+ mode: 'inline',
191
+ className: 'block',
192
+ pipeIn: defaultValue(true)
193
+ },
194
+
195
+ {
196
+ type: 'switch',
197
+ name: 'resizable',
198
+ label: '可拉拽',
199
+ mode: 'inline',
200
+ className: 'block',
201
+ pipeIn: defaultValue(false),
202
+ description: '定义弹框是否可拉拽调整大小'
203
+ },
204
+ getSchemaTpl('className'),
205
+ getSchemaTpl('className', {
206
+ label: 'bodyClassName 类名',
207
+ name: 'bodyClassName'
208
+ })
209
+ ]
210
+ }
211
+ ])
212
+ ];
213
+
214
+ buildSubRenderers() {}
215
+ }
216
+
217
+ registerEditorPlugin(DrawerPlugin);