diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
deleted file mode 100644
index ea12ba5..0000000
--- a/.github/FUNDING.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-# These are supported funding model platforms
-
-github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
-patreon: # Replace with a single Patreon username
-open_collective: h5-dooring
-ko_fi: # Replace with a single Ko-fi username
-tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
-community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
-liberapay: # Replace with a single Liberapay username
-issuehunt: # Replace with a single IssueHunt username
-otechie: # Replace with a single Otechie username
-custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
deleted file mode 100644
index 84c630a..0000000
--- a/.github/workflows/main.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-name: build
-on:
- push:
- branches:
- - main
-jobs:
- build-and-deploy:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout 🛎️
- uses: actions/checkout@v2 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
- with:
- persist-credentials: false
- - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
- run: |
- yarn install
- npm run deploy
- - name: Deploy 🚀
- uses: JamesIves/github-pages-deploy-action@releases/v3
- with:
- GITHUB_TOKEN: ${{secrets.ACCESS_TOKEN}}
- BRANCH: gh-pages # The branch the action should deploy to.
- FOLDER: packages/dooringx-dumi-doc/docs-dist # The folder the action should deploy.
diff --git a/.history/packages/dooringx-example/src/plugin/index_20230428173931.tsx b/.history/packages/dooringx-example/src/plugin/index_20230428173931.tsx
deleted file mode 100644
index 33b53e7..0000000
--- a/.history/packages/dooringx-example/src/plugin/index_20230428173931.tsx
+++ /dev/null
@@ -1,120 +0,0 @@
-/*
- * @Author: yehuozhili
- * @Date: 2021-02-27 21:33:36
- * @LastEditors: yehuozhili
- * @LastEditTime: 2022-04-29 23:35:58
- * @FilePath: \dooringx\packages\dooringx-example\src\plugin\index.tsx
- */
-
-import { InitConfig, LeftDataPannel } from 'dooringx-lib';
-import { LeftRegistComponentMapItem } from 'dooringx-lib/dist/core/crossDrag';
-import { ContainerOutlined, PlayCircleOutlined, HighlightOutlined } from '@ant-design/icons';
-import commandModules from './commanderModules';
-import { functionMap } from './functionMap';
-import { Formmodules } from './formComponentModules';
-import InputCo from './registComponents/inputCo';
-
-const LeftRegistMap: LeftRegistComponentMapItem[] = [
- {
- type: 'basic',
- component: 'button',
- img: 'icon-anniu',
- imgCustom: ,
- displayName: '按钮',
- urlFn: () => import('./registComponents/button'),
- },
- {
- type: 'basic',
- component: 'button',
- img: 'https://img.guguzhu.com/d/file/android/ico/2021/09/08/rytzi2w34tm.png',
- imgCustom: ,
- displayName: '按钮',
- urlFn: () => import('./registComponents/button'),
- },
- {
- type: 'basic',
- component: 'input',
- img: 'https://img.guguzhu.com/d/file/android/ico/2021/09/08/rytzi2w34tm.png',
- displayName: '输入框',
- },
- {
- type: 'basic',
- component: 'testco',
- img: 'icon-anniu',
- imgCustom: ,
- displayName: '测试按钮',
- urlFn: () => import('./registComponents/testco'),
- },
-];
-
-export const defaultConfig: Partial = {
- leftAllRegistMap: LeftRegistMap,
- leftRenderListCategory: [
- {
- type: 'basic',
- icon: ,
- displayName: '基础',
- },
- {
- type: 'media',
- icon: ,
- displayName: '媒体组件',
- },
- {
- type: 'datax',
- icon: ,
- custom: true,
- displayName: '数据源',
- customRender: (config) => ,
- },
- {
- type: 'xxc',
- icon: ,
- custom: true,
- displayName: '自定义',
- customRender: () => 我是自定义渲染
,
- },
- ],
- initComponentCache: {
- input: { component: InputCo },
- },
- rightRenderListCategory: [
- {
- type: 'style',
- icon: (
-
- 外观
-
- ),
- },
- {
- type: 'animate',
- icon: (
-
- 动画
-
- ),
- },
- {
- type: 'fn',
- icon: (
-
- 函数
-
- ),
- },
- {
- type: 'actions',
- icon: (
-
- 事件
-
- ),
- },
- ],
- initFunctionMap: functionMap,
- initCommandModule: commandModules,
- initFormComponents: Formmodules,
-};
-
-export default defaultConfig;
diff --git a/.history/packages/dooringx-example/src/plugin/index_20230428173933.tsx b/.history/packages/dooringx-example/src/plugin/index_20230428173933.tsx
deleted file mode 100644
index e4786a0..0000000
--- a/.history/packages/dooringx-example/src/plugin/index_20230428173933.tsx
+++ /dev/null
@@ -1,120 +0,0 @@
-/*
- * @Author: yehuozhili
- * @Date: 2021-02-27 21:33:36
- * @LastEditors: guoshujing gsj2501015228@163.com
- * @LastEditTime: 2023-04-28 17:39:33
- * @FilePath: \dooringx\packages\dooringx-example\src\plugin\index.tsx
- */
-
-import { InitConfig, LeftDataPannel } from 'dooringx-lib';
-import { LeftRegistComponentMapItem } from 'dooringx-lib/dist/core/crossDrag';
-import { ContainerOutlined, PlayCircleOutlined, HighlightOutlined } from '@ant-design/icons';
-import commandModules from './commanderModules';
-import { functionMap } from './functionMap';
-import { Formmodules } from './formComponentModules';
-import InputCo from './registComponents/inputCo';
-
-const LeftRegistMap: LeftRegistComponentMapItem[] = [
- {
- type: 'basic',
- component: 'button',
- img: 'icon-anniu',
- imgCustom: ,
- displayName: '按钮',
- urlFn: () => import('./registComponents/button'),
- },
- {
- type: 'basic',
- component: 'button',
- img: 'https://img.guguzhu.com/d/file/android/ico/2021/09/08/rytzi2w34tm.png',
- imgCustom: ,
- displayName: '按钮',
- urlFn: () => import('./registComponents/button'),
- },
- {
- type: 'basic',
- component: 'input',
- img: 'https://img.guguzhu.com/d/file/android/ico/2021/09/08/rytzi2w34tm.png',
- displayName: '输入框',
- },
- {
- type: 'basic',
- component: 'testco',
- img: 'icon-anniu',
- imgCustom: ,
- displayName: '测试按钮',
- urlFn: () => import('./registComponents/testco'),
- },
-];
-
-export const defaultConfig: Partial = {
- leftAllRegistMap: LeftRegistMap,
- leftRenderListCategory: [
- {
- type: 'basic',
- icon: ,
- displayName: '基础',
- },
- {
- type: 'media',
- icon: ,
- displayName: '媒体组件',
- },
- {
- type: 'datax',
- icon: ,
- custom: true,
- displayName: '数据源',
- customRender: (config) => ,
- },
- {
- type: 'xxc',
- icon: ,
- custom: true,
- displayName: '自定义',
- customRender: () => 我是自定义渲染
,
- },
- ],
- initComponentCache: {
- input: { component: InputCo },
- },
- rightRenderListCategory: [
- {
- type: 'style',
- icon: (
-
- 外观
-
- ),
- },
- {
- type: 'animate',
- icon: (
-
- 动画
-
- ),
- },
- {
- type: 'fn',
- icon: (
-
- 函数
-
- ),
- },
- {
- type: 'actions',
- icon: (
-
- 事件
-
- ),
- },
- ],
- initFunctionMap: functionMap,
- initCommandModule: commandModules,
- initFormComponents: Formmodules,
-};
-
-export default defaultConfig;
diff --git a/.history/packages/dooringx-example/src/plugin/index_20230428174201.tsx b/.history/packages/dooringx-example/src/plugin/index_20230428174201.tsx
deleted file mode 100644
index 701f941..0000000
--- a/.history/packages/dooringx-example/src/plugin/index_20230428174201.tsx
+++ /dev/null
@@ -1,120 +0,0 @@
-/*
- * @Author: yehuozhili
- * @Date: 2021-02-27 21:33:36
- * @LastEditors: guoshujing gsj2501015228@163.com
- * @LastEditTime: 2023-04-28 17:42:01
- * @FilePath: \dooringx\packages\dooringx-example\src\plugin\index.tsx
- */
-
-import { InitConfig, LeftDataPannel } from 'dooringx-lib';
-import { LeftRegistComponentMapItem } from 'dooringx-lib/dist/core/crossDrag';
-import { ContainerOutlined, PlayCircleOutlined, HighlightOutlined,PictureTwoTone } from '@ant-design/icons';
-import commandModules from './commanderModules';
-import { functionMap } from './functionMap';
-import { Formmodules } from './formComponentModules';
-import InputCo from './registComponents/inputCo';
-
-const LeftRegistMap: LeftRegistComponentMapItem[] = [
- {
- type: 'basic',
- component: 'button',
- img: 'icon-anniu',
- imgCustom: ,
- displayName: '按钮',
- urlFn: () => import('./registComponents/button'),
- },
- {
- type: 'basic',
- component: 'button',
- img: 'icon-anniu',
- imgCustom: ,
- displayName: '图片',
- urlFn: () => import('./registComponents/button'),
- },
- {
- type: 'basic',
- component: 'input',
- img: 'https://img.guguzhu.com/d/file/android/ico/2021/09/08/rytzi2w34tm.png',
- displayName: '输入框',
- },
- {
- type: 'basic',
- component: 'testco',
- img: 'icon-anniu',
- imgCustom: ,
- displayName: '测试按钮',
- urlFn: () => import('./registComponents/testco'),
- },
-];
-
-export const defaultConfig: Partial = {
- leftAllRegistMap: LeftRegistMap,
- leftRenderListCategory: [
- {
- type: 'basic',
- icon: ,
- displayName: '基础',
- },
- {
- type: 'media',
- icon: ,
- displayName: '媒体组件',
- },
- {
- type: 'datax',
- icon: ,
- custom: true,
- displayName: '数据源',
- customRender: (config) => ,
- },
- {
- type: 'xxc',
- icon: ,
- custom: true,
- displayName: '自定义',
- customRender: () => 我是自定义渲染
,
- },
- ],
- initComponentCache: {
- input: { component: InputCo },
- },
- rightRenderListCategory: [
- {
- type: 'style',
- icon: (
-
- 外观
-
- ),
- },
- {
- type: 'animate',
- icon: (
-
- 动画
-
- ),
- },
- {
- type: 'fn',
- icon: (
-
- 函数
-
- ),
- },
- {
- type: 'actions',
- icon: (
-
- 事件
-
- ),
- },
- ],
- initFunctionMap: functionMap,
- initCommandModule: commandModules,
- initFormComponents: Formmodules,
-};
-
-export default defaultConfig;
diff --git a/.history/packages/dooringx-example/src/plugin/index_20230428175555.tsx b/.history/packages/dooringx-example/src/plugin/index_20230428175555.tsx
deleted file mode 100644
index c07b82c..0000000
--- a/.history/packages/dooringx-example/src/plugin/index_20230428175555.tsx
+++ /dev/null
@@ -1,120 +0,0 @@
-/*
- * @Author: yehuozhili
- * @Date: 2021-02-27 21:33:36
- * @LastEditors: guoshujing gsj2501015228@163.com
- * @LastEditTime: 2023-04-28 17:55:55
- * @FilePath: \dooringx\packages\dooringx-example\src\plugin\index.tsx
- */
-
-import { InitConfig, LeftDataPannel } from 'dooringx-lib';
-import { LeftRegistComponentMapItem } from 'dooringx-lib/dist/core/crossDrag';
-import { ContainerOutlined, PlayCircleOutlined, HighlightOutlined,PictureTwoTone } from '@ant-design/icons';
-import commandModules from './commanderModules';
-import { functionMap } from './functionMap';
-import { Formmodules } from './formComponentModules';
-import InputCo from './registComponents/inputCo';
-
-const LeftRegistMap: LeftRegistComponentMapItem[] = [
- {
- type: 'basic',
- component: 'button',
- img: 'icon-anniu',
- imgCustom: ,
- displayName: '按钮',
- urlFn: () => import('./registComponents/button'),
- },
- {
- type: 'basic',
- component: 'button',
- img: 'icon-anniu',
- imgCustom: ,
- displayName: '图片',
- urlFn: () => import('../../../dooringx-lib/src/components/colorPicker/index'),
- },
- {
- type: 'basic',
- component: 'input',
- img: 'https://img.guguzhu.com/d/file/android/ico/2021/09/08/rytzi2w34tm.png',
- displayName: '输入框',
- },
- {
- type: 'basic',
- component: 'testco',
- img: 'icon-anniu',
- imgCustom: ,
- displayName: '测试按钮',
- urlFn: () => import('./registComponents/testco'),
- },
-];
-
-export const defaultConfig: Partial = {
- leftAllRegistMap: LeftRegistMap,
- leftRenderListCategory: [
- {
- type: 'basic',
- icon: ,
- displayName: '基础',
- },
- {
- type: 'media',
- icon: ,
- displayName: '媒体组件',
- },
- {
- type: 'datax',
- icon: ,
- custom: true,
- displayName: '数据源',
- customRender: (config) => ,
- },
- {
- type: 'xxc',
- icon: ,
- custom: true,
- displayName: '自定义',
- customRender: () => 我是自定义渲染
,
- },
- ],
- initComponentCache: {
- input: { component: InputCo },
- },
- rightRenderListCategory: [
- {
- type: 'style',
- icon: (
-
- 外观
-
- ),
- },
- {
- type: 'animate',
- icon: (
-
- 动画
-
- ),
- },
- {
- type: 'fn',
- icon: (
-
- 函数
-
- ),
- },
- {
- type: 'actions',
- icon: (
-
- 事件
-
- ),
- },
- ],
- initFunctionMap: functionMap,
- initCommandModule: commandModules,
- initFormComponents: Formmodules,
-};
-
-export default defaultConfig;
diff --git a/.history/packages/dooringx-example/src/plugin/index_20230428175637.tsx b/.history/packages/dooringx-example/src/plugin/index_20230428175637.tsx
deleted file mode 100644
index 2e51d33..0000000
--- a/.history/packages/dooringx-example/src/plugin/index_20230428175637.tsx
+++ /dev/null
@@ -1,120 +0,0 @@
-/*
- * @Author: yehuozhili
- * @Date: 2021-02-27 21:33:36
- * @LastEditors: guoshujing gsj2501015228@163.com
- * @LastEditTime: 2023-04-28 17:55:55
- * @FilePath: \dooringx\packages\dooringx-example\src\plugin\index.tsx
- */
-
-import { InitConfig, LeftDataPannel } from 'dooringx-lib';
-import { LeftRegistComponentMapItem } from 'dooringx-lib/dist/core/crossDrag';
-import { ContainerOutlined, PlayCircleOutlined, HighlightOutlined,PictureTwoTone } from '@ant-design/icons';
-import commandModules from './commanderModules';
-import { functionMap } from './functionMap';
-import { Formmodules } from './formComponentModules';
-import InputCo from './registComponents/inputCo';
-
-const LeftRegistMap: LeftRegistComponentMapItem[] = [
- {
- type: 'basic',
- component: 'button',
- img: 'icon-anniu',
- imgCustom: ,
- displayName: '按钮',
- urlFn: () => import('./registComponents/button'),
- },
- // {
- // type: 'basic',
- // component: 'button',
- // img: 'icon-anniu',
- // imgCustom: ,
- // displayName: '图片',
- // urlFn: () => import('.'),
- // },
- {
- type: 'basic',
- component: 'input',
- img: 'https://img.guguzhu.com/d/file/android/ico/2021/09/08/rytzi2w34tm.png',
- displayName: '输入框',
- },
- {
- type: 'basic',
- component: 'testco',
- img: 'icon-anniu',
- imgCustom: ,
- displayName: '测试按钮',
- urlFn: () => import('./registComponents/testco'),
- },
-];
-
-export const defaultConfig: Partial = {
- leftAllRegistMap: LeftRegistMap,
- leftRenderListCategory: [
- {
- type: 'basic',
- icon: ,
- displayName: '基础',
- },
- {
- type: 'media',
- icon: ,
- displayName: '媒体组件',
- },
- {
- type: 'datax',
- icon: ,
- custom: true,
- displayName: '数据源',
- customRender: (config) => ,
- },
- {
- type: 'xxc',
- icon: ,
- custom: true,
- displayName: '自定义',
- customRender: () => 我是自定义渲染
,
- },
- ],
- initComponentCache: {
- input: { component: InputCo },
- },
- rightRenderListCategory: [
- {
- type: 'style',
- icon: (
-
- 外观
-
- ),
- },
- {
- type: 'animate',
- icon: (
-
- 动画
-
- ),
- },
- {
- type: 'fn',
- icon: (
-
- 函数
-
- ),
- },
- {
- type: 'actions',
- icon: (
-
- 事件
-
- ),
- },
- ],
- initFunctionMap: functionMap,
- initCommandModule: commandModules,
- initFormComponents: Formmodules,
-};
-
-export default defaultConfig;