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,93 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import {
         
     | 
| 
      
 2 
     | 
    
         
            +
              defaultValue,
         
     | 
| 
      
 3 
     | 
    
         
            +
              getSchemaTpl,
         
     | 
| 
      
 4 
     | 
    
         
            +
              valuePipeOut
         
     | 
| 
      
 5 
     | 
    
         
            +
            } from '../../component/schemaTpl';
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {registerEditorPlugin} from '../../manager';
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {
         
     | 
| 
      
 8 
     | 
    
         
            +
              BasePlugin,
         
     | 
| 
      
 9 
     | 
    
         
            +
              BasicSubRenderInfo,
         
     | 
| 
      
 10 
     | 
    
         
            +
              RendererEventContext,
         
     | 
| 
      
 11 
     | 
    
         
            +
              SubRendererInfo
         
     | 
| 
      
 12 
     | 
    
         
            +
            } from '../../plugin';
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            export class CityControlPlugin extends BasePlugin {
         
     | 
| 
      
 15 
     | 
    
         
            +
              // 关联渲染器名字
         
     | 
| 
      
 16 
     | 
    
         
            +
              rendererName = 'input-city';
         
     | 
| 
      
 17 
     | 
    
         
            +
              $schema = '/schemas/CityControlSchema.json';
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              // 组件名称
         
     | 
| 
      
 20 
     | 
    
         
            +
              name = '城市选择';
         
     | 
| 
      
 21 
     | 
    
         
            +
              isBaseComponent = true;
         
     | 
| 
      
 22 
     | 
    
         
            +
              icon = 'fa fa-building-o';
         
     | 
| 
      
 23 
     | 
    
         
            +
              description = '可配置是否选择区域或者城市';
         
     | 
| 
      
 24 
     | 
    
         
            +
              docLink = '/amis/zh-CN/components/form/input-city';
         
     | 
| 
      
 25 
     | 
    
         
            +
              tags = ['表单项'];
         
     | 
| 
      
 26 
     | 
    
         
            +
              scaffold = {
         
     | 
| 
      
 27 
     | 
    
         
            +
                type: 'input-city',
         
     | 
| 
      
 28 
     | 
    
         
            +
                label: '城市选择',
         
     | 
| 
      
 29 
     | 
    
         
            +
                name: 'city'
         
     | 
| 
      
 30 
     | 
    
         
            +
              };
         
     | 
| 
      
 31 
     | 
    
         
            +
              previewSchema: any = {
         
     | 
| 
      
 32 
     | 
    
         
            +
                type: 'form',
         
     | 
| 
      
 33 
     | 
    
         
            +
                className: 'text-left',
         
     | 
| 
      
 34 
     | 
    
         
            +
                wrapWithPanel: false,
         
     | 
| 
      
 35 
     | 
    
         
            +
                mode: 'horizontal',
         
     | 
| 
      
 36 
     | 
    
         
            +
                body: [
         
     | 
| 
      
 37 
     | 
    
         
            +
                  {
         
     | 
| 
      
 38 
     | 
    
         
            +
                    ...this.scaffold
         
     | 
| 
      
 39 
     | 
    
         
            +
                  }
         
     | 
| 
      
 40 
     | 
    
         
            +
                ]
         
     | 
| 
      
 41 
     | 
    
         
            +
              };
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
              panelTitle = '城市选择';
         
     | 
| 
      
 44 
     | 
    
         
            +
              panelBody = [
         
     | 
| 
      
 45 
     | 
    
         
            +
                {
         
     | 
| 
      
 46 
     | 
    
         
            +
                  type: 'switch',
         
     | 
| 
      
 47 
     | 
    
         
            +
                  name: 'allowDistrict',
         
     | 
| 
      
 48 
     | 
    
         
            +
                  label: '允许选择区域',
         
     | 
| 
      
 49 
     | 
    
         
            +
                  mode: 'inline',
         
     | 
| 
      
 50 
     | 
    
         
            +
                  className: 'w-full',
         
     | 
| 
      
 51 
     | 
    
         
            +
                  pipeIn: defaultValue(true)
         
     | 
| 
      
 52 
     | 
    
         
            +
                },
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
                {
         
     | 
| 
      
 55 
     | 
    
         
            +
                  type: 'switch',
         
     | 
| 
      
 56 
     | 
    
         
            +
                  name: 'allowCity',
         
     | 
| 
      
 57 
     | 
    
         
            +
                  label: '允许选择城市',
         
     | 
| 
      
 58 
     | 
    
         
            +
                  mode: 'inline',
         
     | 
| 
      
 59 
     | 
    
         
            +
                  className: 'w-full',
         
     | 
| 
      
 60 
     | 
    
         
            +
                  pipeIn: defaultValue(true)
         
     | 
| 
      
 61 
     | 
    
         
            +
                },
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
                getSchemaTpl('switchDefaultValue'),
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
                {
         
     | 
| 
      
 66 
     | 
    
         
            +
                  name: 'value',
         
     | 
| 
      
 67 
     | 
    
         
            +
                  type: 'input-city',
         
     | 
| 
      
 68 
     | 
    
         
            +
                  label: '默认值',
         
     | 
| 
      
 69 
     | 
    
         
            +
                  visibleOn: 'typeof data.value !== "undefined"',
         
     | 
| 
      
 70 
     | 
    
         
            +
                  validations: 'isNumeric',
         
     | 
| 
      
 71 
     | 
    
         
            +
                  labelRemark: {
         
     | 
| 
      
 72 
     | 
    
         
            +
                    trigger: 'click',
         
     | 
| 
      
 73 
     | 
    
         
            +
                    className: 'm-l-xs',
         
     | 
| 
      
 74 
     | 
    
         
            +
                    rootClose: true,
         
     | 
| 
      
 75 
     | 
    
         
            +
                    content: '城市编码',
         
     | 
| 
      
 76 
     | 
    
         
            +
                    placement: 'left'
         
     | 
| 
      
 77 
     | 
    
         
            +
                  }
         
     | 
| 
      
 78 
     | 
    
         
            +
                },
         
     | 
| 
      
 79 
     | 
    
         
            +
             
     | 
| 
      
 80 
     | 
    
         
            +
                {
         
     | 
| 
      
 81 
     | 
    
         
            +
                  type: 'switch',
         
     | 
| 
      
 82 
     | 
    
         
            +
                  name: 'searchable',
         
     | 
| 
      
 83 
     | 
    
         
            +
                  label: '是否出搜索框',
         
     | 
| 
      
 84 
     | 
    
         
            +
                  mode: 'inline',
         
     | 
| 
      
 85 
     | 
    
         
            +
                  className: 'w-full',
         
     | 
| 
      
 86 
     | 
    
         
            +
                  pipeIn: defaultValue(false)
         
     | 
| 
      
 87 
     | 
    
         
            +
                },
         
     | 
| 
      
 88 
     | 
    
         
            +
             
     | 
| 
      
 89 
     | 
    
         
            +
                getSchemaTpl('extractValue')
         
     | 
| 
      
 90 
     | 
    
         
            +
              ];
         
     | 
| 
      
 91 
     | 
    
         
            +
            }
         
     | 
| 
      
 92 
     | 
    
         
            +
             
     | 
| 
      
 93 
     | 
    
         
            +
            registerEditorPlugin(CityControlPlugin);
         
     | 
| 
         @@ -0,0 +1,123 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import {
         
     | 
| 
      
 2 
     | 
    
         
            +
              defaultValue,
         
     | 
| 
      
 3 
     | 
    
         
            +
              getSchemaTpl,
         
     | 
| 
      
 4 
     | 
    
         
            +
              valuePipeOut
         
     | 
| 
      
 5 
     | 
    
         
            +
            } from '../../component/schemaTpl';
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {registerEditorPlugin} from '../../manager';
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {
         
     | 
| 
      
 8 
     | 
    
         
            +
              BasePlugin,
         
     | 
| 
      
 9 
     | 
    
         
            +
              BasicSubRenderInfo,
         
     | 
| 
      
 10 
     | 
    
         
            +
              RendererEventContext,
         
     | 
| 
      
 11 
     | 
    
         
            +
              SubRendererInfo
         
     | 
| 
      
 12 
     | 
    
         
            +
            } from '../../plugin';
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            export class ColorControlPlugin extends BasePlugin {
         
     | 
| 
      
 15 
     | 
    
         
            +
              // 关联渲染器名字
         
     | 
| 
      
 16 
     | 
    
         
            +
              rendererName = 'input-color';
         
     | 
| 
      
 17 
     | 
    
         
            +
              $schema = '/schemas/ColorControlSchema.json';
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              // 组件名称
         
     | 
| 
      
 20 
     | 
    
         
            +
              name = '颜色框';
         
     | 
| 
      
 21 
     | 
    
         
            +
              isBaseComponent = true;
         
     | 
| 
      
 22 
     | 
    
         
            +
              icon = 'fa fa-eyedropper';
         
     | 
| 
      
 23 
     | 
    
         
            +
              description =
         
     | 
| 
      
 24 
     | 
    
         
            +
                '支持<code>hex、hls、rgb、rgba</code>格式,默认为<code>hex</code>格式';
         
     | 
| 
      
 25 
     | 
    
         
            +
              docLink = '/amis/zh-CN/components/form/input-color';
         
     | 
| 
      
 26 
     | 
    
         
            +
              tags = ['表单项'];
         
     | 
| 
      
 27 
     | 
    
         
            +
              scaffold = {
         
     | 
| 
      
 28 
     | 
    
         
            +
                type: 'input-color',
         
     | 
| 
      
 29 
     | 
    
         
            +
                label: '颜色',
         
     | 
| 
      
 30 
     | 
    
         
            +
                name: 'color'
         
     | 
| 
      
 31 
     | 
    
         
            +
              };
         
     | 
| 
      
 32 
     | 
    
         
            +
              previewSchema: any = {
         
     | 
| 
      
 33 
     | 
    
         
            +
                type: 'form',
         
     | 
| 
      
 34 
     | 
    
         
            +
                className: 'text-left',
         
     | 
| 
      
 35 
     | 
    
         
            +
                mode: 'horizontal',
         
     | 
| 
      
 36 
     | 
    
         
            +
                wrapWithPanel: false,
         
     | 
| 
      
 37 
     | 
    
         
            +
                body: [
         
     | 
| 
      
 38 
     | 
    
         
            +
                  {
         
     | 
| 
      
 39 
     | 
    
         
            +
                    ...this.scaffold
         
     | 
| 
      
 40 
     | 
    
         
            +
                  }
         
     | 
| 
      
 41 
     | 
    
         
            +
                ]
         
     | 
| 
      
 42 
     | 
    
         
            +
              };
         
     | 
| 
      
 43 
     | 
    
         
            +
              getConditionalColorPanel(format: string) {
         
     | 
| 
      
 44 
     | 
    
         
            +
                return {
         
     | 
| 
      
 45 
     | 
    
         
            +
                  type: 'input-color',
         
     | 
| 
      
 46 
     | 
    
         
            +
                  name: 'value',
         
     | 
| 
      
 47 
     | 
    
         
            +
                  format,
         
     | 
| 
      
 48 
     | 
    
         
            +
                  visibleOn: `typeof this.value !== "undefined" && this.format==="${format}"`,
         
     | 
| 
      
 49 
     | 
    
         
            +
                  label: '默认值'
         
     | 
| 
      
 50 
     | 
    
         
            +
                };
         
     | 
| 
      
 51 
     | 
    
         
            +
              }
         
     | 
| 
      
 52 
     | 
    
         
            +
              getConditionalColorArray(format: string) {
         
     | 
| 
      
 53 
     | 
    
         
            +
                return {
         
     | 
| 
      
 54 
     | 
    
         
            +
                  type: 'input-array',
         
     | 
| 
      
 55 
     | 
    
         
            +
                  name: 'presetColors',
         
     | 
| 
      
 56 
     | 
    
         
            +
                  label: '选择器中颜色默认值',
         
     | 
| 
      
 57 
     | 
    
         
            +
                  addable: true,
         
     | 
| 
      
 58 
     | 
    
         
            +
                  removable: true,
         
     | 
| 
      
 59 
     | 
    
         
            +
                  visibleOn: `typeof this.presetColors !== "undefined" && this.format === "${format}"`,
         
     | 
| 
      
 60 
     | 
    
         
            +
                  items: {
         
     | 
| 
      
 61 
     | 
    
         
            +
                    type: 'input-color',
         
     | 
| 
      
 62 
     | 
    
         
            +
                    format
         
     | 
| 
      
 63 
     | 
    
         
            +
                  },
         
     | 
| 
      
 64 
     | 
    
         
            +
                  value: [
         
     | 
| 
      
 65 
     | 
    
         
            +
                    '#D0021B',
         
     | 
| 
      
 66 
     | 
    
         
            +
                    '#F5A623',
         
     | 
| 
      
 67 
     | 
    
         
            +
                    '#F8E71C',
         
     | 
| 
      
 68 
     | 
    
         
            +
                    '#8B572A',
         
     | 
| 
      
 69 
     | 
    
         
            +
                    '#7ED321',
         
     | 
| 
      
 70 
     | 
    
         
            +
                    '#417505',
         
     | 
| 
      
 71 
     | 
    
         
            +
                    '#BD10E0',
         
     | 
| 
      
 72 
     | 
    
         
            +
                    '#9013FE',
         
     | 
| 
      
 73 
     | 
    
         
            +
                    '#4A90E2',
         
     | 
| 
      
 74 
     | 
    
         
            +
                    '#50E3C2',
         
     | 
| 
      
 75 
     | 
    
         
            +
                    '#B8E986',
         
     | 
| 
      
 76 
     | 
    
         
            +
                    '#000000',
         
     | 
| 
      
 77 
     | 
    
         
            +
                    '#4A4A4A',
         
     | 
| 
      
 78 
     | 
    
         
            +
                    '#9B9B9B',
         
     | 
| 
      
 79 
     | 
    
         
            +
                    '#FFFFFF'
         
     | 
| 
      
 80 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 81 
     | 
    
         
            +
                };
         
     | 
| 
      
 82 
     | 
    
         
            +
              }
         
     | 
| 
      
 83 
     | 
    
         
            +
              panelTitle = '颜色框';
         
     | 
| 
      
 84 
     | 
    
         
            +
              panelBody = [
         
     | 
| 
      
 85 
     | 
    
         
            +
                {
         
     | 
| 
      
 86 
     | 
    
         
            +
                  label: '格式',
         
     | 
| 
      
 87 
     | 
    
         
            +
                  name: 'format',
         
     | 
| 
      
 88 
     | 
    
         
            +
                  type: 'button-group-select',
         
     | 
| 
      
 89 
     | 
    
         
            +
                  size: 'sm',
         
     | 
| 
      
 90 
     | 
    
         
            +
                  value: 'hex',
         
     | 
| 
      
 91 
     | 
    
         
            +
                  options: ['hex', 'hsl', 'rgb', 'rgba'],
         
     | 
| 
      
 92 
     | 
    
         
            +
                  onChange: (value: any, oldValue: any, model: any, form: any) => {
         
     | 
| 
      
 93 
     | 
    
         
            +
                    form.setValueByName('value', '');
         
     | 
| 
      
 94 
     | 
    
         
            +
                    form.setValueByName('presetColors', '');
         
     | 
| 
      
 95 
     | 
    
         
            +
                  }
         
     | 
| 
      
 96 
     | 
    
         
            +
                },
         
     | 
| 
      
 97 
     | 
    
         
            +
             
     | 
| 
      
 98 
     | 
    
         
            +
                getSchemaTpl('switchDefaultValue'),
         
     | 
| 
      
 99 
     | 
    
         
            +
             
     | 
| 
      
 100 
     | 
    
         
            +
                this.getConditionalColorPanel('hex'),
         
     | 
| 
      
 101 
     | 
    
         
            +
                this.getConditionalColorPanel('hsl'),
         
     | 
| 
      
 102 
     | 
    
         
            +
                this.getConditionalColorPanel('rgb'),
         
     | 
| 
      
 103 
     | 
    
         
            +
                this.getConditionalColorPanel('rgba'),
         
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
      
 105 
     | 
    
         
            +
                getSchemaTpl('switchDefaultValue', {
         
     | 
| 
      
 106 
     | 
    
         
            +
                  name: 'presetColors',
         
     | 
| 
      
 107 
     | 
    
         
            +
                  label: '设置选择器中颜色默认值',
         
     | 
| 
      
 108 
     | 
    
         
            +
                  description: '为空时不显示选择器中的默认值'
         
     | 
| 
      
 109 
     | 
    
         
            +
                }),
         
     | 
| 
      
 110 
     | 
    
         
            +
             
     | 
| 
      
 111 
     | 
    
         
            +
                this.getConditionalColorArray('hex'),
         
     | 
| 
      
 112 
     | 
    
         
            +
                this.getConditionalColorArray('hsl'),
         
     | 
| 
      
 113 
     | 
    
         
            +
                this.getConditionalColorArray('rgb'),
         
     | 
| 
      
 114 
     | 
    
         
            +
                this.getConditionalColorArray('rgba'),
         
     | 
| 
      
 115 
     | 
    
         
            +
             
     | 
| 
      
 116 
     | 
    
         
            +
                getSchemaTpl('clearable', {
         
     | 
| 
      
 117 
     | 
    
         
            +
                  label: '显示清除按钮',
         
     | 
| 
      
 118 
     | 
    
         
            +
                  pipeIn: defaultValue(true)
         
     | 
| 
      
 119 
     | 
    
         
            +
                })
         
     | 
| 
      
 120 
     | 
    
         
            +
              ];
         
     | 
| 
      
 121 
     | 
    
         
            +
            }
         
     | 
| 
      
 122 
     | 
    
         
            +
             
     | 
| 
      
 123 
     | 
    
         
            +
            registerEditorPlugin(ColorControlPlugin);
         
     | 
| 
         @@ -0,0 +1,175 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import {relativeValueRe} from 'amis';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import {
         
     | 
| 
      
 3 
     | 
    
         
            +
              defaultValue,
         
     | 
| 
      
 4 
     | 
    
         
            +
              getSchemaTpl,
         
     | 
| 
      
 5 
     | 
    
         
            +
              valuePipeOut
         
     | 
| 
      
 6 
     | 
    
         
            +
            } from '../../component/schemaTpl';
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {registerEditorPlugin} from '../../manager';
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {
         
     | 
| 
      
 9 
     | 
    
         
            +
              BasePlugin,
         
     | 
| 
      
 10 
     | 
    
         
            +
              BasicSubRenderInfo,
         
     | 
| 
      
 11 
     | 
    
         
            +
              RendererEventContext,
         
     | 
| 
      
 12 
     | 
    
         
            +
              SubRendererInfo
         
     | 
| 
      
 13 
     | 
    
         
            +
            } from '../../plugin';
         
     | 
| 
      
 14 
     | 
    
         
            +
            import moment from 'moment';
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            export class DateControlPlugin extends BasePlugin {
         
     | 
| 
      
 17 
     | 
    
         
            +
              // 关联渲染器名字
         
     | 
| 
      
 18 
     | 
    
         
            +
              rendererName = 'input-date';
         
     | 
| 
      
 19 
     | 
    
         
            +
              $schema = '/schemas/DateControlSchema.json';
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
              order = -450;
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              // 组件名称
         
     | 
| 
      
 24 
     | 
    
         
            +
              icon = 'fa fa-calendar';
         
     | 
| 
      
 25 
     | 
    
         
            +
              name = '日期框';
         
     | 
| 
      
 26 
     | 
    
         
            +
              isBaseComponent = true;
         
     | 
| 
      
 27 
     | 
    
         
            +
              description = '年月日选择,支持相对值设定,如<code>+2days</code>两天后';
         
     | 
| 
      
 28 
     | 
    
         
            +
              docLink = '/amis/zh-CN/components/form/input-date';
         
     | 
| 
      
 29 
     | 
    
         
            +
              tags = ['表单项'];
         
     | 
| 
      
 30 
     | 
    
         
            +
              scaffold = {
         
     | 
| 
      
 31 
     | 
    
         
            +
                type: 'input-date',
         
     | 
| 
      
 32 
     | 
    
         
            +
                label: '日期',
         
     | 
| 
      
 33 
     | 
    
         
            +
                name: 'date'
         
     | 
| 
      
 34 
     | 
    
         
            +
              };
         
     | 
| 
      
 35 
     | 
    
         
            +
              previewSchema: any = {
         
     | 
| 
      
 36 
     | 
    
         
            +
                type: 'form',
         
     | 
| 
      
 37 
     | 
    
         
            +
                className: 'text-left',
         
     | 
| 
      
 38 
     | 
    
         
            +
                mode: 'horizontal',
         
     | 
| 
      
 39 
     | 
    
         
            +
                wrapWithPanel: false,
         
     | 
| 
      
 40 
     | 
    
         
            +
                body: [
         
     | 
| 
      
 41 
     | 
    
         
            +
                  {
         
     | 
| 
      
 42 
     | 
    
         
            +
                    ...this.scaffold
         
     | 
| 
      
 43 
     | 
    
         
            +
                  }
         
     | 
| 
      
 44 
     | 
    
         
            +
                ]
         
     | 
| 
      
 45 
     | 
    
         
            +
              };
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
              panelTitle = '日期配置';
         
     | 
| 
      
 48 
     | 
    
         
            +
              panelBody = [
         
     | 
| 
      
 49 
     | 
    
         
            +
                getSchemaTpl('placeholder', {
         
     | 
| 
      
 50 
     | 
    
         
            +
                  pipeIn: defaultValue('请选择日期')
         
     | 
| 
      
 51 
     | 
    
         
            +
                }),
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
                {
         
     | 
| 
      
 54 
     | 
    
         
            +
                  type: 'input-text',
         
     | 
| 
      
 55 
     | 
    
         
            +
                  name: 'format',
         
     | 
| 
      
 56 
     | 
    
         
            +
                  label: '值格式',
         
     | 
| 
      
 57 
     | 
    
         
            +
                  description:
         
     | 
| 
      
 58 
     | 
    
         
            +
                    '请参考 <a href="https://momentjs.com/" target="_blank">moment</a> 中的格式用法。',
         
     | 
| 
      
 59 
     | 
    
         
            +
                  pipeIn: defaultValue('X'),
         
     | 
| 
      
 60 
     | 
    
         
            +
                  onChange: (value: any, oldValue: any, model: any, form: any) => {
         
     | 
| 
      
 61 
     | 
    
         
            +
                    form.setValueByName('value', '');
         
     | 
| 
      
 62 
     | 
    
         
            +
                    form.setValueByName('minDate', '');
         
     | 
| 
      
 63 
     | 
    
         
            +
                    form.setValueByName('maxDate', '');
         
     | 
| 
      
 64 
     | 
    
         
            +
                  }
         
     | 
| 
      
 65 
     | 
    
         
            +
                },
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
                getSchemaTpl('switchDefaultValue'),
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
                {
         
     | 
| 
      
 70 
     | 
    
         
            +
                  type: 'input-text',
         
     | 
| 
      
 71 
     | 
    
         
            +
                  name: 'value',
         
     | 
| 
      
 72 
     | 
    
         
            +
                  label: '默认值',
         
     | 
| 
      
 73 
     | 
    
         
            +
                  visibleOn: 'typeof this.value !== "undefined"',
         
     | 
| 
      
 74 
     | 
    
         
            +
                  placeholder: '请输入相对值',
         
     | 
| 
      
 75 
     | 
    
         
            +
                  description: '支持 <code>now、+1day、-2weeks</code>这种相对值用法'
         
     | 
| 
      
 76 
     | 
    
         
            +
                },
         
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
                {
         
     | 
| 
      
 79 
     | 
    
         
            +
                  type: 'fieldSet',
         
     | 
| 
      
 80 
     | 
    
         
            +
                  title: '使用固定值',
         
     | 
| 
      
 81 
     | 
    
         
            +
                  collapsed: true,
         
     | 
| 
      
 82 
     | 
    
         
            +
                  collapsable: true,
         
     | 
| 
      
 83 
     | 
    
         
            +
                  className: 'fieldset',
         
     | 
| 
      
 84 
     | 
    
         
            +
                  visibleOn: 'typeof this.value !== "undefined"',
         
     | 
| 
      
 85 
     | 
    
         
            +
                  body: [
         
     | 
| 
      
 86 
     | 
    
         
            +
                    {
         
     | 
| 
      
 87 
     | 
    
         
            +
                      type: 'input-date',
         
     | 
| 
      
 88 
     | 
    
         
            +
                      name: 'value',
         
     | 
| 
      
 89 
     | 
    
         
            +
                      pipeIn: (value: any) =>
         
     | 
| 
      
 90 
     | 
    
         
            +
                        moment(
         
     | 
| 
      
 91 
     | 
    
         
            +
                          relativeValueRe.test(value) || ~['now', 'today'].indexOf(value)
         
     | 
| 
      
 92 
     | 
    
         
            +
                            ? ''
         
     | 
| 
      
 93 
     | 
    
         
            +
                            : value
         
     | 
| 
      
 94 
     | 
    
         
            +
                        ).format('X'),
         
     | 
| 
      
 95 
     | 
    
         
            +
                      pipeOut: (value: any, old: any, data: any) => {
         
     | 
| 
      
 96 
     | 
    
         
            +
                        return moment(parseInt(value, 10), 'X').format(data.format);
         
     | 
| 
      
 97 
     | 
    
         
            +
                      }
         
     | 
| 
      
 98 
     | 
    
         
            +
                    }
         
     | 
| 
      
 99 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 100 
     | 
    
         
            +
                },
         
     | 
| 
      
 101 
     | 
    
         
            +
                getSchemaTpl('clearable', {
         
     | 
| 
      
 102 
     | 
    
         
            +
                  pipeIn: defaultValue(true)
         
     | 
| 
      
 103 
     | 
    
         
            +
                }),
         
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
      
 105 
     | 
    
         
            +
                {
         
     | 
| 
      
 106 
     | 
    
         
            +
                  type: 'input-text',
         
     | 
| 
      
 107 
     | 
    
         
            +
                  name: 'minDate',
         
     | 
| 
      
 108 
     | 
    
         
            +
                  label: '最小日期',
         
     | 
| 
      
 109 
     | 
    
         
            +
                  placeholder: '请输入相对值',
         
     | 
| 
      
 110 
     | 
    
         
            +
                  description:
         
     | 
| 
      
 111 
     | 
    
         
            +
                    '支持 <code>now、+1day、-2weeks</code>这种相对值用法,同时支持变量如<code>\\${start_date}</code>'
         
     | 
| 
      
 112 
     | 
    
         
            +
                },
         
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
      
 114 
     | 
    
         
            +
                {
         
     | 
| 
      
 115 
     | 
    
         
            +
                  type: 'fieldSet',
         
     | 
| 
      
 116 
     | 
    
         
            +
                  title: '使用固定值',
         
     | 
| 
      
 117 
     | 
    
         
            +
                  collapsed: true,
         
     | 
| 
      
 118 
     | 
    
         
            +
                  collapsable: true,
         
     | 
| 
      
 119 
     | 
    
         
            +
                  className: 'fieldset',
         
     | 
| 
      
 120 
     | 
    
         
            +
                  body: [
         
     | 
| 
      
 121 
     | 
    
         
            +
                    {
         
     | 
| 
      
 122 
     | 
    
         
            +
                      type: 'input-date',
         
     | 
| 
      
 123 
     | 
    
         
            +
                      name: 'minDate',
         
     | 
| 
      
 124 
     | 
    
         
            +
                      pipeIn: (value: any) =>
         
     | 
| 
      
 125 
     | 
    
         
            +
                        moment(
         
     | 
| 
      
 126 
     | 
    
         
            +
                          relativeValueRe.test(value) || ~['now', 'today'].indexOf(value)
         
     | 
| 
      
 127 
     | 
    
         
            +
                            ? ''
         
     | 
| 
      
 128 
     | 
    
         
            +
                            : value
         
     | 
| 
      
 129 
     | 
    
         
            +
                        ).format('X'),
         
     | 
| 
      
 130 
     | 
    
         
            +
                      pipeOut: (value: any, old: any, data: any) => {
         
     | 
| 
      
 131 
     | 
    
         
            +
                        return moment(parseInt(value, 10), 'X').format(data.format);
         
     | 
| 
      
 132 
     | 
    
         
            +
                      }
         
     | 
| 
      
 133 
     | 
    
         
            +
                    }
         
     | 
| 
      
 134 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 135 
     | 
    
         
            +
                },
         
     | 
| 
      
 136 
     | 
    
         
            +
             
     | 
| 
      
 137 
     | 
    
         
            +
                {
         
     | 
| 
      
 138 
     | 
    
         
            +
                  type: 'divider'
         
     | 
| 
      
 139 
     | 
    
         
            +
                },
         
     | 
| 
      
 140 
     | 
    
         
            +
             
     | 
| 
      
 141 
     | 
    
         
            +
                {
         
     | 
| 
      
 142 
     | 
    
         
            +
                  type: 'input-text',
         
     | 
| 
      
 143 
     | 
    
         
            +
                  name: 'maxDate',
         
     | 
| 
      
 144 
     | 
    
         
            +
                  label: '最大日期',
         
     | 
| 
      
 145 
     | 
    
         
            +
                  placeholder: '请输入相对值',
         
     | 
| 
      
 146 
     | 
    
         
            +
                  description:
         
     | 
| 
      
 147 
     | 
    
         
            +
                    '支持 <code>now、+1day、-2weeks</code>这种相对值用法,同时支持变量如<code>\\${start_date}</code>'
         
     | 
| 
      
 148 
     | 
    
         
            +
                },
         
     | 
| 
      
 149 
     | 
    
         
            +
             
     | 
| 
      
 150 
     | 
    
         
            +
                {
         
     | 
| 
      
 151 
     | 
    
         
            +
                  type: 'fieldSet',
         
     | 
| 
      
 152 
     | 
    
         
            +
                  title: '使用固定值',
         
     | 
| 
      
 153 
     | 
    
         
            +
                  collapsed: true,
         
     | 
| 
      
 154 
     | 
    
         
            +
                  collapsable: true,
         
     | 
| 
      
 155 
     | 
    
         
            +
                  className: 'fieldset',
         
     | 
| 
      
 156 
     | 
    
         
            +
                  body: [
         
     | 
| 
      
 157 
     | 
    
         
            +
                    {
         
     | 
| 
      
 158 
     | 
    
         
            +
                      type: 'input-date',
         
     | 
| 
      
 159 
     | 
    
         
            +
                      name: 'maxDate',
         
     | 
| 
      
 160 
     | 
    
         
            +
                      pipeIn: (value: any) =>
         
     | 
| 
      
 161 
     | 
    
         
            +
                        moment(
         
     | 
| 
      
 162 
     | 
    
         
            +
                          relativeValueRe.test(value) || ~['now', 'today'].indexOf(value)
         
     | 
| 
      
 163 
     | 
    
         
            +
                            ? ''
         
     | 
| 
      
 164 
     | 
    
         
            +
                            : value
         
     | 
| 
      
 165 
     | 
    
         
            +
                        ).format('X'),
         
     | 
| 
      
 166 
     | 
    
         
            +
                      pipeOut: (value: any, old: any, data: any) => {
         
     | 
| 
      
 167 
     | 
    
         
            +
                        return moment(parseInt(value, 10), 'X').format(data.format);
         
     | 
| 
      
 168 
     | 
    
         
            +
                      }
         
     | 
| 
      
 169 
     | 
    
         
            +
                    }
         
     | 
| 
      
 170 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 171 
     | 
    
         
            +
                }
         
     | 
| 
      
 172 
     | 
    
         
            +
              ];
         
     | 
| 
      
 173 
     | 
    
         
            +
            }
         
     | 
| 
      
 174 
     | 
    
         
            +
             
     | 
| 
      
 175 
     | 
    
         
            +
            registerEditorPlugin(DateControlPlugin);
         
     | 
| 
         @@ -0,0 +1,225 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import {relativeValueRe} from 'amis';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import {
         
     | 
| 
      
 3 
     | 
    
         
            +
              defaultValue,
         
     | 
| 
      
 4 
     | 
    
         
            +
              getSchemaTpl,
         
     | 
| 
      
 5 
     | 
    
         
            +
              valuePipeOut
         
     | 
| 
      
 6 
     | 
    
         
            +
            } from '../../component/schemaTpl';
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {registerEditorPlugin} from '../../manager';
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {
         
     | 
| 
      
 9 
     | 
    
         
            +
              BasePlugin,
         
     | 
| 
      
 10 
     | 
    
         
            +
              BasicSubRenderInfo,
         
     | 
| 
      
 11 
     | 
    
         
            +
              RendererEventContext,
         
     | 
| 
      
 12 
     | 
    
         
            +
              SubRendererInfo
         
     | 
| 
      
 13 
     | 
    
         
            +
            } from '../../plugin';
         
     | 
| 
      
 14 
     | 
    
         
            +
            import moment from 'moment';
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            export class DateRangeControlPlugin extends BasePlugin {
         
     | 
| 
      
 17 
     | 
    
         
            +
              // 关联渲染器名字
         
     | 
| 
      
 18 
     | 
    
         
            +
              rendererName = 'input-date-range';
         
     | 
| 
      
 19 
     | 
    
         
            +
              $schema = '/schemas/DateRangeControlSchema.json';
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
              order = -440;
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              // 组件名称
         
     | 
| 
      
 24 
     | 
    
         
            +
              icon = 'fa fa-calendar';
         
     | 
| 
      
 25 
     | 
    
         
            +
              name = '日期范围';
         
     | 
| 
      
 26 
     | 
    
         
            +
              isBaseComponent = true;
         
     | 
| 
      
 27 
     | 
    
         
            +
              description =
         
     | 
| 
      
 28 
     | 
    
         
            +
                '日期范围选择,可通过<code>minDate</code>、<code>maxDate</code>设定最小、最大日期';
         
     | 
| 
      
 29 
     | 
    
         
            +
              docLink = '/amis/zh-CN/components/form/input-date-range';
         
     | 
| 
      
 30 
     | 
    
         
            +
              tags = ['表单项'];
         
     | 
| 
      
 31 
     | 
    
         
            +
              scaffold = {
         
     | 
| 
      
 32 
     | 
    
         
            +
                type: 'input-date-range',
         
     | 
| 
      
 33 
     | 
    
         
            +
                label: '日期范围',
         
     | 
| 
      
 34 
     | 
    
         
            +
                name: 'date-range'
         
     | 
| 
      
 35 
     | 
    
         
            +
              };
         
     | 
| 
      
 36 
     | 
    
         
            +
              previewSchema: any = {
         
     | 
| 
      
 37 
     | 
    
         
            +
                type: 'form',
         
     | 
| 
      
 38 
     | 
    
         
            +
                className: 'text-left',
         
     | 
| 
      
 39 
     | 
    
         
            +
                mode: 'horizontal',
         
     | 
| 
      
 40 
     | 
    
         
            +
                wrapWithPanel: false,
         
     | 
| 
      
 41 
     | 
    
         
            +
                body: [
         
     | 
| 
      
 42 
     | 
    
         
            +
                  {
         
     | 
| 
      
 43 
     | 
    
         
            +
                    ...this.scaffold
         
     | 
| 
      
 44 
     | 
    
         
            +
                  }
         
     | 
| 
      
 45 
     | 
    
         
            +
                ]
         
     | 
| 
      
 46 
     | 
    
         
            +
              };
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
              panelTitle = '日期范围';
         
     | 
| 
      
 49 
     | 
    
         
            +
              panelBody = [
         
     | 
| 
      
 50 
     | 
    
         
            +
                getSchemaTpl('placeholder', {
         
     | 
| 
      
 51 
     | 
    
         
            +
                  pipeIn: defaultValue('请选择日期范围')
         
     | 
| 
      
 52 
     | 
    
         
            +
                }),
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
                {
         
     | 
| 
      
 55 
     | 
    
         
            +
                  type: 'input-text',
         
     | 
| 
      
 56 
     | 
    
         
            +
                  name: 'format',
         
     | 
| 
      
 57 
     | 
    
         
            +
                  label: '值格式',
         
     | 
| 
      
 58 
     | 
    
         
            +
                  description:
         
     | 
| 
      
 59 
     | 
    
         
            +
                    '请参考 <a href="https://momentjs.com/" target="_blank">moment</a> 中的格式用法。',
         
     | 
| 
      
 60 
     | 
    
         
            +
                  pipeIn: defaultValue('X'),
         
     | 
| 
      
 61 
     | 
    
         
            +
                  onChange: (value: any, oldValue: any, model: any, form: any) => {
         
     | 
| 
      
 62 
     | 
    
         
            +
                    form.setValueByName('value', '');
         
     | 
| 
      
 63 
     | 
    
         
            +
                    form.setValueByName('minDate', '');
         
     | 
| 
      
 64 
     | 
    
         
            +
                    form.setValueByName('maxDate', '');
         
     | 
| 
      
 65 
     | 
    
         
            +
                  }
         
     | 
| 
      
 66 
     | 
    
         
            +
                },
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
                getSchemaTpl('switchDefaultValue'),
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
                {
         
     | 
| 
      
 71 
     | 
    
         
            +
                  type: 'input-text',
         
     | 
| 
      
 72 
     | 
    
         
            +
                  name: 'value',
         
     | 
| 
      
 73 
     | 
    
         
            +
                  label: '默认值',
         
     | 
| 
      
 74 
     | 
    
         
            +
                  visibleOn: 'typeof this.value !== "undefined"',
         
     | 
| 
      
 75 
     | 
    
         
            +
                  placeholder: '请输入相对值',
         
     | 
| 
      
 76 
     | 
    
         
            +
                  description:
         
     | 
| 
      
 77 
     | 
    
         
            +
                    '支持 <code>now、+1day、-2weeks</code>这种相对值用法,由于包含开始和结束时间,请用逗号隔开。'
         
     | 
| 
      
 78 
     | 
    
         
            +
                },
         
     | 
| 
      
 79 
     | 
    
         
            +
             
     | 
| 
      
 80 
     | 
    
         
            +
                {
         
     | 
| 
      
 81 
     | 
    
         
            +
                  type: 'fieldSet',
         
     | 
| 
      
 82 
     | 
    
         
            +
                  title: '使用固定值',
         
     | 
| 
      
 83 
     | 
    
         
            +
                  visibleOn: 'typeof this.value !== "undefined"',
         
     | 
| 
      
 84 
     | 
    
         
            +
                  collapsed: true,
         
     | 
| 
      
 85 
     | 
    
         
            +
                  collapsable: true,
         
     | 
| 
      
 86 
     | 
    
         
            +
                  className: 'fieldset',
         
     | 
| 
      
 87 
     | 
    
         
            +
                  body: [
         
     | 
| 
      
 88 
     | 
    
         
            +
                    {
         
     | 
| 
      
 89 
     | 
    
         
            +
                      type: 'input-date-range',
         
     | 
| 
      
 90 
     | 
    
         
            +
                      name: 'value',
         
     | 
| 
      
 91 
     | 
    
         
            +
                      pipeIn: (value: any) =>
         
     | 
| 
      
 92 
     | 
    
         
            +
                        value
         
     | 
| 
      
 93 
     | 
    
         
            +
                          ? value
         
     | 
| 
      
 94 
     | 
    
         
            +
                              .split(',')
         
     | 
| 
      
 95 
     | 
    
         
            +
                              .map((item: any) =>
         
     | 
| 
      
 96 
     | 
    
         
            +
                                moment(
         
     | 
| 
      
 97 
     | 
    
         
            +
                                  relativeValueRe.test(item) ||
         
     | 
| 
      
 98 
     | 
    
         
            +
                                    ~['now', 'today'].indexOf(item)
         
     | 
| 
      
 99 
     | 
    
         
            +
                                    ? ''
         
     | 
| 
      
 100 
     | 
    
         
            +
                                    : item
         
     | 
| 
      
 101 
     | 
    
         
            +
                                ).format('X')
         
     | 
| 
      
 102 
     | 
    
         
            +
                              )
         
     | 
| 
      
 103 
     | 
    
         
            +
                          : '',
         
     | 
| 
      
 104 
     | 
    
         
            +
                      pipeOut: (value: any, old: any, data: any) => {
         
     | 
| 
      
 105 
     | 
    
         
            +
                        let {format} = data;
         
     | 
| 
      
 106 
     | 
    
         
            +
                        if (format) {
         
     | 
| 
      
 107 
     | 
    
         
            +
                          let val = value.split(',');
         
     | 
| 
      
 108 
     | 
    
         
            +
                          value = val
         
     | 
| 
      
 109 
     | 
    
         
            +
                            .map((item: string) =>
         
     | 
| 
      
 110 
     | 
    
         
            +
                              moment(parseInt(item, 10), 'X').format(format)
         
     | 
| 
      
 111 
     | 
    
         
            +
                            )
         
     | 
| 
      
 112 
     | 
    
         
            +
                            .join(',');
         
     | 
| 
      
 113 
     | 
    
         
            +
                        }
         
     | 
| 
      
 114 
     | 
    
         
            +
                        return value;
         
     | 
| 
      
 115 
     | 
    
         
            +
                      }
         
     | 
| 
      
 116 
     | 
    
         
            +
                    }
         
     | 
| 
      
 117 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 118 
     | 
    
         
            +
                },
         
     | 
| 
      
 119 
     | 
    
         
            +
                getSchemaTpl('clearable', {
         
     | 
| 
      
 120 
     | 
    
         
            +
                  pipeIn: defaultValue(true)
         
     | 
| 
      
 121 
     | 
    
         
            +
                }),
         
     | 
| 
      
 122 
     | 
    
         
            +
                {
         
     | 
| 
      
 123 
     | 
    
         
            +
                  type: 'input-text',
         
     | 
| 
      
 124 
     | 
    
         
            +
                  name: 'minDate',
         
     | 
| 
      
 125 
     | 
    
         
            +
                  label: '最小日期',
         
     | 
| 
      
 126 
     | 
    
         
            +
                  placeholder: '请输入相对值',
         
     | 
| 
      
 127 
     | 
    
         
            +
                  description:
         
     | 
| 
      
 128 
     | 
    
         
            +
                    '支持 <code>now、+1day、-2weeks</code>这种相对值用法,同时支持变量如<code>\\${start_date}</code>'
         
     | 
| 
      
 129 
     | 
    
         
            +
                },
         
     | 
| 
      
 130 
     | 
    
         
            +
             
     | 
| 
      
 131 
     | 
    
         
            +
                {
         
     | 
| 
      
 132 
     | 
    
         
            +
                  type: 'fieldSet',
         
     | 
| 
      
 133 
     | 
    
         
            +
                  title: '使用固定值',
         
     | 
| 
      
 134 
     | 
    
         
            +
                  collapsed: true,
         
     | 
| 
      
 135 
     | 
    
         
            +
                  collapsable: true,
         
     | 
| 
      
 136 
     | 
    
         
            +
                  className: 'fieldset',
         
     | 
| 
      
 137 
     | 
    
         
            +
                  body: [
         
     | 
| 
      
 138 
     | 
    
         
            +
                    {
         
     | 
| 
      
 139 
     | 
    
         
            +
                      type: 'input-date',
         
     | 
| 
      
 140 
     | 
    
         
            +
                      name: 'minDate',
         
     | 
| 
      
 141 
     | 
    
         
            +
                      pipeIn: (value: any) =>
         
     | 
| 
      
 142 
     | 
    
         
            +
                        moment(
         
     | 
| 
      
 143 
     | 
    
         
            +
                          relativeValueRe.test(value) || ~['now', 'today'].indexOf(value)
         
     | 
| 
      
 144 
     | 
    
         
            +
                            ? ''
         
     | 
| 
      
 145 
     | 
    
         
            +
                            : value
         
     | 
| 
      
 146 
     | 
    
         
            +
                        ).format('X'),
         
     | 
| 
      
 147 
     | 
    
         
            +
                      pipeOut: (value: any, old: any, data: any) => {
         
     | 
| 
      
 148 
     | 
    
         
            +
                        return moment(parseInt(value, 10), 'X').format(data.format);
         
     | 
| 
      
 149 
     | 
    
         
            +
                      }
         
     | 
| 
      
 150 
     | 
    
         
            +
                    }
         
     | 
| 
      
 151 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 152 
     | 
    
         
            +
                },
         
     | 
| 
      
 153 
     | 
    
         
            +
             
     | 
| 
      
 154 
     | 
    
         
            +
                {
         
     | 
| 
      
 155 
     | 
    
         
            +
                  type: 'divider'
         
     | 
| 
      
 156 
     | 
    
         
            +
                },
         
     | 
| 
      
 157 
     | 
    
         
            +
             
     | 
| 
      
 158 
     | 
    
         
            +
                {
         
     | 
| 
      
 159 
     | 
    
         
            +
                  type: 'input-text',
         
     | 
| 
      
 160 
     | 
    
         
            +
                  name: 'maxDate',
         
     | 
| 
      
 161 
     | 
    
         
            +
                  label: '最大日期',
         
     | 
| 
      
 162 
     | 
    
         
            +
                  placeholder: '请输入相对值',
         
     | 
| 
      
 163 
     | 
    
         
            +
                  description:
         
     | 
| 
      
 164 
     | 
    
         
            +
                    '支持 <code>now、+1day、-2weeks</code>这种相对值用法,同时支持变量如<code>\\${start_date}</code>'
         
     | 
| 
      
 165 
     | 
    
         
            +
                },
         
     | 
| 
      
 166 
     | 
    
         
            +
             
     | 
| 
      
 167 
     | 
    
         
            +
                {
         
     | 
| 
      
 168 
     | 
    
         
            +
                  type: 'fieldSet',
         
     | 
| 
      
 169 
     | 
    
         
            +
                  title: '使用固定值',
         
     | 
| 
      
 170 
     | 
    
         
            +
                  collapsed: true,
         
     | 
| 
      
 171 
     | 
    
         
            +
                  collapsable: true,
         
     | 
| 
      
 172 
     | 
    
         
            +
                  className: 'fieldset',
         
     | 
| 
      
 173 
     | 
    
         
            +
                  body: [
         
     | 
| 
      
 174 
     | 
    
         
            +
                    {
         
     | 
| 
      
 175 
     | 
    
         
            +
                      type: 'input-date',
         
     | 
| 
      
 176 
     | 
    
         
            +
                      name: 'maxDate',
         
     | 
| 
      
 177 
     | 
    
         
            +
                      pipeIn: (value: any) =>
         
     | 
| 
      
 178 
     | 
    
         
            +
                        moment(
         
     | 
| 
      
 179 
     | 
    
         
            +
                          relativeValueRe.test(value) || ~['now', 'today'].indexOf(value)
         
     | 
| 
      
 180 
     | 
    
         
            +
                            ? ''
         
     | 
| 
      
 181 
     | 
    
         
            +
                            : value
         
     | 
| 
      
 182 
     | 
    
         
            +
                        ).format('X'),
         
     | 
| 
      
 183 
     | 
    
         
            +
                      pipeOut: (value: any, old: any, data: any) => {
         
     | 
| 
      
 184 
     | 
    
         
            +
                        return moment(parseInt(value, 10), 'X').format(data.format);
         
     | 
| 
      
 185 
     | 
    
         
            +
                      }
         
     | 
| 
      
 186 
     | 
    
         
            +
                    }
         
     | 
| 
      
 187 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 188 
     | 
    
         
            +
                },
         
     | 
| 
      
 189 
     | 
    
         
            +
                {
         
     | 
| 
      
 190 
     | 
    
         
            +
                  type: 'input-text',
         
     | 
| 
      
 191 
     | 
    
         
            +
                  name: 'minDuration',
         
     | 
| 
      
 192 
     | 
    
         
            +
                  label: '限制最小跨度',
         
     | 
| 
      
 193 
     | 
    
         
            +
                  description: '比如 2days'
         
     | 
| 
      
 194 
     | 
    
         
            +
                },
         
     | 
| 
      
 195 
     | 
    
         
            +
                {
         
     | 
| 
      
 196 
     | 
    
         
            +
                  type: 'input-text',
         
     | 
| 
      
 197 
     | 
    
         
            +
                  name: 'ranges',
         
     | 
| 
      
 198 
     | 
    
         
            +
                  label: '日期范围快捷键',
         
     | 
| 
      
 199 
     | 
    
         
            +
                  description:
         
     | 
| 
      
 200 
     | 
    
         
            +
                    '比如 today, yesterday, 1dayago, 7daysago, 90daysago, prevweek, thismonth, prevmonth, prevquarter, thisquarter'
         
     | 
| 
      
 201 
     | 
    
         
            +
                },
         
     | 
| 
      
 202 
     | 
    
         
            +
                {
         
     | 
| 
      
 203 
     | 
    
         
            +
                  type: 'input-text',
         
     | 
| 
      
 204 
     | 
    
         
            +
                  name: 'maxDuration',
         
     | 
| 
      
 205 
     | 
    
         
            +
                  label: '限制最大跨度',
         
     | 
| 
      
 206 
     | 
    
         
            +
                  description: '比如 1year'
         
     | 
| 
      
 207 
     | 
    
         
            +
                },
         
     | 
| 
      
 208 
     | 
    
         
            +
                {
         
     | 
| 
      
 209 
     | 
    
         
            +
                  name: 'utc',
         
     | 
| 
      
 210 
     | 
    
         
            +
                  label: '是否使用 UTC 时间',
         
     | 
| 
      
 211 
     | 
    
         
            +
                  type: 'switch',
         
     | 
| 
      
 212 
     | 
    
         
            +
                  mode: 'inline',
         
     | 
| 
      
 213 
     | 
    
         
            +
                  className: 'block'
         
     | 
| 
      
 214 
     | 
    
         
            +
                },
         
     | 
| 
      
 215 
     | 
    
         
            +
                {
         
     | 
| 
      
 216 
     | 
    
         
            +
                  name: 'embed',
         
     | 
| 
      
 217 
     | 
    
         
            +
                  label: '是否内嵌模式',
         
     | 
| 
      
 218 
     | 
    
         
            +
                  type: 'switch',
         
     | 
| 
      
 219 
     | 
    
         
            +
                  mode: 'inline',
         
     | 
| 
      
 220 
     | 
    
         
            +
                  className: 'block'
         
     | 
| 
      
 221 
     | 
    
         
            +
                }
         
     | 
| 
      
 222 
     | 
    
         
            +
              ];
         
     | 
| 
      
 223 
     | 
    
         
            +
            }
         
     | 
| 
      
 224 
     | 
    
         
            +
             
     | 
| 
      
 225 
     | 
    
         
            +
            registerEditorPlugin(DateRangeControlPlugin);
         
     |