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
 
| 
         @@ -5,8 +5,29 @@ export interface BreadcrumbProps { 
     | 
|
| 
       5 
5 
     | 
    
         
             
                store: EditorStoreType;
         
     | 
| 
       6 
6 
     | 
    
         
             
                manager: EditorManager;
         
     | 
| 
       7 
7 
     | 
    
         
             
            }
         
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
      
 8 
     | 
    
         
            +
            interface BreadcrumbStates {
         
     | 
| 
      
 9 
     | 
    
         
            +
                showLeftScrollBtn: boolean;
         
     | 
| 
      
 10 
     | 
    
         
            +
                showRightScrollBtn: boolean;
         
     | 
| 
      
 11 
     | 
    
         
            +
            }
         
     | 
| 
      
 12 
     | 
    
         
            +
            export default class Breadcrumb extends React.Component<BreadcrumbProps, BreadcrumbStates> {
         
     | 
| 
      
 13 
     | 
    
         
            +
                readonly breadcrumbRef: React.RefObject<HTMLDivElement>;
         
     | 
| 
      
 14 
     | 
    
         
            +
                readonly bcnContentRef: React.RefObject<HTMLDivElement>;
         
     | 
| 
      
 15 
     | 
    
         
            +
                currentBreadcrumb: HTMLElement;
         
     | 
| 
      
 16 
     | 
    
         
            +
                unReaction: () => void;
         
     | 
| 
      
 17 
     | 
    
         
            +
                unSensor?: () => void;
         
     | 
| 
      
 18 
     | 
    
         
            +
                constructor(props: any);
         
     | 
| 
      
 19 
     | 
    
         
            +
                componentDidMount(): void;
         
     | 
| 
      
 20 
     | 
    
         
            +
                componentWillUnmount(): void;
         
     | 
| 
      
 21 
     | 
    
         
            +
                refreshHandleScroll(resetScroll?: boolean): void;
         
     | 
| 
      
 22 
     | 
    
         
            +
                getCurBreadcrumb(): HTMLDivElement | null;
         
     | 
| 
      
 23 
     | 
    
         
            +
                getBreadcrumbContainer(): HTMLDivElement | null;
         
     | 
| 
      
 24 
     | 
    
         
            +
                getScrollLeft(): string;
         
     | 
| 
      
 25 
     | 
    
         
            +
                toNumber(pxStr: string): number;
         
     | 
| 
      
 26 
     | 
    
         
            +
                HandleScroll(resetScroll?: boolean): void;
         
     | 
| 
      
 27 
     | 
    
         
            +
                handleScrollToLeft(): void;
         
     | 
| 
      
 28 
     | 
    
         
            +
                handleScrollToRight(): void;
         
     | 
| 
       9 
29 
     | 
    
         
             
                handleClick(e: React.MouseEvent<HTMLAnchorElement>): void;
         
     | 
| 
       10 
30 
     | 
    
         
             
                handleMouseEnter(e: React.MouseEvent<HTMLAnchorElement>): void;
         
     | 
| 
       11 
     | 
    
         
            -
                render(): JSX.Element 
     | 
| 
      
 31 
     | 
    
         
            +
                render(): JSX.Element;
         
     | 
| 
       12 
32 
     | 
    
         
             
            }
         
     | 
| 
      
 33 
     | 
    
         
            +
            export {};
         
     | 
| 
         @@ -38,6 +38,10 @@ export interface EditorProps extends PluginEventListener { 
     | 
|
| 
       38 
38 
     | 
    
         
             
                previewProps?: any;
         
     | 
| 
       39 
39 
     | 
    
         
             
                iframeUrl?: string;
         
     | 
| 
       40 
40 
     | 
    
         
             
                isHiddenProps?: (key: string) => boolean;
         
     | 
| 
      
 41 
     | 
    
         
            +
                onUndo?: () => void;
         
     | 
| 
      
 42 
     | 
    
         
            +
                onRedo?: () => void;
         
     | 
| 
      
 43 
     | 
    
         
            +
                onSave?: () => void;
         
     | 
| 
      
 44 
     | 
    
         
            +
                onPreview?: (preview: boolean) => void;
         
     | 
| 
       41 
45 
     | 
    
         
             
            }
         
     | 
| 
       42 
46 
     | 
    
         
             
            export default class Editor extends Component<EditorProps> {
         
     | 
| 
       43 
47 
     | 
    
         
             
                readonly store: EditorStoreType;
         
     | 
| 
         @@ -45,6 +49,7 @@ export default class Editor extends Component<EditorProps> { 
     | 
|
| 
       45 
49 
     | 
    
         
             
                readonly mainRef: React.RefObject<HTMLDivElement>;
         
     | 
| 
       46 
50 
     | 
    
         
             
                unReaction: () => void;
         
     | 
| 
       47 
51 
     | 
    
         
             
                lastResult: any;
         
     | 
| 
      
 52 
     | 
    
         
            +
                curCopySchemaData: any;
         
     | 
| 
       48 
53 
     | 
    
         
             
                static defaultProps: {
         
     | 
| 
       49 
54 
     | 
    
         
             
                    autoFocus: boolean;
         
     | 
| 
       50 
55 
     | 
    
         
             
                };
         
     | 
| 
         @@ -52,11 +57,25 @@ export default class Editor extends Component<EditorProps> { 
     | 
|
| 
       52 
57 
     | 
    
         
             
                constructor(props: EditorProps);
         
     | 
| 
       53 
58 
     | 
    
         
             
                componentDidUpdate(prevProps: EditorProps): void;
         
     | 
| 
       54 
59 
     | 
    
         
             
                componentWillUnmount(): void;
         
     | 
| 
      
 60 
     | 
    
         
            +
                handleKeyDown(e: KeyboardEvent): void;
         
     | 
| 
       55 
61 
     | 
    
         
             
                handleContextMenu(e: React.MouseEvent<HTMLElement>): void;
         
     | 
| 
       56 
62 
     | 
    
         
             
                canUndo(): boolean;
         
     | 
| 
       57 
63 
     | 
    
         
             
                canRedo(): boolean;
         
     | 
| 
       58 
64 
     | 
    
         
             
                undo(): void;
         
     | 
| 
       59 
65 
     | 
    
         
             
                redo(): void;
         
     | 
| 
      
 66 
     | 
    
         
            +
                save(): void;
         
     | 
| 
      
 67 
     | 
    
         
            +
                preview(): void;
         
     | 
| 
      
 68 
     | 
    
         
            +
                /**
         
     | 
| 
      
 69 
     | 
    
         
            +
                 * 复制的内容以变量的形式存放
         
     | 
| 
      
 70 
     | 
    
         
            +
                 * 备注1: 系统的复制&粘贴需要开启https服务才有效,所有这里改用内存形式实现
         
     | 
| 
      
 71 
     | 
    
         
            +
                 * 备注2: 此方法不鞥实现跨页面复制&粘贴能力
         
     | 
| 
      
 72 
     | 
    
         
            +
                 * 备注3: 后续需要支持下跨页面跨浏览器复制&粘贴能力
         
     | 
| 
      
 73 
     | 
    
         
            +
                 */
         
     | 
| 
      
 74 
     | 
    
         
            +
                copy(): void;
         
     | 
| 
      
 75 
     | 
    
         
            +
                /**
         
     | 
| 
      
 76 
     | 
    
         
            +
                 * 粘贴上一次复制的内容
         
     | 
| 
      
 77 
     | 
    
         
            +
                 */
         
     | 
| 
      
 78 
     | 
    
         
            +
                paste(): void;
         
     | 
| 
       60 
79 
     | 
    
         
             
                getToolbarContainer(): HTMLDivElement | null;
         
     | 
| 
       61 
80 
     | 
    
         
             
                render(): JSX.Element;
         
     | 
| 
       62 
81 
     | 
    
         
             
            }
         
     | 
| 
         @@ -1,6 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            import React from 'react';
         
     | 
| 
       2 
2 
     | 
    
         
             
            import { EditorManager } from '../manager';
         
     | 
| 
       3 
     | 
    
         
            -
            import { RegionConfig } from '../plugin';
         
     | 
| 
      
 3 
     | 
    
         
            +
            import { RegionConfig, RendererInfo } from '../plugin';
         
     | 
| 
       4 
4 
     | 
    
         
             
            import { EditorStoreType } from '../store/editor';
         
     | 
| 
       5 
5 
     | 
    
         
             
            import { EditorNodeType } from '../store/node';
         
     | 
| 
       6 
6 
     | 
    
         
             
            export interface RegionWrapperProps {
         
     | 
| 
         @@ -13,6 +13,8 @@ export interface RegionWrapperProps { 
     | 
|
| 
       13 
13 
     | 
    
         
             
                manager: EditorManager;
         
     | 
| 
       14 
14 
     | 
    
         
             
                rendererName?: string;
         
     | 
| 
       15 
15 
     | 
    
         
             
                regionConfig: RegionConfig;
         
     | 
| 
      
 16 
     | 
    
         
            +
                node?: EditorNodeType;
         
     | 
| 
      
 17 
     | 
    
         
            +
                $$editor?: RendererInfo;
         
     | 
| 
       16 
18 
     | 
    
         
             
            }
         
     | 
| 
       17 
19 
     | 
    
         
             
            /**
         
     | 
| 
       18 
20 
     | 
    
         
             
             * 1.DOM标记 添加 data-region、data-region-host 和 data-renderer 属性
         
     | 
| 
         @@ -44,12 +46,14 @@ export declare class RegionWrapper extends React.Component<RegionWrapperProps> { 
     | 
|
| 
       44 
46 
     | 
    
         
             
                } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
         
     | 
| 
       45 
47 
     | 
    
         
             
                    getData: import("mobx-state-tree").IType<() => any, () => any, () => any>;
         
     | 
| 
       46 
48 
     | 
    
         
             
                } & {
         
     | 
| 
       47 
     | 
    
         
            -
                    readonly info:  
     | 
| 
       48 
     | 
    
         
            -
                    setInfo(value:  
     | 
| 
      
 49 
     | 
    
         
            +
                    readonly info: RendererInfo;
         
     | 
| 
      
 50 
     | 
    
         
            +
                    setInfo(value: RendererInfo): void;
         
     | 
| 
       49 
51 
     | 
    
         
             
                    readonly isVitualRenderer: boolean;
         
     | 
| 
       50 
52 
     | 
    
         
             
                    readonly clickable: boolean;
         
     | 
| 
       51 
53 
     | 
    
         
             
                    readonly draggable: boolean;
         
     | 
| 
       52 
54 
     | 
    
         
             
                    readonly moveable: boolean;
         
     | 
| 
      
 55 
     | 
    
         
            +
                    readonly canMoveUp: boolean;
         
     | 
| 
      
 56 
     | 
    
         
            +
                    readonly canMoveDown: boolean;
         
     | 
| 
       53 
57 
     | 
    
         
             
                    readonly removable: boolean;
         
     | 
| 
       54 
58 
     | 
    
         
             
                    readonly duplicatable: boolean;
         
     | 
| 
       55 
59 
     | 
    
         
             
                    readonly replaceable: boolean;
         
     | 
| 
         @@ -77,7 +81,7 @@ export declare class RegionWrapper extends React.Component<RegionWrapperProps> { 
     | 
|
| 
       77 
81 
     | 
    
         
             
                        label: string;
         
     | 
| 
       78 
82 
     | 
    
         
             
                        path: string;
         
     | 
| 
       79 
83 
     | 
    
         
             
                        isCommonConfig?: boolean | undefined;
         
     | 
| 
       80 
     | 
    
         
            -
                        info?:  
     | 
| 
      
 84 
     | 
    
         
            +
                        info?: RendererInfo | undefined;
         
     | 
| 
       81 
85 
     | 
    
         
             
                        region?: string | undefined;
         
     | 
| 
       82 
86 
     | 
    
         
             
                        getData?: (() => any) | undefined;
         
     | 
| 
       83 
87 
     | 
    
         
             
                        preferTag?: string | undefined;
         
     | 
| 
         @@ -122,12 +126,14 @@ export declare class RegionWrapper extends React.Component<RegionWrapperProps> { 
     | 
|
| 
       122 
126 
     | 
    
         
             
                }, {
         
     | 
| 
       123 
127 
     | 
    
         
             
                    getData: import("mobx-state-tree").IType<() => any, () => any, () => any>;
         
     | 
| 
       124 
128 
     | 
    
         
             
                } & {
         
     | 
| 
       125 
     | 
    
         
            -
                    readonly info:  
     | 
| 
       126 
     | 
    
         
            -
                    setInfo(value:  
     | 
| 
      
 129 
     | 
    
         
            +
                    readonly info: RendererInfo;
         
     | 
| 
      
 130 
     | 
    
         
            +
                    setInfo(value: RendererInfo): void;
         
     | 
| 
       127 
131 
     | 
    
         
             
                    readonly isVitualRenderer: boolean;
         
     | 
| 
       128 
132 
     | 
    
         
             
                    readonly clickable: boolean;
         
     | 
| 
       129 
133 
     | 
    
         
             
                    readonly draggable: boolean;
         
     | 
| 
       130 
134 
     | 
    
         
             
                    readonly moveable: boolean;
         
     | 
| 
      
 135 
     | 
    
         
            +
                    readonly canMoveUp: boolean;
         
     | 
| 
      
 136 
     | 
    
         
            +
                    readonly canMoveDown: boolean;
         
     | 
| 
       131 
137 
     | 
    
         
             
                    readonly removable: boolean;
         
     | 
| 
       132 
138 
     | 
    
         
             
                    readonly duplicatable: boolean;
         
     | 
| 
       133 
139 
     | 
    
         
             
                    readonly replaceable: boolean;
         
     | 
| 
         @@ -155,7 +161,7 @@ export declare class RegionWrapper extends React.Component<RegionWrapperProps> { 
     | 
|
| 
       155 
161 
     | 
    
         
             
                        label: string;
         
     | 
| 
       156 
162 
     | 
    
         
             
                        path: string;
         
     | 
| 
       157 
163 
     | 
    
         
             
                        isCommonConfig?: boolean | undefined;
         
     | 
| 
       158 
     | 
    
         
            -
                        info?:  
     | 
| 
      
 164 
     | 
    
         
            +
                        info?: RendererInfo | undefined;
         
     | 
| 
       159 
165 
     | 
    
         
             
                        region?: string | undefined;
         
     | 
| 
       160 
166 
     | 
    
         
             
                        getData?: (() => any) | undefined;
         
     | 
| 
       161 
167 
     | 
    
         
             
                        preferTag?: string | undefined;
         
     | 
| 
         @@ -176,6 +182,7 @@ export declare class RegionWrapper extends React.Component<RegionWrapperProps> { 
     | 
|
| 
       176 
182 
     | 
    
         
             
                    setWidthMutable(value: any): void;
         
     | 
| 
       177 
183 
     | 
    
         
             
                    setHeightMutable(value: any): void;
         
     | 
| 
       178 
184 
     | 
    
         
             
                }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | null>;
         
     | 
| 
      
 185 
     | 
    
         
            +
                parentNode: EditorNodeType;
         
     | 
| 
       179 
186 
     | 
    
         
             
                editorNode: EditorNodeType;
         
     | 
| 
       180 
187 
     | 
    
         
             
                UNSAFE_componentWillMount(): void;
         
     | 
| 
       181 
188 
     | 
    
         
             
                componentDidMount(): void;
         
     | 
| 
         @@ -5,14 +5,14 @@ interface ThumbProps { 
     | 
|
| 
       5 
5 
     | 
    
         
             
                theme?: string;
         
     | 
| 
       6 
6 
     | 
    
         
             
                env: any;
         
     | 
| 
       7 
7 
     | 
    
         
             
            }
         
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
      
 8 
     | 
    
         
            +
            interface ThumbStates {
         
     | 
| 
      
 9 
     | 
    
         
            +
                scale: Boolean;
         
     | 
| 
      
 10 
     | 
    
         
            +
            }
         
     | 
| 
      
 11 
     | 
    
         
            +
            export declare class RendererThumb extends React.Component<ThumbProps, ThumbStates> {
         
     | 
| 
       9 
12 
     | 
    
         
             
                ref: HTMLDivElement;
         
     | 
| 
       10 
13 
     | 
    
         
             
                unSensor: Function;
         
     | 
| 
       11 
     | 
    
         
            -
                 
     | 
| 
       12 
     | 
    
         
            -
                    scale: boolean;
         
     | 
| 
       13 
     | 
    
         
            -
                };
         
     | 
| 
      
 14 
     | 
    
         
            +
                constructor(props: ThumbProps);
         
     | 
| 
       14 
15 
     | 
    
         
             
                env: any;
         
     | 
| 
       15 
     | 
    
         
            -
                UNSAFE_componentWillMount(): void;
         
     | 
| 
       16 
16 
     | 
    
         
             
                componentWillUnmount(): void;
         
     | 
| 
       17 
17 
     | 
    
         
             
                rootRef(ref: HTMLDivElement): void;
         
     | 
| 
       18 
18 
     | 
    
         
             
                syncHeight(): void;
         
     | 
| 
         @@ -38,6 +38,8 @@ export declare class VRenderer extends React.Component<VRendererProps> { 
     | 
|
| 
       38 
38 
     | 
    
         
             
                    readonly clickable: boolean;
         
     | 
| 
       39 
39 
     | 
    
         
             
                    readonly draggable: boolean;
         
     | 
| 
       40 
40 
     | 
    
         
             
                    readonly moveable: boolean;
         
     | 
| 
      
 41 
     | 
    
         
            +
                    readonly canMoveUp: boolean;
         
     | 
| 
      
 42 
     | 
    
         
            +
                    readonly canMoveDown: boolean;
         
     | 
| 
       41 
43 
     | 
    
         
             
                    readonly removable: boolean;
         
     | 
| 
       42 
44 
     | 
    
         
             
                    readonly duplicatable: boolean;
         
     | 
| 
       43 
45 
     | 
    
         
             
                    readonly replaceable: boolean;
         
     | 
| 
         @@ -116,6 +118,8 @@ export declare class VRenderer extends React.Component<VRendererProps> { 
     | 
|
| 
       116 
118 
     | 
    
         
             
                    readonly clickable: boolean;
         
     | 
| 
       117 
119 
     | 
    
         
             
                    readonly draggable: boolean;
         
     | 
| 
       118 
120 
     | 
    
         
             
                    readonly moveable: boolean;
         
     | 
| 
      
 121 
     | 
    
         
            +
                    readonly canMoveUp: boolean;
         
     | 
| 
      
 122 
     | 
    
         
            +
                    readonly canMoveDown: boolean;
         
     | 
| 
       119 
123 
     | 
    
         
             
                    readonly removable: boolean;
         
     | 
| 
       120 
124 
     | 
    
         
             
                    readonly duplicatable: boolean;
         
     | 
| 
       121 
125 
     | 
    
         
             
                    readonly replaceable: boolean;
         
     | 
| 
         @@ -0,0 +1,15 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import React from 'react';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import { EditorStoreType } from '../../store/editor';
         
     | 
| 
      
 3 
     | 
    
         
            +
            import { SubRendererInfo } from '../../plugin';
         
     | 
| 
      
 4 
     | 
    
         
            +
            interface SearchCustomRendererProps {
         
     | 
| 
      
 5 
     | 
    
         
            +
                store: EditorStoreType;
         
     | 
| 
      
 6 
     | 
    
         
            +
            }
         
     | 
| 
      
 7 
     | 
    
         
            +
            interface SearchCustomRendererStates {
         
     | 
| 
      
 8 
     | 
    
         
            +
                customRenderersByOrder: Array<SubRendererInfo>;
         
     | 
| 
      
 9 
     | 
    
         
            +
            }
         
     | 
| 
      
 10 
     | 
    
         
            +
            export default class SearchCustomRendererPanel extends React.Component<SearchCustomRendererProps, SearchCustomRendererStates> {
         
     | 
| 
      
 11 
     | 
    
         
            +
                localStorageKey: string;
         
     | 
| 
      
 12 
     | 
    
         
            +
                constructor(props: any);
         
     | 
| 
      
 13 
     | 
    
         
            +
                render(): JSX.Element | null;
         
     | 
| 
      
 14 
     | 
    
         
            +
            }
         
     | 
| 
      
 15 
     | 
    
         
            +
            export {};
         
     | 
| 
         @@ -0,0 +1,83 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import React from 'react';
         
     | 
| 
      
 2 
     | 
    
         
            +
            /**
         
     | 
| 
      
 3 
     | 
    
         
            +
             * 通用搜索功能组件,附带以下功能:
         
     | 
| 
      
 4 
     | 
    
         
            +
             * 1、搜索历史:会自动记录用户搜索过的关键字,方便用户下次使用;
         
     | 
| 
      
 5 
     | 
    
         
            +
             * 2、自动提示补全:autoComplete 设置为 true 后,每次输入关键字后会展示当前所有含有关键字的信息(并以分类的形式展示);
         
     | 
| 
      
 6 
     | 
    
         
            +
             * 3、搜索分类:取决于当前搜索数据结构是否带tag,如果不带tag则不展示搜索分类;
         
     | 
| 
      
 7 
     | 
    
         
            +
             */
         
     | 
| 
      
 8 
     | 
    
         
            +
            interface SearchProps {
         
     | 
| 
      
 9 
     | 
    
         
            +
                allResult: Array<any>;
         
     | 
| 
      
 10 
     | 
    
         
            +
                searchPanelUUID: string;
         
     | 
| 
      
 11 
     | 
    
         
            +
                closeAutoComplete?: boolean;
         
     | 
| 
      
 12 
     | 
    
         
            +
                externalKeyword?: string;
         
     | 
| 
      
 13 
     | 
    
         
            +
                tagKey?: string;
         
     | 
| 
      
 14 
     | 
    
         
            +
                onChange: (keyword: string) => void;
         
     | 
| 
      
 15 
     | 
    
         
            +
                onTagChange?: (tag: string) => void;
         
     | 
| 
      
 16 
     | 
    
         
            +
                immediateChange?: boolean;
         
     | 
| 
      
 17 
     | 
    
         
            +
            }
         
     | 
| 
      
 18 
     | 
    
         
            +
            interface SearchStates {
         
     | 
| 
      
 19 
     | 
    
         
            +
                resultTags: Array<string>;
         
     | 
| 
      
 20 
     | 
    
         
            +
                resultByTag: {
         
     | 
| 
      
 21 
     | 
    
         
            +
                    [propName: string]: Array<any>;
         
     | 
| 
      
 22 
     | 
    
         
            +
                };
         
     | 
| 
      
 23 
     | 
    
         
            +
                curKeyword: string;
         
     | 
| 
      
 24 
     | 
    
         
            +
                searchResult: Array<any>;
         
     | 
| 
      
 25 
     | 
    
         
            +
                searchResultByTag: {
         
     | 
| 
      
 26 
     | 
    
         
            +
                    [propName: string]: Array<any>;
         
     | 
| 
      
 27 
     | 
    
         
            +
                };
         
     | 
| 
      
 28 
     | 
    
         
            +
                visible: boolean;
         
     | 
| 
      
 29 
     | 
    
         
            +
                curKeywordSearchHistory: string[];
         
     | 
| 
      
 30 
     | 
    
         
            +
                toggleTagFolderStatus: boolean;
         
     | 
| 
      
 31 
     | 
    
         
            +
            }
         
     | 
| 
      
 32 
     | 
    
         
            +
            export default class SearchPanel extends React.Component<SearchProps, SearchStates> {
         
     | 
| 
      
 33 
     | 
    
         
            +
                ref: React.RefObject<HTMLDivElement>;
         
     | 
| 
      
 34 
     | 
    
         
            +
                curInputBox: any;
         
     | 
| 
      
 35 
     | 
    
         
            +
                localStorageKey: string;
         
     | 
| 
      
 36 
     | 
    
         
            +
                curTagFolded: {
         
     | 
| 
      
 37 
     | 
    
         
            +
                    [propName: string]: boolean;
         
     | 
| 
      
 38 
     | 
    
         
            +
                };
         
     | 
| 
      
 39 
     | 
    
         
            +
                lastSearchTag: string;
         
     | 
| 
      
 40 
     | 
    
         
            +
                constructor(props: any);
         
     | 
| 
      
 41 
     | 
    
         
            +
                componentDidMount(): void;
         
     | 
| 
      
 42 
     | 
    
         
            +
                componentWillUnmount(): void;
         
     | 
| 
      
 43 
     | 
    
         
            +
                UNSAFE_componentWillReceiveProps(nextProps: any): void;
         
     | 
| 
      
 44 
     | 
    
         
            +
                getSearchHistory(): any[];
         
     | 
| 
      
 45 
     | 
    
         
            +
                /**
         
     | 
| 
      
 46 
     | 
    
         
            +
                 * 从搜索数据中获取分类信息,并按分类存放搜索数据,方便后续通过分类直接获取搜索数据
         
     | 
| 
      
 47 
     | 
    
         
            +
                 */
         
     | 
| 
      
 48 
     | 
    
         
            +
                getResultTags(allResult: Array<any>): {
         
     | 
| 
      
 49 
     | 
    
         
            +
                    curResultTags: string[];
         
     | 
| 
      
 50 
     | 
    
         
            +
                    curResultByTag: {
         
     | 
| 
      
 51 
     | 
    
         
            +
                        [propName: string]: any[];
         
     | 
| 
      
 52 
     | 
    
         
            +
                    };
         
     | 
| 
      
 53 
     | 
    
         
            +
                };
         
     | 
| 
      
 54 
     | 
    
         
            +
                /**
         
     | 
| 
      
 55 
     | 
    
         
            +
                 * 根据关键字过滤数据,按分组存放
         
     | 
| 
      
 56 
     | 
    
         
            +
                 */
         
     | 
| 
      
 57 
     | 
    
         
            +
                groupedResultByKeyword(keywords?: string): void;
         
     | 
| 
      
 58 
     | 
    
         
            +
                bindFocusEvent(): void;
         
     | 
| 
      
 59 
     | 
    
         
            +
                bindBlurEvent(): void;
         
     | 
| 
      
 60 
     | 
    
         
            +
                updateCurKeyword(keywords: string): void;
         
     | 
| 
      
 61 
     | 
    
         
            +
                changeTagFoldStatus(tagKey: string, event: any): void;
         
     | 
| 
      
 62 
     | 
    
         
            +
                bindEnterEvent(event: any): void;
         
     | 
| 
      
 63 
     | 
    
         
            +
                /** 删除搜索关键字 */
         
     | 
| 
      
 64 
     | 
    
         
            +
                bindClearActionEvent(): void;
         
     | 
| 
      
 65 
     | 
    
         
            +
                /** 组件分类tag点击事件 */
         
     | 
| 
      
 66 
     | 
    
         
            +
                bindTagClickEvent(tag: string): void;
         
     | 
| 
      
 67 
     | 
    
         
            +
                /** 添加搜索历史 */
         
     | 
| 
      
 68 
     | 
    
         
            +
                addSearchHistory(newKeywords: string): void;
         
     | 
| 
      
 69 
     | 
    
         
            +
                /** 搜索历史/点击 */
         
     | 
| 
      
 70 
     | 
    
         
            +
                clickKeywordEvent(keywords: string): void;
         
     | 
| 
      
 71 
     | 
    
         
            +
                deleteSearchHistory(event: any, newKeywords: string): void;
         
     | 
| 
      
 72 
     | 
    
         
            +
                clearSearchHistory(event: any): void;
         
     | 
| 
      
 73 
     | 
    
         
            +
                /** 将搜索记录保存到localStorage */
         
     | 
| 
      
 74 
     | 
    
         
            +
                updateSearchHistory(): void;
         
     | 
| 
      
 75 
     | 
    
         
            +
                /** 显示搜索关键字 */
         
     | 
| 
      
 76 
     | 
    
         
            +
                renderNameByKeyword(rendererName: string, curKeyword: string): string | JSX.Element;
         
     | 
| 
      
 77 
     | 
    
         
            +
                /** 判断搜索展示内容是否有滚动(交互优化) */
         
     | 
| 
      
 78 
     | 
    
         
            +
                resultIsHasScroll(searchSubRenderers: {
         
     | 
| 
      
 79 
     | 
    
         
            +
                    [propName: string]: Array<any>;
         
     | 
| 
      
 80 
     | 
    
         
            +
                }, maxShowLine: number): boolean;
         
     | 
| 
      
 81 
     | 
    
         
            +
                render(): JSX.Element;
         
     | 
| 
      
 82 
     | 
    
         
            +
            }
         
     | 
| 
      
 83 
     | 
    
         
            +
            export {};
         
     | 
| 
         @@ -6,54 +6,14 @@ interface SearchRendererProps { 
     | 
|
| 
       6 
6 
     | 
    
         
             
            }
         
     | 
| 
       7 
7 
     | 
    
         
             
            interface SearchRendererStates {
         
     | 
| 
       8 
8 
     | 
    
         
             
                subRenderersByOrder: Array<SubRendererInfo>;
         
     | 
| 
       9 
     | 
    
         
            -
                 
     | 
| 
       10 
     | 
    
         
            -
                    [propName: string]: Array<SubRendererInfo>;
         
     | 
| 
       11 
     | 
    
         
            -
                };
         
     | 
| 
       12 
     | 
    
         
            -
                searchSubRenderers: {
         
     | 
| 
       13 
     | 
    
         
            -
                    [propName: string]: Array<SubRendererInfo>;
         
     | 
| 
       14 
     | 
    
         
            -
                };
         
     | 
| 
       15 
     | 
    
         
            -
                visible: boolean;
         
     | 
| 
       16 
     | 
    
         
            -
                curKeyword: string;
         
     | 
| 
       17 
     | 
    
         
            -
                curKeywordSearchHistory: string[];
         
     | 
| 
       18 
     | 
    
         
            -
                toggleTagFolderStatus: boolean;
         
     | 
| 
      
 9 
     | 
    
         
            +
                defaultKeyword: string;
         
     | 
| 
       19 
10 
     | 
    
         
             
            }
         
     | 
| 
       20 
11 
     | 
    
         
             
            export default class SearchRendererPanel extends React.Component<SearchRendererProps, SearchRendererStates> {
         
     | 
| 
       21 
     | 
    
         
            -
                ref: React.RefObject<HTMLDivElement>;
         
     | 
| 
       22 
     | 
    
         
            -
                curInputBox: any;
         
     | 
| 
       23 
12 
     | 
    
         
             
                localStorageKey: string;
         
     | 
| 
       24 
     | 
    
         
            -
                curTagFolded: {
         
     | 
| 
       25 
     | 
    
         
            -
                    [propName: string]: boolean;
         
     | 
| 
       26 
     | 
    
         
            -
                };
         
     | 
| 
       27 
13 
     | 
    
         
             
                lastSubRenderersTag: string;
         
     | 
| 
       28 
14 
     | 
    
         
             
                constructor(props: any);
         
     | 
| 
       29 
     | 
    
         
            -
                componentDidMount(): void;
         
     | 
| 
       30 
15 
     | 
    
         
             
                UNSAFE_componentWillReceiveProps(nextProps: any): void;
         
     | 
| 
       31 
     | 
    
         
            -
                 
     | 
| 
       32 
     | 
    
         
            -
                bindFocusEvent(): void;
         
     | 
| 
       33 
     | 
    
         
            -
                bindBlurEvent(): void;
         
     | 
| 
       34 
     | 
    
         
            -
                updateCurKeyword(keywords: string): void;
         
     | 
| 
       35 
     | 
    
         
            -
                searchSubRenderersByKeyword(): void;
         
     | 
| 
       36 
     | 
    
         
            -
                changeTagFoldStatus(tagKey: string, event: any): void;
         
     | 
| 
       37 
     | 
    
         
            -
                bindEnterEvent(event: any): void;
         
     | 
| 
       38 
     | 
    
         
            -
                /** 删除搜索关键字 */
         
     | 
| 
       39 
     | 
    
         
            -
                bindClearActionEvent(): void;
         
     | 
| 
       40 
     | 
    
         
            -
                /** 组件分类tag点击事件 */
         
     | 
| 
       41 
     | 
    
         
            -
                bindTagClickEvent(tag: string): void;
         
     | 
| 
       42 
     | 
    
         
            -
                getSearchHistory(): any[];
         
     | 
| 
       43 
     | 
    
         
            -
                /** 添加搜索历史 */
         
     | 
| 
       44 
     | 
    
         
            -
                addSearchHistory(newKeywords: string): void;
         
     | 
| 
       45 
     | 
    
         
            -
                /** 搜索历史/点击 */
         
     | 
| 
       46 
     | 
    
         
            -
                clickKeywordEvent(keywords: string): void;
         
     | 
| 
       47 
     | 
    
         
            -
                deleteSearchHistory(event: any, newKeywords: string): void;
         
     | 
| 
       48 
     | 
    
         
            -
                clearSearchHistory(event: any): void;
         
     | 
| 
       49 
     | 
    
         
            -
                /** 将搜索记录保存到localStorage */
         
     | 
| 
       50 
     | 
    
         
            -
                updateSearchHistory(): void;
         
     | 
| 
       51 
     | 
    
         
            -
                /** 显示搜索关键字 */
         
     | 
| 
       52 
     | 
    
         
            -
                renderNameByKeyword(rendererName: string, curKeyword: string): string | JSX.Element;
         
     | 
| 
       53 
     | 
    
         
            -
                /** 判断搜索展示内容是否有滚动(交互优化) */
         
     | 
| 
       54 
     | 
    
         
            -
                resultIsHasScroll(searchSubRenderers: {
         
     | 
| 
       55 
     | 
    
         
            -
                    [propName: string]: Array<SubRendererInfo>;
         
     | 
| 
       56 
     | 
    
         
            -
                }, maxShowLine: number): boolean;
         
     | 
| 
      
 16 
     | 
    
         
            +
                changeSubRenderersTag(curTag: string): void;
         
     | 
| 
       57 
17 
     | 
    
         
             
                render(): JSX.Element;
         
     | 
| 
       58 
18 
     | 
    
         
             
            }
         
     | 
| 
       59 
19 
     | 
    
         
             
            export {};
         
     |