├── .changeset ├── README.md └── config.json ├── .eslintignore ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yaml ├── .gitignore ├── .npmrc ├── .prettierrc ├── LICENSE ├── README.md ├── apps ├── README.md └── demo │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ ├── 1.svg │ ├── imgs │ │ ├── ad.jpg │ │ ├── bg │ │ │ ├── bg1.png │ │ │ ├── bg2.jpg │ │ │ └── bg3.png │ │ ├── box │ │ │ ├── k_2.png │ │ │ └── k_3.png │ │ └── hero.png │ ├── logo.png │ ├── logo.svg │ ├── logo192.png │ ├── logo2.png │ ├── logo512.png │ ├── robots.txt │ └── vite.svg │ ├── src │ ├── App.css │ ├── App.test.tsx │ ├── App.tsx │ ├── index.css │ ├── logo.svg │ ├── main.tsx │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ └── setupTests.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── vercel.json │ └── vite.config.ts ├── doc ├── images │ ├── wechat.jpg │ ├── wechatgroup0112.jpg │ ├── wechatgroup0122.jpg │ ├── wechatgroup0201.jpg │ ├── wechatgroup0208.jpg │ ├── wechatgroup0221.jpg │ ├── wechatgroup0305.jpg │ ├── wechatgroup0314.jpg │ ├── wechatgroup0321.jpg │ ├── wechatgroup0331.jpg │ ├── wechatgroup0409.jpg │ ├── wechatgroup0422.jpg │ ├── wechatgroup0504.jpg │ ├── wechatgroup0513.jpg │ ├── wechatgroup0520.jpg │ └── wechatgroup0604.jpg ├── professional-rx-logotype-template.zip └── 关于RxDrag的反馈-回复.docx ├── examples ├── README.md ├── app-designer-example │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── ApiBoard │ │ │ ├── graphiql-dark-mode.css │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── trimServerUrl.ts │ │ ├── AppDesigner.tsx │ │ ├── AppDesignerExample.tsx │ │ ├── FrontendDesigner │ │ │ ├── BottomConsole │ │ │ │ ├── FlowDesigner │ │ │ │ │ ├── ComponentTree │ │ │ │ │ │ ├── getArrayNodes.tsx │ │ │ │ │ │ ├── getEventNodes.tsx │ │ │ │ │ │ ├── getListenPropNode.tsx │ │ │ │ │ │ ├── getReactionNodes.tsx │ │ │ │ │ │ ├── getSetPropsNode.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── useGetSchemaTreeOfView.ts │ │ │ │ │ ├── DraggableText.tsx │ │ │ │ │ ├── FXes │ │ │ │ │ │ ├── FxLabel.tsx │ │ │ │ │ │ ├── RootLabel.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── FlowEditor.tsx │ │ │ │ │ ├── FlowPopover.tsx │ │ │ │ │ ├── Flows │ │ │ │ │ │ ├── FlowLabel.tsx │ │ │ │ │ │ ├── ListNode.ts │ │ │ │ │ │ ├── ListNodeLabel.tsx │ │ │ │ │ │ ├── RootFlowsLabel.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── useGetListNodes.ts │ │ │ │ │ ├── ModelTree │ │ │ │ │ │ ├── getModelNode.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Toolbar.tsx │ │ │ │ │ ├── Variables │ │ │ │ │ │ ├── RootVarsLabel.tsx │ │ │ │ │ │ ├── VariableLabel.tsx │ │ │ │ │ │ ├── VariablePopover │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── useAllDocuments.ts │ │ │ │ ├── ScriptDesigner │ │ │ │ │ ├── FXes │ │ │ │ │ │ ├── FxLabel.tsx │ │ │ │ │ │ ├── RootLabel.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ScriptPopover.tsx │ │ │ │ │ ├── Scripts │ │ │ │ │ │ ├── ListNodeLabel.tsx │ │ │ │ │ │ ├── RootLabel.tsx │ │ │ │ │ │ ├── ScriptLabel.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── common │ │ │ │ │ ├── Container.tsx │ │ │ │ │ ├── LeftColumn.tsx │ │ │ │ │ ├── LeftNav.tsx │ │ │ │ │ ├── NavButton.tsx │ │ │ │ │ ├── PanelTitle.tsx │ │ │ │ │ ├── PopoverFooter.tsx │ │ │ │ │ ├── StyledToolbar.tsx │ │ │ │ │ ├── ToolbarTitle.tsx │ │ │ │ │ ├── TreeContainer.ts │ │ │ │ │ └── TreeNodeLabel.tsx │ │ │ ├── DesignerCanvas │ │ │ │ ├── DesignerCanvasInner.tsx │ │ │ │ ├── ModuleCanvas │ │ │ │ │ ├── PageCanvas.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── DesignerPreview │ │ │ │ ├── DesignerPreviewInner.tsx │ │ │ │ ├── ModulePreview │ │ │ │ │ ├── PagePreview.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── LeftSide │ │ │ │ ├── LeftDrawer.tsx │ │ │ │ ├── MenusDrawer.tsx │ │ │ │ ├── ModulesDrawer.tsx │ │ │ │ ├── NavButton.tsx │ │ │ │ ├── ScreenDialog.tsx │ │ │ │ └── index.tsx │ │ │ ├── ModuleUiDesigner │ │ │ │ ├── ModuleUiDesignerInner.tsx │ │ │ │ ├── ViewManager.tsx │ │ │ │ ├── config │ │ │ │ │ ├── index.ts │ │ │ │ │ └── toolboxs │ │ │ │ │ │ ├── AdminUiToolbox.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── interfaces │ │ │ │ │ ├── AssociationMeta.ts │ │ │ │ │ ├── EntityMeta.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── materials │ │ │ │ │ ├── admin │ │ │ │ │ │ └── adminPageMaterials.ts │ │ │ │ │ └── index.ts │ │ │ │ └── setters │ │ │ │ │ ├── EntitySelect.tsx │ │ │ │ │ ├── PropSelect │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── XDataInput │ │ │ │ │ ├── AssociationSelect.tsx │ │ │ │ │ ├── AttributeSelect.tsx │ │ │ │ │ ├── Customized.tsx │ │ │ │ │ ├── DefaultValue.tsx │ │ │ │ │ ├── EntityInput.tsx │ │ │ │ │ ├── LabelInput.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── useIsAssociationSelected.ts │ │ │ │ │ └── useIsEntitySelected.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── locales.ts │ │ │ ├── NavigationDesigner │ │ │ │ ├── Toolbox.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── locales.ts │ │ │ │ ├── resrouces.tsx │ │ │ │ ├── setters │ │ │ │ │ ├── GroupSetter.tsx │ │ │ │ │ ├── LinkSetter.tsx │ │ │ │ │ ├── ModuleSelect.tsx │ │ │ │ │ └── ModuleSetter.tsx │ │ │ │ └── types.ts │ │ │ ├── UiFrameDesigner │ │ │ │ ├── UiFrameDesignerInner.tsx │ │ │ │ ├── config │ │ │ │ │ ├── index.ts │ │ │ │ │ └── toolboxs │ │ │ │ │ │ ├── AdminFrameToolbox.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ ├── index.tsx │ │ │ │ └── materials │ │ │ │ │ ├── admin │ │ │ │ │ ├── App │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── locales.ts │ │ │ │ │ │ ├── schema.ts │ │ │ │ │ │ └── setters │ │ │ │ │ │ │ ├── ThemeTokenSetter │ │ │ │ │ │ │ ├── TokenItemInput.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Menu │ │ │ │ │ │ ├── icon.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── locales.ts │ │ │ │ │ │ ├── schema.ts │ │ │ │ │ │ └── setters │ │ │ │ │ │ │ └── MenuSelect.tsx │ │ │ │ │ ├── Page │ │ │ │ │ │ ├── PagePlaceholder.tsx │ │ │ │ │ │ ├── icon.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── locales.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ ├── components │ │ │ │ ├── admin │ │ │ │ │ ├── App │ │ │ │ │ │ ├── App.tsx │ │ │ │ │ │ ├── AppInner.tsx │ │ │ │ │ │ ├── ThemeRoot.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Menu │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── consts.ts │ │ │ ├── contexts.ts │ │ │ ├── hooks │ │ │ │ ├── getChildEntities.ts │ │ │ │ ├── getParentClasses.ts │ │ │ │ ├── useBuildEntities.ts │ │ │ │ ├── useEnitity.ts │ │ │ │ ├── useEntities.ts │ │ │ │ ├── useGetEntity.ts │ │ │ │ ├── useGetPackageEntities.ts │ │ │ │ ├── useMeta.ts │ │ │ │ ├── useModule.ts │ │ │ │ └── useRecentEntity.ts │ │ │ └── index.tsx │ │ ├── FrontendRoot │ │ │ └── index.tsx │ │ ├── ModelEditor │ │ │ ├── Operate │ │ │ │ └── index.tsx │ │ │ ├── SaveActions │ │ │ │ ├── PublishButton.tsx │ │ │ │ └── index.tsx │ │ │ ├── hooks │ │ │ │ ├── useExportAppJson.ts │ │ │ │ └── useImportAppJson.ts │ │ │ ├── index.tsx │ │ │ ├── interfaces.ts │ │ │ └── locales.ts │ │ ├── PluginManager │ │ │ └── index.tsx │ │ ├── ResourceWidget │ │ │ ├── ResourceCollapsePanel.tsx │ │ │ ├── ResourcesTitle.tsx │ │ │ └── index.tsx │ │ ├── SaveButton.tsx │ │ ├── ServiceExtension │ │ │ ├── LogicEditor │ │ │ │ ├── Toolbar.tsx │ │ │ │ ├── contexts.ts │ │ │ │ ├── index.tsx │ │ │ │ └── minion-materials │ │ │ │ │ ├── advanced │ │ │ │ │ ├── customizedLoop │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── entifyRequest │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── graphqlRequest │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── httpRequest │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── transaction │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── auxtools │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── baseSchema.ts │ │ │ │ │ ├── basic │ │ │ │ │ ├── SplitArgs │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── SplitArray │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── SplitObject │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── condition │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── constValue │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── contextRead │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── contextWrite │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── delay │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── jsCode │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── loop │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ └── merge │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── consts.ts │ │ │ │ │ ├── fxFlow │ │ │ │ │ └── index.ts │ │ │ │ │ ├── icons.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── materials.ts │ │ │ ├── LogicTree │ │ │ │ ├── CodeLabel │ │ │ │ │ └── index.tsx │ │ │ │ ├── ExtensionAction.tsx │ │ │ │ ├── LogicFlowLabel │ │ │ │ │ └── index.tsx │ │ │ │ ├── LogicFlowRootAction.tsx │ │ │ │ ├── ScriptLogicLabel │ │ │ │ │ └── index.tsx │ │ │ │ ├── ScriptLogicRootAction.tsx │ │ │ │ ├── SubFlowLabel │ │ │ │ │ └── index.tsx │ │ │ │ ├── SubLogicAction.tsx │ │ │ │ ├── dialogs │ │ │ │ │ ├── ArgsInput │ │ │ │ │ │ ├── ArgTypeInput.tsx │ │ │ │ │ │ ├── LazyInput.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── style.less │ │ │ │ │ ├── ExtensionDialog.tsx │ │ │ │ │ ├── MethodFormCommonItems.tsx │ │ │ │ │ ├── MethodTypeInput.tsx │ │ │ │ │ ├── NameDialog.tsx │ │ │ │ │ ├── TypeSelect.tsx │ │ │ │ │ └── TypeUuidSelect.tsx │ │ │ │ ├── hooks │ │ │ │ │ ├── useGetFlowNodes.tsx │ │ │ │ │ └── useGetScriptNodes.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ │ ├── ScriptEditor │ │ │ │ └── index.tsx │ │ │ ├── contexts.ts │ │ │ ├── hooks │ │ │ │ └── useMetaContent.ts │ │ │ └── index.tsx │ │ ├── Settings │ │ │ └── index.tsx │ │ ├── ThemeRoot.tsx │ │ ├── Toolbar │ │ │ └── index.tsx │ │ ├── WorkflowEditor │ │ │ ├── ProcessEditor.tsx │ │ │ ├── ProcessList │ │ │ │ ├── CategoryActions.tsx │ │ │ │ ├── CategoryForm.tsx │ │ │ │ ├── CategoryLabel.tsx │ │ │ │ ├── CreateCategoryDialog.tsx │ │ │ │ ├── CreateProcessDialog.tsx │ │ │ │ ├── EditCategoryDialog.tsx │ │ │ │ ├── EditProcessDialog.tsx │ │ │ │ ├── ProcessActions.tsx │ │ │ │ ├── ProcessForm.tsx │ │ │ │ ├── ProcessLabel.tsx │ │ │ │ ├── ProcessModal.tsx │ │ │ │ ├── hooks │ │ │ │ │ ├── useGetCategoryProcesses.ts │ │ │ │ │ └── useProcessesWithoutCategory.ts │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── components │ │ │ ├── ThemeButton.tsx │ │ │ ├── Toolbar.tsx │ │ │ └── index.ts │ │ ├── contexts.ts │ │ ├── data │ │ │ ├── EntityFetcher.ts │ │ │ ├── adminFrame.json │ │ │ ├── app.ts │ │ │ ├── editdepartment.json │ │ │ ├── editpost.json │ │ │ ├── edituser.json │ │ │ ├── expression.json │ │ │ ├── extension-logicflow.ts │ │ │ ├── extension-script.ts │ │ │ ├── flows.json │ │ │ ├── index.ts │ │ │ ├── logic.ts │ │ │ ├── menu.ts │ │ │ ├── meta.json │ │ │ ├── meta.ts │ │ │ ├── molepage.json │ │ │ ├── molescripts.json │ │ │ ├── molesettings.json │ │ │ ├── mudules.ts │ │ │ ├── postList.json │ │ │ ├── process.ts │ │ │ ├── runtime-mock.ts │ │ │ ├── userList copy.json │ │ │ └── userList.json │ │ ├── hooks │ │ │ ├── events │ │ │ │ ├── entityName.ts │ │ │ │ └── index.ts │ │ │ ├── useApp.ts │ │ │ ├── useAppFrontend.ts │ │ │ ├── useAppThemeMode.ts │ │ │ ├── useAppTranslate.ts │ │ │ ├── useMenu.ts │ │ │ ├── useQueryApp.ts │ │ │ ├── useQueryAppExtensionLogicFlows.ts │ │ │ ├── useQueryAppExtensionScripts.ts │ │ │ ├── useQueryAppMeta.ts │ │ │ ├── useQueryAppProcessCategories.ts │ │ │ ├── useQueryAppProcesses.ts │ │ │ ├── useQueryExtensionLogicFlow.ts │ │ │ ├── useQueryExtensionScript.ts │ │ │ ├── useQueryFlow.ts │ │ │ ├── useQueryFlows.ts │ │ │ ├── useQueryFrontend.ts │ │ │ ├── useQueryModule.ts │ │ │ ├── useQueryModuleFlows.ts │ │ │ ├── useQueryModuleScripts.ts │ │ │ ├── useQueryModules.ts │ │ │ ├── useQueryProcess.ts │ │ │ ├── useQueryScript.ts │ │ │ ├── useQueryScripts.ts │ │ │ ├── useRemoveExtensionLogicFlow.ts │ │ │ ├── useRemoveExtensionScript.ts │ │ │ ├── useRemoveFlow.ts │ │ │ ├── useRemoveProcess.ts │ │ │ ├── useRemoveProcessCategory.ts │ │ │ ├── useRemoveScript.ts │ │ │ ├── useSaveApp.ts │ │ │ ├── useSaveExtensionLogicFlow.ts │ │ │ ├── useSaveExtensionScript.ts │ │ │ ├── useSaveFlow.ts │ │ │ ├── useSaveFrontend.ts │ │ │ ├── useSaveMeta.ts │ │ │ ├── useSaveModule.ts │ │ │ ├── useSaveProcess.ts │ │ │ ├── useSaveProcessCategory.ts │ │ │ └── useSaveScript.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── app.ts │ │ │ ├── device.ts │ │ │ ├── extension.ts │ │ │ ├── flow.ts │ │ │ ├── index.ts │ │ │ ├── menu.ts │ │ │ ├── meta.ts │ │ │ ├── module.ts │ │ │ ├── process.ts │ │ │ └── theme.ts │ │ ├── locales.ts │ │ ├── minions │ │ │ ├── activities │ │ │ │ ├── QueryEntities │ │ │ │ │ └── index.ts │ │ │ │ ├── QueryOneEntity │ │ │ │ │ └── index.ts │ │ │ │ ├── RemoveEntity │ │ │ │ │ └── index.ts │ │ │ │ ├── SaveEntity │ │ │ │ │ └── index.ts │ │ │ │ ├── common │ │ │ │ │ ├── IEntityConfig.ts │ │ │ │ │ ├── IEntityQueryConfig.ts │ │ │ │ │ └── interfaces.ts │ │ │ │ └── index.ts │ │ │ ├── contexts.ts │ │ │ └── materials │ │ │ │ ├── QueryEntities │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ │ ├── QueryOneEntity │ │ │ │ └── index.ts │ │ │ │ ├── RemoveEntity │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ │ ├── SaveEntity │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ │ ├── index.ts │ │ │ │ ├── locales.ts │ │ │ │ └── setters │ │ │ │ ├── QueryParamsInput │ │ │ │ ├── AssociationArea.tsx │ │ │ │ ├── EntityArea.tsx │ │ │ │ ├── ExpressionInput │ │ │ │ │ ├── AddMenu.tsx │ │ │ │ │ ├── ExpressionChild.tsx │ │ │ │ │ ├── ExpressionChildren.tsx │ │ │ │ │ ├── ExpressionGroup.tsx │ │ │ │ │ ├── ExpressionInput.tsx │ │ │ │ │ ├── ExpressionInputProps.ts │ │ │ │ │ ├── ExpressionItem.tsx │ │ │ │ │ ├── ExpressionTreeInput.tsx │ │ │ │ │ ├── OperatorSelect.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ExprssionDrawer.tsx │ │ │ │ ├── Footer.tsx │ │ │ │ ├── PropertiesArea.tsx │ │ │ │ ├── SortPopover.tsx │ │ │ │ └── index.tsx │ │ │ │ └── index.ts │ │ ├── style.css │ │ └── styled.d.ts │ ├── tsconfig.json │ └── vite.config.ts ├── example-common │ ├── .eslintrc │ ├── .gitignore │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── Logo.tsx │ │ ├── MenuButton.tsx │ │ ├── ResourceWidget │ │ │ ├── ResourceCollapsePanel.tsx │ │ │ ├── ResourcesTitle.tsx │ │ │ └── index.tsx │ │ ├── components │ │ │ ├── business │ │ │ │ ├── News │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.less │ │ │ │ ├── Notices │ │ │ │ │ └── index.tsx │ │ │ │ ├── RightAd │ │ │ │ │ └── index.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── hooks │ │ │ ├── helper │ │ │ │ └── saveFile.tsx │ │ │ ├── index.ts │ │ │ └── useSaveJson.ts │ │ ├── httpquery │ │ │ ├── activities │ │ │ │ ├── MultipleQuery.ts │ │ │ │ ├── ObjectToUrl.ts │ │ │ │ ├── PostData.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── classes │ │ │ │ │ ├── QueryRecord.ts │ │ │ │ │ ├── QuerySession.ts │ │ │ │ │ └── Restful.ts │ │ │ │ ├── index.ts │ │ │ │ └── interfaces.ts │ │ │ └── minion-materials │ │ │ │ ├── MultipleQuery │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ │ ├── ObjectToUrl │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ │ ├── PostData │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ │ ├── SingleQuery │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ │ ├── index.ts │ │ │ │ ├── locales.ts │ │ │ │ ├── materials.ts │ │ │ │ └── types.ts │ │ ├── index.ts │ │ ├── locales.ts │ │ ├── materials │ │ │ ├── business │ │ │ │ ├── News │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Notices │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ └── RightAd │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ ├── index.ts │ │ │ └── locales.ts │ │ ├── mock │ │ │ ├── data │ │ │ │ ├── dashboard.ts │ │ │ │ ├── index.ts │ │ │ │ └── user.ts │ │ │ ├── getVariable.ts │ │ │ ├── index.ts │ │ │ ├── post.ts │ │ │ └── query.ts │ │ └── routes.ts │ ├── tsconfig.json │ └── vite.config.ts ├── large-screen-example │ ├── .eslintrc │ ├── .gitignore │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── LargeScreenExample.tsx │ │ ├── LargeScreenExampleInner.tsx │ │ ├── LeftSide │ │ │ ├── ScreenDialog.tsx │ │ │ └── index.tsx │ │ ├── ResourceWidget │ │ │ ├── ResourceCollapsePanel.tsx │ │ │ ├── ResourcesTitle.tsx │ │ │ └── index.tsx │ │ ├── SaveButton.tsx │ │ ├── Toolbar │ │ │ ├── Toolbar.tsx │ │ │ └── index.ts │ │ ├── components │ │ │ ├── RootBoard │ │ │ │ ├── RootBoardInner.tsx │ │ │ │ ├── ThemeRoot.tsx │ │ │ │ └── index.tsx │ │ │ ├── basic │ │ │ │ ├── LSText │ │ │ │ │ └── index.tsx │ │ │ │ └── index.ts │ │ │ ├── common │ │ │ │ ├── index.ts │ │ │ │ ├── interfaces.ts │ │ │ │ └── withFreedom.tsx │ │ │ ├── components.ts │ │ │ ├── index.ts │ │ │ └── locales.ts │ │ ├── index.ts │ │ ├── marerials │ │ │ ├── RootBoard │ │ │ │ ├── index.ts │ │ │ │ ├── locales.ts │ │ │ │ ├── schema.ts │ │ │ │ └── setters │ │ │ │ │ ├── ThemeTokenSetter │ │ │ │ │ ├── TokenItemInput.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.ts │ │ │ ├── basic │ │ │ │ ├── LSText │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ └── index.ts │ │ │ ├── designers.ts │ │ │ ├── index.ts │ │ │ ├── locales.ts │ │ │ ├── materials.ts │ │ │ └── resources.ts │ │ ├── setters │ │ │ ├── ImageSelect │ │ │ │ └── index.tsx │ │ │ ├── index.ts │ │ │ └── setters.ts │ │ └── styled.d.ts │ ├── tsconfig.json │ └── vite.config.ts ├── logicflow-editor-example │ ├── .eslintrc │ ├── .gitignore │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── LogicflowEditorExample.tsx │ │ ├── components │ │ │ ├── ExampleInner.tsx │ │ │ ├── ShellContainer.tsx │ │ │ └── meta.json │ │ ├── index.ts │ │ ├── materials.ts │ │ └── minion-materials │ │ │ ├── auxtools │ │ │ ├── debug │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ └── index.ts │ │ │ ├── baseSchema.ts │ │ │ ├── basic │ │ │ ├── SplitArray │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── SplitObject │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── condition │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── constValue │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── delay │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── index.ts │ │ │ ├── jsCode │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── loop │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ └── merge │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── consts.ts │ │ │ ├── index.ts │ │ │ ├── interfaces.ts │ │ │ ├── locales.ts │ │ │ └── materials.ts │ ├── tsconfig.json │ └── vite.config.ts ├── normal-editor-example │ ├── .eslintrc │ ├── .gitignore │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── NormalEditorExample.tsx │ │ ├── PagesWidget │ │ │ └── index.tsx │ │ ├── README.md │ │ ├── data │ │ │ ├── advance-form.json │ │ │ ├── basic-form.json │ │ │ ├── customized-loop.json │ │ │ ├── dashboard.json │ │ │ ├── details.json │ │ │ ├── form-validation.json │ │ │ ├── index.ts │ │ │ ├── list.json │ │ │ ├── list_shortcut.json │ │ │ ├── mole.json │ │ │ ├── rxeditor-json.json │ │ │ ├── script.json │ │ │ ├── step-form.json │ │ │ └── test.json │ │ ├── hooks │ │ │ ├── index.ts │ │ │ └── usePredefinedComponents.ts │ │ ├── index.ts │ │ └── widgets │ │ │ ├── SaveButton.tsx │ │ │ └── index.ts │ ├── tsconfig.json │ └── vite.config.ts └── runtime-example │ ├── .eslintrc │ ├── .gitignore │ ├── index.ts │ ├── package.json │ ├── src │ ├── RuntimeExample.tsx │ ├── data.json │ ├── index.ts │ └── usePredefinedComponents.ts │ ├── tsconfig.json │ └── vite.config.ts ├── internal ├── index.ts └── vite-config │ ├── index.ts │ ├── package.json │ ├── src │ ├── config │ │ ├── application.ts │ │ └── package.ts │ ├── index.ts │ └── plugins │ │ ├── index.ts │ │ └── visualizer.ts │ └── tsconfig.json ├── jsconfig.json ├── package.json ├── packages ├── bpmn-editor │ ├── .eslintrc │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── BpmnEditor.tsx │ │ ├── IModeler.ts │ │ ├── PropertyBox │ │ │ ├── ToolbarArea.tsx │ │ │ ├── ToolbarTitle.tsx │ │ │ └── index.tsx │ │ ├── PropertyPanel │ │ │ ├── elements │ │ │ │ ├── IElement.ts │ │ │ │ ├── index.ts │ │ │ │ ├── useAssociation.tsx │ │ │ │ ├── useBusinessRuleTask.tsx │ │ │ │ ├── useCallActivity.tsx │ │ │ │ ├── useCollaboration.tsx │ │ │ │ ├── useCollapsedSubProcess.tsx │ │ │ │ ├── useElementName.ts │ │ │ │ ├── useEndEvent.tsx │ │ │ │ ├── useEventBasedGateway.tsx │ │ │ │ ├── useExclusiveGateway.tsx │ │ │ │ ├── useExpandedSubProcess.tsx │ │ │ │ ├── useGroup.tsx │ │ │ │ ├── useInclusiveGateway.tsx │ │ │ │ ├── useIntermediateThrowEvent.tsx │ │ │ │ ├── useLane.tsx │ │ │ │ ├── useManualTask.tsx │ │ │ │ ├── useParallelGateway.tsx │ │ │ │ ├── useParticipant.tsx │ │ │ │ ├── useProcess.tsx │ │ │ │ ├── useReceiveTask.tsx │ │ │ │ ├── useScriptTask.tsx │ │ │ │ ├── useSendTask.tsx │ │ │ │ ├── useSequenceFlow.tsx │ │ │ │ ├── useServiceTask.tsx │ │ │ │ ├── useStartEvent.tsx │ │ │ │ ├── useTask.tsx │ │ │ │ ├── useTextAnnotation.tsx │ │ │ │ └── useUserTask.tsx │ │ │ ├── index.tsx │ │ │ └── items │ │ │ │ ├── AssgnmentItem.tsx │ │ │ │ ├── DocumentItem.tsx │ │ │ │ ├── IdItem.tsx │ │ │ │ └── NameItem.tsx │ │ ├── XmlEditor │ │ │ └── index.tsx │ │ ├── hooks │ │ │ ├── useAssignment.ts │ │ │ ├── useCustomTranslate.ts │ │ │ └── useSelection.ts │ │ ├── index.ts │ │ ├── plugins │ │ │ ├── context-pad │ │ │ │ ├── CustomContextPadProvider.ts │ │ │ │ └── index.ts │ │ │ ├── palette │ │ │ │ ├── CustomPaletteProvider.ts │ │ │ │ └── index.ts │ │ │ └── replace │ │ │ │ ├── CustomReplaceMenuProvider.js │ │ │ │ └── index.ts │ │ ├── resources │ │ │ └── zeebe.json │ │ └── style.less │ ├── tsconfig.json │ └── vite.config.ts ├── eslint-config-custom │ ├── index.js │ └── package.json ├── fieldy │ ├── fieldy-react │ │ ├── .eslintrc │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── ArrayField │ │ │ │ │ ├── ArrayField.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Field │ │ │ │ │ └── index.tsx │ │ │ │ ├── Fieldy.tsx │ │ │ │ ├── ObjectField │ │ │ │ │ └── index.tsx │ │ │ │ ├── VirtualForm.tsx │ │ │ │ ├── XField │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── useCreateFieldSchema.ts │ │ │ │ │ │ ├── useFieldSchemas.ts │ │ │ │ │ │ └── useRegisterField.ts │ │ │ │ │ └── index.tsx │ │ │ │ └── index.ts │ │ │ ├── contexts.ts │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useField.tsx │ │ │ │ ├── useFieldErrors.ts │ │ │ │ ├── useFieldNode.tsx │ │ │ │ ├── useFieldPath.ts │ │ │ │ ├── useFieldState.ts │ │ │ │ ├── useFieldStateByPath.ts │ │ │ │ ├── useFieldValue.ts │ │ │ │ ├── useFieldy.ts │ │ │ │ └── useForm.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts │ ├── fieldy │ │ ├── .eslintrc │ │ ├── README.md │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── actions │ │ │ │ ├── index.ts │ │ │ │ ├── payload.ts │ │ │ │ └── registry.ts │ │ │ ├── classes │ │ │ │ ├── FieldImpl.ts │ │ │ │ ├── FieldyEngineImpl.ts │ │ │ │ ├── FormImpl.ts │ │ │ │ ├── PropExpression.ts │ │ │ │ ├── ValidationSubscriber.ts │ │ │ │ └── index.ts │ │ │ ├── funcs │ │ │ │ ├── index.ts │ │ │ │ ├── parseValue.ts │ │ │ │ └── path.ts │ │ │ ├── index.ts │ │ │ ├── interfaces │ │ │ │ ├── fieldy.ts │ │ │ │ ├── index.ts │ │ │ │ ├── meta.ts │ │ │ │ └── validator.ts │ │ │ └── reducers │ │ │ │ ├── forms │ │ │ │ ├── form │ │ │ │ │ ├── field.ts │ │ │ │ │ ├── fieldSchemas.ts │ │ │ │ │ ├── fields.ts │ │ │ │ │ ├── helpers.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── initialValue.ts │ │ │ │ │ ├── initialized.ts │ │ │ │ │ ├── loading.ts │ │ │ │ │ ├── modified.ts │ │ │ │ │ ├── mounted.ts │ │ │ │ │ ├── pattern.ts │ │ │ │ │ ├── unmounted.ts │ │ │ │ │ ├── validating.ts │ │ │ │ │ └── value.ts │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts │ └── yup-validation │ │ ├── README.md │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ ├── classes │ │ │ ├── YupValidator.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ └── predefineds │ │ │ ├── email.ts │ │ │ ├── index.ts │ │ │ ├── url.ts │ │ │ └── uuid.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts ├── locales │ ├── locales-react │ │ ├── .eslintrc │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── contexts.ts │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ ├── useLocalesManager.ts │ │ │ │ ├── useRxDragLocalesManager.ts │ │ │ │ └── useTranslate.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts │ └── locales │ │ ├── README.md │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ ├── classes │ │ │ ├── LocalesManager.ts │ │ │ ├── RxDragLocalesManager.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── interfaces │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts ├── logicflow-editor-antd5 │ ├── .eslintrc │ ├── README.md │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── LogicFlowEditorAntd5.tsx │ │ ├── LogicFlowEditorAntd5Inner.tsx │ │ ├── LogicFlowEditorAntd5Scope.tsx │ │ ├── components │ │ │ ├── FlowToolbar │ │ │ │ ├── FlowRemoveButton.tsx │ │ │ │ ├── FlowToolbar.tsx │ │ │ │ ├── FlowUdredoButtons.tsx │ │ │ │ ├── icons.tsx │ │ │ │ └── index.ts │ │ │ ├── LogicFlowEditorInner.tsx │ │ │ ├── MiniToolbar │ │ │ │ └── index.tsx │ │ │ ├── PropertyBox │ │ │ │ ├── PortsInput │ │ │ │ │ ├── EditableCell.tsx │ │ │ │ │ ├── EditableContext.tsx │ │ │ │ │ ├── EditableRow.tsx │ │ │ │ │ ├── PortsTable.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── ToggleButton │ │ │ │ └── index.tsx │ │ │ ├── Toolbox │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useTrans.ts │ │ │ ├── useTransMaterial.ts │ │ │ └── useTransMaterialCategories.ts │ │ ├── index.ts │ │ └── styled.d.ts │ ├── tsconfig.json │ └── vite.config.ts ├── minions-activities │ ├── .eslintrc │ ├── README.md │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── antd5 │ │ │ ├── contexts.ts │ │ │ ├── index.ts │ │ │ └── infoMessage │ │ │ │ └── index.ts │ │ ├── auxtools │ │ │ ├── Debug │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── basic │ │ │ ├── CollectToArray │ │ │ │ └── index.ts │ │ │ ├── Condition │ │ │ │ └── index.ts │ │ │ ├── ConstValue │ │ │ │ └── index.ts │ │ │ ├── Delay │ │ │ │ └── index.ts │ │ │ ├── Equal │ │ │ │ └── index.ts │ │ │ ├── Increase │ │ │ │ └── index.ts │ │ │ ├── Loop │ │ │ │ └── index.ts │ │ │ ├── Merge │ │ │ │ └── index.ts │ │ │ ├── Negation │ │ │ │ └── index.ts │ │ │ ├── Random │ │ │ │ └── index.ts │ │ │ ├── Signals │ │ │ │ └── index.ts │ │ │ ├── SplitArray │ │ │ │ └── index.ts │ │ │ ├── SplitObject │ │ │ │ └── index.ts │ │ │ ├── SumArray │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── common │ │ │ ├── ArrayToTree │ │ │ │ └── index.ts │ │ │ ├── CustomizedLoop │ │ │ │ └── index.ts │ │ │ ├── JsCode │ │ │ │ └── index.ts │ │ │ ├── Mock │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── fxFlow │ │ │ └── index.ts │ │ └── index.ts │ ├── tsconfig.json │ └── vite.config.ts ├── minions-react-materials │ ├── .eslintrc │ ├── README.md │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── array │ │ │ ├── index.ts │ │ │ ├── readIndex │ │ │ │ └── index.ts │ │ │ └── readRow │ │ │ │ └── index.ts │ │ ├── auxtools │ │ │ ├── debug │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ └── index.ts │ │ ├── baseSchema.ts │ │ ├── basic │ │ │ ├── SplitArray │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── SplitObject │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── collectToArray │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── condition │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── constValue │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── delay │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── equal │ │ │ │ └── index.ts │ │ │ ├── increase │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── index.ts │ │ │ ├── loop │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── merge │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── negation │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── random │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── signals │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ └── sumArray │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ ├── common │ │ │ ├── arrayToTree │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── customizedLoop │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── index.ts │ │ │ ├── infoMessage │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── jsCode │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ ├── mock │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ └── routeTo │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ ├── controller │ │ │ ├── event │ │ │ │ └── index.ts │ │ │ ├── fxFlow │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── listenProp │ │ │ │ └── index.ts │ │ │ ├── reaction │ │ │ │ └── index.ts │ │ │ ├── setProp │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ │ └── utils.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── locales.ts │ │ ├── materials.ts │ │ └── variable │ │ │ ├── index.ts │ │ │ ├── listenVariable │ │ │ └── index.ts │ │ │ ├── readVariable │ │ │ └── index.ts │ │ │ └── setVariable │ │ │ └── index.ts │ ├── tsconfig.json │ └── vite.config.ts ├── minions │ ├── editor │ │ ├── .eslintrc │ │ ├── README.md │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── actions.ts │ │ │ ├── classes │ │ │ │ ├── EditorStore.ts │ │ │ │ └── index.ts │ │ │ ├── components │ │ │ │ ├── FlowCanvas │ │ │ │ │ └── index.tsx │ │ │ │ ├── FlowPropertyBox │ │ │ │ │ └── index.tsx │ │ │ │ ├── FlowToolbar │ │ │ │ │ └── index.tsx │ │ │ │ ├── FlowToolbox │ │ │ │ │ ├── ActivityResource.tsx │ │ │ │ │ ├── ToolItem.tsx │ │ │ │ │ ├── ToolItemCategory.tsx │ │ │ │ │ ├── Toolbox.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── Logic.tsx │ │ │ │ ├── LogicFlowEditor.tsx │ │ │ │ ├── LogicFlowEditorInner.tsx │ │ │ │ ├── LogicFlowEditorScope.tsx │ │ │ │ ├── ReactionNode.tsx │ │ │ │ ├── ResizableColumn │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.css │ │ │ │ └── index.ts │ │ │ ├── contexts.ts │ │ │ ├── hooks │ │ │ │ ├── config.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── edit-meta │ │ │ │ │ ├── getParentSize.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useAddNode.ts │ │ │ │ │ ├── useBackup.ts │ │ │ │ │ ├── useChildPositionChange.ts │ │ │ │ │ ├── useEditEdge.ts │ │ │ │ │ ├── useMarkChange.ts │ │ │ │ │ ├── useMovedNode.ts │ │ │ │ │ ├── useNodeEmbedded.ts │ │ │ │ │ ├── useRedo.ts │ │ │ │ │ ├── useRemoveSelected.ts │ │ │ │ │ └── useUndo.ts │ │ │ │ ├── getEndNodeConfig.ts │ │ │ │ ├── getStartNodeConfig.ts │ │ │ │ ├── index.ts │ │ │ │ ├── useArrowhead.ts │ │ │ │ ├── useChangeFlag.ts │ │ │ │ ├── useCreateGraph.ts │ │ │ │ ├── useDispatch.ts │ │ │ │ ├── useDnd.ts │ │ │ │ ├── useEditorStore.ts │ │ │ │ ├── useGetEdgeConfig.ts │ │ │ │ ├── useGetGroupNodeConfig.ts │ │ │ │ ├── useGetLogicFlowNodeConfig.ts │ │ │ │ ├── useGetMaterial.ts │ │ │ │ ├── useGetNodeConfig.ts │ │ │ │ ├── useGetNodeHeight.ts │ │ │ │ ├── useGetNodeMeta.ts │ │ │ │ ├── useGetNodeWidth.ts │ │ │ │ ├── useGetSingleNodeConfig.ts │ │ │ │ ├── useGetSubLabel.ts │ │ │ │ ├── useGetTitle.ts │ │ │ │ ├── useGraph.ts │ │ │ │ ├── useGraphState.ts │ │ │ │ ├── useGroupPortsConfig.ts │ │ │ │ ├── useLogicFlowContext.ts │ │ │ │ ├── useMaterials.ts │ │ │ │ ├── useMaterialsState.ts │ │ │ │ ├── useMetas.ts │ │ │ │ ├── usePortsConfig.ts │ │ │ │ ├── useRedoList.ts │ │ │ │ ├── useRegisterMaterial.ts │ │ │ │ ├── useSelected.ts │ │ │ │ ├── useSelectedEdge.ts │ │ │ │ ├── useSelectedNode.ts │ │ │ │ ├── useSelection.ts │ │ │ │ ├── useSetZoom.ts │ │ │ │ ├── useShowCells.ts │ │ │ │ ├── useShowEdge.ts │ │ │ │ ├── useShowMap.ts │ │ │ │ ├── useShowNode.ts │ │ │ │ ├── useThemeToken.ts │ │ │ │ ├── useTransformPorts.ts │ │ │ │ ├── useUndoList.ts │ │ │ │ ├── useUpdateNode.ts │ │ │ │ ├── useZoom.ts │ │ │ │ ├── useZoomIn.ts │ │ │ │ └── useZoomOut.ts │ │ │ ├── index.ts │ │ │ ├── interfaces │ │ │ │ ├── controller.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interfaces.ts │ │ │ │ ├── state.ts │ │ │ │ ├── styled.d.ts │ │ │ │ └── theme.ts │ │ │ └── reducers │ │ │ │ ├── changeFlagReducer.ts │ │ │ │ ├── childrenReducer.ts │ │ │ │ ├── mainReducer.ts │ │ │ │ ├── metasReducer.ts │ │ │ │ ├── redoListReducer.ts │ │ │ │ ├── selectedReducer.ts │ │ │ │ ├── showMapReducer.ts │ │ │ │ ├── undoListReducer.ts │ │ │ │ └── zoomReducer.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts │ ├── runtime-core │ │ ├── .eslintrc │ │ ├── README.md │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── classes │ │ │ │ ├── AbstractActivity.ts │ │ │ │ ├── ActivityJointers.ts │ │ │ │ ├── Jointer.ts │ │ │ │ ├── LogicFlow.ts │ │ │ │ ├── activities.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── interfaces │ │ │ │ ├── activity.ts │ │ │ │ ├── contexts.ts │ │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts │ ├── runtime-react │ │ ├── .eslintrc │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── activities │ │ │ │ ├── ControllerActivity.ts │ │ │ │ ├── VirableActivity.ts │ │ │ │ ├── array │ │ │ │ │ ├── ReadIndex.ts │ │ │ │ │ ├── ReadRow.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── event │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── prop │ │ │ │ │ ├── ListenProp.ts │ │ │ │ │ ├── ReadProp.ts │ │ │ │ │ ├── SetProp.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── reaction │ │ │ │ │ └── index.ts │ │ │ │ ├── routeTo │ │ │ │ │ └── index.ts │ │ │ │ └── variable │ │ │ │ │ ├── ListenVariable.ts │ │ │ │ │ ├── ReadVariable.ts │ │ │ │ │ ├── SetVariable.ts │ │ │ │ │ └── index.ts │ │ │ ├── controllers │ │ │ │ ├── ComponentController.ts │ │ │ │ ├── VariableController.ts │ │ │ │ ├── index.ts │ │ │ │ └── reactions │ │ │ │ │ ├── button.ts │ │ │ │ │ ├── form.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── list.ts │ │ │ │ │ └── popup.ts │ │ │ ├── index.ts │ │ │ └── interfaces │ │ │ │ ├── context.ts │ │ │ │ ├── controller.ts │ │ │ │ ├── flow.ts │ │ │ │ ├── index.ts │ │ │ │ └── meta.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts │ └── schema │ │ ├── README.md │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ ├── dsl.ts │ │ ├── index.ts │ │ ├── material.ts │ │ └── variable.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts ├── react-antd-components │ ├── .eslintrc │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── Button │ │ │ └── index.tsx │ │ ├── datas │ │ │ ├── ArrayPanel │ │ │ │ └── index.tsx │ │ │ ├── List │ │ │ │ └── index.tsx │ │ │ ├── ListItem │ │ │ │ └── index.tsx │ │ │ ├── ObjectContainer │ │ │ │ └── index.tsx │ │ │ ├── Table │ │ │ │ └── index.tsx │ │ │ ├── TableColumn │ │ │ │ └── index.tsx │ │ │ ├── TreeList │ │ │ │ ├── TreeListShell.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── utils.ts │ │ │ ├── TreeListItem │ │ │ │ └── index.tsx │ │ │ ├── TreeListItemActions │ │ │ │ └── index.tsx │ │ │ ├── index.ts │ │ │ └── interfaces.ts │ │ ├── displays │ │ │ ├── ImageView │ │ │ │ └── index.tsx │ │ │ ├── LoopPanel │ │ │ │ └── index.tsx │ │ │ ├── Statistic │ │ │ │ └── index.tsx │ │ │ ├── Tag │ │ │ │ └── index.tsx │ │ │ ├── index.ts │ │ │ └── typography │ │ │ │ ├── Link │ │ │ │ └── index.tsx │ │ │ │ ├── Paragraph │ │ │ │ └── index.tsx │ │ │ │ ├── Text │ │ │ │ └── index.tsx │ │ │ │ ├── Title │ │ │ │ └── index.tsx │ │ │ │ ├── hooks │ │ │ │ ├── index.ts │ │ │ │ └── useFormat.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.tsx │ │ ├── forms │ │ │ ├── DefaultPretty │ │ │ │ └── index.tsx │ │ │ ├── Form │ │ │ │ ├── PassFormToController.tsx │ │ │ │ └── index.tsx │ │ │ ├── FormItem │ │ │ │ └── index.tsx │ │ │ ├── FormLayout │ │ │ │ └── index.tsx │ │ │ ├── InlineForm │ │ │ │ └── index.tsx │ │ │ ├── contexts.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── hocs │ │ │ ├── index.ts │ │ │ ├── mapComponent.tsx │ │ │ └── withContainerLayout.tsx │ │ ├── index.ts │ │ ├── inputs │ │ │ ├── Checkbox │ │ │ │ └── index.tsx │ │ │ ├── Radio │ │ │ │ └── index.tsx │ │ │ ├── Slider │ │ │ │ └── index.tsx │ │ │ ├── Switch │ │ │ │ └── index.tsx │ │ │ ├── TimePicker │ │ │ │ └── index.tsx │ │ │ ├── Transfer │ │ │ │ └── index.tsx │ │ │ ├── TreeSelect │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── layouts │ │ │ ├── Box │ │ │ │ └── index.tsx │ │ │ ├── Breadcrumb │ │ │ │ └── index.tsx │ │ │ ├── Card │ │ │ │ └── index.tsx │ │ │ ├── Col │ │ │ │ └── index.tsx │ │ │ ├── Container │ │ │ │ └── index.tsx │ │ │ ├── HCFLayout.tsx │ │ │ ├── Header │ │ │ │ └── index.tsx │ │ │ ├── Hero │ │ │ │ ├── HeroContent.tsx │ │ │ │ └── index.tsx │ │ │ ├── Logo │ │ │ │ └── index.tsx │ │ │ ├── Menu │ │ │ │ └── index.tsx │ │ │ ├── Page │ │ │ │ └── index.tsx │ │ │ ├── Paper │ │ │ │ └── index.tsx │ │ │ ├── Sider │ │ │ │ └── index.tsx │ │ │ ├── Space │ │ │ │ └── index.tsx │ │ │ ├── TowColumnLayout.tsx │ │ │ ├── Trigger │ │ │ │ ├── index.tsx │ │ │ │ └── style.less │ │ │ ├── context.ts │ │ │ └── index.ts │ │ ├── locales.ts │ │ ├── popups │ │ │ ├── Dialog │ │ │ │ └── index.tsx │ │ │ ├── DialogContent │ │ │ │ └── index.tsx │ │ │ ├── DialogFooter │ │ │ │ └── index.tsx │ │ │ ├── DialogGroup │ │ │ │ └── index.tsx │ │ │ ├── DialogTitle │ │ │ │ └── index.tsx │ │ │ ├── Drawer │ │ │ │ └── index.tsx │ │ │ ├── DrawerContent │ │ │ │ └── index.tsx │ │ │ ├── DrawerExtra │ │ │ │ └── index.tsx │ │ │ ├── DrawerFooter │ │ │ │ └── index.tsx │ │ │ ├── DrawerGroup │ │ │ │ └── index.tsx │ │ │ ├── DrawerTitle │ │ │ │ └── index.tsx │ │ │ ├── Dropdown │ │ │ │ └── index.tsx │ │ │ ├── DropdownMenuItem │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ └── styled.d.ts │ ├── tsconfig.json │ └── vite.config.ts ├── react-antd-icons │ ├── .eslintrc │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── components │ │ │ ├── IconView │ │ │ │ ├── SvgStringIcon.tsx │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── data │ │ │ ├── filled │ │ │ │ ├── directional.ts │ │ │ │ ├── editor.ts │ │ │ │ ├── index.tsx │ │ │ │ └── suggested.ts │ │ │ ├── index.ts │ │ │ ├── outlined │ │ │ │ ├── directional.ts │ │ │ │ ├── editor.ts │ │ │ │ ├── index.tsx │ │ │ │ └── suggested.ts │ │ │ └── two-tone │ │ │ │ ├── directional.ts │ │ │ │ ├── editor.ts │ │ │ │ ├── index.tsx │ │ │ │ └── suggested.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ └── model.ts │ ├── tsconfig.json │ └── vite.config.ts ├── react-antd-materials │ ├── .eslintrc │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── materials │ │ │ ├── Button │ │ │ │ ├── icon.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── locales.ts │ │ │ │ └── schema.ts │ │ │ ├── common │ │ │ │ ├── Container │ │ │ │ │ ├── index.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Footer │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Form │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Header │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ └── index.ts │ │ │ ├── datas │ │ │ │ ├── ArrayPanel │ │ │ │ │ ├── designer │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── List │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── ListItem │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── ListItemMeta │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── ObjectContainer │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Table │ │ │ │ │ ├── designer │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── TableColumn │ │ │ │ │ ├── designer │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── TableSummary │ │ │ │ │ ├── Designer │ │ │ │ │ │ ├── PlaceHolder │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── TableSummaryCell │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── TableSummaryRow │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── TreeList │ │ │ │ │ ├── Designer.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── TreeListItem │ │ │ │ │ ├── Designer.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── TreeListItemActions │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ └── index.ts │ │ │ ├── displays │ │ │ │ ├── Avatar │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Badge │ │ │ │ │ ├── designer.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── IconView │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── ImageView │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── LoopPanel │ │ │ │ │ ├── designer │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Statistic │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Tag │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ ├── schema.ts │ │ │ │ │ └── setters │ │ │ │ │ │ └── TagColorInput │ │ │ │ │ │ ├── PredefinedColorInput.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.ts │ │ │ │ └── typography │ │ │ │ │ ├── Link │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── Paragraph │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── Text │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── Title │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ ├── fields │ │ │ │ ├── InputField │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── README.md │ │ │ │ └── index.ts │ │ │ ├── forms │ │ │ │ ├── Form │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── FormItem │ │ │ │ │ ├── designer.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── FormLayout │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── InlineForm │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── fieldyLoacles.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── inputs │ │ │ │ ├── AutoComplete │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Cascader │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── CheckBox │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── DatePicker │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── DateRangePicker │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Input │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ ├── schema.ts │ │ │ │ │ └── textarea.ts │ │ │ │ ├── InputNumber │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Mentions │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Radio │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Rate │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Select │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Slider │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Switch │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── TimePicker │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Transfer │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── TreeSelect │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── index.ts │ │ │ │ ├── locales.ts │ │ │ │ └── schemas.ts │ │ │ ├── layouts │ │ │ │ ├── Box │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Breadcrumb │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Card │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Col │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Container │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Content │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Divider │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── HCFLayout │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Hero │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── LayoutFooter │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── LayoutHeader │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Logo │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Menu │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Page │ │ │ │ │ ├── Designer.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ ├── material.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Paper │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Row │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Sider │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Space │ │ │ │ │ ├── designer │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── TwoColumnLayout │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ └── index.ts │ │ │ ├── locales.ts │ │ │ ├── popups │ │ │ │ ├── CloseButton.tsx │ │ │ │ ├── Dialog │ │ │ │ │ ├── designer │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── DialogContent │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── DialogFooter │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── DialogGroup │ │ │ │ │ ├── designer │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── DialogTitle │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Drawer │ │ │ │ │ ├── designer │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── DrawerContent │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── DrawerExtra │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── DrawerFooter │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── DrawerGroup │ │ │ │ │ ├── designer │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── DrawerTitle │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Dropdown │ │ │ │ │ ├── designer │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.less │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── DropdownMenuItem │ │ │ │ │ ├── designer.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Popconfirm │ │ │ │ │ ├── designer │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── Popover │ │ │ │ │ ├── designer │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── PopupButton.tsx │ │ │ │ ├── Tooltip │ │ │ │ │ ├── designer │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── locales.ts │ │ │ │ │ └── schema.ts │ │ │ │ └── index.ts │ │ │ └── slots │ │ │ │ ├── ActionSlot │ │ │ │ ├── index.ts │ │ │ │ ├── locales.ts │ │ │ │ └── schema.ts │ │ │ │ ├── DefualtSlot │ │ │ │ ├── index.ts │ │ │ │ ├── locales.ts │ │ │ │ └── schema.ts │ │ │ │ ├── ExtraSlot │ │ │ │ ├── index.ts │ │ │ │ ├── locales.ts │ │ │ │ └── schema.ts │ │ │ │ └── index.ts │ │ └── shared │ │ │ ├── SchemaOptions.ts │ │ │ ├── attachFormItem.ts │ │ │ ├── createFieldSchema.ts │ │ │ ├── createSchema.ts │ │ │ ├── index.ts │ │ │ ├── transPropSchemas.ts │ │ │ └── transSlotSchemas.ts │ ├── tsconfig.json │ └── vite.config.ts ├── react-menu-designer │ ├── .eslintrc │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── DesignerRoot.tsx │ │ ├── ReactMenuDesigner.tsx │ │ ├── ReactMenuDesignerInner.tsx │ │ ├── components │ │ │ ├── FloatableColumn │ │ │ │ └── index.tsx │ │ │ ├── PropertyPanel │ │ │ │ └── index.tsx │ │ │ ├── ResizableColumn │ │ │ │ ├── index.tsx │ │ │ │ └── style.css │ │ │ ├── SortableTree │ │ │ │ ├── SortableItem.tsx │ │ │ │ └── index.tsx │ │ │ ├── Toolbox │ │ │ │ ├── ResourceItem.tsx │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── consts.ts │ │ ├── contexts.ts │ │ ├── dnd │ │ │ ├── DndContext.tsx │ │ │ ├── DragOverlay.tsx │ │ │ ├── Draggable.tsx │ │ │ ├── Droppable.tsx │ │ │ ├── consts.ts │ │ │ ├── contexts.ts │ │ │ ├── hooks │ │ │ │ ├── getItemElement.ts │ │ │ │ ├── index.ts │ │ │ │ ├── useDndSnapshot.ts │ │ │ │ ├── useDropIndicatorState.ts │ │ │ │ └── useGetItemElement.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── hooks │ │ │ ├── useBackup.ts │ │ │ ├── useBuildMenuSchema.ts │ │ │ ├── useExtractMenuItems.ts │ │ │ ├── useFlattenItems.ts │ │ │ ├── useGetBeforeBrother.ts │ │ │ ├── useGetDropTarget.ts │ │ │ ├── useGetFlattenItem.ts │ │ │ ├── useGetItem.ts │ │ │ ├── useGetItemPosition.ts │ │ │ ├── useGetMenuItemSchema.ts │ │ │ ├── useGetParentByDepth.ts │ │ │ ├── useGetResource.ts │ │ │ ├── useHistoryState.ts │ │ │ ├── useItem.ts │ │ │ ├── useMenuSchemaState.ts │ │ │ ├── useMoveItem.ts │ │ │ ├── useRedo.ts │ │ │ ├── useRemoveItem.ts │ │ │ ├── useResource.ts │ │ │ ├── useResources.ts │ │ │ ├── useToggleCollapse.ts │ │ │ ├── useUndo.ts │ │ │ └── useUpdateConfig.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── flattened.ts │ │ │ ├── index.ts │ │ │ ├── menu.ts │ │ │ ├── resource.ts │ │ │ └── schema.ts │ │ ├── locales.ts │ │ ├── resources │ │ │ ├── ConfigForm.tsx │ │ │ ├── LinkSetter.tsx │ │ │ ├── TextSetter.tsx │ │ │ ├── defualtResources.tsx │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── styled.d.ts │ │ ├── types.ts │ │ └── utilities.ts │ ├── tsconfig.json │ └── vite.config.ts ├── react-runner │ ├── .eslintrc │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── ComponentField.tsx │ │ ├── ComponentRender.tsx │ │ ├── ComponentView.tsx │ │ ├── LogicflowRuntime │ │ │ ├── ControllerEngine.ts │ │ │ ├── index.tsx │ │ │ └── script │ │ │ │ ├── ScriptController.ts │ │ │ │ ├── ScriptRuntime.ts │ │ │ │ └── ScriptVariables.ts │ │ ├── contexts.ts │ │ ├── hocs │ │ │ ├── index.ts │ │ │ ├── withBind.tsx │ │ │ ├── withController.tsx │ │ │ └── withExprs.tsx │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useArraySchema.ts │ │ │ ├── useComponentSchema.ts │ │ │ ├── useController.ts │ │ │ ├── useControllerEngine.ts │ │ │ ├── useControllers.ts │ │ │ ├── useExprProps.ts │ │ │ ├── useGetLogicFlowContext.ts │ │ │ ├── usePreviewComponent.ts │ │ │ └── usePreviewComponents.ts │ │ ├── index.ts │ │ └── transform.ts │ ├── tsconfig.json │ └── vite.config.ts ├── react-shared │ ├── .eslintrc │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── ResizableColumn │ │ │ ├── index.tsx │ │ │ └── style.less │ │ ├── SvgIcon.tsx │ │ ├── index.ts │ │ ├── svgs │ │ │ ├── index.ts │ │ │ ├── minion-icons.tsx │ │ │ ├── shell-icons.tsx │ │ │ └── svgs.tsx │ │ └── types.ts │ ├── tsconfig.json │ └── vite.config.ts ├── rxeditor │ ├── README.md │ ├── core │ │ ├── .eslintrc │ │ ├── README.md │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── actions │ │ │ │ ├── index.ts │ │ │ │ └── registry.ts │ │ │ ├── behaviors │ │ │ │ └── rootBehavior.ts │ │ │ ├── classes │ │ │ │ ├── Behavior.ts │ │ │ │ ├── BehaviorManager.ts │ │ │ │ ├── ComponentManager.ts │ │ │ │ ├── DecoratorManager.ts │ │ │ │ ├── DesignerEngine.ts │ │ │ │ ├── DocumentImpl.ts │ │ │ │ ├── Monitor.ts │ │ │ │ ├── ResourceManager.ts │ │ │ │ ├── SetterManager.ts │ │ │ │ └── index.ts │ │ │ ├── createEngine.ts │ │ │ ├── decorators │ │ │ │ ├── LineDecorator.ts │ │ │ │ ├── MarginDecorator.ts │ │ │ │ └── index.ts │ │ │ ├── funcs │ │ │ │ └── parseNodeSchema.ts │ │ │ ├── index.ts │ │ │ ├── interfaces │ │ │ │ ├── action.ts │ │ │ │ ├── behavior.ts │ │ │ │ ├── decorator.ts │ │ │ │ ├── document.ts │ │ │ │ ├── engine.ts │ │ │ │ ├── event.ts │ │ │ │ ├── funcs.ts │ │ │ │ ├── index.ts │ │ │ │ ├── material.ts │ │ │ │ ├── monitor.ts │ │ │ │ ├── payloads.ts │ │ │ │ ├── plugin.ts │ │ │ │ ├── resource.ts │ │ │ │ ├── setter.ts │ │ │ │ ├── shell.ts │ │ │ │ └── types.ts │ │ │ ├── plugins │ │ │ │ ├── auxwidgets │ │ │ │ │ ├── common │ │ │ │ │ │ ├── ActiviedOutline │ │ │ │ │ │ │ ├── getMaxZIndex.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── DraggedAttenuator │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── freedom │ │ │ │ │ │ ├── FreedomGhost │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── MoveableFollower │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── ResizeWidget │ │ │ │ │ │ │ ├── CornerHandler.ts │ │ │ │ │ │ │ ├── LeftBottomConner.ts │ │ │ │ │ │ │ ├── LeftTopConner.ts │ │ │ │ │ │ │ ├── Resizer.ts │ │ │ │ │ │ │ ├── RightBottomConner.ts │ │ │ │ │ │ │ ├── RightTopConner.ts │ │ │ │ │ │ │ ├── cursors.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── liquid │ │ │ │ │ │ ├── Ghost │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── InsertionCursor │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── SelectedOutline │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── Toolbar │ │ │ │ │ │ │ ├── controls │ │ │ │ │ │ │ │ ├── AbstractButton.ts │ │ │ │ │ │ │ │ ├── CloneButton.ts │ │ │ │ │ │ │ │ ├── DeleteButton.ts │ │ │ │ │ │ │ │ ├── LockButton.ts │ │ │ │ │ │ │ │ ├── MoveButton.ts │ │ │ │ │ │ │ │ └── Selector.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── interfaces.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── numbToPx.ts │ │ │ │ ├── controllers │ │ │ │ │ ├── common │ │ │ │ │ │ ├── ActiveController.ts │ │ │ │ │ │ ├── SelectionController.ts │ │ │ │ │ │ ├── StartDragController.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── freedom │ │ │ │ │ │ ├── FreedomDragStopController.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── liquid │ │ │ │ │ │ ├── DragOverController.ts │ │ │ │ │ │ ├── DragStopController.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── freedom.ts │ │ │ │ ├── index.ts │ │ │ │ └── liquid.ts │ │ │ ├── reducers │ │ │ │ ├── activedDocumentId.ts │ │ │ │ ├── activedNodeId.ts │ │ │ │ ├── documentsById │ │ │ │ │ ├── document │ │ │ │ │ │ ├── canvasWidth.ts │ │ │ │ │ │ ├── canvasWidthLimits.ts │ │ │ │ │ │ ├── changed.ts │ │ │ │ │ │ ├── documentTitle.ts │ │ │ │ │ │ ├── history.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── rootId.ts │ │ │ │ │ │ ├── selectionMode.ts │ │ │ │ │ │ ├── snapShotIndex.ts │ │ │ │ │ │ └── viewType.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── dragOver.ts │ │ │ │ ├── draggingNodes.ts │ │ │ │ ├── draggingResource.ts │ │ │ │ ├── index.ts │ │ │ │ ├── lang.ts │ │ │ │ ├── nodesById.ts │ │ │ │ ├── selectedIds.ts │ │ │ │ ├── stateId.ts │ │ │ │ └── themeMode.ts │ │ │ ├── shell │ │ │ │ ├── BrowserDetector.ts │ │ │ │ ├── CanvasImpl.ts │ │ │ │ ├── ContainerImpl.ts │ │ │ │ ├── DesignerShell.ts │ │ │ │ ├── IFrameCanvasImpl.ts │ │ │ │ ├── ShellPart.ts │ │ │ │ ├── drivers │ │ │ │ │ ├── CanvasResizeDriver.ts │ │ │ │ │ ├── CanvasScrollDriver.ts │ │ │ │ │ ├── DragDropDriver.ts │ │ │ │ │ ├── DragOverDriver.ts │ │ │ │ │ ├── KeyboardDriver.ts │ │ │ │ │ ├── MouseClickDriver.ts │ │ │ │ │ ├── MouseMoveDriver.ts │ │ │ │ │ ├── MouseOverOutDriver.ts │ │ │ │ │ ├── MouseUpDriver.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── events │ │ │ │ │ ├── canvas │ │ │ │ │ │ ├── AbstractCanvasEvent.ts │ │ │ │ │ │ ├── AddDecoratorEvent.ts │ │ │ │ │ │ ├── CanvasResizeEvent.ts │ │ │ │ │ │ ├── CanvasScrollEvent.ts │ │ │ │ │ │ ├── RemoveDecoratorEvent.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── eventdata.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── keyboard │ │ │ │ │ │ ├── AbstractKeyboardEvent.ts │ │ │ │ │ │ ├── KeyDownEvent.ts │ │ │ │ │ │ ├── KeyUpEvent.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── mouse │ │ │ │ │ │ ├── AbstractMouseEvent.ts │ │ │ │ │ │ ├── DragMoveEvent.ts │ │ │ │ │ │ ├── DragStartEvent.ts │ │ │ │ │ │ ├── DragStopEvent.ts │ │ │ │ │ │ ├── MouseClickEvent.ts │ │ │ │ │ │ ├── MouseMoveEvent.ts │ │ │ │ │ │ ├── MouseOutEvent.ts │ │ │ │ │ │ ├── MouseOverEvent.ts │ │ │ │ │ │ ├── MouseUpEvent.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── extractElements.ts │ │ │ │ ├── getMergedRect.ts │ │ │ │ ├── index.ts │ │ │ │ └── utils │ │ │ │ │ ├── __tests__ │ │ │ │ │ └── js_utils.spec.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── js_utils.ts │ │ │ │ │ └── xycoord.ts │ │ │ └── utils │ │ │ │ ├── add-zindex.ts │ │ │ │ ├── array-helper.ts │ │ │ │ ├── clone-object.ts │ │ │ │ ├── coordinate.ts │ │ │ │ ├── element.ts │ │ │ │ ├── equality.ts │ │ │ │ ├── html-node.js │ │ │ │ ├── js_utils.ts │ │ │ │ └── keycode.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts │ ├── react-antd-props-inputs │ │ ├── .eslintrc │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── components │ │ │ │ ├── BackgroundImageInput │ │ │ │ │ └── index.tsx │ │ │ │ ├── CheckboxGroup │ │ │ │ │ └── index.tsx │ │ │ │ ├── ColInput │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.less │ │ │ │ ├── CollapsePanel │ │ │ │ │ └── index.tsx │ │ │ │ ├── ColorInput │ │ │ │ │ └── index.tsx │ │ │ │ ├── ControllerSetter │ │ │ │ │ └── index.tsx │ │ │ │ ├── DisplaySetter │ │ │ │ │ ├── icons.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.less │ │ │ │ ├── EffectsInput │ │ │ │ │ └── index.tsx │ │ │ │ ├── EventInput │ │ │ │ │ └── index.tsx │ │ │ │ ├── ExpressionInput │ │ │ │ │ └── index.tsx │ │ │ │ ├── Fold │ │ │ │ │ ├── FoldExtraItem.tsx │ │ │ │ │ ├── TetradInput.tsx │ │ │ │ │ ├── ValueRow.tsx │ │ │ │ │ ├── context.ts │ │ │ │ │ ├── icons.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.less │ │ │ │ ├── GutterInput │ │ │ │ │ └── index.tsx │ │ │ │ ├── IconInput │ │ │ │ │ ├── IconSelectForm.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── ImageInput │ │ │ │ │ └── index.tsx │ │ │ │ ├── ImageSelect │ │ │ │ │ └── index.tsx │ │ │ │ ├── JSONInput │ │ │ │ │ └── index.tsx │ │ │ │ ├── NameInput │ │ │ │ │ └── index.tsx │ │ │ │ ├── PolyInput │ │ │ │ │ └── index.tsx │ │ │ │ ├── PropLayout │ │ │ │ │ └── index.tsx │ │ │ │ ├── SizeInput │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.less │ │ │ │ ├── SlotSwitch │ │ │ │ │ └── index.tsx │ │ │ │ ├── StyleSetter │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ColorField │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── Field │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── FieldGroup │ │ │ │ │ │ │ ├── Header.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── Group │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── LayoutBox │ │ │ │ │ │ │ ├── Header.tsx │ │ │ │ │ │ │ ├── consts.ts │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── Positions │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── RadioField │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── UnitField │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── setters │ │ │ │ │ │ ├── BackgroundSetter │ │ │ │ │ │ │ ├── components.ts │ │ │ │ │ │ │ ├── config.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── BorderSetter │ │ │ │ │ │ │ ├── Border.tsx │ │ │ │ │ │ │ ├── components.ts │ │ │ │ │ │ │ ├── config.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── FontSetter │ │ │ │ │ │ │ ├── Header.tsx │ │ │ │ │ │ │ ├── config.tsx │ │ │ │ │ │ │ ├── icons.ts │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── LayoutSetter │ │ │ │ │ │ │ ├── Display.tsx │ │ │ │ │ │ │ ├── config.tsx │ │ │ │ │ │ │ ├── icons.ts │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── OpacitySetter │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── SizeSetter │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── Tabs │ │ │ │ │ ├── TabPanel.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── ValueInput │ │ │ │ │ └── index.tsx │ │ │ │ ├── XDataInput │ │ │ │ │ └── index.tsx │ │ │ │ ├── YupRulesInput │ │ │ │ │ ├── ArrayRuleInput.tsx │ │ │ │ │ ├── DateRuleInput.tsx │ │ │ │ │ ├── MessageInput.tsx │ │ │ │ │ ├── NumberRuleInput.tsx │ │ │ │ │ ├── ObjectRuleInput.tsx │ │ │ │ │ ├── StringRuleInput.tsx │ │ │ │ │ ├── TestInput │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── WhenInput │ │ │ │ │ │ ├── DepTable.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── font │ │ │ │ │ ├── FontColorInput │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── FontDecorationSelect │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── FontLineHeightInput │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── FontSelect │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── FontSizeInput │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── FontStyleSelect │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── FontWeightInput │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── TextAlignSelect │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── locales.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts │ ├── react-antd-shell │ │ ├── .eslintrc │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── common │ │ │ │ ├── DefaultTopbar │ │ │ │ │ ├── DefaultTopbar.tsx │ │ │ │ │ ├── ToolbarRightButttons.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── EditorScope │ │ │ │ │ ├── DesignerScope.tsx │ │ │ │ │ ├── EditorScope.tsx │ │ │ │ │ ├── EditorScropProps.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── EditorTheme │ │ │ │ │ ├── ConfigRoot.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── FloatNodeNav │ │ │ │ │ ├── NodeTag.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── useNodesOnPath.ts │ │ │ │ ├── IFrameCanvas │ │ │ │ │ └── index.tsx │ │ │ │ ├── IFramePreview │ │ │ │ │ ├── IFramePreviewInner.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── NavbarWidget │ │ │ │ │ ├── NodeTag.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── OperationHistory.tsx │ │ │ │ ├── OutlineTree │ │ │ │ │ └── index.tsx │ │ │ │ ├── ResizableColumn │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.css │ │ │ │ ├── ResizableRow.tsx │ │ │ │ ├── SettingsForm │ │ │ │ │ ├── SettingsForm.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── locales.ts │ │ │ │ ├── Spring.tsx │ │ │ │ ├── SvgIcon.tsx │ │ │ │ ├── contexts.ts │ │ │ │ ├── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useCanvasUrl.ts │ │ │ │ │ └── usePreviewUrl.ts │ │ │ │ └── index.ts │ │ │ ├── icons.tsx │ │ │ ├── index.ts │ │ │ ├── inline │ │ │ │ ├── components │ │ │ │ │ ├── DefaultToolbar │ │ │ │ │ │ ├── AuxLineButton.tsx │ │ │ │ │ │ ├── AuxMarginButton.tsx │ │ │ │ │ │ ├── DefaultToolbar.tsx │ │ │ │ │ │ ├── DesignButton.tsx │ │ │ │ │ │ ├── JSONButton.tsx │ │ │ │ │ │ ├── MultiSelectionButton.tsx │ │ │ │ │ │ ├── PreviewButton.tsx │ │ │ │ │ │ ├── RedoButton.tsx │ │ │ │ │ │ ├── UndoButton.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── DraggableWidget │ │ │ │ │ │ ├── ResizeHandlers.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Navbar │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── OutlinePanel │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Panel │ │ │ │ │ │ ├── PanelTitle.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PropertyPanel │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Toolbar │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Toolbox │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Toolkits │ │ │ │ │ │ ├── ToolketsScope.tsx │ │ │ │ │ │ ├── ToolkitsInner.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── style.css │ │ │ │ │ ├── index.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── contexts.ts │ │ │ │ ├── hooks │ │ │ │ │ ├── useClose.ts │ │ │ │ │ ├── useSetClosed.ts │ │ │ │ │ ├── useSetWidgetLayout.ts │ │ │ │ │ ├── useToggleDisplay.ts │ │ │ │ │ └── useWidgetLayout.ts │ │ │ │ ├── icons.tsx │ │ │ │ ├── index.ts │ │ │ │ └── interfaces.ts │ │ │ ├── locales.ts │ │ │ ├── normal │ │ │ │ ├── RxEditorAntd.tsx │ │ │ │ ├── RxEditorAntdInner.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── layouts │ │ │ │ │ ├── CanvasToolbar │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── CenterContent │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── LeftSidebar │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RightSidebar.tsx │ │ │ │ │ ├── ToggleAblePane │ │ │ │ │ │ ├── PaneContainer │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── PaneTitle │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── PanelContent │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── style.less │ │ │ │ │ │ ├── ToggleAblePane.tsx │ │ │ │ │ │ ├── ToggleButton │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── context.ts │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── useToggleState.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Topbar │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── panels │ │ │ │ │ ├── DocumentView │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Viewport.tsx │ │ │ │ │ ├── Workbench │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── style.css │ │ │ │ └── widgets │ │ │ │ │ ├── AuxButtions.tsx │ │ │ │ │ ├── CanvasSize.tsx │ │ │ │ │ ├── ComponentResourceWidget │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── HistoryWidget │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── LangButtons.tsx │ │ │ │ │ ├── LeftNavWidget │ │ │ │ │ ├── NavButton.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── OutlineWidget │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── SaveActions.tsx │ │ │ │ │ ├── SelectionButtions.tsx │ │ │ │ │ ├── TemplateResourceWidget │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.less │ │ │ │ │ ├── ThemeButton.tsx │ │ │ │ │ ├── UndoRedoButtons.tsx │ │ │ │ │ ├── ViewButtons.tsx │ │ │ │ │ └── index.ts │ │ │ ├── styled.d.ts │ │ │ ├── utils.ts │ │ │ └── zoomable │ │ │ │ ├── BottomArea │ │ │ │ ├── AuxButtions.tsx │ │ │ │ ├── JsonCodeDialog.tsx │ │ │ │ ├── ReundoIcons.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── DocView │ │ │ │ ├── DocViewInner.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── PropertyPanel │ │ │ │ └── index.tsx │ │ │ │ ├── ShortcutActions │ │ │ │ ├── ExpandPanel.tsx │ │ │ │ ├── ZoomButtons.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── Toolbox │ │ │ │ └── index.tsx │ │ │ │ ├── ZoomableEditor │ │ │ │ ├── ZoomableEditor.tsx │ │ │ │ ├── ZoomableEditorInner.tsx │ │ │ │ ├── index.ts │ │ │ │ └── style.css │ │ │ │ ├── ZoomablePreview │ │ │ │ ├── PreviewIFrame.tsx │ │ │ │ ├── PreviewIFrameProxy.tsx │ │ │ │ ├── ZoomablePreviewPanel.tsx │ │ │ │ └── index.ts │ │ │ │ ├── ZoomableRoot │ │ │ │ └── index.tsx │ │ │ │ ├── ZoomableViewport │ │ │ │ ├── ZoomableViewportShell.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── style.css │ │ │ │ ├── common │ │ │ │ ├── DraggableWidget │ │ │ │ │ ├── ResizeHandlers.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── interfaces.ts │ │ │ │ ├── FloatButton.tsx │ │ │ │ ├── WidgetTitle.tsx │ │ │ │ └── index.ts │ │ │ │ ├── consts.ts │ │ │ │ ├── contexts.ts │ │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── vite.config.js │ └── react-core │ │ ├── .eslintrc │ │ ├── index.ts │ │ ├── package.json │ │ ├── src │ │ ├── ComponentDesignersRoot.tsx │ │ ├── ComponentTreeWidget │ │ │ ├── ComponentDesignerView.tsx │ │ │ ├── ComponentTreeWidget.tsx │ │ │ ├── Locked.tsx │ │ │ └── index.ts │ │ ├── DefaultSlot │ │ │ └── index.tsx │ │ ├── Designer.tsx │ │ ├── Document │ │ │ ├── DocumentRoot.tsx │ │ │ ├── DocumentScope.tsx │ │ │ └── index.ts │ │ ├── JsonView │ │ │ └── index.tsx │ │ ├── PlaceHolder │ │ │ └── index.tsx │ │ ├── Root │ │ │ └── index.tsx │ │ ├── canvas │ │ │ ├── Canvas.tsx │ │ │ ├── CanvasHandler │ │ │ │ ├── index.tsx │ │ │ │ └── style.css │ │ │ ├── CanvasProxy.tsx │ │ │ ├── CanvasShell │ │ │ │ └── index.tsx │ │ │ ├── IframeProxy │ │ │ │ ├── IFrame.tsx │ │ │ │ ├── Scroller.tsx │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ └── scroller.css │ │ │ └── index.ts │ │ ├── components │ │ │ ├── Group │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ ├── contexts.ts │ │ ├── hocs │ │ │ ├── forwardRefByChildren.tsx │ │ │ ├── forwardRefById.tsx │ │ │ ├── index.ts │ │ │ ├── switchRef.tsx │ │ │ └── types.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useActions.ts │ │ │ ├── useActiveIdState.ts │ │ │ ├── useActivedDocument.ts │ │ │ ├── useActivedDocumentIdState.ts │ │ │ ├── useAddSlot.ts │ │ │ ├── useAllNodes.ts │ │ │ ├── useBehavior.ts │ │ │ ├── useCanvasConfig.ts │ │ │ ├── useCanvasWidthLimitsState.ts │ │ │ ├── useCanvasWidthState.ts │ │ │ ├── useChangeNodeMeta.ts │ │ │ ├── useComponentDesigner.ts │ │ │ ├── useComponentDesigners.ts │ │ │ ├── useComponentManager.ts │ │ │ ├── useComponentTranslate.ts │ │ │ ├── useComponentsFromMaterials.ts │ │ │ ├── useCurrentNode.ts │ │ │ ├── useCurrentTree.ts │ │ │ ├── useDesignerEngine.ts │ │ │ ├── useDocument.ts │ │ │ ├── useDocumentChangedState.ts │ │ │ ├── useDocumentViewTypeState.ts │ │ │ ├── useGetElement.ts │ │ │ ├── useGetNode.ts │ │ │ ├── useIFrameParams.ts │ │ │ ├── useLanguage.ts │ │ │ ├── useLocalesManager.ts │ │ │ ├── useLocked.ts │ │ │ ├── useMonitor.ts │ │ │ ├── useNode.ts │ │ │ ├── useNodeChanged.ts │ │ │ ├── useNodeMeta.ts │ │ │ ├── useRedo.ts │ │ │ ├── useRegisterComponentMaterials.ts │ │ │ ├── useRegisterResource.ts │ │ │ ├── useRemoveSlot.ts │ │ │ ├── useResourceManager.ts │ │ │ ├── useResourceNode.ts │ │ │ ├── useResourceTranslate.ts │ │ │ ├── useRootNode.ts │ │ │ ├── useSelect.ts │ │ │ ├── useSelectedNodeIds.ts │ │ │ ├── useSelectionModeState.ts │ │ │ ├── useSetterManager.ts │ │ │ ├── useSetters.ts │ │ │ ├── useSettersTranslate.ts │ │ │ ├── useShell.ts │ │ │ ├── useSnapshots.ts │ │ │ ├── useThemeMode.ts │ │ │ ├── useTreeNode.ts │ │ │ ├── useTreeNodes.ts │ │ │ └── useUndo.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ └── index.ts │ │ └── preview │ │ │ ├── IPreviewProxy.tsx │ │ │ ├── Preview.tsx │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts ├── schema │ ├── .eslintrc │ ├── README.md │ ├── index.ts │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── vite.config.ts ├── shared │ ├── .eslintrc │ ├── README.md │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── Subscriber.ts │ │ ├── createId.ts │ │ ├── expression.ts │ │ ├── getFile.ts │ │ ├── getRecentRxElement.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── make-rxId.ts │ │ ├── saveFile.ts │ │ ├── types.ts │ │ └── util-invariant.ts │ ├── tsconfig.json │ └── vite.config.ts ├── tsconfig │ ├── base.json │ ├── package.json │ ├── react-library.json │ └── vite.json ├── uml-editor │ ├── .eslintrc │ ├── index.ts │ ├── package.json │ ├── src │ │ ├── EmpertyCanvas.tsx │ │ ├── EntityTree │ │ │ ├── AttributeLabel.tsx │ │ │ ├── AttributesLabel.tsx │ │ │ ├── ClassLabel.tsx │ │ │ ├── DiagramLabel │ │ │ │ ├── DiagramAction.tsx │ │ │ │ ├── DiagramDialog.tsx │ │ │ │ └── index.tsx │ │ │ ├── ModelRootAction.tsx │ │ │ ├── PackageLabel │ │ │ │ ├── PackageAction.tsx │ │ │ │ ├── PackageDialog.tsx │ │ │ │ └── index.tsx │ │ │ ├── RelationLabel.tsx │ │ │ ├── TreeNodeLabel.tsx │ │ │ └── index.tsx │ │ ├── GraphCanvas │ │ │ ├── ClassView │ │ │ │ ├── AttributeView.tsx │ │ │ │ ├── ClassActions.tsx │ │ │ │ ├── ClassNodeData.ts │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ └── useMountRef.ts │ │ │ ├── canStartLink.ts │ │ │ ├── constLabelPosition.ts │ │ │ ├── events │ │ │ │ └── index.ts │ │ │ ├── getGraphConfig.ts │ │ │ ├── getGraphSize.ts │ │ │ ├── getRelationGraphAttrs.ts │ │ │ ├── index.tsx │ │ │ ├── nodeInitSize.ts │ │ │ ├── useCheckCanLinkTo.ts │ │ │ ├── useClassAction.ts │ │ │ ├── useDnd.ts │ │ │ ├── useEdgeChange.ts │ │ │ ├── useEdgeHover.ts │ │ │ ├── useEdgeLineDraw.ts │ │ │ ├── useEdgeSelect.ts │ │ │ ├── useEdgesShow.ts │ │ │ ├── useExplorerScrollbarHide.ts │ │ │ ├── useNodeAdd.ts │ │ │ ├── useNodeChange.ts │ │ │ ├── useNodeSelect.ts │ │ │ ├── useNodesShow.tsx │ │ │ ├── useTriggerPressedLineTypeEvent.ts │ │ │ └── useTriggerSelectedEvent.ts │ │ ├── ModelBoard │ │ │ ├── ModelContent │ │ │ │ └── index.tsx │ │ │ ├── ModelToolbar │ │ │ │ └── index.tsx │ │ │ ├── PropertyBox │ │ │ │ ├── ToolbarArea.tsx │ │ │ │ ├── ToolbarTitle.tsx │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── PropertyPanel │ │ │ ├── AttributePanel │ │ │ │ ├── AttributeContent.tsx │ │ │ │ ├── AttributeValidation.tsx │ │ │ │ ├── Container.tsx │ │ │ │ ├── YupRulesInput │ │ │ │ │ ├── ArrayRuleInput.tsx │ │ │ │ │ ├── DateRuleInput.tsx │ │ │ │ │ ├── MessageInput.tsx │ │ │ │ │ ├── NumberRuleInput.tsx │ │ │ │ │ ├── ObjectRuleInput.tsx │ │ │ │ │ ├── PropLayout │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── StringRuleInput.tsx │ │ │ │ │ ├── TestInput │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── WhenInput │ │ │ │ │ │ ├── DepTable.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── AttributeTypeInput.tsx │ │ │ ├── ClassPanel.tsx │ │ │ ├── PannelContainer.tsx │ │ │ ├── RelationPanel.tsx │ │ │ ├── TypeIdSelect.tsx │ │ │ ├── TypeSelect.tsx │ │ │ └── index.tsx │ │ ├── Toolbox │ │ │ ├── ClassRect.tsx │ │ │ ├── constSvg.tsx │ │ │ └── index.tsx │ │ ├── UmlEditor.tsx │ │ ├── UmlEditorInner.tsx │ │ ├── UmlToolbar │ │ │ ├── icons.tsx │ │ │ └── index.tsx │ │ ├── components │ │ │ ├── PlugIcon.tsx │ │ │ ├── SvgIcon.tsx │ │ │ └── svgs.tsx │ │ ├── consts.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useAppOpenFile.ts │ │ │ ├── useAttribute.ts │ │ │ ├── useBackupSnapshot.ts │ │ │ ├── useChangeAttribute.ts │ │ │ ├── useChangeClass.ts │ │ │ ├── useChangeDiagram.ts │ │ │ ├── useChangePackage.ts │ │ │ ├── useChangeRelation.ts │ │ │ ├── useChanged.ts │ │ │ ├── useCheckClassPropertyName.ts │ │ │ ├── useClass.ts │ │ │ ├── useClassPackage.ts │ │ │ ├── useCreateAttribute.ts │ │ │ ├── useCreateClassAttribute.ts │ │ │ ├── useCreateClassInnerId.ts │ │ │ ├── useCreateNewClass.ts │ │ │ ├── useCreateNewDiagram.ts │ │ │ ├── useCreateNewPackage.ts │ │ │ ├── useCreateRelationInnerId.ts │ │ │ ├── useCreateTempClassNodeForNew.ts │ │ │ ├── useDeleteAttribute.ts │ │ │ ├── useDeleteClass.ts │ │ │ ├── useDeleteDiagram.ts │ │ │ ├── useDeletePackage.ts │ │ │ ├── useDeleteRelation.ts │ │ │ ├── useDeleteSelectedElement.ts │ │ │ ├── useDiagramEdges.ts │ │ │ ├── useDiagramNodes.ts │ │ │ ├── useEntities.ts │ │ │ ├── useEnums.ts │ │ │ ├── useExportModelJson.ts │ │ │ ├── useFirstChildrenIds.ts │ │ │ ├── useGetAllParentIds.ts │ │ │ ├── useGetClass.ts │ │ │ ├── useGetClassAssociations.ts │ │ │ ├── useGetClassByName.ts │ │ │ ├── useGetDiagramByName.ts │ │ │ ├── useGetDiagramNode.ts │ │ │ ├── useGetEdge.ts │ │ │ ├── useGetFirstParentIds.ts │ │ │ ├── useGetMeta.ts │ │ │ ├── useGetNode.ts │ │ │ ├── useGetPackage.ts │ │ │ ├── useGetPackageByName.ts │ │ │ ├── useGetRelation.ts │ │ │ ├── useGetSourceRelations.ts │ │ │ ├── useGetTargetRelations.ts │ │ │ ├── useGetTypeLabel.ts │ │ │ ├── useHideClassFromDiagram.ts │ │ │ ├── useImportModel.ts │ │ │ ├── useImportModelJson.ts │ │ │ ├── useIsDiagram.ts │ │ │ ├── useIsElement.ts │ │ │ ├── useMetaId.ts │ │ │ ├── useParesMeta.ts │ │ │ ├── useParseRelationUuid.ts │ │ │ ├── useRedo.ts │ │ │ ├── useRelation.ts │ │ │ ├── useRootClasses.ts │ │ │ ├── useSelectedDiagramPackageId.ts │ │ │ ├── useSelectedRelation.ts │ │ │ ├── useUndo.ts │ │ │ ├── useValidate.ts │ │ │ └── useValueObjects.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── DiagramMeta.ts │ │ │ ├── Meta.ts │ │ │ ├── X6EdgeMeta.ts │ │ │ ├── X6NodeMeta.ts │ │ │ └── index.ts │ │ ├── locales.ts │ │ ├── recoil │ │ │ ├── LineAction.ts │ │ │ └── atoms.ts │ │ └── styled.d.ts │ ├── tsconfig.json │ └── vite.config.ts └── uml-schema │ ├── .eslintrc │ ├── README.md │ ├── index.ts │ ├── package.json │ ├── src │ ├── AttributeMeta.ts │ ├── ClassMeta.ts │ ├── Meta.ts │ ├── PackageMeta.ts │ ├── RelationMeta.ts │ ├── Type.ts │ └── index.ts │ ├── tsconfig.json │ └── vite.config.ts ├── plopfile.js ├── pnpm-workspace.yaml ├── tsconfig.json ├── turbo.json ├── vercel.json ├── vitest.config.ts └── 备忘.md /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/.eslintignore -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/README.md -------------------------------------------------------------------------------- /apps/README.md: -------------------------------------------------------------------------------- 1 | 参与启动的例子 -------------------------------------------------------------------------------- /apps/demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/.gitignore -------------------------------------------------------------------------------- /apps/demo/README.md: -------------------------------------------------------------------------------- 1 | npm run preview -------------------------------------------------------------------------------- /apps/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/index.html -------------------------------------------------------------------------------- /apps/demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/package.json -------------------------------------------------------------------------------- /apps/demo/public/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/public/1.svg -------------------------------------------------------------------------------- /apps/demo/public/imgs/ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/public/imgs/ad.jpg -------------------------------------------------------------------------------- /apps/demo/public/imgs/bg/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/public/imgs/bg/bg1.png -------------------------------------------------------------------------------- /apps/demo/public/imgs/bg/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/public/imgs/bg/bg2.jpg -------------------------------------------------------------------------------- /apps/demo/public/imgs/bg/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/public/imgs/bg/bg3.png -------------------------------------------------------------------------------- /apps/demo/public/imgs/box/k_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/public/imgs/box/k_2.png -------------------------------------------------------------------------------- /apps/demo/public/imgs/box/k_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/public/imgs/box/k_3.png -------------------------------------------------------------------------------- /apps/demo/public/imgs/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/public/imgs/hero.png -------------------------------------------------------------------------------- /apps/demo/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/public/logo.png -------------------------------------------------------------------------------- /apps/demo/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/public/logo.svg -------------------------------------------------------------------------------- /apps/demo/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/public/logo192.png -------------------------------------------------------------------------------- /apps/demo/public/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/public/logo2.png -------------------------------------------------------------------------------- /apps/demo/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/public/logo512.png -------------------------------------------------------------------------------- /apps/demo/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/public/robots.txt -------------------------------------------------------------------------------- /apps/demo/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/public/vite.svg -------------------------------------------------------------------------------- /apps/demo/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/src/App.css -------------------------------------------------------------------------------- /apps/demo/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/src/App.test.tsx -------------------------------------------------------------------------------- /apps/demo/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/src/App.tsx -------------------------------------------------------------------------------- /apps/demo/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/src/index.css -------------------------------------------------------------------------------- /apps/demo/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/src/logo.svg -------------------------------------------------------------------------------- /apps/demo/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/src/main.tsx -------------------------------------------------------------------------------- /apps/demo/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/demo/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/src/reportWebVitals.ts -------------------------------------------------------------------------------- /apps/demo/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/src/setupTests.ts -------------------------------------------------------------------------------- /apps/demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/tsconfig.json -------------------------------------------------------------------------------- /apps/demo/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/tsconfig.node.json -------------------------------------------------------------------------------- /apps/demo/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/vercel.json -------------------------------------------------------------------------------- /apps/demo/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/apps/demo/vite.config.ts -------------------------------------------------------------------------------- /doc/images/wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechat.jpg -------------------------------------------------------------------------------- /doc/images/wechatgroup0112.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechatgroup0112.jpg -------------------------------------------------------------------------------- /doc/images/wechatgroup0122.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechatgroup0122.jpg -------------------------------------------------------------------------------- /doc/images/wechatgroup0201.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechatgroup0201.jpg -------------------------------------------------------------------------------- /doc/images/wechatgroup0208.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechatgroup0208.jpg -------------------------------------------------------------------------------- /doc/images/wechatgroup0221.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechatgroup0221.jpg -------------------------------------------------------------------------------- /doc/images/wechatgroup0305.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechatgroup0305.jpg -------------------------------------------------------------------------------- /doc/images/wechatgroup0314.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechatgroup0314.jpg -------------------------------------------------------------------------------- /doc/images/wechatgroup0321.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechatgroup0321.jpg -------------------------------------------------------------------------------- /doc/images/wechatgroup0331.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechatgroup0331.jpg -------------------------------------------------------------------------------- /doc/images/wechatgroup0409.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechatgroup0409.jpg -------------------------------------------------------------------------------- /doc/images/wechatgroup0422.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechatgroup0422.jpg -------------------------------------------------------------------------------- /doc/images/wechatgroup0504.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechatgroup0504.jpg -------------------------------------------------------------------------------- /doc/images/wechatgroup0513.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechatgroup0513.jpg -------------------------------------------------------------------------------- /doc/images/wechatgroup0520.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechatgroup0520.jpg -------------------------------------------------------------------------------- /doc/images/wechatgroup0604.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/images/wechatgroup0604.jpg -------------------------------------------------------------------------------- /doc/professional-rx-logotype-template.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/professional-rx-logotype-template.zip -------------------------------------------------------------------------------- /doc/关于RxDrag的反馈-回复.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/doc/关于RxDrag的反馈-回复.docx -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- 1 | 不参与启动的例子 -------------------------------------------------------------------------------- /examples/app-designer-example/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/.eslintrc -------------------------------------------------------------------------------- /examples/app-designer-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/.gitignore -------------------------------------------------------------------------------- /examples/app-designer-example/README.md: -------------------------------------------------------------------------------- 1 | app设计器,可缩放shell,大屏,h5都可以通过这个完成 2 | 基于shell的zoomable -------------------------------------------------------------------------------- /examples/app-designer-example/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /examples/app-designer-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/package.json -------------------------------------------------------------------------------- /examples/app-designer-example/src/ApiBoard/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/ApiBoard/index.less -------------------------------------------------------------------------------- /examples/app-designer-example/src/ApiBoard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/ApiBoard/index.tsx -------------------------------------------------------------------------------- /examples/app-designer-example/src/AppDesigner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/AppDesigner.tsx -------------------------------------------------------------------------------- /examples/app-designer-example/src/FrontendDesigner/ModuleUiDesigner/config/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./toolboxs" -------------------------------------------------------------------------------- /examples/app-designer-example/src/FrontendDesigner/UiFrameDesigner/config/index.ts: -------------------------------------------------------------------------------- 1 | 2 | export * from "./toolboxs" -------------------------------------------------------------------------------- /examples/app-designer-example/src/FrontendDesigner/UiFrameDesigner/materials/admin/App/setters/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ThemeTokenSetter" -------------------------------------------------------------------------------- /examples/app-designer-example/src/FrontendDesigner/components/admin/App/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./App" 2 | -------------------------------------------------------------------------------- /examples/app-designer-example/src/FrontendDesigner/components/admin/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./App" -------------------------------------------------------------------------------- /examples/app-designer-example/src/FrontendDesigner/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./admin" -------------------------------------------------------------------------------- /examples/app-designer-example/src/SaveButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/SaveButton.tsx -------------------------------------------------------------------------------- /examples/app-designer-example/src/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/Settings/index.tsx -------------------------------------------------------------------------------- /examples/app-designer-example/src/ThemeRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/ThemeRoot.tsx -------------------------------------------------------------------------------- /examples/app-designer-example/src/Toolbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/Toolbar/index.tsx -------------------------------------------------------------------------------- /examples/app-designer-example/src/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ThemeButton" -------------------------------------------------------------------------------- /examples/app-designer-example/src/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/contexts.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/adminFrame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/adminFrame.json -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/app.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/editpost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/editpost.json -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/edituser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/edituser.json -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/expression.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/expression.json -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/flows.json -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./app" -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/logic.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/menu.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/meta.json -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/meta.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/molepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/molepage.json -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/mudules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/mudules.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/postList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/postList.json -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/process.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/runtime-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/runtime-mock.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/data/userList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/data/userList.json -------------------------------------------------------------------------------- /examples/app-designer-example/src/hooks/useApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/hooks/useApp.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/hooks/useMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/hooks/useMenu.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/hooks/useQueryApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/hooks/useQueryApp.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/hooks/useSaveApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/hooks/useSaveApp.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/hooks/useSaveFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/hooks/useSaveFlow.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/hooks/useSaveMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/hooks/useSaveMeta.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./AppDesignerExample" -------------------------------------------------------------------------------- /examples/app-designer-example/src/interfaces/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/interfaces/app.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/interfaces/device.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/interfaces/device.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/interfaces/flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/interfaces/flow.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/interfaces/index.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/interfaces/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/interfaces/menu.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/interfaces/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/interfaces/meta.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/interfaces/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/interfaces/module.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/interfaces/theme.ts: -------------------------------------------------------------------------------- 1 | export type ThemeMode = "dark" | "light" -------------------------------------------------------------------------------- /examples/app-designer-example/src/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/locales.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/minions/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/minions/contexts.ts -------------------------------------------------------------------------------- /examples/app-designer-example/src/minions/materials/setters/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./QueryParamsInput" -------------------------------------------------------------------------------- /examples/app-designer-example/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/style.css -------------------------------------------------------------------------------- /examples/app-designer-example/src/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/src/styled.d.ts -------------------------------------------------------------------------------- /examples/app-designer-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/tsconfig.json -------------------------------------------------------------------------------- /examples/app-designer-example/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/app-designer-example/vite.config.ts -------------------------------------------------------------------------------- /examples/example-common/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/.eslintrc -------------------------------------------------------------------------------- /examples/example-common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/.gitignore -------------------------------------------------------------------------------- /examples/example-common/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /examples/example-common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/package.json -------------------------------------------------------------------------------- /examples/example-common/src/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/Logo.tsx -------------------------------------------------------------------------------- /examples/example-common/src/MenuButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/MenuButton.tsx -------------------------------------------------------------------------------- /examples/example-common/src/ResourceWidget/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/ResourceWidget/index.tsx -------------------------------------------------------------------------------- /examples/example-common/src/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./business" -------------------------------------------------------------------------------- /examples/example-common/src/hooks/helper/saveFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/hooks/helper/saveFile.tsx -------------------------------------------------------------------------------- /examples/example-common/src/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./useSaveJson" -------------------------------------------------------------------------------- /examples/example-common/src/hooks/useSaveJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/hooks/useSaveJson.ts -------------------------------------------------------------------------------- /examples/example-common/src/httpquery/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/httpquery/index.ts -------------------------------------------------------------------------------- /examples/example-common/src/httpquery/lib/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./interfaces" -------------------------------------------------------------------------------- /examples/example-common/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/index.ts -------------------------------------------------------------------------------- /examples/example-common/src/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/locales.ts -------------------------------------------------------------------------------- /examples/example-common/src/materials/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/materials/index.ts -------------------------------------------------------------------------------- /examples/example-common/src/materials/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/materials/locales.ts -------------------------------------------------------------------------------- /examples/example-common/src/mock/data/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/mock/data/dashboard.ts -------------------------------------------------------------------------------- /examples/example-common/src/mock/data/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./dashboard" -------------------------------------------------------------------------------- /examples/example-common/src/mock/data/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/mock/data/user.ts -------------------------------------------------------------------------------- /examples/example-common/src/mock/getVariable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/mock/getVariable.ts -------------------------------------------------------------------------------- /examples/example-common/src/mock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/mock/index.ts -------------------------------------------------------------------------------- /examples/example-common/src/mock/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/mock/post.ts -------------------------------------------------------------------------------- /examples/example-common/src/mock/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/mock/query.ts -------------------------------------------------------------------------------- /examples/example-common/src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/src/routes.ts -------------------------------------------------------------------------------- /examples/example-common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/tsconfig.json -------------------------------------------------------------------------------- /examples/example-common/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/example-common/vite.config.ts -------------------------------------------------------------------------------- /examples/large-screen-example/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/large-screen-example/.eslintrc -------------------------------------------------------------------------------- /examples/large-screen-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/large-screen-example/.gitignore -------------------------------------------------------------------------------- /examples/large-screen-example/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /examples/large-screen-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/large-screen-example/package.json -------------------------------------------------------------------------------- /examples/large-screen-example/src/LeftSide/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/large-screen-example/src/LeftSide/index.tsx -------------------------------------------------------------------------------- /examples/large-screen-example/src/SaveButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/large-screen-example/src/SaveButton.tsx -------------------------------------------------------------------------------- /examples/large-screen-example/src/Toolbar/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/large-screen-example/src/Toolbar/Toolbar.tsx -------------------------------------------------------------------------------- /examples/large-screen-example/src/Toolbar/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Toolbar" 2 | -------------------------------------------------------------------------------- /examples/large-screen-example/src/components/basic/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./LSText" -------------------------------------------------------------------------------- /examples/large-screen-example/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/large-screen-example/src/components/index.ts -------------------------------------------------------------------------------- /examples/large-screen-example/src/components/locales.ts: -------------------------------------------------------------------------------- 1 | export const test = "这里放组件运行时需要的多语言资源" -------------------------------------------------------------------------------- /examples/large-screen-example/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/large-screen-example/src/index.ts -------------------------------------------------------------------------------- /examples/large-screen-example/src/marerials/RootBoard/setters/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ThemeTokenSetter" -------------------------------------------------------------------------------- /examples/large-screen-example/src/marerials/basic/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./LSText" -------------------------------------------------------------------------------- /examples/large-screen-example/src/marerials/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/large-screen-example/src/marerials/index.ts -------------------------------------------------------------------------------- /examples/large-screen-example/src/marerials/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/large-screen-example/src/marerials/locales.ts -------------------------------------------------------------------------------- /examples/large-screen-example/src/setters/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ImageSelect" -------------------------------------------------------------------------------- /examples/large-screen-example/src/setters/setters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/large-screen-example/src/setters/setters.ts -------------------------------------------------------------------------------- /examples/large-screen-example/src/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/large-screen-example/src/styled.d.ts -------------------------------------------------------------------------------- /examples/large-screen-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/large-screen-example/tsconfig.json -------------------------------------------------------------------------------- /examples/large-screen-example/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/large-screen-example/vite.config.ts -------------------------------------------------------------------------------- /examples/logicflow-editor-example/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/logicflow-editor-example/.eslintrc -------------------------------------------------------------------------------- /examples/logicflow-editor-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/logicflow-editor-example/.gitignore -------------------------------------------------------------------------------- /examples/logicflow-editor-example/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /examples/logicflow-editor-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/logicflow-editor-example/package.json -------------------------------------------------------------------------------- /examples/logicflow-editor-example/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./LogicflowEditorExample" -------------------------------------------------------------------------------- /examples/logicflow-editor-example/src/materials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/logicflow-editor-example/src/materials.ts -------------------------------------------------------------------------------- /examples/logicflow-editor-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/logicflow-editor-example/tsconfig.json -------------------------------------------------------------------------------- /examples/logicflow-editor-example/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/logicflow-editor-example/vite.config.ts -------------------------------------------------------------------------------- /examples/normal-editor-example/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/normal-editor-example/.eslintrc -------------------------------------------------------------------------------- /examples/normal-editor-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/normal-editor-example/.gitignore -------------------------------------------------------------------------------- /examples/normal-editor-example/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /examples/normal-editor-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/normal-editor-example/package.json -------------------------------------------------------------------------------- /examples/normal-editor-example/src/README.md: -------------------------------------------------------------------------------- 1 | 普遍器编辑器示例 -------------------------------------------------------------------------------- /examples/normal-editor-example/src/data/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/normal-editor-example/src/data/dashboard.json -------------------------------------------------------------------------------- /examples/normal-editor-example/src/data/details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/normal-editor-example/src/data/details.json -------------------------------------------------------------------------------- /examples/normal-editor-example/src/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/normal-editor-example/src/data/index.ts -------------------------------------------------------------------------------- /examples/normal-editor-example/src/data/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/normal-editor-example/src/data/list.json -------------------------------------------------------------------------------- /examples/normal-editor-example/src/data/mole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/normal-editor-example/src/data/mole.json -------------------------------------------------------------------------------- /examples/normal-editor-example/src/data/script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/normal-editor-example/src/data/script.json -------------------------------------------------------------------------------- /examples/normal-editor-example/src/data/step-form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/normal-editor-example/src/data/step-form.json -------------------------------------------------------------------------------- /examples/normal-editor-example/src/data/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/normal-editor-example/src/data/test.json -------------------------------------------------------------------------------- /examples/normal-editor-example/src/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./usePredefinedComponents" -------------------------------------------------------------------------------- /examples/normal-editor-example/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/normal-editor-example/src/index.ts -------------------------------------------------------------------------------- /examples/normal-editor-example/src/widgets/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./SaveButton" -------------------------------------------------------------------------------- /examples/normal-editor-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/normal-editor-example/tsconfig.json -------------------------------------------------------------------------------- /examples/normal-editor-example/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/normal-editor-example/vite.config.ts -------------------------------------------------------------------------------- /examples/runtime-example/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/runtime-example/.eslintrc -------------------------------------------------------------------------------- /examples/runtime-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/runtime-example/.gitignore -------------------------------------------------------------------------------- /examples/runtime-example/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /examples/runtime-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/runtime-example/package.json -------------------------------------------------------------------------------- /examples/runtime-example/src/RuntimeExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/runtime-example/src/RuntimeExample.tsx -------------------------------------------------------------------------------- /examples/runtime-example/src/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/runtime-example/src/data.json -------------------------------------------------------------------------------- /examples/runtime-example/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./RuntimeExample" -------------------------------------------------------------------------------- /examples/runtime-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/runtime-example/tsconfig.json -------------------------------------------------------------------------------- /examples/runtime-example/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/examples/runtime-example/vite.config.ts -------------------------------------------------------------------------------- /internal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './vite-config'; 2 | -------------------------------------------------------------------------------- /internal/vite-config/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /internal/vite-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/internal/vite-config/package.json -------------------------------------------------------------------------------- /internal/vite-config/src/config/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/internal/vite-config/src/config/application.ts -------------------------------------------------------------------------------- /internal/vite-config/src/config/package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/internal/vite-config/src/config/package.ts -------------------------------------------------------------------------------- /internal/vite-config/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/internal/vite-config/src/index.ts -------------------------------------------------------------------------------- /internal/vite-config/src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/internal/vite-config/src/plugins/index.ts -------------------------------------------------------------------------------- /internal/vite-config/src/plugins/visualizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/internal/vite-config/src/plugins/visualizer.ts -------------------------------------------------------------------------------- /internal/vite-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/internal/vite-config/tsconfig.json -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/package.json -------------------------------------------------------------------------------- /packages/bpmn-editor/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/.eslintrc -------------------------------------------------------------------------------- /packages/bpmn-editor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/bpmn-editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/package.json -------------------------------------------------------------------------------- /packages/bpmn-editor/src/BpmnEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/src/BpmnEditor.tsx -------------------------------------------------------------------------------- /packages/bpmn-editor/src/IModeler.ts: -------------------------------------------------------------------------------- 1 | export interface IModeler{ 2 | 3 | } -------------------------------------------------------------------------------- /packages/bpmn-editor/src/PropertyBox/ToolbarArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/src/PropertyBox/ToolbarArea.tsx -------------------------------------------------------------------------------- /packages/bpmn-editor/src/PropertyBox/ToolbarTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/src/PropertyBox/ToolbarTitle.tsx -------------------------------------------------------------------------------- /packages/bpmn-editor/src/PropertyBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/src/PropertyBox/index.tsx -------------------------------------------------------------------------------- /packages/bpmn-editor/src/PropertyPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/src/PropertyPanel/index.tsx -------------------------------------------------------------------------------- /packages/bpmn-editor/src/XmlEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/src/XmlEditor/index.tsx -------------------------------------------------------------------------------- /packages/bpmn-editor/src/hooks/useAssignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/src/hooks/useAssignment.ts -------------------------------------------------------------------------------- /packages/bpmn-editor/src/hooks/useCustomTranslate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/src/hooks/useCustomTranslate.ts -------------------------------------------------------------------------------- /packages/bpmn-editor/src/hooks/useSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/src/hooks/useSelection.ts -------------------------------------------------------------------------------- /packages/bpmn-editor/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./BpmnEditor" -------------------------------------------------------------------------------- /packages/bpmn-editor/src/plugins/context-pad/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/src/plugins/context-pad/index.ts -------------------------------------------------------------------------------- /packages/bpmn-editor/src/plugins/palette/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/src/plugins/palette/index.ts -------------------------------------------------------------------------------- /packages/bpmn-editor/src/plugins/replace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/src/plugins/replace/index.ts -------------------------------------------------------------------------------- /packages/bpmn-editor/src/resources/zeebe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/src/resources/zeebe.json -------------------------------------------------------------------------------- /packages/bpmn-editor/src/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/src/style.less -------------------------------------------------------------------------------- /packages/bpmn-editor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/tsconfig.json -------------------------------------------------------------------------------- /packages/bpmn-editor/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/bpmn-editor/vite.config.ts -------------------------------------------------------------------------------- /packages/eslint-config-custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/eslint-config-custom/index.js -------------------------------------------------------------------------------- /packages/eslint-config-custom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/eslint-config-custom/package.json -------------------------------------------------------------------------------- /packages/fieldy/fieldy-react/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy-react/.eslintrc -------------------------------------------------------------------------------- /packages/fieldy/fieldy-react/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/fieldy/fieldy-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy-react/package.json -------------------------------------------------------------------------------- /packages/fieldy/fieldy-react/src/components/ArrayField/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ArrayField" -------------------------------------------------------------------------------- /packages/fieldy/fieldy-react/src/components/Fieldy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy-react/src/components/Fieldy.tsx -------------------------------------------------------------------------------- /packages/fieldy/fieldy-react/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy-react/src/components/index.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy-react/src/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy-react/src/contexts.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy-react/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy-react/src/hooks/index.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy-react/src/hooks/useField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy-react/src/hooks/useField.tsx -------------------------------------------------------------------------------- /packages/fieldy/fieldy-react/src/hooks/useFieldPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy-react/src/hooks/useFieldPath.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy-react/src/hooks/useFieldy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy-react/src/hooks/useFieldy.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy-react/src/hooks/useForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy-react/src/hooks/useForm.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy-react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy-react/src/index.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy-react/tsconfig.json -------------------------------------------------------------------------------- /packages/fieldy/fieldy-react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy-react/vite.config.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/.eslintrc -------------------------------------------------------------------------------- /packages/fieldy/fieldy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/README.md -------------------------------------------------------------------------------- /packages/fieldy/fieldy/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/fieldy/fieldy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/package.json -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/actions/index.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/actions/payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/actions/payload.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/actions/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/actions/registry.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/classes/FieldImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/classes/FieldImpl.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/classes/FieldyEngineImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/classes/FieldyEngineImpl.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/classes/FormImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/classes/FormImpl.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/classes/PropExpression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/classes/PropExpression.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/classes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/classes/index.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/funcs/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./parseValue" -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/funcs/parseValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/funcs/parseValue.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/funcs/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/funcs/path.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/index.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/interfaces/fieldy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/interfaces/fieldy.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/interfaces/index.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/interfaces/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/interfaces/meta.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/interfaces/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/interfaces/validator.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/reducers/forms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/reducers/forms/index.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/src/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/src/reducers/index.ts -------------------------------------------------------------------------------- /packages/fieldy/fieldy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/tsconfig.json -------------------------------------------------------------------------------- /packages/fieldy/fieldy/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/fieldy/vite.config.ts -------------------------------------------------------------------------------- /packages/fieldy/yup-validation/README.md: -------------------------------------------------------------------------------- 1 | # Summary 2 | 3 | yup 校验 -------------------------------------------------------------------------------- /packages/fieldy/yup-validation/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/fieldy/yup-validation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/yup-validation/package.json -------------------------------------------------------------------------------- /packages/fieldy/yup-validation/src/classes/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./YupValidator" -------------------------------------------------------------------------------- /packages/fieldy/yup-validation/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/yup-validation/src/index.ts -------------------------------------------------------------------------------- /packages/fieldy/yup-validation/src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/yup-validation/src/interfaces.ts -------------------------------------------------------------------------------- /packages/fieldy/yup-validation/src/predefineds/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/yup-validation/src/predefineds/url.ts -------------------------------------------------------------------------------- /packages/fieldy/yup-validation/src/predefineds/uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/yup-validation/src/predefineds/uuid.ts -------------------------------------------------------------------------------- /packages/fieldy/yup-validation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/yup-validation/tsconfig.json -------------------------------------------------------------------------------- /packages/fieldy/yup-validation/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/fieldy/yup-validation/vite.config.ts -------------------------------------------------------------------------------- /packages/locales/locales-react/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/locales/locales-react/.eslintrc -------------------------------------------------------------------------------- /packages/locales/locales-react/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/locales/locales-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/locales/locales-react/package.json -------------------------------------------------------------------------------- /packages/locales/locales-react/src/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/locales/locales-react/src/contexts.ts -------------------------------------------------------------------------------- /packages/locales/locales-react/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/locales/locales-react/src/hooks/index.ts -------------------------------------------------------------------------------- /packages/locales/locales-react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/locales/locales-react/src/index.ts -------------------------------------------------------------------------------- /packages/locales/locales-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/locales/locales-react/tsconfig.json -------------------------------------------------------------------------------- /packages/locales/locales-react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/locales/locales-react/vite.config.ts -------------------------------------------------------------------------------- /packages/locales/locales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/locales/locales/README.md -------------------------------------------------------------------------------- /packages/locales/locales/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/locales/locales/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/locales/locales/package.json -------------------------------------------------------------------------------- /packages/locales/locales/src/classes/LocalesManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/locales/locales/src/classes/LocalesManager.ts -------------------------------------------------------------------------------- /packages/locales/locales/src/classes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/locales/locales/src/classes/index.ts -------------------------------------------------------------------------------- /packages/locales/locales/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/locales/locales/src/index.ts -------------------------------------------------------------------------------- /packages/locales/locales/src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/locales/locales/src/interfaces/index.ts -------------------------------------------------------------------------------- /packages/locales/locales/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/locales/locales/tsconfig.json -------------------------------------------------------------------------------- /packages/locales/locales/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/locales/locales/vite.config.ts -------------------------------------------------------------------------------- /packages/logicflow-editor-antd5/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/logicflow-editor-antd5/.eslintrc -------------------------------------------------------------------------------- /packages/logicflow-editor-antd5/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/logicflow-editor-antd5/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/logicflow-editor-antd5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/logicflow-editor-antd5/package.json -------------------------------------------------------------------------------- /packages/logicflow-editor-antd5/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/logicflow-editor-antd5/src/hooks/index.ts -------------------------------------------------------------------------------- /packages/logicflow-editor-antd5/src/hooks/useTrans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/logicflow-editor-antd5/src/hooks/useTrans.ts -------------------------------------------------------------------------------- /packages/logicflow-editor-antd5/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/logicflow-editor-antd5/src/index.ts -------------------------------------------------------------------------------- /packages/logicflow-editor-antd5/src/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/logicflow-editor-antd5/src/styled.d.ts -------------------------------------------------------------------------------- /packages/logicflow-editor-antd5/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/logicflow-editor-antd5/tsconfig.json -------------------------------------------------------------------------------- /packages/logicflow-editor-antd5/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/logicflow-editor-antd5/vite.config.ts -------------------------------------------------------------------------------- /packages/minions-activities/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/.eslintrc -------------------------------------------------------------------------------- /packages/minions-activities/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/minions-activities/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/minions-activities/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/package.json -------------------------------------------------------------------------------- /packages/minions-activities/src/antd5/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/src/antd5/contexts.ts -------------------------------------------------------------------------------- /packages/minions-activities/src/antd5/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/src/antd5/index.ts -------------------------------------------------------------------------------- /packages/minions-activities/src/auxtools/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Debug" -------------------------------------------------------------------------------- /packages/minions-activities/src/basic/Delay/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/src/basic/Delay/index.ts -------------------------------------------------------------------------------- /packages/minions-activities/src/basic/Equal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/src/basic/Equal/index.ts -------------------------------------------------------------------------------- /packages/minions-activities/src/basic/Loop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/src/basic/Loop/index.ts -------------------------------------------------------------------------------- /packages/minions-activities/src/basic/Merge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/src/basic/Merge/index.ts -------------------------------------------------------------------------------- /packages/minions-activities/src/basic/Random/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/src/basic/Random/index.ts -------------------------------------------------------------------------------- /packages/minions-activities/src/basic/Signals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/src/basic/Signals/index.ts -------------------------------------------------------------------------------- /packages/minions-activities/src/basic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/src/basic/index.ts -------------------------------------------------------------------------------- /packages/minions-activities/src/common/JsCode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/src/common/JsCode/index.ts -------------------------------------------------------------------------------- /packages/minions-activities/src/common/Mock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/src/common/Mock/index.ts -------------------------------------------------------------------------------- /packages/minions-activities/src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/src/common/index.ts -------------------------------------------------------------------------------- /packages/minions-activities/src/fxFlow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/src/fxFlow/index.ts -------------------------------------------------------------------------------- /packages/minions-activities/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/src/index.ts -------------------------------------------------------------------------------- /packages/minions-activities/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/tsconfig.json -------------------------------------------------------------------------------- /packages/minions-activities/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-activities/vite.config.ts -------------------------------------------------------------------------------- /packages/minions-react-materials/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-react-materials/.eslintrc -------------------------------------------------------------------------------- /packages/minions-react-materials/README.md: -------------------------------------------------------------------------------- 1 | 本模块强依赖 antd5 -------------------------------------------------------------------------------- /packages/minions-react-materials/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/minions-react-materials/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-react-materials/package.json -------------------------------------------------------------------------------- /packages/minions-react-materials/src/array/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-react-materials/src/array/index.ts -------------------------------------------------------------------------------- /packages/minions-react-materials/src/auxtools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-react-materials/src/auxtools/index.ts -------------------------------------------------------------------------------- /packages/minions-react-materials/src/baseSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-react-materials/src/baseSchema.ts -------------------------------------------------------------------------------- /packages/minions-react-materials/src/basic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-react-materials/src/basic/index.ts -------------------------------------------------------------------------------- /packages/minions-react-materials/src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-react-materials/src/common/index.ts -------------------------------------------------------------------------------- /packages/minions-react-materials/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-react-materials/src/index.ts -------------------------------------------------------------------------------- /packages/minions-react-materials/src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-react-materials/src/interfaces.ts -------------------------------------------------------------------------------- /packages/minions-react-materials/src/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-react-materials/src/locales.ts -------------------------------------------------------------------------------- /packages/minions-react-materials/src/materials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-react-materials/src/materials.ts -------------------------------------------------------------------------------- /packages/minions-react-materials/src/variable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-react-materials/src/variable/index.ts -------------------------------------------------------------------------------- /packages/minions-react-materials/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-react-materials/tsconfig.json -------------------------------------------------------------------------------- /packages/minions-react-materials/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions-react-materials/vite.config.ts -------------------------------------------------------------------------------- /packages/minions/editor/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/.eslintrc -------------------------------------------------------------------------------- /packages/minions/editor/README.md: -------------------------------------------------------------------------------- 1 | 逻辑流编排 -------------------------------------------------------------------------------- /packages/minions/editor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/minions/editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/package.json -------------------------------------------------------------------------------- /packages/minions/editor/src/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/actions.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/classes/EditorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/classes/EditorStore.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/classes/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./EditorStore" -------------------------------------------------------------------------------- /packages/minions/editor/src/components/Logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/components/Logic.tsx -------------------------------------------------------------------------------- /packages/minions/editor/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/components/index.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/contexts.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/config.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/constants.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/edit-meta/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/edit-meta/index.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/edit-meta/useRedo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/edit-meta/useRedo.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/edit-meta/useUndo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/edit-meta/useUndo.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/getEndNodeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/getEndNodeConfig.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/index.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useArrowhead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useArrowhead.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useChangeFlag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useChangeFlag.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useCreateGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useCreateGraph.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useDispatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useDispatch.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useDnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useDnd.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useEditorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useEditorStore.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useGetEdgeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useGetEdgeConfig.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useGetMaterial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useGetMaterial.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useGetNodeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useGetNodeConfig.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useGetNodeHeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useGetNodeHeight.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useGetNodeMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useGetNodeMeta.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useGetNodeWidth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useGetNodeWidth.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useGetSubLabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useGetSubLabel.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useGetTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useGetTitle.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useGraph.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useGraphState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useGraphState.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useMaterials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useMaterials.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useMaterialsState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useMaterialsState.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useMetas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useMetas.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/usePortsConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/usePortsConfig.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useRedoList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useRedoList.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useSelected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useSelected.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useSelectedEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useSelectedEdge.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useSelectedNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useSelectedNode.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useSelection.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useSetZoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useSetZoom.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useShowCells.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useShowCells.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useShowEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useShowEdge.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useShowMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useShowMap.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useShowNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useShowNode.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useThemeToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useThemeToken.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useTransformPorts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useTransformPorts.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useUndoList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useUndoList.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useUpdateNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useUpdateNode.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useZoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useZoom.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useZoomIn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useZoomIn.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/hooks/useZoomOut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/hooks/useZoomOut.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/index.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/interfaces/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/interfaces/controller.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/interfaces/index.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/interfaces/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/interfaces/interfaces.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/interfaces/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/interfaces/state.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/interfaces/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/interfaces/styled.d.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/interfaces/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/interfaces/theme.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/reducers/mainReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/reducers/mainReducer.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/reducers/metasReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/reducers/metasReducer.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/reducers/showMapReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/reducers/showMapReducer.ts -------------------------------------------------------------------------------- /packages/minions/editor/src/reducers/zoomReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/src/reducers/zoomReducer.ts -------------------------------------------------------------------------------- /packages/minions/editor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/tsconfig.json -------------------------------------------------------------------------------- /packages/minions/editor/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/editor/vite.config.ts -------------------------------------------------------------------------------- /packages/minions/runtime-core/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-core/.eslintrc -------------------------------------------------------------------------------- /packages/minions/runtime-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-core/README.md -------------------------------------------------------------------------------- /packages/minions/runtime-core/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/minions/runtime-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-core/package.json -------------------------------------------------------------------------------- /packages/minions/runtime-core/src/classes/Jointer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-core/src/classes/Jointer.ts -------------------------------------------------------------------------------- /packages/minions/runtime-core/src/classes/LogicFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-core/src/classes/LogicFlow.ts -------------------------------------------------------------------------------- /packages/minions/runtime-core/src/classes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-core/src/classes/index.ts -------------------------------------------------------------------------------- /packages/minions/runtime-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-core/src/index.ts -------------------------------------------------------------------------------- /packages/minions/runtime-core/src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-core/src/interfaces/index.ts -------------------------------------------------------------------------------- /packages/minions/runtime-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-core/tsconfig.json -------------------------------------------------------------------------------- /packages/minions/runtime-core/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-core/vite.config.ts -------------------------------------------------------------------------------- /packages/minions/runtime-react/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-react/.eslintrc -------------------------------------------------------------------------------- /packages/minions/runtime-react/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/minions/runtime-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-react/package.json -------------------------------------------------------------------------------- /packages/minions/runtime-react/src/activities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-react/src/activities/index.ts -------------------------------------------------------------------------------- /packages/minions/runtime-react/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-react/src/index.ts -------------------------------------------------------------------------------- /packages/minions/runtime-react/src/interfaces/flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-react/src/interfaces/flow.ts -------------------------------------------------------------------------------- /packages/minions/runtime-react/src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-react/src/interfaces/index.ts -------------------------------------------------------------------------------- /packages/minions/runtime-react/src/interfaces/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-react/src/interfaces/meta.ts -------------------------------------------------------------------------------- /packages/minions/runtime-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-react/tsconfig.json -------------------------------------------------------------------------------- /packages/minions/runtime-react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/runtime-react/vite.config.ts -------------------------------------------------------------------------------- /packages/minions/schema/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/minions/schema/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/minions/schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/schema/package.json -------------------------------------------------------------------------------- /packages/minions/schema/src/dsl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/schema/src/dsl.ts -------------------------------------------------------------------------------- /packages/minions/schema/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/schema/src/index.ts -------------------------------------------------------------------------------- /packages/minions/schema/src/material.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/schema/src/material.ts -------------------------------------------------------------------------------- /packages/minions/schema/src/variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/schema/src/variable.ts -------------------------------------------------------------------------------- /packages/minions/schema/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/schema/tsconfig.json -------------------------------------------------------------------------------- /packages/minions/schema/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/minions/schema/vite.config.ts -------------------------------------------------------------------------------- /packages/react-antd-components/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/.eslintrc -------------------------------------------------------------------------------- /packages/react-antd-components/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; -------------------------------------------------------------------------------- /packages/react-antd-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/package.json -------------------------------------------------------------------------------- /packages/react-antd-components/src/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/src/Button/index.tsx -------------------------------------------------------------------------------- /packages/react-antd-components/src/datas/TreeList/utils.ts: -------------------------------------------------------------------------------- 1 | export const handleBlockClick = (e: React.MouseEvent) => { 2 | e.stopPropagation() 3 | } -------------------------------------------------------------------------------- /packages/react-antd-components/src/datas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/src/datas/index.ts -------------------------------------------------------------------------------- /packages/react-antd-components/src/datas/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/src/datas/interfaces.ts -------------------------------------------------------------------------------- /packages/react-antd-components/src/displays/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/src/displays/index.ts -------------------------------------------------------------------------------- /packages/react-antd-components/src/displays/typography/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./useFormat" -------------------------------------------------------------------------------- /packages/react-antd-components/src/forms/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/src/forms/contexts.ts -------------------------------------------------------------------------------- /packages/react-antd-components/src/forms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/src/forms/index.ts -------------------------------------------------------------------------------- /packages/react-antd-components/src/forms/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/src/forms/types.ts -------------------------------------------------------------------------------- /packages/react-antd-components/src/hocs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/src/hocs/index.ts -------------------------------------------------------------------------------- /packages/react-antd-components/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/src/index.ts -------------------------------------------------------------------------------- /packages/react-antd-components/src/inputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/src/inputs/index.ts -------------------------------------------------------------------------------- /packages/react-antd-components/src/layouts/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/src/layouts/context.ts -------------------------------------------------------------------------------- /packages/react-antd-components/src/layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/src/layouts/index.ts -------------------------------------------------------------------------------- /packages/react-antd-components/src/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/src/locales.ts -------------------------------------------------------------------------------- /packages/react-antd-components/src/popups/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/src/popups/index.ts -------------------------------------------------------------------------------- /packages/react-antd-components/src/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/src/styled.d.ts -------------------------------------------------------------------------------- /packages/react-antd-components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/tsconfig.json -------------------------------------------------------------------------------- /packages/react-antd-components/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-components/vite.config.ts -------------------------------------------------------------------------------- /packages/react-antd-icons/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-icons/.eslintrc -------------------------------------------------------------------------------- /packages/react-antd-icons/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; -------------------------------------------------------------------------------- /packages/react-antd-icons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-icons/package.json -------------------------------------------------------------------------------- /packages/react-antd-icons/src/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./IconView" -------------------------------------------------------------------------------- /packages/react-antd-icons/src/data/filled/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-icons/src/data/filled/editor.ts -------------------------------------------------------------------------------- /packages/react-antd-icons/src/data/filled/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-icons/src/data/filled/index.tsx -------------------------------------------------------------------------------- /packages/react-antd-icons/src/data/filled/suggested.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-icons/src/data/filled/suggested.ts -------------------------------------------------------------------------------- /packages/react-antd-icons/src/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-icons/src/data/index.ts -------------------------------------------------------------------------------- /packages/react-antd-icons/src/data/outlined/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-icons/src/data/outlined/editor.ts -------------------------------------------------------------------------------- /packages/react-antd-icons/src/data/outlined/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-icons/src/data/outlined/index.tsx -------------------------------------------------------------------------------- /packages/react-antd-icons/src/data/two-tone/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-icons/src/data/two-tone/editor.ts -------------------------------------------------------------------------------- /packages/react-antd-icons/src/data/two-tone/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-icons/src/data/two-tone/index.tsx -------------------------------------------------------------------------------- /packages/react-antd-icons/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-icons/src/index.ts -------------------------------------------------------------------------------- /packages/react-antd-icons/src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-icons/src/interfaces.ts -------------------------------------------------------------------------------- /packages/react-antd-icons/src/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-icons/src/model.ts -------------------------------------------------------------------------------- /packages/react-antd-icons/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-icons/tsconfig.json -------------------------------------------------------------------------------- /packages/react-antd-icons/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-icons/vite.config.ts -------------------------------------------------------------------------------- /packages/react-antd-materials/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-materials/.eslintrc -------------------------------------------------------------------------------- /packages/react-antd-materials/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/react-antd-materials/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-materials/package.json -------------------------------------------------------------------------------- /packages/react-antd-materials/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-materials/src/index.ts -------------------------------------------------------------------------------- /packages/react-antd-materials/src/materials/common/Container/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./schema" -------------------------------------------------------------------------------- /packages/react-antd-materials/src/materials/common/Form/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./schema" -------------------------------------------------------------------------------- /packages/react-antd-materials/src/materials/fields/README.md: -------------------------------------------------------------------------------- 1 | 本功能预计会删除 -------------------------------------------------------------------------------- /packages/react-antd-materials/src/materials/fields/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./InputField" -------------------------------------------------------------------------------- /packages/react-antd-materials/src/materials/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-materials/src/materials/index.ts -------------------------------------------------------------------------------- /packages/react-antd-materials/src/materials/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-materials/src/materials/locales.ts -------------------------------------------------------------------------------- /packages/react-antd-materials/src/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-materials/src/shared/index.ts -------------------------------------------------------------------------------- /packages/react-antd-materials/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-materials/tsconfig.json -------------------------------------------------------------------------------- /packages/react-antd-materials/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-antd-materials/vite.config.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/.eslintrc -------------------------------------------------------------------------------- /packages/react-menu-designer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/react-menu-designer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/package.json -------------------------------------------------------------------------------- /packages/react-menu-designer/src/DesignerRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/DesignerRoot.tsx -------------------------------------------------------------------------------- /packages/react-menu-designer/src/ReactMenuDesigner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/ReactMenuDesigner.tsx -------------------------------------------------------------------------------- /packages/react-menu-designer/src/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Toolbox/ResourceItem" -------------------------------------------------------------------------------- /packages/react-menu-designer/src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/consts.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/contexts.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/dnd/DndContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/dnd/DndContext.tsx -------------------------------------------------------------------------------- /packages/react-menu-designer/src/dnd/DragOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/dnd/DragOverlay.tsx -------------------------------------------------------------------------------- /packages/react-menu-designer/src/dnd/Draggable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/dnd/Draggable.tsx -------------------------------------------------------------------------------- /packages/react-menu-designer/src/dnd/Droppable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/dnd/Droppable.tsx -------------------------------------------------------------------------------- /packages/react-menu-designer/src/dnd/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/dnd/consts.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/dnd/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/dnd/contexts.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/dnd/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./useReplaceActiveId" 2 | -------------------------------------------------------------------------------- /packages/react-menu-designer/src/dnd/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/dnd/index.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/dnd/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/dnd/types.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/hooks/useBackup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/hooks/useBackup.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/hooks/useGetItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/hooks/useGetItem.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/hooks/useItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/hooks/useItem.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/hooks/useMoveItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/hooks/useMoveItem.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/hooks/useRedo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/hooks/useRedo.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/hooks/useResource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/hooks/useResource.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/hooks/useResources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/hooks/useResources.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/hooks/useUndo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/hooks/useUndo.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/index.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/interfaces/index.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/interfaces/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/interfaces/menu.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/interfaces/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/interfaces/schema.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/locales.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/resources/index.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/resources/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/resources/types.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/styled.d.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/types.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/src/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/src/utilities.ts -------------------------------------------------------------------------------- /packages/react-menu-designer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/tsconfig.json -------------------------------------------------------------------------------- /packages/react-menu-designer/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-menu-designer/vite.config.ts -------------------------------------------------------------------------------- /packages/react-runner/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/.eslintrc -------------------------------------------------------------------------------- /packages/react-runner/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/react-runner/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/package.json -------------------------------------------------------------------------------- /packages/react-runner/src/ComponentField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/ComponentField.tsx -------------------------------------------------------------------------------- /packages/react-runner/src/ComponentRender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/ComponentRender.tsx -------------------------------------------------------------------------------- /packages/react-runner/src/ComponentView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/ComponentView.tsx -------------------------------------------------------------------------------- /packages/react-runner/src/LogicflowRuntime/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/LogicflowRuntime/index.tsx -------------------------------------------------------------------------------- /packages/react-runner/src/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/contexts.ts -------------------------------------------------------------------------------- /packages/react-runner/src/hocs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/hocs/index.ts -------------------------------------------------------------------------------- /packages/react-runner/src/hocs/withBind.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/hocs/withBind.tsx -------------------------------------------------------------------------------- /packages/react-runner/src/hocs/withController.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/hocs/withController.tsx -------------------------------------------------------------------------------- /packages/react-runner/src/hocs/withExprs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/hocs/withExprs.tsx -------------------------------------------------------------------------------- /packages/react-runner/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/hooks/index.ts -------------------------------------------------------------------------------- /packages/react-runner/src/hooks/useArraySchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/hooks/useArraySchema.ts -------------------------------------------------------------------------------- /packages/react-runner/src/hooks/useComponentSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/hooks/useComponentSchema.ts -------------------------------------------------------------------------------- /packages/react-runner/src/hooks/useController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/hooks/useController.ts -------------------------------------------------------------------------------- /packages/react-runner/src/hooks/useControllerEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/hooks/useControllerEngine.ts -------------------------------------------------------------------------------- /packages/react-runner/src/hooks/useControllers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/hooks/useControllers.ts -------------------------------------------------------------------------------- /packages/react-runner/src/hooks/useExprProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/hooks/useExprProps.ts -------------------------------------------------------------------------------- /packages/react-runner/src/hooks/usePreviewComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/hooks/usePreviewComponent.ts -------------------------------------------------------------------------------- /packages/react-runner/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/index.ts -------------------------------------------------------------------------------- /packages/react-runner/src/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/src/transform.ts -------------------------------------------------------------------------------- /packages/react-runner/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/tsconfig.json -------------------------------------------------------------------------------- /packages/react-runner/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-runner/vite.config.ts -------------------------------------------------------------------------------- /packages/react-shared/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-shared/.eslintrc -------------------------------------------------------------------------------- /packages/react-shared/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/react-shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-shared/package.json -------------------------------------------------------------------------------- /packages/react-shared/src/ResizableColumn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-shared/src/ResizableColumn/index.tsx -------------------------------------------------------------------------------- /packages/react-shared/src/ResizableColumn/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-shared/src/ResizableColumn/style.less -------------------------------------------------------------------------------- /packages/react-shared/src/SvgIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-shared/src/SvgIcon.tsx -------------------------------------------------------------------------------- /packages/react-shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-shared/src/index.ts -------------------------------------------------------------------------------- /packages/react-shared/src/svgs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-shared/src/svgs/index.ts -------------------------------------------------------------------------------- /packages/react-shared/src/svgs/minion-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-shared/src/svgs/minion-icons.tsx -------------------------------------------------------------------------------- /packages/react-shared/src/svgs/shell-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-shared/src/svgs/shell-icons.tsx -------------------------------------------------------------------------------- /packages/react-shared/src/svgs/svgs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-shared/src/svgs/svgs.tsx -------------------------------------------------------------------------------- /packages/react-shared/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-shared/src/types.ts -------------------------------------------------------------------------------- /packages/react-shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-shared/tsconfig.json -------------------------------------------------------------------------------- /packages/react-shared/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/react-shared/vite.config.ts -------------------------------------------------------------------------------- /packages/rxeditor/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/rxeditor/core/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/.eslintrc -------------------------------------------------------------------------------- /packages/rxeditor/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/README.md -------------------------------------------------------------------------------- /packages/rxeditor/core/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/rxeditor/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/package.json -------------------------------------------------------------------------------- /packages/rxeditor/core/src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/actions/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/actions/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/actions/registry.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/behaviors/rootBehavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/behaviors/rootBehavior.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/classes/Behavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/classes/Behavior.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/classes/BehaviorManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/classes/BehaviorManager.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/classes/ComponentManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/classes/ComponentManager.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/classes/DecoratorManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/classes/DecoratorManager.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/classes/DesignerEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/classes/DesignerEngine.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/classes/DocumentImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/classes/DocumentImpl.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/classes/Monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/classes/Monitor.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/classes/ResourceManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/classes/ResourceManager.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/classes/SetterManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/classes/SetterManager.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/classes/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./DesignerEngine" 2 | -------------------------------------------------------------------------------- /packages/rxeditor/core/src/createEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/createEngine.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/decorators/LineDecorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/decorators/LineDecorator.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/decorators/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/funcs/parseNodeSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/funcs/parseNodeSchema.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/action.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/behavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/behavior.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/decorator.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/document.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/engine.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/event.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/funcs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/funcs.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/material.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/material.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/monitor.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/payloads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/payloads.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/plugin.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/resource.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/setter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/setter.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/shell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/shell.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/interfaces/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/interfaces/types.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/plugins/auxwidgets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/plugins/auxwidgets/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/plugins/controllers/freedom/index.ts: -------------------------------------------------------------------------------- 1 | export const tt="" -------------------------------------------------------------------------------- /packages/rxeditor/core/src/plugins/freedom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/plugins/freedom.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/plugins/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/plugins/liquid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/plugins/liquid.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/reducers/dragOver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/reducers/dragOver.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/reducers/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/reducers/lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/reducers/lang.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/reducers/nodesById.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/reducers/nodesById.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/reducers/selectedIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/reducers/selectedIds.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/reducers/stateId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/reducers/stateId.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/reducers/themeMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/reducers/themeMode.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/shell/BrowserDetector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/shell/BrowserDetector.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/shell/CanvasImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/shell/CanvasImpl.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/shell/ContainerImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/shell/ContainerImpl.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/shell/DesignerShell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/shell/DesignerShell.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/shell/ShellPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/shell/ShellPart.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/shell/drivers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/shell/drivers/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/shell/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/shell/events/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/shell/extractElements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/shell/extractElements.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/shell/getMergedRect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/shell/getMergedRect.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/shell/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/shell/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/shell/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/shell/utils/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/shell/utils/js_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/shell/utils/js_utils.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/shell/utils/xycoord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/shell/utils/xycoord.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/utils/add-zindex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/utils/add-zindex.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/utils/array-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/utils/array-helper.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/utils/clone-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/utils/clone-object.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/utils/coordinate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/utils/coordinate.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/utils/element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/utils/element.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/utils/equality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/utils/equality.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/utils/html-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/utils/html-node.js -------------------------------------------------------------------------------- /packages/rxeditor/core/src/utils/js_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/utils/js_utils.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/src/utils/keycode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/src/utils/keycode.ts -------------------------------------------------------------------------------- /packages/rxeditor/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/tsconfig.json -------------------------------------------------------------------------------- /packages/rxeditor/core/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/core/vite.config.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-props-inputs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-antd-props-inputs/.eslintrc -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-props-inputs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-shell/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-antd-shell/.eslintrc -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-shell/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-shell/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-antd-shell/package.json -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-shell/src/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-antd-shell/src/icons.tsx -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-shell/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-antd-shell/src/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-shell/src/inline/icons.tsx: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-shell/src/inline/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./components" 2 | -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-shell/src/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-antd-shell/src/locales.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-shell/src/normal/layouts/ToggleAblePane/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./useToggleState" -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-shell/src/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-antd-shell/src/styled.d.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-shell/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-antd-shell/src/utils.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-shell/src/zoomable/ZoomableEditor/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ZoomableEditor" -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-shell/src/zoomable/common/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FloatButton" 2 | -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-shell/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-antd-shell/tsconfig.json -------------------------------------------------------------------------------- /packages/rxeditor/react-antd-shell/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-antd-shell/vite.config.js -------------------------------------------------------------------------------- /packages/rxeditor/react-core/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/.eslintrc -------------------------------------------------------------------------------- /packages/rxeditor/react-core/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/rxeditor/react-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/package.json -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/Designer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/Designer.tsx -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/Document/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/Document/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/JsonView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/JsonView/index.tsx -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/Root/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/Root/index.tsx -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/canvas/Canvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/canvas/Canvas.tsx -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/canvas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/canvas/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Group" -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/contexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/contexts.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/hocs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/hocs/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/hocs/switchRef.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/hocs/switchRef.tsx -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/hocs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/hocs/types.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/hooks/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/hooks/useLocked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/hooks/useLocked.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/hooks/useNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/hooks/useNode.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/hooks/useRedo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/hooks/useRedo.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/hooks/useSelect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/hooks/useSelect.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/hooks/useShell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/hooks/useShell.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/hooks/useUndo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/hooks/useUndo.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-core/src/preview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/src/preview/index.ts -------------------------------------------------------------------------------- /packages/rxeditor/react-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/tsconfig.json -------------------------------------------------------------------------------- /packages/rxeditor/react-core/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/rxeditor/react-core/vite.config.ts -------------------------------------------------------------------------------- /packages/schema/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/schema/.eslintrc -------------------------------------------------------------------------------- /packages/schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/schema/README.md -------------------------------------------------------------------------------- /packages/schema/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/schema/package.json -------------------------------------------------------------------------------- /packages/schema/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/schema/src/index.ts -------------------------------------------------------------------------------- /packages/schema/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/schema/tsconfig.json -------------------------------------------------------------------------------- /packages/schema/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/schema/vite.config.ts -------------------------------------------------------------------------------- /packages/shared/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/.eslintrc -------------------------------------------------------------------------------- /packages/shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/README.md -------------------------------------------------------------------------------- /packages/shared/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/package.json -------------------------------------------------------------------------------- /packages/shared/src/Subscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/src/Subscriber.ts -------------------------------------------------------------------------------- /packages/shared/src/createId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/src/createId.ts -------------------------------------------------------------------------------- /packages/shared/src/expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/src/expression.ts -------------------------------------------------------------------------------- /packages/shared/src/getFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/src/getFile.ts -------------------------------------------------------------------------------- /packages/shared/src/getRecentRxElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/src/getRecentRxElement.ts -------------------------------------------------------------------------------- /packages/shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/src/index.ts -------------------------------------------------------------------------------- /packages/shared/src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/src/interfaces.ts -------------------------------------------------------------------------------- /packages/shared/src/make-rxId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/src/make-rxId.ts -------------------------------------------------------------------------------- /packages/shared/src/saveFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/src/saveFile.ts -------------------------------------------------------------------------------- /packages/shared/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/src/types.ts -------------------------------------------------------------------------------- /packages/shared/src/util-invariant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/src/util-invariant.ts -------------------------------------------------------------------------------- /packages/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/tsconfig.json -------------------------------------------------------------------------------- /packages/shared/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/shared/vite.config.ts -------------------------------------------------------------------------------- /packages/tsconfig/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/tsconfig/base.json -------------------------------------------------------------------------------- /packages/tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/tsconfig/package.json -------------------------------------------------------------------------------- /packages/tsconfig/react-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/tsconfig/react-library.json -------------------------------------------------------------------------------- /packages/tsconfig/vite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/tsconfig/vite.json -------------------------------------------------------------------------------- /packages/uml-editor/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/.eslintrc -------------------------------------------------------------------------------- /packages/uml-editor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/uml-editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/package.json -------------------------------------------------------------------------------- /packages/uml-editor/src/EmpertyCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/EmpertyCanvas.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/EntityTree/ClassLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/EntityTree/ClassLabel.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/EntityTree/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/EntityTree/index.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/GraphCanvas/canStartLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/GraphCanvas/canStartLink.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/GraphCanvas/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/GraphCanvas/events/index.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/GraphCanvas/getGraphSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/GraphCanvas/getGraphSize.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/GraphCanvas/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/GraphCanvas/index.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/GraphCanvas/nodeInitSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/GraphCanvas/nodeInitSize.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/GraphCanvas/useDnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/GraphCanvas/useDnd.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/GraphCanvas/useEdgeHover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/GraphCanvas/useEdgeHover.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/GraphCanvas/useEdgesShow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/GraphCanvas/useEdgesShow.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/GraphCanvas/useNodeAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/GraphCanvas/useNodeAdd.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/ModelBoard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/ModelBoard/index.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/PropertyPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/PropertyPanel/index.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/Toolbox/ClassRect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/Toolbox/ClassRect.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/Toolbox/constSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/Toolbox/constSvg.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/Toolbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/Toolbox/index.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/UmlEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/UmlEditor.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/UmlEditorInner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/UmlEditorInner.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/UmlToolbar/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/UmlToolbar/icons.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/UmlToolbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/UmlToolbar/index.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/components/PlugIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/components/PlugIcon.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/components/SvgIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/components/SvgIcon.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/components/svgs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/components/svgs.tsx -------------------------------------------------------------------------------- /packages/uml-editor/src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/consts.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/index.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useAppOpenFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useAppOpenFile.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useAttribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useAttribute.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useBackupSnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useBackupSnapshot.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useChangeAttribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useChangeAttribute.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useChangeClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useChangeClass.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useChangeDiagram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useChangeDiagram.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useChangePackage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useChangePackage.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useChangeRelation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useChangeRelation.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useChanged.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useChanged.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useClass.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useClassPackage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useClassPackage.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useCreateAttribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useCreateAttribute.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useCreateNewClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useCreateNewClass.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useDeleteAttribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useDeleteAttribute.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useDeleteClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useDeleteClass.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useDeleteDiagram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useDeleteDiagram.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useDeletePackage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useDeletePackage.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useDeleteRelation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useDeleteRelation.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useDiagramEdges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useDiagramEdges.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useDiagramNodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useDiagramNodes.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useEntities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useEntities.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useEnums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useEnums.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useExportModelJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useExportModelJson.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useGetAllParentIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useGetAllParentIds.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useGetClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useGetClass.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useGetClassByName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useGetClassByName.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useGetDiagramNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useGetDiagramNode.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useGetEdge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useGetEdge.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useGetMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useGetMeta.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useGetNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useGetNode.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useGetPackage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useGetPackage.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useGetRelation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useGetRelation.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useGetTypeLabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useGetTypeLabel.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useImportModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useImportModel.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useImportModelJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useImportModelJson.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useIsDiagram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useIsDiagram.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useIsElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useIsElement.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useMetaId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useMetaId.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useParesMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useParesMeta.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useRedo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useRedo.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useRelation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useRelation.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useRootClasses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useRootClasses.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useUndo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useUndo.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useValidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useValidate.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/hooks/useValueObjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/hooks/useValueObjects.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/index.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/interfaces/DiagramMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/interfaces/DiagramMeta.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/interfaces/Meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/interfaces/Meta.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/interfaces/X6EdgeMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/interfaces/X6EdgeMeta.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/interfaces/X6NodeMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/interfaces/X6NodeMeta.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/interfaces/index.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/locales.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/recoil/LineAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/recoil/LineAction.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/recoil/atoms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/recoil/atoms.ts -------------------------------------------------------------------------------- /packages/uml-editor/src/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/src/styled.d.ts -------------------------------------------------------------------------------- /packages/uml-editor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/tsconfig.json -------------------------------------------------------------------------------- /packages/uml-editor/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-editor/vite.config.ts -------------------------------------------------------------------------------- /packages/uml-schema/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-schema/.eslintrc -------------------------------------------------------------------------------- /packages/uml-schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-schema/README.md -------------------------------------------------------------------------------- /packages/uml-schema/index.ts: -------------------------------------------------------------------------------- 1 | export * from './src'; 2 | -------------------------------------------------------------------------------- /packages/uml-schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-schema/package.json -------------------------------------------------------------------------------- /packages/uml-schema/src/AttributeMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-schema/src/AttributeMeta.ts -------------------------------------------------------------------------------- /packages/uml-schema/src/ClassMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-schema/src/ClassMeta.ts -------------------------------------------------------------------------------- /packages/uml-schema/src/Meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-schema/src/Meta.ts -------------------------------------------------------------------------------- /packages/uml-schema/src/PackageMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-schema/src/PackageMeta.ts -------------------------------------------------------------------------------- /packages/uml-schema/src/RelationMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-schema/src/RelationMeta.ts -------------------------------------------------------------------------------- /packages/uml-schema/src/Type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-schema/src/Type.ts -------------------------------------------------------------------------------- /packages/uml-schema/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-schema/src/index.ts -------------------------------------------------------------------------------- /packages/uml-schema/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-schema/tsconfig.json -------------------------------------------------------------------------------- /packages/uml-schema/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/packages/uml-schema/vite.config.ts -------------------------------------------------------------------------------- /plopfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/plopfile.js -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/turbo.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/vercel.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /备忘.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebdy/rxdrag/HEAD/备忘.md --------------------------------------------------------------------------------