amis-editor 4.1.0-beta.1 → 4.1.0-beta.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +14 -7
 - package/dist/component/RendererThumb.d.ts +5 -5
 - 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/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/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/.DS_Store +0 -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,270 @@ 
     | 
|
| 
      
 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 TabsTransferPlugin extends BasePlugin {
         
     | 
| 
      
 17 
     | 
    
         
            +
              // 关联渲染器名字
         
     | 
| 
      
 18 
     | 
    
         
            +
              rendererName = 'tabs-transfer';
         
     | 
| 
      
 19 
     | 
    
         
            +
              $schema = '/schemas/TransferControlSchema.json';
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
              // 组件名称
         
     | 
| 
      
 22 
     | 
    
         
            +
              name = '组合穿梭器';
         
     | 
| 
      
 23 
     | 
    
         
            +
              isBaseComponent = true;
         
     | 
| 
      
 24 
     | 
    
         
            +
              icon = 'fa fa-th-list';
         
     | 
| 
      
 25 
     | 
    
         
            +
              description = `组合穿梭器组件`;
         
     | 
| 
      
 26 
     | 
    
         
            +
              docLink = '/amis/zh-CN/components/form/transfer';
         
     | 
| 
      
 27 
     | 
    
         
            +
              tags = ['表单项'];
         
     | 
| 
      
 28 
     | 
    
         
            +
              scaffold = {
         
     | 
| 
      
 29 
     | 
    
         
            +
                label: '组合穿梭器',
         
     | 
| 
      
 30 
     | 
    
         
            +
                type: 'tabs-transfer',
         
     | 
| 
      
 31 
     | 
    
         
            +
                name: 'a',
         
     | 
| 
      
 32 
     | 
    
         
            +
                sortable: true,
         
     | 
| 
      
 33 
     | 
    
         
            +
                searchable: true,
         
     | 
| 
      
 34 
     | 
    
         
            +
                options: [
         
     | 
| 
      
 35 
     | 
    
         
            +
                  {
         
     | 
| 
      
 36 
     | 
    
         
            +
                    label: '成员',
         
     | 
| 
      
 37 
     | 
    
         
            +
                    selectMode: 'tree',
         
     | 
| 
      
 38 
     | 
    
         
            +
                    children: [
         
     | 
| 
      
 39 
     | 
    
         
            +
                      {
         
     | 
| 
      
 40 
     | 
    
         
            +
                        label: '法师',
         
     | 
| 
      
 41 
     | 
    
         
            +
                        children: [
         
     | 
| 
      
 42 
     | 
    
         
            +
                          {
         
     | 
| 
      
 43 
     | 
    
         
            +
                            label: '诸葛亮',
         
     | 
| 
      
 44 
     | 
    
         
            +
                            value: 'zhugeliang'
         
     | 
| 
      
 45 
     | 
    
         
            +
                          }
         
     | 
| 
      
 46 
     | 
    
         
            +
                        ]
         
     | 
| 
      
 47 
     | 
    
         
            +
                      },
         
     | 
| 
      
 48 
     | 
    
         
            +
                      {
         
     | 
| 
      
 49 
     | 
    
         
            +
                        label: '战士',
         
     | 
| 
      
 50 
     | 
    
         
            +
                        children: [
         
     | 
| 
      
 51 
     | 
    
         
            +
                          {
         
     | 
| 
      
 52 
     | 
    
         
            +
                            label: '曹操',
         
     | 
| 
      
 53 
     | 
    
         
            +
                            value: 'caocao'
         
     | 
| 
      
 54 
     | 
    
         
            +
                          },
         
     | 
| 
      
 55 
     | 
    
         
            +
                          {
         
     | 
| 
      
 56 
     | 
    
         
            +
                            label: '钟无艳',
         
     | 
| 
      
 57 
     | 
    
         
            +
                            value: 'zhongwuyan'
         
     | 
| 
      
 58 
     | 
    
         
            +
                          }
         
     | 
| 
      
 59 
     | 
    
         
            +
                        ]
         
     | 
| 
      
 60 
     | 
    
         
            +
                      },
         
     | 
| 
      
 61 
     | 
    
         
            +
                      {
         
     | 
| 
      
 62 
     | 
    
         
            +
                        label: '打野',
         
     | 
| 
      
 63 
     | 
    
         
            +
                        children: [
         
     | 
| 
      
 64 
     | 
    
         
            +
                          {
         
     | 
| 
      
 65 
     | 
    
         
            +
                            label: '李白',
         
     | 
| 
      
 66 
     | 
    
         
            +
                            value: 'libai'
         
     | 
| 
      
 67 
     | 
    
         
            +
                          },
         
     | 
| 
      
 68 
     | 
    
         
            +
                          {
         
     | 
| 
      
 69 
     | 
    
         
            +
                            label: '韩信',
         
     | 
| 
      
 70 
     | 
    
         
            +
                            value: 'hanxin'
         
     | 
| 
      
 71 
     | 
    
         
            +
                          },
         
     | 
| 
      
 72 
     | 
    
         
            +
                          {
         
     | 
| 
      
 73 
     | 
    
         
            +
                            label: '云中君',
         
     | 
| 
      
 74 
     | 
    
         
            +
                            value: 'yunzhongjun'
         
     | 
| 
      
 75 
     | 
    
         
            +
                          }
         
     | 
| 
      
 76 
     | 
    
         
            +
                        ]
         
     | 
| 
      
 77 
     | 
    
         
            +
                      }
         
     | 
| 
      
 78 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 79 
     | 
    
         
            +
                  },
         
     | 
| 
      
 80 
     | 
    
         
            +
                  {
         
     | 
| 
      
 81 
     | 
    
         
            +
                    label: '用户',
         
     | 
| 
      
 82 
     | 
    
         
            +
                    selectMode: 'chained',
         
     | 
| 
      
 83 
     | 
    
         
            +
                    children: [
         
     | 
| 
      
 84 
     | 
    
         
            +
                      {
         
     | 
| 
      
 85 
     | 
    
         
            +
                        label: '法师',
         
     | 
| 
      
 86 
     | 
    
         
            +
                        children: [
         
     | 
| 
      
 87 
     | 
    
         
            +
                          {
         
     | 
| 
      
 88 
     | 
    
         
            +
                            label: '诸葛亮',
         
     | 
| 
      
 89 
     | 
    
         
            +
                            value: 'zhugeliang2'
         
     | 
| 
      
 90 
     | 
    
         
            +
                          }
         
     | 
| 
      
 91 
     | 
    
         
            +
                        ]
         
     | 
| 
      
 92 
     | 
    
         
            +
                      },
         
     | 
| 
      
 93 
     | 
    
         
            +
                      {
         
     | 
| 
      
 94 
     | 
    
         
            +
                        label: '战士',
         
     | 
| 
      
 95 
     | 
    
         
            +
                        children: [
         
     | 
| 
      
 96 
     | 
    
         
            +
                          {
         
     | 
| 
      
 97 
     | 
    
         
            +
                            label: '曹操',
         
     | 
| 
      
 98 
     | 
    
         
            +
                            value: 'caocao2'
         
     | 
| 
      
 99 
     | 
    
         
            +
                          },
         
     | 
| 
      
 100 
     | 
    
         
            +
                          {
         
     | 
| 
      
 101 
     | 
    
         
            +
                            label: '钟无艳',
         
     | 
| 
      
 102 
     | 
    
         
            +
                            value: 'zhongwuyan2'
         
     | 
| 
      
 103 
     | 
    
         
            +
                          }
         
     | 
| 
      
 104 
     | 
    
         
            +
                        ]
         
     | 
| 
      
 105 
     | 
    
         
            +
                      },
         
     | 
| 
      
 106 
     | 
    
         
            +
                      {
         
     | 
| 
      
 107 
     | 
    
         
            +
                        label: '打野',
         
     | 
| 
      
 108 
     | 
    
         
            +
                        children: [
         
     | 
| 
      
 109 
     | 
    
         
            +
                          {
         
     | 
| 
      
 110 
     | 
    
         
            +
                            label: '李白',
         
     | 
| 
      
 111 
     | 
    
         
            +
                            value: 'libai2'
         
     | 
| 
      
 112 
     | 
    
         
            +
                          },
         
     | 
| 
      
 113 
     | 
    
         
            +
                          {
         
     | 
| 
      
 114 
     | 
    
         
            +
                            label: '韩信',
         
     | 
| 
      
 115 
     | 
    
         
            +
                            value: 'hanxin2'
         
     | 
| 
      
 116 
     | 
    
         
            +
                          },
         
     | 
| 
      
 117 
     | 
    
         
            +
                          {
         
     | 
| 
      
 118 
     | 
    
         
            +
                            label: '云中君',
         
     | 
| 
      
 119 
     | 
    
         
            +
                            value: 'yunzhongjun2'
         
     | 
| 
      
 120 
     | 
    
         
            +
                          }
         
     | 
| 
      
 121 
     | 
    
         
            +
                        ]
         
     | 
| 
      
 122 
     | 
    
         
            +
                      }
         
     | 
| 
      
 123 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 124 
     | 
    
         
            +
                  }
         
     | 
| 
      
 125 
     | 
    
         
            +
                ]
         
     | 
| 
      
 126 
     | 
    
         
            +
              };
         
     | 
| 
      
 127 
     | 
    
         
            +
              previewSchema: any = {
         
     | 
| 
      
 128 
     | 
    
         
            +
                type: 'form',
         
     | 
| 
      
 129 
     | 
    
         
            +
                className: 'text-left',
         
     | 
| 
      
 130 
     | 
    
         
            +
                mode: 'horizontal',
         
     | 
| 
      
 131 
     | 
    
         
            +
                wrapWithPanel: false,
         
     | 
| 
      
 132 
     | 
    
         
            +
                body: [
         
     | 
| 
      
 133 
     | 
    
         
            +
                  {
         
     | 
| 
      
 134 
     | 
    
         
            +
                    ...this.scaffold
         
     | 
| 
      
 135 
     | 
    
         
            +
                  }
         
     | 
| 
      
 136 
     | 
    
         
            +
                ]
         
     | 
| 
      
 137 
     | 
    
         
            +
              };
         
     | 
| 
      
 138 
     | 
    
         
            +
             
     | 
| 
      
 139 
     | 
    
         
            +
              panelTitle = '组合穿梭器';
         
     | 
| 
      
 140 
     | 
    
         
            +
              panelDefinitions = {
         
     | 
| 
      
 141 
     | 
    
         
            +
                options: {
         
     | 
| 
      
 142 
     | 
    
         
            +
                  label: '选项 Options',
         
     | 
| 
      
 143 
     | 
    
         
            +
                  name: 'options',
         
     | 
| 
      
 144 
     | 
    
         
            +
                  type: 'combo',
         
     | 
| 
      
 145 
     | 
    
         
            +
                  multiple: true,
         
     | 
| 
      
 146 
     | 
    
         
            +
                  multiLine: true,
         
     | 
| 
      
 147 
     | 
    
         
            +
                  draggable: true,
         
     | 
| 
      
 148 
     | 
    
         
            +
                  addButtonText: '新增选项',
         
     | 
| 
      
 149 
     | 
    
         
            +
                  scaffold: {
         
     | 
| 
      
 150 
     | 
    
         
            +
                    label: '',
         
     | 
| 
      
 151 
     | 
    
         
            +
                    value: ''
         
     | 
| 
      
 152 
     | 
    
         
            +
                  },
         
     | 
| 
      
 153 
     | 
    
         
            +
                  items: [
         
     | 
| 
      
 154 
     | 
    
         
            +
                    {
         
     | 
| 
      
 155 
     | 
    
         
            +
                      type: 'group',
         
     | 
| 
      
 156 
     | 
    
         
            +
                      body: [
         
     | 
| 
      
 157 
     | 
    
         
            +
                        {
         
     | 
| 
      
 158 
     | 
    
         
            +
                          type: 'input-text',
         
     | 
| 
      
 159 
     | 
    
         
            +
                          name: 'label',
         
     | 
| 
      
 160 
     | 
    
         
            +
                          placeholder: '名称',
         
     | 
| 
      
 161 
     | 
    
         
            +
                          required: true
         
     | 
| 
      
 162 
     | 
    
         
            +
                        },
         
     | 
| 
      
 163 
     | 
    
         
            +
             
     | 
| 
      
 164 
     | 
    
         
            +
                        {
         
     | 
| 
      
 165 
     | 
    
         
            +
                          type: 'input-text',
         
     | 
| 
      
 166 
     | 
    
         
            +
                          name: 'value',
         
     | 
| 
      
 167 
     | 
    
         
            +
                          placeholder: '值',
         
     | 
| 
      
 168 
     | 
    
         
            +
                          unique: true
         
     | 
| 
      
 169 
     | 
    
         
            +
                        }
         
     | 
| 
      
 170 
     | 
    
         
            +
                      ]
         
     | 
| 
      
 171 
     | 
    
         
            +
                    },
         
     | 
| 
      
 172 
     | 
    
         
            +
                    {
         
     | 
| 
      
 173 
     | 
    
         
            +
                      $ref: 'options',
         
     | 
| 
      
 174 
     | 
    
         
            +
                      label: '子选项',
         
     | 
| 
      
 175 
     | 
    
         
            +
                      name: 'children',
         
     | 
| 
      
 176 
     | 
    
         
            +
                      addButtonText: '新增子选项'
         
     | 
| 
      
 177 
     | 
    
         
            +
                    }
         
     | 
| 
      
 178 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 179 
     | 
    
         
            +
                }
         
     | 
| 
      
 180 
     | 
    
         
            +
              };
         
     | 
| 
      
 181 
     | 
    
         
            +
             
     | 
| 
      
 182 
     | 
    
         
            +
              panelBody = [
         
     | 
| 
      
 183 
     | 
    
         
            +
                getSchemaTpl('switchDefaultValue'),
         
     | 
| 
      
 184 
     | 
    
         
            +
             
     | 
| 
      
 185 
     | 
    
         
            +
                {
         
     | 
| 
      
 186 
     | 
    
         
            +
                  type: 'select',
         
     | 
| 
      
 187 
     | 
    
         
            +
                  name: 'value',
         
     | 
| 
      
 188 
     | 
    
         
            +
                  label: '默认值',
         
     | 
| 
      
 189 
     | 
    
         
            +
                  source: '${options}',
         
     | 
| 
      
 190 
     | 
    
         
            +
                  multiple: true,
         
     | 
| 
      
 191 
     | 
    
         
            +
                  visibleOn: 'typeof this.value !== "undefined"'
         
     | 
| 
      
 192 
     | 
    
         
            +
                },
         
     | 
| 
      
 193 
     | 
    
         
            +
             
     | 
| 
      
 194 
     | 
    
         
            +
                {
         
     | 
| 
      
 195 
     | 
    
         
            +
                  label: '可检索',
         
     | 
| 
      
 196 
     | 
    
         
            +
                  name: 'searchable',
         
     | 
| 
      
 197 
     | 
    
         
            +
                  type: 'switch',
         
     | 
| 
      
 198 
     | 
    
         
            +
                  mode: 'inline',
         
     | 
| 
      
 199 
     | 
    
         
            +
                  className: 'w-full'
         
     | 
| 
      
 200 
     | 
    
         
            +
                },
         
     | 
| 
      
 201 
     | 
    
         
            +
             
     | 
| 
      
 202 
     | 
    
         
            +
                getSchemaTpl('api', {
         
     | 
| 
      
 203 
     | 
    
         
            +
                  label: '检索接口',
         
     | 
| 
      
 204 
     | 
    
         
            +
                  name: 'searchApi'
         
     | 
| 
      
 205 
     | 
    
         
            +
                }),
         
     | 
| 
      
 206 
     | 
    
         
            +
             
     | 
| 
      
 207 
     | 
    
         
            +
                {
         
     | 
| 
      
 208 
     | 
    
         
            +
                  label: '查询时勾选展示模式',
         
     | 
| 
      
 209 
     | 
    
         
            +
                  name: 'searchResultMode',
         
     | 
| 
      
 210 
     | 
    
         
            +
                  type: 'select',
         
     | 
| 
      
 211 
     | 
    
         
            +
                  mode: 'inline',
         
     | 
| 
      
 212 
     | 
    
         
            +
                  className: 'w-full',
         
     | 
| 
      
 213 
     | 
    
         
            +
                  options: [
         
     | 
| 
      
 214 
     | 
    
         
            +
                    {
         
     | 
| 
      
 215 
     | 
    
         
            +
                      label: '列表形式',
         
     | 
| 
      
 216 
     | 
    
         
            +
                      value: 'list'
         
     | 
| 
      
 217 
     | 
    
         
            +
                    },
         
     | 
| 
      
 218 
     | 
    
         
            +
                    {
         
     | 
| 
      
 219 
     | 
    
         
            +
                      label: '表格形式',
         
     | 
| 
      
 220 
     | 
    
         
            +
                      value: 'table'
         
     | 
| 
      
 221 
     | 
    
         
            +
                    },
         
     | 
| 
      
 222 
     | 
    
         
            +
                    {
         
     | 
| 
      
 223 
     | 
    
         
            +
                      label: '树形选择形式',
         
     | 
| 
      
 224 
     | 
    
         
            +
                      value: 'tree'
         
     | 
| 
      
 225 
     | 
    
         
            +
                    },
         
     | 
| 
      
 226 
     | 
    
         
            +
                    {
         
     | 
| 
      
 227 
     | 
    
         
            +
                      label: '级联选择形式',
         
     | 
| 
      
 228 
     | 
    
         
            +
                      value: 'chained'
         
     | 
| 
      
 229 
     | 
    
         
            +
                    }
         
     | 
| 
      
 230 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 231 
     | 
    
         
            +
                },
         
     | 
| 
      
 232 
     | 
    
         
            +
             
     | 
| 
      
 233 
     | 
    
         
            +
                {
         
     | 
| 
      
 234 
     | 
    
         
            +
                  label: '可排序',
         
     | 
| 
      
 235 
     | 
    
         
            +
                  name: 'sortable',
         
     | 
| 
      
 236 
     | 
    
         
            +
                  type: 'switch',
         
     | 
| 
      
 237 
     | 
    
         
            +
                  mode: 'inline',
         
     | 
| 
      
 238 
     | 
    
         
            +
                  className: 'w-full'
         
     | 
| 
      
 239 
     | 
    
         
            +
                },
         
     | 
| 
      
 240 
     | 
    
         
            +
             
     | 
| 
      
 241 
     | 
    
         
            +
                {
         
     | 
| 
      
 242 
     | 
    
         
            +
                  label: '左侧的标题文字',
         
     | 
| 
      
 243 
     | 
    
         
            +
                  name: 'selectTitle',
         
     | 
| 
      
 244 
     | 
    
         
            +
                  type: 'input-text'
         
     | 
| 
      
 245 
     | 
    
         
            +
                },
         
     | 
| 
      
 246 
     | 
    
         
            +
             
     | 
| 
      
 247 
     | 
    
         
            +
                {
         
     | 
| 
      
 248 
     | 
    
         
            +
                  label: '右侧结果的标题文字',
         
     | 
| 
      
 249 
     | 
    
         
            +
                  name: 'resultTitle',
         
     | 
| 
      
 250 
     | 
    
         
            +
                  type: 'input-text'
         
     | 
| 
      
 251 
     | 
    
         
            +
                },
         
     | 
| 
      
 252 
     | 
    
         
            +
             
     | 
| 
      
 253 
     | 
    
         
            +
                getSchemaTpl('fieldSet', {
         
     | 
| 
      
 254 
     | 
    
         
            +
                  title: '选项',
         
     | 
| 
      
 255 
     | 
    
         
            +
                  body: [
         
     | 
| 
      
 256 
     | 
    
         
            +
                    {
         
     | 
| 
      
 257 
     | 
    
         
            +
                      $ref: 'options',
         
     | 
| 
      
 258 
     | 
    
         
            +
                      name: 'options'
         
     | 
| 
      
 259 
     | 
    
         
            +
                    },
         
     | 
| 
      
 260 
     | 
    
         
            +
                    getSchemaTpl('source'),
         
     | 
| 
      
 261 
     | 
    
         
            +
                    getSchemaTpl('joinValues'),
         
     | 
| 
      
 262 
     | 
    
         
            +
                    getSchemaTpl('delimiter'),
         
     | 
| 
      
 263 
     | 
    
         
            +
                    getSchemaTpl('extractValue'),
         
     | 
| 
      
 264 
     | 
    
         
            +
                    getSchemaTpl('autoFill')
         
     | 
| 
      
 265 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 266 
     | 
    
         
            +
                })
         
     | 
| 
      
 267 
     | 
    
         
            +
              ];
         
     | 
| 
      
 268 
     | 
    
         
            +
            }
         
     | 
| 
      
 269 
     | 
    
         
            +
             
     | 
| 
      
 270 
     | 
    
         
            +
            registerEditorPlugin(TabsTransferPlugin);
         
     | 
| 
         @@ -0,0 +1,94 @@ 
     | 
|
| 
      
 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 TextareaControlPlugin extends BasePlugin {
         
     | 
| 
      
 17 
     | 
    
         
            +
              // 关联渲染器名字
         
     | 
| 
      
 18 
     | 
    
         
            +
              rendererName = 'textarea';
         
     | 
| 
      
 19 
     | 
    
         
            +
              $schema = '/schemas/TextareaControlSchema.json';
         
     | 
| 
      
 20 
     | 
    
         
            +
              order = -490;
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
              // 组件名称
         
     | 
| 
      
 23 
     | 
    
         
            +
              name = '多行文本框';
         
     | 
| 
      
 24 
     | 
    
         
            +
              isBaseComponent = true;
         
     | 
| 
      
 25 
     | 
    
         
            +
              icon = 'fa fa-paragraph';
         
     | 
| 
      
 26 
     | 
    
         
            +
              description = `支持换行输入`;
         
     | 
| 
      
 27 
     | 
    
         
            +
              docLink = '/amis/zh-CN/components/form/textarea';
         
     | 
| 
      
 28 
     | 
    
         
            +
              tags = ['表单项'];
         
     | 
| 
      
 29 
     | 
    
         
            +
              scaffold = {
         
     | 
| 
      
 30 
     | 
    
         
            +
                type: 'textarea',
         
     | 
| 
      
 31 
     | 
    
         
            +
                label: '多行文本',
         
     | 
| 
      
 32 
     | 
    
         
            +
                name: 'textarea'
         
     | 
| 
      
 33 
     | 
    
         
            +
              };
         
     | 
| 
      
 34 
     | 
    
         
            +
              previewSchema: any = {
         
     | 
| 
      
 35 
     | 
    
         
            +
                type: 'form',
         
     | 
| 
      
 36 
     | 
    
         
            +
                className: 'text-left',
         
     | 
| 
      
 37 
     | 
    
         
            +
                wrapWithPanel: false,
         
     | 
| 
      
 38 
     | 
    
         
            +
                mode: 'horizontal',
         
     | 
| 
      
 39 
     | 
    
         
            +
                body: {
         
     | 
| 
      
 40 
     | 
    
         
            +
                  ...this.scaffold
         
     | 
| 
      
 41 
     | 
    
         
            +
                }
         
     | 
| 
      
 42 
     | 
    
         
            +
              };
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
              panelTitle = '多行文本';
         
     | 
| 
      
 45 
     | 
    
         
            +
              panelBody = [
         
     | 
| 
      
 46 
     | 
    
         
            +
                getSchemaTpl('switchDefaultValue'),
         
     | 
| 
      
 47 
     | 
    
         
            +
                {
         
     | 
| 
      
 48 
     | 
    
         
            +
                  type: 'textarea',
         
     | 
| 
      
 49 
     | 
    
         
            +
                  name: 'value',
         
     | 
| 
      
 50 
     | 
    
         
            +
                  label: '默认值',
         
     | 
| 
      
 51 
     | 
    
         
            +
                  visibleOn: 'typeof this.value !== "undefined"'
         
     | 
| 
      
 52 
     | 
    
         
            +
                },
         
     | 
| 
      
 53 
     | 
    
         
            +
                {
         
     | 
| 
      
 54 
     | 
    
         
            +
                  type: 'input-number',
         
     | 
| 
      
 55 
     | 
    
         
            +
                  name: 'minRows',
         
     | 
| 
      
 56 
     | 
    
         
            +
                  value: 3,
         
     | 
| 
      
 57 
     | 
    
         
            +
                  label: '最小行数'
         
     | 
| 
      
 58 
     | 
    
         
            +
                },
         
     | 
| 
      
 59 
     | 
    
         
            +
                {
         
     | 
| 
      
 60 
     | 
    
         
            +
                  type: 'input-number',
         
     | 
| 
      
 61 
     | 
    
         
            +
                  name: 'maxRows',
         
     | 
| 
      
 62 
     | 
    
         
            +
                  value: 20,
         
     | 
| 
      
 63 
     | 
    
         
            +
                  label: '最大行数'
         
     | 
| 
      
 64 
     | 
    
         
            +
                },
         
     | 
| 
      
 65 
     | 
    
         
            +
                {
         
     | 
| 
      
 66 
     | 
    
         
            +
                  type: 'input-number',
         
     | 
| 
      
 67 
     | 
    
         
            +
                  name: 'minLength',
         
     | 
| 
      
 68 
     | 
    
         
            +
                  value: 5,
         
     | 
| 
      
 69 
     | 
    
         
            +
                  label: '最小字数限制'
         
     | 
| 
      
 70 
     | 
    
         
            +
                },
         
     | 
| 
      
 71 
     | 
    
         
            +
                {
         
     | 
| 
      
 72 
     | 
    
         
            +
                  type: 'input-number',
         
     | 
| 
      
 73 
     | 
    
         
            +
                  name: 'maxLength',
         
     | 
| 
      
 74 
     | 
    
         
            +
                  value: 120,
         
     | 
| 
      
 75 
     | 
    
         
            +
                  label: '最大字数限制'
         
     | 
| 
      
 76 
     | 
    
         
            +
                },
         
     | 
| 
      
 77 
     | 
    
         
            +
                getSchemaTpl('showCounter'),
         
     | 
| 
      
 78 
     | 
    
         
            +
                {
         
     | 
| 
      
 79 
     | 
    
         
            +
                  type: 'switch',
         
     | 
| 
      
 80 
     | 
    
         
            +
                  name: 'readOnly',
         
     | 
| 
      
 81 
     | 
    
         
            +
                  label: '是否只读'
         
     | 
| 
      
 82 
     | 
    
         
            +
                },
         
     | 
| 
      
 83 
     | 
    
         
            +
                {
         
     | 
| 
      
 84 
     | 
    
         
            +
                  type: 'switch',
         
     | 
| 
      
 85 
     | 
    
         
            +
                  name: 'trimContents',
         
     | 
| 
      
 86 
     | 
    
         
            +
                  label: '去除首尾空白',
         
     | 
| 
      
 87 
     | 
    
         
            +
                  mode: 'inline',
         
     | 
| 
      
 88 
     | 
    
         
            +
                  className: 'w-full',
         
     | 
| 
      
 89 
     | 
    
         
            +
                  description: '开启后,将不允许用户输入前后空格'
         
     | 
| 
      
 90 
     | 
    
         
            +
                }
         
     | 
| 
      
 91 
     | 
    
         
            +
              ];
         
     | 
| 
      
 92 
     | 
    
         
            +
            }
         
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
            registerEditorPlugin(TextareaControlPlugin);
         
     |