From 3758cf8e0a4648c9b286e7a079e9517d19db7dab Mon Sep 17 00:00:00 2001 From: roymondchen Date: Thu, 8 Aug 2024 20:52:10 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=BB=9F=E4=B8=80vue=20ui=E7=BB=84?= =?UTF-8?q?=E4=BB=B6,=E5=B0=86ui=E4=B8=AD=E7=9A=84=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E7=8B=AC=E7=AB=8B=E6=88=90=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/ui-vue2/src/Component.vue | 51 --- packages/ui-vue2/src/button/Button.vue | 64 ---- packages/ui-vue2/src/container/Container.vue | 52 --- packages/ui-vue2/src/img/index.ts | 24 -- packages/ui-vue2/src/img/src/formConfig.ts | 29 -- packages/ui-vue2/src/img/src/index.vue | 30 -- packages/ui-vue2/src/index.ts | 54 --- .../ui-vue2/src/iterator-container/index.ts | 24 -- .../src/IteratorContainer.vue | 67 ---- .../src/iterator-container/src/formConfig.ts | 113 ------ packages/ui-vue2/src/overlay/index.ts | 25 -- packages/ui-vue2/src/overlay/src/index.vue | 75 ---- .../src/page-fragment-container/index.ts | 24 -- packages/ui-vue2/src/page-fragment/index.ts | 24 -- .../src/page-fragment/src/PageFragment.vue | 42 --- packages/ui-vue2/src/page/Page.vue | 46 --- packages/ui-vue2/src/qrcode/index.ts | 24 -- packages/ui-vue2/src/text/Text.vue | 67 ---- packages/ui-vue2/src/useApp.ts | 40 --- packages/ui-vue2/src/useCommonMethod.ts | 31 -- packages/ui/package.json | 21 +- packages/ui/scripts/build.mjs | 120 ------- packages/ui/src/button/index.ts | 24 -- packages/ui/src/button/src/formConfig.ts | 25 -- packages/ui/src/button/src/index.vue | 32 -- packages/ui/src/button/src/initValue.ts | 28 -- packages/ui/src/container/index.ts | 24 -- packages/ui/src/container/src/formConfig.ts | 41 --- packages/ui/src/container/src/initValue.ts | 25 -- packages/ui/src/img/index.ts | 24 -- packages/ui/src/img/src/index.vue | 33 -- packages/ui/src/img/src/initValue.ts | 28 -- packages/ui/src/index.ts | 40 +-- packages/ui/src/iterator-container/index.ts | 24 -- .../src/IteratorContainer.vue | 111 ------ .../src/iterator-container/src/initValue.ts | 31 -- packages/ui/src/overlay/index.ts | 25 -- packages/ui/src/overlay/src/event.ts | 22 -- packages/ui/src/overlay/src/formConfig.ts | 1 - packages/ui/src/overlay/src/index.vue | 63 ---- packages/ui/src/overlay/src/initValue.ts | 11 - .../ui/src/page-fragment-container/index.ts | 24 -- .../src/PageFragmentContainer.vue | 67 ---- .../page-fragment-container/src/formConfig.ts | 25 -- .../page-fragment-container/src/initValue.ts | 24 -- packages/ui/src/page-fragment/index.ts | 24 -- .../ui/src/page-fragment/src/PageFragment.vue | 25 -- .../ui/src/page-fragment/src/formConfig.ts | 50 --- .../ui/src/page-fragment/src/initValue.ts | 25 -- packages/ui/src/page/index.ts | 25 -- packages/ui/src/page/src/event.ts | 8 - packages/ui/src/page/src/formConfig.ts | 52 --- packages/ui/src/page/src/index.vue | 29 -- packages/ui/src/page/src/initValue.ts | 25 -- packages/ui/src/qrcode/index.ts | 24 -- packages/ui/src/qrcode/src/formConfig.ts | 25 -- packages/ui/src/qrcode/src/index.vue | 41 --- packages/ui/src/qrcode/src/initValue.ts | 27 -- packages/ui/src/text/index.ts | 24 -- packages/ui/src/text/src/formConfig.ts | 30 -- packages/ui/src/text/src/index.vue | 23 -- packages/ui/src/text/src/initValue.ts | 27 -- packages/ui/src/types.ts | 45 --- pnpm-lock.yaml | 339 +++++++++++++----- pnpm-workspace.yaml | 3 +- runtime/react/package.json | 2 +- runtime/vue-runtime-help/package.json | 2 +- runtime/vue2/package.json | 2 +- runtime/vue2/tmagic.config.ts | 2 +- runtime/vue3/package.json | 3 +- scripts/release.mjs | 1 + vue-components/button/package.json | 37 ++ vue-components/button/src/event.ts | 4 + .../button/src}/formConfig.ts | 0 .../button/src}/index.ts | 3 +- vue-components/button/src/index.vue | 39 ++ .../button/src}/initValue.ts | 0 vue-components/container/package.json | 38 ++ .../container/src/Container.vue | 66 ++-- vue-components/container/src/event.ts | 4 + .../container/src}/formConfig.ts | 0 .../container/src}/index.ts | 1 + .../container/src}/initValue.ts | 0 vue-components/img/package.json | 37 ++ vue-components/img/src/event.ts | 4 + .../img/src/formConfig.ts | 0 vue-components/img/src/index.ts | 25 ++ vue-components/img/src/index.vue | 44 +++ .../img/src/initValue.ts | 0 .../iterator-container/package.json | 40 +++ .../src/IteratorContainer.vue | 123 +++++++ .../iterator-container/src/event.ts | 4 + .../iterator-container/src/formConfig.ts | 0 .../iterator-container/src/index.ts | 25 ++ .../iterator-container/src/initValue.ts | 0 .../overlay}/package.json | 15 +- .../overlay/src/event.ts | 0 .../overlay/src/formConfig.ts | 0 vue-components/overlay/src/index.ts | 25 ++ vue-components/overlay/src/index.vue | 77 ++++ .../overlay/src/initValue.ts | 0 .../page-fragment-container/package.json | 30 ++ .../src/PageFragmentContainer.vue | 40 ++- .../page-fragment-container/src/event.ts | 4 + .../page-fragment-container/src/formConfig.ts | 0 .../page-fragment-container/src/index.ts | 25 ++ .../page-fragment-container/src/initValue.ts | 0 vue-components/page-fragment/package.json | 30 ++ .../page-fragment/src/PageFragment.vue | 35 ++ vue-components/page-fragment/src/event.ts | 4 + .../page-fragment/src/formConfig.ts | 0 vue-components/page-fragment/src/index.ts | 25 ++ .../page-fragment/src/initValue.ts | 0 vue-components/page/package.json | 30 ++ .../page => vue-components/page/src}/event.ts | 0 .../page/src}/formConfig.ts | 0 .../page => vue-components/page/src}/index.ts | 2 +- vue-components/page/src/index.vue | 39 ++ .../page/src}/initValue.ts | 0 vue-components/qrcode/package.json | 41 +++ vue-components/qrcode/src/event.ts | 4 + .../qrcode/src/formConfig.ts | 0 vue-components/qrcode/src/index.ts | 25 ++ .../qrcode/src/index.vue | 16 +- .../qrcode/src/initValue.ts | 0 vue-components/text/package.json | 37 ++ vue-components/text/src/event.ts | 4 + .../text/src}/formConfig.ts | 0 .../text => vue-components/text/src}/index.ts | 3 +- vue-components/text/src/index.vue | 30 ++ .../text/src}/initValue.ts | 0 131 files changed, 1270 insertions(+), 2447 deletions(-) delete mode 100644 packages/ui-vue2/src/Component.vue delete mode 100644 packages/ui-vue2/src/button/Button.vue delete mode 100644 packages/ui-vue2/src/container/Container.vue delete mode 100644 packages/ui-vue2/src/img/index.ts delete mode 100644 packages/ui-vue2/src/img/src/formConfig.ts delete mode 100644 packages/ui-vue2/src/img/src/index.vue delete mode 100644 packages/ui-vue2/src/index.ts delete mode 100644 packages/ui-vue2/src/iterator-container/index.ts delete mode 100644 packages/ui-vue2/src/iterator-container/src/IteratorContainer.vue delete mode 100644 packages/ui-vue2/src/iterator-container/src/formConfig.ts delete mode 100644 packages/ui-vue2/src/overlay/index.ts delete mode 100644 packages/ui-vue2/src/overlay/src/index.vue delete mode 100644 packages/ui-vue2/src/page-fragment-container/index.ts delete mode 100644 packages/ui-vue2/src/page-fragment/index.ts delete mode 100644 packages/ui-vue2/src/page-fragment/src/PageFragment.vue delete mode 100644 packages/ui-vue2/src/page/Page.vue delete mode 100644 packages/ui-vue2/src/qrcode/index.ts delete mode 100644 packages/ui-vue2/src/text/Text.vue delete mode 100644 packages/ui-vue2/src/useApp.ts delete mode 100644 packages/ui-vue2/src/useCommonMethod.ts delete mode 100644 packages/ui/scripts/build.mjs delete mode 100644 packages/ui/src/button/index.ts delete mode 100644 packages/ui/src/button/src/formConfig.ts delete mode 100644 packages/ui/src/button/src/index.vue delete mode 100644 packages/ui/src/button/src/initValue.ts delete mode 100644 packages/ui/src/container/index.ts delete mode 100644 packages/ui/src/container/src/formConfig.ts delete mode 100644 packages/ui/src/container/src/initValue.ts delete mode 100644 packages/ui/src/img/index.ts delete mode 100644 packages/ui/src/img/src/index.vue delete mode 100644 packages/ui/src/img/src/initValue.ts delete mode 100644 packages/ui/src/iterator-container/index.ts delete mode 100644 packages/ui/src/iterator-container/src/IteratorContainer.vue delete mode 100644 packages/ui/src/iterator-container/src/initValue.ts delete mode 100644 packages/ui/src/overlay/index.ts delete mode 100644 packages/ui/src/overlay/src/event.ts delete mode 100644 packages/ui/src/overlay/src/formConfig.ts delete mode 100644 packages/ui/src/overlay/src/index.vue delete mode 100644 packages/ui/src/overlay/src/initValue.ts delete mode 100644 packages/ui/src/page-fragment-container/index.ts delete mode 100644 packages/ui/src/page-fragment-container/src/PageFragmentContainer.vue delete mode 100644 packages/ui/src/page-fragment-container/src/formConfig.ts delete mode 100644 packages/ui/src/page-fragment-container/src/initValue.ts delete mode 100644 packages/ui/src/page-fragment/index.ts delete mode 100644 packages/ui/src/page-fragment/src/PageFragment.vue delete mode 100644 packages/ui/src/page-fragment/src/formConfig.ts delete mode 100644 packages/ui/src/page-fragment/src/initValue.ts delete mode 100644 packages/ui/src/page/index.ts delete mode 100644 packages/ui/src/page/src/event.ts delete mode 100644 packages/ui/src/page/src/formConfig.ts delete mode 100644 packages/ui/src/page/src/index.vue delete mode 100644 packages/ui/src/page/src/initValue.ts delete mode 100644 packages/ui/src/qrcode/index.ts delete mode 100644 packages/ui/src/qrcode/src/formConfig.ts delete mode 100644 packages/ui/src/qrcode/src/index.vue delete mode 100644 packages/ui/src/qrcode/src/initValue.ts delete mode 100644 packages/ui/src/text/index.ts delete mode 100644 packages/ui/src/text/src/formConfig.ts delete mode 100644 packages/ui/src/text/src/index.vue delete mode 100644 packages/ui/src/text/src/initValue.ts delete mode 100644 packages/ui/src/types.ts create mode 100644 vue-components/button/package.json create mode 100644 vue-components/button/src/event.ts rename {packages/ui-vue2/src/button => vue-components/button/src}/formConfig.ts (100%) rename {packages/ui-vue2/src/button => vue-components/button/src}/index.ts (91%) create mode 100644 vue-components/button/src/index.vue rename {packages/ui-vue2/src/button => vue-components/button/src}/initValue.ts (100%) create mode 100644 vue-components/container/package.json rename {packages/ui/src => vue-components}/container/src/Container.vue (50%) create mode 100644 vue-components/container/src/event.ts rename {packages/ui-vue2/src/container => vue-components/container/src}/formConfig.ts (100%) rename {packages/ui-vue2/src/container => vue-components/container/src}/index.ts (95%) rename {packages/ui-vue2/src/container => vue-components/container/src}/initValue.ts (100%) create mode 100644 vue-components/img/package.json create mode 100644 vue-components/img/src/event.ts rename {packages/ui/src => vue-components}/img/src/formConfig.ts (100%) create mode 100644 vue-components/img/src/index.ts create mode 100644 vue-components/img/src/index.vue rename {packages/ui-vue2/src => vue-components}/img/src/initValue.ts (100%) create mode 100644 vue-components/iterator-container/package.json create mode 100644 vue-components/iterator-container/src/IteratorContainer.vue create mode 100644 vue-components/iterator-container/src/event.ts rename {packages/ui/src => vue-components}/iterator-container/src/formConfig.ts (100%) create mode 100644 vue-components/iterator-container/src/index.ts rename {packages/ui-vue2/src => vue-components}/iterator-container/src/initValue.ts (100%) rename {packages/ui-vue2 => vue-components/overlay}/package.json (63%) rename {packages/ui-vue2/src => vue-components}/overlay/src/event.ts (100%) rename {packages/ui-vue2/src => vue-components}/overlay/src/formConfig.ts (100%) create mode 100644 vue-components/overlay/src/index.ts create mode 100644 vue-components/overlay/src/index.vue rename {packages/ui-vue2/src => vue-components}/overlay/src/initValue.ts (100%) create mode 100644 vue-components/page-fragment-container/package.json rename {packages/ui-vue2/src => vue-components}/page-fragment-container/src/PageFragmentContainer.vue (57%) create mode 100644 vue-components/page-fragment-container/src/event.ts rename {packages/ui-vue2/src => vue-components}/page-fragment-container/src/formConfig.ts (100%) create mode 100644 vue-components/page-fragment-container/src/index.ts rename {packages/ui-vue2/src => vue-components}/page-fragment-container/src/initValue.ts (100%) create mode 100644 vue-components/page-fragment/package.json create mode 100644 vue-components/page-fragment/src/PageFragment.vue create mode 100644 vue-components/page-fragment/src/event.ts rename {packages/ui-vue2/src => vue-components}/page-fragment/src/formConfig.ts (100%) create mode 100644 vue-components/page-fragment/src/index.ts rename {packages/ui-vue2/src => vue-components}/page-fragment/src/initValue.ts (100%) create mode 100644 vue-components/page/package.json rename {packages/ui-vue2/src/page => vue-components/page/src}/event.ts (100%) rename {packages/ui-vue2/src/page => vue-components/page/src}/formConfig.ts (100%) rename {packages/ui-vue2/src/page => vue-components/page/src}/index.ts (96%) create mode 100644 vue-components/page/src/index.vue rename {packages/ui-vue2/src/page => vue-components/page/src}/initValue.ts (100%) create mode 100644 vue-components/qrcode/package.json create mode 100644 vue-components/qrcode/src/event.ts rename {packages/ui-vue2/src => vue-components}/qrcode/src/formConfig.ts (100%) create mode 100644 vue-components/qrcode/src/index.ts rename {packages/ui-vue2/src => vue-components}/qrcode/src/index.vue (66%) rename {packages/ui-vue2/src => vue-components}/qrcode/src/initValue.ts (100%) create mode 100644 vue-components/text/package.json create mode 100644 vue-components/text/src/event.ts rename {packages/ui-vue2/src/text => vue-components/text/src}/formConfig.ts (100%) rename {packages/ui-vue2/src/text => vue-components/text/src}/index.ts (91%) create mode 100644 vue-components/text/src/index.vue rename {packages/ui-vue2/src/text => vue-components/text/src}/initValue.ts (100%) diff --git a/packages/ui-vue2/src/Component.vue b/packages/ui-vue2/src/Component.vue deleted file mode 100644 index bb344aa4..00000000 --- a/packages/ui-vue2/src/Component.vue +++ /dev/null @@ -1,51 +0,0 @@ - - - diff --git a/packages/ui-vue2/src/button/Button.vue b/packages/ui-vue2/src/button/Button.vue deleted file mode 100644 index ecce2c4a..00000000 --- a/packages/ui-vue2/src/button/Button.vue +++ /dev/null @@ -1,64 +0,0 @@ - - diff --git a/packages/ui-vue2/src/container/Container.vue b/packages/ui-vue2/src/container/Container.vue deleted file mode 100644 index 4b6c372a..00000000 --- a/packages/ui-vue2/src/container/Container.vue +++ /dev/null @@ -1,52 +0,0 @@ - - - diff --git a/packages/ui-vue2/src/img/index.ts b/packages/ui-vue2/src/img/index.ts deleted file mode 100644 index d093fcd3..00000000 --- a/packages/ui-vue2/src/img/index.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Img from './src/index.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; - -export default Img; diff --git a/packages/ui-vue2/src/img/src/formConfig.ts b/packages/ui-vue2/src/img/src/formConfig.ts deleted file mode 100644 index 1616e0b4..00000000 --- a/packages/ui-vue2/src/img/src/formConfig.ts +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default [ - { - text: '图片', - name: 'src', - }, - { - text: '链接', - name: 'url', - type: 'data-source-input', - }, -]; diff --git a/packages/ui-vue2/src/img/src/index.vue b/packages/ui-vue2/src/img/src/index.vue deleted file mode 100644 index 0d2615b6..00000000 --- a/packages/ui-vue2/src/img/src/index.vue +++ /dev/null @@ -1,30 +0,0 @@ - - diff --git a/packages/ui-vue2/src/index.ts b/packages/ui-vue2/src/index.ts deleted file mode 100644 index 6ae8cc97..00000000 --- a/packages/ui-vue2/src/index.ts +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Button from './button'; -import Container from './container'; -import Img from './img'; -import IteratorContainer from './iterator-container'; -import Overlay from './overlay'; -import Page from './page'; -import PageFragment from './page-fragment'; -import PageFragmentContainer from './page-fragment-container'; -import QRcode from './qrcode'; -import Text from './text'; - -export { default as TMagicUiButton } from './button'; -export { default as TMagicUiContainer } from './container'; -export { default as TMagicUiImg } from './img'; -export { default as TMagicUiIteratorContainer } from './iterator-container'; -export { default as TMagicUiPage } from './page'; -export { default as TMagicUiPageFragment } from './page-fragment'; -export { default as TMagicUiPageFragmentContainer } from './page-fragment-container'; -export { default as TMagicUiPageText } from './text'; - -export { default as useApp } from './useApp'; - -const ui: Record = { - page: Page, - container: Container, - button: Button, - text: Text, - img: Img, - qrcode: QRcode, - overlay: Overlay, - 'page-fragment-container': PageFragmentContainer, - 'page-fragment': PageFragment, - 'iterator-container': IteratorContainer, -}; - -export default ui; diff --git a/packages/ui-vue2/src/iterator-container/index.ts b/packages/ui-vue2/src/iterator-container/index.ts deleted file mode 100644 index f05bdae6..00000000 --- a/packages/ui-vue2/src/iterator-container/index.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import IteratorContainer from './src/IteratorContainer.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; - -export default IteratorContainer; diff --git a/packages/ui-vue2/src/iterator-container/src/IteratorContainer.vue b/packages/ui-vue2/src/iterator-container/src/IteratorContainer.vue deleted file mode 100644 index 52dc50c0..00000000 --- a/packages/ui-vue2/src/iterator-container/src/IteratorContainer.vue +++ /dev/null @@ -1,67 +0,0 @@ - - - diff --git a/packages/ui-vue2/src/iterator-container/src/formConfig.ts b/packages/ui-vue2/src/iterator-container/src/formConfig.ts deleted file mode 100644 index 212a97c5..00000000 --- a/packages/ui-vue2/src/iterator-container/src/formConfig.ts +++ /dev/null @@ -1,113 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { DATA_SOURCE_FIELDS_SELECT_VALUE_PREFIX } from '@tmagic/utils'; - -export default [ - { - name: 'iteratorData', - text: '数据源数据', - value: 'value', - dataSourceFieldType: ['array'], - checkStrictly: true, - type: 'data-source-field-select', - onChange: (vm: any, v: string[] = [], { model }: any) => { - if (Array.isArray(v) && v.length > 1) { - const [dsId, ...keys] = v; - model.dsField = [dsId.replace(DATA_SOURCE_FIELDS_SELECT_VALUE_PREFIX, ''), ...keys]; - } else { - model.dsField = []; - } - }, - }, - { - name: 'dsField', - type: 'hidden', - }, - { - type: 'panel', - title: '子项配置', - name: 'itemConfig', - items: [ - { - name: 'layout', - text: '容器布局', - type: 'select', - defaultValue: 'absolute', - options: [ - { value: 'absolute', text: '绝对定位' }, - { value: 'relative', text: '流式布局', disabled: true }, - ], - }, - { - type: 'fieldset', - legend: '样式', - name: 'style', - items: [ - { - name: 'width', - text: '宽度', - }, - { - name: 'height', - text: '高度', - }, - { - text: 'overflow', - name: 'overflow', - type: 'select', - options: [ - { text: 'visible', value: 'visible' }, - { text: 'hidden', value: 'hidden' }, - { text: 'clip', value: 'clip' }, - { text: 'scroll', value: 'scroll' }, - { text: 'auto', value: 'auto' }, - { text: 'overlay', value: 'overlay' }, - ], - }, - { - name: 'backgroundImage', - text: '背景图', - }, - { - name: 'backgroundColor', - text: '背景颜色', - type: 'colorPicker', - }, - { - name: 'backgroundRepeat', - text: '背景图重复', - type: 'select', - defaultValue: 'no-repeat', - options: [ - { text: 'repeat', value: 'repeat' }, - { text: 'repeat-x', value: 'repeat-x' }, - { text: 'repeat-y', value: 'repeat-y' }, - { text: 'no-repeat', value: 'no-repeat' }, - { text: 'inherit', value: 'inherit' }, - ], - }, - { - name: 'backgroundSize', - text: '背景图大小', - defaultValue: '100% 100%', - }, - ], - }, - ], - }, -]; diff --git a/packages/ui-vue2/src/overlay/index.ts b/packages/ui-vue2/src/overlay/index.ts deleted file mode 100644 index b68c8e61..00000000 --- a/packages/ui-vue2/src/overlay/index.ts +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Overlay from './src/index.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; -export { default as event } from './src/event'; - -export default Overlay; diff --git a/packages/ui-vue2/src/overlay/src/index.vue b/packages/ui-vue2/src/overlay/src/index.vue deleted file mode 100644 index 46d8e30e..00000000 --- a/packages/ui-vue2/src/overlay/src/index.vue +++ /dev/null @@ -1,75 +0,0 @@ - - diff --git a/packages/ui-vue2/src/page-fragment-container/index.ts b/packages/ui-vue2/src/page-fragment-container/index.ts deleted file mode 100644 index 14da745a..00000000 --- a/packages/ui-vue2/src/page-fragment-container/index.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import PageFragmentContainer from './src/PageFragmentContainer.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; - -export default PageFragmentContainer; diff --git a/packages/ui-vue2/src/page-fragment/index.ts b/packages/ui-vue2/src/page-fragment/index.ts deleted file mode 100644 index a815295c..00000000 --- a/packages/ui-vue2/src/page-fragment/index.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import PageFragment from './src/PageFragment.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; - -export default PageFragment; diff --git a/packages/ui-vue2/src/page-fragment/src/PageFragment.vue b/packages/ui-vue2/src/page-fragment/src/PageFragment.vue deleted file mode 100644 index fe4db7e5..00000000 --- a/packages/ui-vue2/src/page-fragment/src/PageFragment.vue +++ /dev/null @@ -1,42 +0,0 @@ - - - diff --git a/packages/ui-vue2/src/page/Page.vue b/packages/ui-vue2/src/page/Page.vue deleted file mode 100644 index d82c67d1..00000000 --- a/packages/ui-vue2/src/page/Page.vue +++ /dev/null @@ -1,46 +0,0 @@ - - - diff --git a/packages/ui-vue2/src/qrcode/index.ts b/packages/ui-vue2/src/qrcode/index.ts deleted file mode 100644 index fc79e5a1..00000000 --- a/packages/ui-vue2/src/qrcode/index.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Qrcode from './src/index.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; - -export default Qrcode; diff --git a/packages/ui-vue2/src/text/Text.vue b/packages/ui-vue2/src/text/Text.vue deleted file mode 100644 index 344dfbf9..00000000 --- a/packages/ui-vue2/src/text/Text.vue +++ /dev/null @@ -1,67 +0,0 @@ - diff --git a/packages/ui-vue2/src/useApp.ts b/packages/ui-vue2/src/useApp.ts deleted file mode 100644 index b4dde025..00000000 --- a/packages/ui-vue2/src/useApp.ts +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { getCurrentInstance, inject, onBeforeUnmount, onMounted } from 'vue'; - -import Core from '@tmagic/core'; - -export default (props: any) => { - const app: Core | undefined = inject('app'); - const node = app?.page?.getNode(props.config.id); - - const vm = getCurrentInstance()?.proxy; - - node?.emit('created', vm); - - onMounted(() => { - node?.emit('mounted', vm); - }); - - onBeforeUnmount(() => { - node?.emit('destroy', vm); - }); - - return app; -}; diff --git a/packages/ui-vue2/src/useCommonMethod.ts b/packages/ui-vue2/src/useCommonMethod.ts deleted file mode 100644 index f78d7d58..00000000 --- a/packages/ui-vue2/src/useCommonMethod.ts +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import { getCurrentInstance } from 'vue'; - -export default () => { - const vm = getCurrentInstance()?.proxy; - return { - show: () => { - vm.$set(vm.config.style, 'display', 'initial'); - }, - hide: () => { - vm.$set(vm.config.style, 'display', 'none'); - }, - }; -}; diff --git a/packages/ui/package.json b/packages/ui/package.json index 2a2686a0..c9c51d17 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -12,9 +12,6 @@ "dist", "types" ], - "scripts": { - "build": "node scripts/build.mjs" - }, "engines": { "node": ">=18" }, @@ -24,14 +21,18 @@ "url": "https://github.com/Tencent/tmagic-editor.git" }, "dependencies": { - "qrcode": "^1.5.0" + "@tmagic/vue-button": "workspace:*", + "@tmagic/vue-container": "workspace:*", + "@tmagic/vue-img": "workspace:*", + "@tmagic/vue-iterator-container": "workspace:*", + "@tmagic/vue-overlay": "workspace:*", + "@tmagic/vue-page": "workspace:*", + "@tmagic/vue-page-fragment": "workspace:*", + "@tmagic/vue-page-fragment-container": "workspace:*", + "@tmagic/vue-qrcode": "workspace:*", + "@tmagic/vue-text": "workspace:*" }, "peerDependencies": { - "@tmagic/core": "workspace:*", - "@tmagic/schema": "workspace:*", - "@tmagic/utils": "workspace:*", - "@tmagic/vue-runtime-help": "workspace:*", - "vue": ">=3.4.27", "typescript": "*" }, "peerDependenciesMeta": { @@ -40,8 +41,6 @@ } }, "devDependencies": { - "@types/qrcode": "^1.4.2", - "@vue/compiler-sfc": "^3.4.27", "rimraf": "^3.0.2", "vite": "^5.3.5" } diff --git a/packages/ui/scripts/build.mjs b/packages/ui/scripts/build.mjs deleted file mode 100644 index a193c874..00000000 --- a/packages/ui/scripts/build.mjs +++ /dev/null @@ -1,120 +0,0 @@ -import { build } from 'vite'; -import vue from '@vitejs/plugin-vue'; -import path from 'node:path'; -import { fileURLToPath } from 'node:url'; - -import pkg from '../package.json' assert { type: 'json' }; - -const __dirname = fileURLToPath(new URL('.', import.meta.url)); - -const packages = [ - 'button', - 'container', - 'img', - 'iterator-container', - 'overlay', - 'page', - 'page-fragment', - 'page-fragment-container', - 'qrcode', - 'text', -]; - -const commonConfig = { - optimizeDeps: { - esbuildOptions: { - define: { - global: 'globalThis', - }, - }, - }, - - build: { - cssCodeSplit: false, - sourcemap: false, - minify: false, - target: 'esnext', - - rollupOptions: { - output: { - // 在 UMD 构建模式下为这些外部化的依赖提供一个全局变量 - globals: { - vue: 'Vue', - }, - }, - }, - }, -}; - -const main = async () => { - await build({ - ...commonConfig, - - root: path.resolve(__dirname, `../`), - - build: { - ...commonConfig.build, - outDir: `./dist`, - lib: { - entry: './src/index.ts', - name: 'ui', - fileName: 'index', - formats: ['es'], - }, - - rollupOptions: { - ...commonConfig.build.rollupOptions, - - // 确保外部化处理那些你不想打包进库的依赖 - external(id) { - return ( - Object.keys({ - ...(pkg.devDependencies || {}), - ...(pkg.peerDependencies || {}), - }).some((k) => new RegExp(`^${k}`).test(id)) || - `${id}`.startsWith('.') || - (`${id}`.startsWith('/') && !id.endsWith('/index.ts')) - ); - }, - }, - }, - }); - - packages.map((packageName) => { - const config = { - ...commonConfig, - - plugins: [vue()], - - root: path.resolve(__dirname, `../src/${packageName}`), - - build: { - ...commonConfig.build, - outDir: `../../dist/${packageName}`, - lib: { - entry: './index.ts', - name: packageName, - fileName: 'index', - formats: ['es'], - }, - - rollupOptions: { - ...commonConfig.build.rollupOptions, - - // 确保外部化处理那些你不想打包进库的依赖 - external(id) { - return ( - Object.keys({ - ...(pkg.devDependencies || {}), - ...(pkg.peerDependencies || {}), - }).some((k) => new RegExp(`^${k}`).test(id)) || `${id}`.endsWith('./container') - ); - }, - }, - }, - }; - return build(config); - }); -}; - -main(); diff --git a/packages/ui/src/button/index.ts b/packages/ui/src/button/index.ts deleted file mode 100644 index 36ae9fe6..00000000 --- a/packages/ui/src/button/index.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Button from './src/index.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; - -export default Button; diff --git a/packages/ui/src/button/src/formConfig.ts b/packages/ui/src/button/src/formConfig.ts deleted file mode 100644 index 22a9a517..00000000 --- a/packages/ui/src/button/src/formConfig.ts +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default [ - { - text: '文本', - name: 'text', - type: 'data-source-input', - }, -]; diff --git a/packages/ui/src/button/src/index.vue b/packages/ui/src/button/src/index.vue deleted file mode 100644 index 15850e5b..00000000 --- a/packages/ui/src/button/src/index.vue +++ /dev/null @@ -1,32 +0,0 @@ - - - diff --git a/packages/ui/src/button/src/initValue.ts b/packages/ui/src/button/src/initValue.ts deleted file mode 100644 index 9165e697..00000000 --- a/packages/ui/src/button/src/initValue.ts +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default { - text: '请输入文本内容', - multiple: true, - style: { - width: '270', - height: '37.5', - border: 0, - backgroundColor: '#fb6f00', - }, -}; diff --git a/packages/ui/src/container/index.ts b/packages/ui/src/container/index.ts deleted file mode 100644 index 327fe768..00000000 --- a/packages/ui/src/container/index.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Container from './src/Container.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; - -export default Container; diff --git a/packages/ui/src/container/src/formConfig.ts b/packages/ui/src/container/src/formConfig.ts deleted file mode 100644 index 7121641d..00000000 --- a/packages/ui/src/container/src/formConfig.ts +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default [ - { - name: 'layout', - text: '容器布局', - type: 'select', - defaultValue: 'absolute', - options: [ - { value: 'absolute', text: '绝对定位' }, - { value: 'relative', text: '流式布局' }, - ], - onChange: (formState: any, v: string, { model }: any) => { - if (!model.style) return v; - if (v === 'relative') { - model.style.height = 'auto'; - } else { - const el = formState.stage?.renderer?.contentWindow.document.getElementById(model.id); - if (el) { - model.style.height = el.getBoundingClientRect().height; - } - } - }, - }, -]; diff --git a/packages/ui/src/container/src/initValue.ts b/packages/ui/src/container/src/initValue.ts deleted file mode 100644 index 19a93494..00000000 --- a/packages/ui/src/container/src/initValue.ts +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default { - items: [], - style: { - width: '375', - height: '100', - }, -}; diff --git a/packages/ui/src/img/index.ts b/packages/ui/src/img/index.ts deleted file mode 100644 index d093fcd3..00000000 --- a/packages/ui/src/img/index.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Img from './src/index.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; - -export default Img; diff --git a/packages/ui/src/img/src/index.vue b/packages/ui/src/img/src/index.vue deleted file mode 100644 index cbee2435..00000000 --- a/packages/ui/src/img/src/index.vue +++ /dev/null @@ -1,33 +0,0 @@ - - - diff --git a/packages/ui/src/img/src/initValue.ts b/packages/ui/src/img/src/initValue.ts deleted file mode 100644 index 592493cd..00000000 --- a/packages/ui/src/img/src/initValue.ts +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default { - src: 'https://puui.qpic.cn/vupload/0/1573555382625_bhp0wud8l6w.png/0', - url: '', - style: { - position: 'absolute', - left: '57', - width: '176', - height: '176', - }, -}; diff --git a/packages/ui/src/index.ts b/packages/ui/src/index.ts index 20cafd6e..0038c13a 100644 --- a/packages/ui/src/index.ts +++ b/packages/ui/src/index.ts @@ -16,27 +16,27 @@ * limitations under the License. */ -import Button from './button'; -import Container from './container'; -import Img from './img'; -import IteratorContainer from './iterator-container'; -import Overlay from './overlay'; -import Page from './page'; -import PageFragment from './page-fragment'; -import PageFragmentContainer from './page-fragment-container'; -import QRcode from './qrcode'; -import Text from './text'; +import Button from '@tmagic/vue-button'; +import Container from '@tmagic/vue-container'; +import Img from '@tmagic/vue-img'; +import IteratorContainer from '@tmagic/vue-iterator-container'; +import Overlay from '@tmagic/vue-overlay'; +import Page from '@tmagic/vue-page'; +import PageFragment from '@tmagic/vue-page-fragment'; +import PageFragmentContainer from '@tmagic/vue-page-fragment-container'; +import QRcode from '@tmagic/vue-qrcode'; +import Text from '@tmagic/vue-text'; -export { default as TMagicUiButton } from './button'; -export { default as TMagicUiContainer } from './container'; -export { default as TMagicUiImg } from './img'; -export { default as TMagicUiIteratorContainer } from './iterator-container'; -export { default as TMagicUiOverlay } from './overlay'; -export { default as TMagicUiPage } from './page'; -export { default as TMagicUiPageFragment } from './page-fragment'; -export { default as TMagicUiPageFragmentContainer } from './page-fragment-container'; -export { default as TMagicUiQRcode } from './qrcode'; -export { default as TMagicUiText } from './text'; +export { default as TMagicUiButton } from '@tmagic/vue-button'; +export { default as TMagicUiContainer } from '@tmagic/vue-container'; +export { default as TMagicUiImg } from '@tmagic/vue-img'; +export { default as TMagicUiIteratorContainer } from '@tmagic/vue-iterator-container'; +export { default as TMagicUiOverlay } from '@tmagic/vue-overlay'; +export { default as TMagicUiPage } from '@tmagic/vue-page'; +export { default as TMagicUiPageFragment } from '@tmagic/vue-page-fragment'; +export { default as TMagicUiPageFragmentContainer } from '@tmagic/vue-page-fragment-container'; +export { default as TMagicUiQRcode } from '@tmagic/vue-qrcode'; +export { default as TMagicUiText } from '@tmagic/vue-text'; const ui: Record = { page: Page, diff --git a/packages/ui/src/iterator-container/index.ts b/packages/ui/src/iterator-container/index.ts deleted file mode 100644 index f05bdae6..00000000 --- a/packages/ui/src/iterator-container/index.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import IteratorContainer from './src/IteratorContainer.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; - -export default IteratorContainer; diff --git a/packages/ui/src/iterator-container/src/IteratorContainer.vue b/packages/ui/src/iterator-container/src/IteratorContainer.vue deleted file mode 100644 index 31f1e354..00000000 --- a/packages/ui/src/iterator-container/src/IteratorContainer.vue +++ /dev/null @@ -1,111 +0,0 @@ - - - diff --git a/packages/ui/src/iterator-container/src/initValue.ts b/packages/ui/src/iterator-container/src/initValue.ts deleted file mode 100644 index 2223ec4c..00000000 --- a/packages/ui/src/iterator-container/src/initValue.ts +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default { - style: { - width: '375', - height: '100', - }, - itemConfig: { - style: { - width: '100%', - height: '100%', - }, - }, - items: [], -}; diff --git a/packages/ui/src/overlay/index.ts b/packages/ui/src/overlay/index.ts deleted file mode 100644 index b68c8e61..00000000 --- a/packages/ui/src/overlay/index.ts +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Overlay from './src/index.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; -export { default as event } from './src/event'; - -export default Overlay; diff --git a/packages/ui/src/overlay/src/event.ts b/packages/ui/src/overlay/src/event.ts deleted file mode 100644 index 8736a9e9..00000000 --- a/packages/ui/src/overlay/src/event.ts +++ /dev/null @@ -1,22 +0,0 @@ -export default { - methods: [ - { - label: '打开蒙层', - value: 'openOverlay', - }, - { - label: '关闭蒙层', - value: 'closeOverlay', - }, - ], - events: [ - { - label: '打开蒙层', - value: 'overlay:open', - }, - { - label: '关闭蒙层', - value: 'overlay:close', - }, - ], -}; diff --git a/packages/ui/src/overlay/src/formConfig.ts b/packages/ui/src/overlay/src/formConfig.ts deleted file mode 100644 index d6d1738d..00000000 --- a/packages/ui/src/overlay/src/formConfig.ts +++ /dev/null @@ -1 +0,0 @@ -export default []; diff --git a/packages/ui/src/overlay/src/index.vue b/packages/ui/src/overlay/src/index.vue deleted file mode 100644 index c4872e6b..00000000 --- a/packages/ui/src/overlay/src/index.vue +++ /dev/null @@ -1,63 +0,0 @@ - - - diff --git a/packages/ui/src/overlay/src/initValue.ts b/packages/ui/src/overlay/src/initValue.ts deleted file mode 100644 index a4c6ffc1..00000000 --- a/packages/ui/src/overlay/src/initValue.ts +++ /dev/null @@ -1,11 +0,0 @@ -export default { - style: { - position: 'fixed', - width: '100%', - height: '100%', - top: 0, - left: 0, - backgroundColor: 'rgba(0, 0, 0, 0.8)', - }, - items: [], -}; diff --git a/packages/ui/src/page-fragment-container/index.ts b/packages/ui/src/page-fragment-container/index.ts deleted file mode 100644 index 14da745a..00000000 --- a/packages/ui/src/page-fragment-container/index.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import PageFragmentContainer from './src/PageFragmentContainer.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; - -export default PageFragmentContainer; diff --git a/packages/ui/src/page-fragment-container/src/PageFragmentContainer.vue b/packages/ui/src/page-fragment-container/src/PageFragmentContainer.vue deleted file mode 100644 index 7fe9528a..00000000 --- a/packages/ui/src/page-fragment-container/src/PageFragmentContainer.vue +++ /dev/null @@ -1,67 +0,0 @@ - - - - - diff --git a/packages/ui/src/page-fragment-container/src/formConfig.ts b/packages/ui/src/page-fragment-container/src/formConfig.ts deleted file mode 100644 index 3ba71aa2..00000000 --- a/packages/ui/src/page-fragment-container/src/formConfig.ts +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default [ - { - name: 'pageFragmentId', - text: '页面片ID', - type: 'page-fragment-select', - }, -]; diff --git a/packages/ui/src/page-fragment-container/src/initValue.ts b/packages/ui/src/page-fragment-container/src/initValue.ts deleted file mode 100644 index 0ba15f5a..00000000 --- a/packages/ui/src/page-fragment-container/src/initValue.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default { - style: { - width: '', - height: '', - }, -}; diff --git a/packages/ui/src/page-fragment/index.ts b/packages/ui/src/page-fragment/index.ts deleted file mode 100644 index a815295c..00000000 --- a/packages/ui/src/page-fragment/index.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import PageFragment from './src/PageFragment.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; - -export default PageFragment; diff --git a/packages/ui/src/page-fragment/src/PageFragment.vue b/packages/ui/src/page-fragment/src/PageFragment.vue deleted file mode 100644 index d7774993..00000000 --- a/packages/ui/src/page-fragment/src/PageFragment.vue +++ /dev/null @@ -1,25 +0,0 @@ - - - diff --git a/packages/ui/src/page-fragment/src/formConfig.ts b/packages/ui/src/page-fragment/src/formConfig.ts deleted file mode 100644 index 39577c52..00000000 --- a/packages/ui/src/page-fragment/src/formConfig.ts +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default [ - { - text: '页面片标识', - name: 'name', - disabled: true, - }, - { - text: '页面片标题', - name: 'title', - }, - { - name: 'layout', - text: '容器布局', - type: 'select', - defaultValue: 'absolute', - options: [ - { value: 'absolute', text: '绝对定位' }, - { value: 'relative', text: '流式布局' }, - ], - onChange: (formState: any, v: string, { model }: any) => { - if (!model.style) return v; - if (v === 'relative') { - model.style.height = 'auto'; - } else { - const el = formState.stage?.renderer?.contentWindow.document.getElementById(model.id); - if (el) { - model.style.height = el.getBoundingClientRect().height; - } - } - }, - }, -]; diff --git a/packages/ui/src/page-fragment/src/initValue.ts b/packages/ui/src/page-fragment/src/initValue.ts deleted file mode 100644 index 00ae8e84..00000000 --- a/packages/ui/src/page-fragment/src/initValue.ts +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default { - items: [], - style: { - width: '375', - height: '817', - }, -}; diff --git a/packages/ui/src/page/index.ts b/packages/ui/src/page/index.ts deleted file mode 100644 index 02999c81..00000000 --- a/packages/ui/src/page/index.ts +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Page from './src/index.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; -export { default as event } from './src/event'; - -export default Page; diff --git a/packages/ui/src/page/src/event.ts b/packages/ui/src/page/src/event.ts deleted file mode 100644 index ee58371f..00000000 --- a/packages/ui/src/page/src/event.ts +++ /dev/null @@ -1,8 +0,0 @@ -export default { - methods: [ - { - label: '刷新页面', - value: 'refresh', - }, - ], -}; diff --git a/packages/ui/src/page/src/formConfig.ts b/packages/ui/src/page/src/formConfig.ts deleted file mode 100644 index 39c5b418..00000000 --- a/packages/ui/src/page/src/formConfig.ts +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default [ - { - text: '页面标识', - name: 'name', - disabled: true, - extra: '在多页面的情况下用来指定要打开的页面', - }, - { - text: '页面标题', - name: 'title', - type: 'data-source-input', - }, - { - name: 'layout', - text: '容器布局', - type: 'select', - defaultValue: 'absolute', - options: [ - { value: 'absolute', text: '绝对定位' }, - { value: 'relative', text: '流式布局' }, - ], - onChange: (formState: any, v: string, { model }: any) => { - if (!model.style) return v; - if (v === 'relative') { - model.style.height = 'auto'; - } else { - const el = formState.stage?.renderer?.contentWindow.document.getElementById(model.id); - if (el) { - model.style.height = el.getBoundingClientRect().height; - } - } - }, - }, -]; diff --git a/packages/ui/src/page/src/index.vue b/packages/ui/src/page/src/index.vue deleted file mode 100644 index 10ff1522..00000000 --- a/packages/ui/src/page/src/index.vue +++ /dev/null @@ -1,29 +0,0 @@ - - - diff --git a/packages/ui/src/page/src/initValue.ts b/packages/ui/src/page/src/initValue.ts deleted file mode 100644 index 96d84afa..00000000 --- a/packages/ui/src/page/src/initValue.ts +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default { - items: [], - style: { - width: '100%', - height: '100%', - }, -}; diff --git a/packages/ui/src/qrcode/index.ts b/packages/ui/src/qrcode/index.ts deleted file mode 100644 index fc79e5a1..00000000 --- a/packages/ui/src/qrcode/index.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Qrcode from './src/index.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; - -export default Qrcode; diff --git a/packages/ui/src/qrcode/src/formConfig.ts b/packages/ui/src/qrcode/src/formConfig.ts deleted file mode 100644 index e5c4ef09..00000000 --- a/packages/ui/src/qrcode/src/formConfig.ts +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default [ - { - text: '链接', - name: 'url', - type: 'data-source-input', - }, -]; diff --git a/packages/ui/src/qrcode/src/index.vue b/packages/ui/src/qrcode/src/index.vue deleted file mode 100644 index 0cbff763..00000000 --- a/packages/ui/src/qrcode/src/index.vue +++ /dev/null @@ -1,41 +0,0 @@ - - - diff --git a/packages/ui/src/qrcode/src/initValue.ts b/packages/ui/src/qrcode/src/initValue.ts deleted file mode 100644 index 0a2fedc5..00000000 --- a/packages/ui/src/qrcode/src/initValue.ts +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default { - url: 'https://m.film.qq.com', - style: { - position: 'absolute', - left: '57', - width: '176', - height: '176', - }, -}; diff --git a/packages/ui/src/text/index.ts b/packages/ui/src/text/index.ts deleted file mode 100644 index 5f281eae..00000000 --- a/packages/ui/src/text/index.ts +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -import Text from './src/index.vue'; - -export { default as config } from './src/formConfig'; -export { default as value } from './src/initValue'; - -export default Text; diff --git a/packages/ui/src/text/src/formConfig.ts b/packages/ui/src/text/src/formConfig.ts deleted file mode 100644 index 2e86b78c..00000000 --- a/packages/ui/src/text/src/formConfig.ts +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default [ - { - name: 'text', - text: '文本', - type: 'data-source-input', - }, - { - name: 'multiple', - text: '多行文本', - type: 'switch', - }, -]; diff --git a/packages/ui/src/text/src/index.vue b/packages/ui/src/text/src/index.vue deleted file mode 100644 index c9cb7b8f..00000000 --- a/packages/ui/src/text/src/index.vue +++ /dev/null @@ -1,23 +0,0 @@ - - - diff --git a/packages/ui/src/text/src/initValue.ts b/packages/ui/src/text/src/initValue.ts deleted file mode 100644 index efe47eea..00000000 --- a/packages/ui/src/text/src/initValue.ts +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -export default { - type: 'text', - text: '请输入文本内容', - multiple: true, - style: { - width: '100', - height: 'auto', - }, -}; diff --git a/packages/ui/src/types.ts b/packages/ui/src/types.ts deleted file mode 100644 index 2bc7db51..00000000 --- a/packages/ui/src/types.ts +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Tencent is pleased to support the open source community by making TMagicEditor available. - * - * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* style */ -export type PartCSSStyle = { - [key in keyof CSSStyleDeclaration]?: string | number; -}; -export type CSSStyleKey = keyof CSSStyleDeclaration; -export type CanModifyCSSStyleKey = Exclude; -export type StyleCfg = ((p1: any, p2: any) => PartCSSStyle) | PartCSSStyle; - -/* event */ -export interface MEvent { - name: string; - to: number | string; - method: string; -} -export interface MEventInMap { - from: number | string; - to: number | string; - method: string; -} -export type MEventMapType = Record; -export type MEventQueueMapType = Record; -export interface MEventBus { - $on: (...args: any) => void; - $off: (...args: any) => void; - $once: (...args: any) => void; - $emit: (...args: any) => void; -} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 225b0f32..b16bbd9c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -635,34 +635,40 @@ importers: packages/ui: dependencies: - '@tmagic/core': + '@tmagic/vue-button': specifier: workspace:* - version: link:../core - '@tmagic/schema': + version: link:../../vue-components/button + '@tmagic/vue-container': specifier: workspace:* - version: link:../schema - '@tmagic/utils': + version: link:../../vue-components/container + '@tmagic/vue-img': specifier: workspace:* - version: link:../utils - '@tmagic/vue-runtime-help': + version: link:../../vue-components/img + '@tmagic/vue-iterator-container': specifier: workspace:* - version: link:../../runtime/vue-runtime-help - qrcode: - specifier: ^1.5.0 - version: 1.5.3 + version: link:../../vue-components/iterator-container + '@tmagic/vue-overlay': + specifier: workspace:* + version: link:../../vue-components/overlay + '@tmagic/vue-page': + specifier: workspace:* + version: link:../../vue-components/page + '@tmagic/vue-page-fragment': + specifier: workspace:* + version: link:../../vue-components/page-fragment + '@tmagic/vue-page-fragment-container': + specifier: workspace:* + version: link:../../vue-components/page-fragment-container + '@tmagic/vue-qrcode': + specifier: workspace:* + version: link:../../vue-components/qrcode + '@tmagic/vue-text': + specifier: workspace:* + version: link:../../vue-components/text typescript: specifier: '*' version: 5.5.4 - vue: - specifier: '>=3.4.27' - version: 3.4.35(typescript@5.5.4) devDependencies: - '@types/qrcode': - specifier: ^1.4.2 - version: 1.5.5 - '@vue/compiler-sfc': - specifier: ^3.4.27 - version: 3.4.35 rimraf: specifier: ^3.0.2 version: 3.0.2 @@ -701,31 +707,6 @@ importers: specifier: ^18.3.0 version: 18.3.0 - packages/ui-vue2: - dependencies: - '@tmagic/core': - specifier: workspace:* - version: link:../core - '@tmagic/schema': - specifier: workspace:* - version: link:../schema - '@tmagic/utils': - specifier: workspace:* - version: link:../utils - qrcode: - specifier: ^1.5.0 - version: 1.5.3 - typescript: - specifier: '*' - version: 5.5.4 - vue: - specifier: '>=2.7.4' - version: 3.4.35(typescript@5.5.4) - devDependencies: - vue-template-compiler: - specifier: ^2.7.4 - version: 2.7.16 - packages/utils: dependencies: '@tmagic/schema': @@ -882,8 +863,8 @@ importers: version: 5.31.3 devDependencies: '@tmagic/cli': - specifier: 1.4.6 - version: 1.4.6(typescript@5.5.4) + specifier: workspace:* + version: link:../../packages/cli '@types/lodash-es': specifier: ^4.17.4 version: 4.17.12 @@ -982,7 +963,7 @@ importers: specifier: '>=2.0.0 || >=3.0.0' version: 3.4.35(typescript@5.5.4) vue-demi: - specifier: ^0.14.7 + specifier: ^0.14.10 version: 0.14.10(@vue/composition-api@1.7.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4)) devDependencies: '@types/node': @@ -1026,8 +1007,8 @@ importers: version: 2.7.16 devDependencies: '@tmagic/cli': - specifier: 1.4.6 - version: 1.4.6(typescript@5.5.4) + specifier: workspace:* + version: link:../../packages/cli '@types/events': specifier: ^3.0.0 version: 3.0.3 @@ -1084,8 +1065,8 @@ importers: version: 3.4.35(typescript@5.5.4) devDependencies: '@tmagic/cli': - specifier: 1.4.5 - version: 1.4.5 + specifier: workspace:* + version: link:../../packages/cli '@types/node': specifier: ^18.19.0 version: 18.19.42 @@ -1123,6 +1104,223 @@ importers: specifier: ^5.3.5 version: 5.3.5(@types/node@18.19.42)(sass@1.77.8)(terser@5.31.3) + vue-components/button: + dependencies: + '@tmagic/schema': + specifier: workspace:* + version: link:../../packages/schema + '@tmagic/vue-runtime-help': + specifier: workspace:* + version: link:../../runtime/vue-runtime-help + '@vue/composition-api': + specifier: '>=1.7.2' + version: 1.7.2(vue@3.4.35(typescript@5.5.4)) + typescript: + specifier: '*' + version: 5.5.4 + vue: + specifier: '>=2.0.0 || >=3.0.0' + version: 3.4.35(typescript@5.5.4) + vue-demi: + specifier: ^0.14.10 + version: 0.14.10(@vue/composition-api@1.7.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4)) + + vue-components/container: + dependencies: + '@tmagic/schema': + specifier: workspace:* + version: link:../../packages/schema + '@tmagic/utils': + specifier: workspace:* + version: link:../../packages/utils + '@tmagic/vue-runtime-help': + specifier: workspace:* + version: link:../../runtime/vue-runtime-help + '@vue/composition-api': + specifier: '>=1.7.2' + version: 1.7.2(vue@3.4.35(typescript@5.5.4)) + typescript: + specifier: '*' + version: 5.5.4 + vue: + specifier: '>=2.0.0 || >=3.0.0' + version: 3.4.35(typescript@5.5.4) + vue-demi: + specifier: ^0.14.10 + version: 0.14.10(@vue/composition-api@1.7.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4)) + + vue-components/img: + dependencies: + '@tmagic/schema': + specifier: workspace:* + version: link:../../packages/schema + '@tmagic/vue-runtime-help': + specifier: workspace:* + version: link:../../runtime/vue-runtime-help + '@vue/composition-api': + specifier: '>=1.7.2' + version: 1.7.2(vue@3.4.35(typescript@5.5.4)) + typescript: + specifier: '*' + version: 5.5.4 + vue: + specifier: '>=2.0.0 || >=3.0.0' + version: 3.4.35(typescript@5.5.4) + vue-demi: + specifier: ^0.14.10 + version: 0.14.10(@vue/composition-api@1.7.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4)) + + vue-components/iterator-container: + dependencies: + '@tmagic/core': + specifier: workspace:* + version: link:../../packages/core + '@tmagic/schema': + specifier: workspace:* + version: link:../../packages/schema + '@tmagic/utils': + specifier: workspace:* + version: link:../../packages/utils + '@tmagic/vue-container': + specifier: workspace:* + version: link:../container + '@tmagic/vue-runtime-help': + specifier: workspace:* + version: link:../../runtime/vue-runtime-help + '@vue/composition-api': + specifier: '>=1.7.2' + version: 1.7.2(vue@3.4.35(typescript@5.5.4)) + typescript: + specifier: '*' + version: 5.5.4 + vue: + specifier: '>=2.0.0 || >=3.0.0' + version: 3.4.35(typescript@5.5.4) + vue-demi: + specifier: ^0.14.10 + version: 0.14.10(@vue/composition-api@1.7.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4)) + + vue-components/overlay: + dependencies: + '@tmagic/schema': + specifier: workspace:* + version: link:../../packages/schema + '@tmagic/vue-container': + specifier: workspace:* + version: link:../container + '@tmagic/vue-runtime-help': + specifier: workspace:* + version: link:../../runtime/vue-runtime-help + typescript: + specifier: '*' + version: 5.5.4 + vue-demi: + specifier: ^0.14.10 + version: 0.14.10(@vue/composition-api@1.7.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4)) + + vue-components/page: + dependencies: + '@tmagic/schema': + specifier: workspace:* + version: link:../../packages/schema + '@tmagic/vue-container': + specifier: workspace:* + version: link:../container + '@tmagic/vue-runtime-help': + specifier: workspace:* + version: link:../../runtime/vue-runtime-help + typescript: + specifier: '*' + version: 5.5.4 + vue-demi: + specifier: ^0.14.10 + version: 0.14.10(@vue/composition-api@1.7.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4)) + + vue-components/page-fragment: + dependencies: + '@tmagic/schema': + specifier: workspace:* + version: link:../../packages/schema + '@tmagic/vue-container': + specifier: workspace:* + version: link:../container + '@tmagic/vue-runtime-help': + specifier: workspace:* + version: link:../../runtime/vue-runtime-help + typescript: + specifier: '*' + version: 5.5.4 + vue-demi: + specifier: ^0.14.10 + version: 0.14.10(@vue/composition-api@1.7.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4)) + + vue-components/page-fragment-container: + dependencies: + '@tmagic/schema': + specifier: workspace:* + version: link:../../packages/schema + '@tmagic/vue-container': + specifier: workspace:* + version: link:../container + '@tmagic/vue-runtime-help': + specifier: workspace:* + version: link:../../runtime/vue-runtime-help + typescript: + specifier: '*' + version: 5.5.4 + vue-demi: + specifier: ^0.14.10 + version: 0.14.10(@vue/composition-api@1.7.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4)) + + vue-components/qrcode: + dependencies: + '@tmagic/schema': + specifier: workspace:* + version: link:../../packages/schema + '@tmagic/vue-runtime-help': + specifier: workspace:* + version: link:../../runtime/vue-runtime-help + '@vue/composition-api': + specifier: '>=1.7.2' + version: 1.7.2(vue@3.4.35(typescript@5.5.4)) + qrcode: + specifier: ^1.5.0 + version: 1.5.3 + typescript: + specifier: '*' + version: 5.5.4 + vue: + specifier: '>=2.0.0 || >=3.0.0' + version: 3.4.35(typescript@5.5.4) + vue-demi: + specifier: ^0.14.10 + version: 0.14.10(@vue/composition-api@1.7.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4)) + devDependencies: + '@types/qrcode': + specifier: ^1.4.2 + version: 1.5.5 + + vue-components/text: + dependencies: + '@tmagic/schema': + specifier: workspace:* + version: link:../../packages/schema + '@tmagic/vue-runtime-help': + specifier: workspace:* + version: link:../../runtime/vue-runtime-help + '@vue/composition-api': + specifier: '>=1.7.2' + version: 1.7.2(vue@3.4.35(typescript@5.5.4)) + typescript: + specifier: '*' + version: 5.5.4 + vue: + specifier: '>=2.0.0 || >=3.0.0' + version: 3.4.35(typescript@5.5.4) + vue-demi: + specifier: ^0.14.10 + version: 0.14.10(@vue/composition-api@1.7.2(vue@3.4.35(typescript@5.5.4)))(vue@3.4.35(typescript@5.5.4)) + packages: '@algolia/autocomplete-core@1.9.3': @@ -2329,21 +2527,6 @@ packages: '@sxzz/popperjs-es@2.11.7': resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==} - '@tmagic/cli@1.4.5': - resolution: {integrity: sha512-k+NMTXrQsuP+DZyxghCsh0fBkBVibu2pHquhfR9FW1lb9AkB4fHYwDmoxQo3vgenFXR3CeQQPrdLBX6tTtc9dg==} - engines: {node: '>=18'} - hasBin: true - - '@tmagic/cli@1.4.6': - resolution: {integrity: sha512-TBkaik3GW7TRuOHCgsLMODUuJbb+Q76BnWuUqKu2OE2KFqeAPjPXVA1BYM/59ScilM4JddCv7vdNqYidi4aE0w==} - engines: {node: '>=18'} - hasBin: true - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - '@tmagic/core@1.4.15': resolution: {integrity: sha512-s9FTvE316yIddsCAgBuPC5w7YEmNQUbW3FeQOUHdgTZiCEns3+gWdtaa+8T9FSHrhnUbLdMQsmKux7DJm8MxuA==} engines: {node: '>=18'} @@ -7504,28 +7687,6 @@ snapshots: '@sxzz/popperjs-es@2.11.7': {} - '@tmagic/cli@1.4.5': - dependencies: - cac: 6.7.14 - chokidar: 3.6.0 - esbuild: 0.21.5 - fs-extra: 11.2.0 - picocolors: 1.0.1 - recast: 0.23.9 - tslib: 2.6.3 - - '@tmagic/cli@1.4.6(typescript@5.5.4)': - dependencies: - cac: 6.7.14 - chokidar: 3.6.0 - esbuild: 0.21.5 - fs-extra: 11.2.0 - picocolors: 1.0.1 - recast: 0.23.9 - tslib: 2.6.3 - optionalDependencies: - typescript: 5.5.4 - '@tmagic/core@1.4.15(@tmagic/data-source@1.4.19(@tmagic/schema@1.4.15(typescript@5.5.4))(@tmagic/utils@1.4.15(@tmagic/schema@1.4.15(typescript@5.5.4))(typescript@5.5.4))(typescript@5.5.4))(@tmagic/schema@1.4.15(typescript@5.5.4))(@tmagic/utils@1.4.15(@tmagic/schema@1.4.15(typescript@5.5.4))(typescript@5.5.4))(typescript@5.5.4)': dependencies: '@tmagic/data-source': 1.4.19(@tmagic/schema@1.4.15(typescript@5.5.4))(@tmagic/utils@1.4.15(@tmagic/schema@1.4.15(typescript@5.5.4))(typescript@5.5.4))(typescript@5.5.4) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index e760c85d..91cbd7cc 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,4 +1,5 @@ packages: - 'packages/*' - 'playground' - - 'runtime/*' \ No newline at end of file + - 'runtime/*' + - 'vue-components/*' \ No newline at end of file diff --git a/runtime/react/package.json b/runtime/react/package.json index 9615b401..1b283b46 100644 --- a/runtime/react/package.json +++ b/runtime/react/package.json @@ -32,7 +32,7 @@ "react-dom": "^18.3.1" }, "devDependencies": { - "@tmagic/cli": "1.4.6", + "@tmagic/cli": "workspace:*", "@types/lodash-es": "^4.17.4", "@types/react": "^18.3.3", "@types/react-dom": "^18.3.0", diff --git a/runtime/vue-runtime-help/package.json b/runtime/vue-runtime-help/package.json index 68759727..5c20f54c 100644 --- a/runtime/vue-runtime-help/package.json +++ b/runtime/vue-runtime-help/package.json @@ -29,7 +29,7 @@ "url": "https://github.com/Tencent/tmagic-editor.git" }, "dependencies": { - "vue-demi": "^0.14.7" + "vue-demi": "^0.14.10" }, "peerDependencies": { "@tmagic/core": "workspace:*", diff --git a/runtime/vue2/package.json b/runtime/vue2/package.json index 25e2effa..54b57613 100644 --- a/runtime/vue2/package.json +++ b/runtime/vue2/package.json @@ -31,7 +31,7 @@ "vue": "^2.7.4" }, "devDependencies": { - "@tmagic/cli": "1.4.6", + "@tmagic/cli": "workspace:*", "@types/events": "^3.0.0", "axios": "^0.27.2", "rollup": "^4.17.2", diff --git a/runtime/vue2/tmagic.config.ts b/runtime/vue2/tmagic.config.ts index a25d5bbf..5ebc3b3b 100644 --- a/runtime/vue2/tmagic.config.ts +++ b/runtime/vue2/tmagic.config.ts @@ -3,7 +3,7 @@ import path from 'path'; import { defineConfig } from '@tmagic/cli'; export default defineConfig({ - packages: [path.join(__dirname, '../../packages/ui-vue2')], + packages: [path.join(__dirname, '../../packages/ui')], componentFileAffix: '.vue', dynamicImport: true, }); diff --git a/runtime/vue3/package.json b/runtime/vue3/package.json index 729a93ff..6cf3320e 100644 --- a/runtime/vue3/package.json +++ b/runtime/vue3/package.json @@ -4,6 +4,7 @@ "type": "module", "private": true, "scripts": { + "tmagic": "tmagic entry", "dev": "vite --config dev.vite.config.ts", "build": "npm run build:libs && npm run build:page && npm run build:playground", "build:page": "vite build --config build.vite.config.ts --mode page", @@ -29,7 +30,7 @@ "vue": "^3.4.35" }, "devDependencies": { - "@tmagic/cli": "1.4.5", + "@tmagic/cli": "workspace:*", "@types/node": "^18.19.0", "@vitejs/plugin-legacy": "^5.4.0", "@vitejs/plugin-vue": "^5.1.1", diff --git a/scripts/release.mjs b/scripts/release.mjs index 459db3c9..d1867008 100644 --- a/scripts/release.mjs +++ b/scripts/release.mjs @@ -327,6 +327,7 @@ function updatePackage(pkgRoot, version, getNewPackageName, updateDep = false) { if (updateDep) { updateDeps(pkg, 'dependencies', version); updateDeps(pkg, 'peerDependencies', version); + updateDeps(pkg, 'devDependencies', version); } fs.writeFileSync(pkgPath, `${JSON.stringify(pkg, null, 2)}\n`); diff --git a/vue-components/button/package.json b/vue-components/button/package.json new file mode 100644 index 00000000..a1629ae8 --- /dev/null +++ b/vue-components/button/package.json @@ -0,0 +1,37 @@ +{ + "version": "0.0.1", + "name": "@tmagic/vue-button", + "type": "module", + "main": "src/index.ts", + "files": [ + "src" + ], + "engines": { + "node": ">=18" + }, + "repository": { + "type": "git", + "url": "https://github.com/Tencent/tmagic-editor.git" + }, + "dependencies": { + "vue-demi": "^0.14.10" + }, + "peerDependencies": { + "@tmagic/schema": "workspace:*", + "@tmagic/vue-runtime-help": "workspace:*", + "@vue/composition-api": ">=1.7.2", + "typescript": "*", + "vue": ">=2.0.0 || >=3.0.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + }, + "@tmagic/schema": { + "optional": true + }, + "typescript": { + "optional": true + } + } +} diff --git a/vue-components/button/src/event.ts b/vue-components/button/src/event.ts new file mode 100644 index 00000000..cdf87604 --- /dev/null +++ b/vue-components/button/src/event.ts @@ -0,0 +1,4 @@ +export default { + methods: [], + events: [], +}; diff --git a/packages/ui-vue2/src/button/formConfig.ts b/vue-components/button/src/formConfig.ts similarity index 100% rename from packages/ui-vue2/src/button/formConfig.ts rename to vue-components/button/src/formConfig.ts diff --git a/packages/ui-vue2/src/button/index.ts b/vue-components/button/src/index.ts similarity index 91% rename from packages/ui-vue2/src/button/index.ts rename to vue-components/button/src/index.ts index df373c45..7a09dfab 100644 --- a/packages/ui-vue2/src/button/index.ts +++ b/vue-components/button/src/index.ts @@ -16,9 +16,10 @@ * limitations under the License. */ -import Button from './Button.vue'; +import Button from './index.vue'; export { default as config } from './formConfig'; export { default as value } from './initValue'; +export { default as event } from './event'; export default Button; diff --git a/vue-components/button/src/index.vue b/vue-components/button/src/index.vue new file mode 100644 index 00000000..72c27a35 --- /dev/null +++ b/vue-components/button/src/index.vue @@ -0,0 +1,39 @@ + + + diff --git a/packages/ui-vue2/src/button/initValue.ts b/vue-components/button/src/initValue.ts similarity index 100% rename from packages/ui-vue2/src/button/initValue.ts rename to vue-components/button/src/initValue.ts diff --git a/vue-components/container/package.json b/vue-components/container/package.json new file mode 100644 index 00000000..e48073cf --- /dev/null +++ b/vue-components/container/package.json @@ -0,0 +1,38 @@ +{ + "version": "0.0.1", + "name": "@tmagic/vue-container", + "type": "module", + "main": "src/index.ts", + "files": [ + "src" + ], + "engines": { + "node": ">=18" + }, + "repository": { + "type": "git", + "url": "https://github.com/Tencent/tmagic-editor.git" + }, + "dependencies": { + "vue-demi": "^0.14.10" + }, + "peerDependencies": { + "@tmagic/schema": "workspace:*", + "@tmagic/utils": "workspace:*", + "@tmagic/vue-runtime-help": "workspace:*", + "@vue/composition-api": ">=1.7.2", + "typescript": "*", + "vue": ">=2.0.0 || >=3.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + }, + "@vue/composition-api": { + "optional": true + }, + "@tmagic/schema": { + "optional": true + } + } +} diff --git a/packages/ui/src/container/src/Container.vue b/vue-components/container/src/Container.vue similarity index 50% rename from packages/ui/src/container/src/Container.vue rename to vue-components/container/src/Container.vue index 1d08c5c5..e9d10838 100644 --- a/packages/ui/src/container/src/Container.vue +++ b/vue-components/container/src/Container.vue @@ -26,38 +26,52 @@ - diff --git a/vue-components/container/src/event.ts b/vue-components/container/src/event.ts new file mode 100644 index 00000000..cdf87604 --- /dev/null +++ b/vue-components/container/src/event.ts @@ -0,0 +1,4 @@ +export default { + methods: [], + events: [], +}; diff --git a/packages/ui-vue2/src/container/formConfig.ts b/vue-components/container/src/formConfig.ts similarity index 100% rename from packages/ui-vue2/src/container/formConfig.ts rename to vue-components/container/src/formConfig.ts diff --git a/packages/ui-vue2/src/container/index.ts b/vue-components/container/src/index.ts similarity index 95% rename from packages/ui-vue2/src/container/index.ts rename to vue-components/container/src/index.ts index e66b0b28..83f6fc96 100644 --- a/packages/ui-vue2/src/container/index.ts +++ b/vue-components/container/src/index.ts @@ -20,5 +20,6 @@ import Container from './Container.vue'; export { default as config } from './formConfig'; export { default as value } from './initValue'; +export { default as event } from './event'; export default Container; diff --git a/packages/ui-vue2/src/container/initValue.ts b/vue-components/container/src/initValue.ts similarity index 100% rename from packages/ui-vue2/src/container/initValue.ts rename to vue-components/container/src/initValue.ts diff --git a/vue-components/img/package.json b/vue-components/img/package.json new file mode 100644 index 00000000..9ad3eee1 --- /dev/null +++ b/vue-components/img/package.json @@ -0,0 +1,37 @@ +{ + "version": "0.0.1", + "name": "@tmagic/vue-img", + "type": "module", + "main": "src/index.ts", + "files": [ + "src" + ], + "engines": { + "node": ">=18" + }, + "repository": { + "type": "git", + "url": "https://github.com/Tencent/tmagic-editor.git" + }, + "dependencies": { + "vue-demi": "^0.14.10" + }, + "peerDependencies": { + "@tmagic/schema": "workspace:*", + "@tmagic/vue-runtime-help": "workspace:*", + "@vue/composition-api": ">=1.7.2", + "typescript": "*", + "vue": ">=2.0.0 || >=3.0.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + }, + "@tmagic/schema": { + "optional": true + }, + "typescript": { + "optional": true + } + } +} diff --git a/vue-components/img/src/event.ts b/vue-components/img/src/event.ts new file mode 100644 index 00000000..cdf87604 --- /dev/null +++ b/vue-components/img/src/event.ts @@ -0,0 +1,4 @@ +export default { + methods: [], + events: [], +}; diff --git a/packages/ui/src/img/src/formConfig.ts b/vue-components/img/src/formConfig.ts similarity index 100% rename from packages/ui/src/img/src/formConfig.ts rename to vue-components/img/src/formConfig.ts diff --git a/vue-components/img/src/index.ts b/vue-components/img/src/index.ts new file mode 100644 index 00000000..00c90474 --- /dev/null +++ b/vue-components/img/src/index.ts @@ -0,0 +1,25 @@ +/* + * Tencent is pleased to support the open source community by making TMagicEditor available. + * + * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import Img from './index.vue'; + +export { default as config } from './formConfig'; +export { default as value } from './initValue'; +export { default as event } from './event'; + +export default Img; diff --git a/vue-components/img/src/index.vue b/vue-components/img/src/index.vue new file mode 100644 index 00000000..77556625 --- /dev/null +++ b/vue-components/img/src/index.vue @@ -0,0 +1,44 @@ + + + diff --git a/packages/ui-vue2/src/img/src/initValue.ts b/vue-components/img/src/initValue.ts similarity index 100% rename from packages/ui-vue2/src/img/src/initValue.ts rename to vue-components/img/src/initValue.ts diff --git a/vue-components/iterator-container/package.json b/vue-components/iterator-container/package.json new file mode 100644 index 00000000..2b3f413f --- /dev/null +++ b/vue-components/iterator-container/package.json @@ -0,0 +1,40 @@ +{ + "version": "0.0.1", + "name": "@tmagic/vue-iterator-container", + "type": "module", + "main": "src/index.ts", + "files": [ + "src" + ], + "engines": { + "node": ">=18" + }, + "repository": { + "type": "git", + "url": "https://github.com/Tencent/tmagic-editor.git" + }, + "dependencies": { + "vue-demi": "^0.14.10" + }, + "peerDependencies": { + "@tmagic/core": "workspace:*", + "@tmagic/schema": "workspace:*", + "@tmagic/utils": "workspace:*", + "@tmagic/vue-container": "workspace:*", + "@tmagic/vue-runtime-help": "workspace:*", + "@vue/composition-api": ">=1.7.2", + "typescript": "*", + "vue": ">=2.0.0 || >=3.0.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + }, + "@tmagic/schema": { + "optional": true + }, + "typescript": { + "optional": true + } + } +} diff --git a/vue-components/iterator-container/src/IteratorContainer.vue b/vue-components/iterator-container/src/IteratorContainer.vue new file mode 100644 index 00000000..a482530e --- /dev/null +++ b/vue-components/iterator-container/src/IteratorContainer.vue @@ -0,0 +1,123 @@ + + + diff --git a/vue-components/iterator-container/src/event.ts b/vue-components/iterator-container/src/event.ts new file mode 100644 index 00000000..cdf87604 --- /dev/null +++ b/vue-components/iterator-container/src/event.ts @@ -0,0 +1,4 @@ +export default { + methods: [], + events: [], +}; diff --git a/packages/ui/src/iterator-container/src/formConfig.ts b/vue-components/iterator-container/src/formConfig.ts similarity index 100% rename from packages/ui/src/iterator-container/src/formConfig.ts rename to vue-components/iterator-container/src/formConfig.ts diff --git a/vue-components/iterator-container/src/index.ts b/vue-components/iterator-container/src/index.ts new file mode 100644 index 00000000..3edc97e6 --- /dev/null +++ b/vue-components/iterator-container/src/index.ts @@ -0,0 +1,25 @@ +/* + * Tencent is pleased to support the open source community by making TMagicEditor available. + * + * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import IteratorContainer from './IteratorContainer.vue'; + +export { default as config } from './formConfig'; +export { default as value } from './initValue'; +export { default as event } from './event'; + +export default IteratorContainer; diff --git a/packages/ui-vue2/src/iterator-container/src/initValue.ts b/vue-components/iterator-container/src/initValue.ts similarity index 100% rename from packages/ui-vue2/src/iterator-container/src/initValue.ts rename to vue-components/iterator-container/src/initValue.ts diff --git a/packages/ui-vue2/package.json b/vue-components/overlay/package.json similarity index 63% rename from packages/ui-vue2/package.json rename to vue-components/overlay/package.json index 2d4ef229..d99c4204 100644 --- a/packages/ui-vue2/package.json +++ b/vue-components/overlay/package.json @@ -1,6 +1,6 @@ { - "version": "1.4.19", - "name": "@tmagic/ui-vue2", + "version": "0.0.1", + "name": "@tmagic/vue-overlay", "type": "module", "main": "src/index.ts", "files": [ @@ -14,21 +14,18 @@ "url": "https://github.com/Tencent/tmagic-editor.git" }, "dependencies": { - "qrcode": "^1.5.0" + "vue-demi": "^0.14.10" }, "peerDependencies": { - "@tmagic/core": "workspace:*", "@tmagic/schema": "workspace:*", - "@tmagic/utils": "workspace:*", - "vue": ">=2.7.4", + "@tmagic/vue-container": "workspace:*", + "@tmagic/vue-runtime-help": "workspace:*", + "vue-demi": ">=0.14.7", "typescript": "*" }, "peerDependenciesMeta": { "typescript": { "optional": true } - }, - "devDependencies": { - "vue-template-compiler": "^2.7.4" } } diff --git a/packages/ui-vue2/src/overlay/src/event.ts b/vue-components/overlay/src/event.ts similarity index 100% rename from packages/ui-vue2/src/overlay/src/event.ts rename to vue-components/overlay/src/event.ts diff --git a/packages/ui-vue2/src/overlay/src/formConfig.ts b/vue-components/overlay/src/formConfig.ts similarity index 100% rename from packages/ui-vue2/src/overlay/src/formConfig.ts rename to vue-components/overlay/src/formConfig.ts diff --git a/vue-components/overlay/src/index.ts b/vue-components/overlay/src/index.ts new file mode 100644 index 00000000..a36d7a8b --- /dev/null +++ b/vue-components/overlay/src/index.ts @@ -0,0 +1,25 @@ +/* + * Tencent is pleased to support the open source community by making TMagicEditor available. + * + * Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import Overlay from './index.vue'; + +export { default as config } from './formConfig'; +export { default as value } from './initValue'; +export { default as event } from './event'; + +export default Overlay; diff --git a/vue-components/overlay/src/index.vue b/vue-components/overlay/src/index.vue new file mode 100644 index 00000000..6b4ce4b0 --- /dev/null +++ b/vue-components/overlay/src/index.vue @@ -0,0 +1,77 @@ + + + diff --git a/packages/ui-vue2/src/overlay/src/initValue.ts b/vue-components/overlay/src/initValue.ts similarity index 100% rename from packages/ui-vue2/src/overlay/src/initValue.ts rename to vue-components/overlay/src/initValue.ts diff --git a/vue-components/page-fragment-container/package.json b/vue-components/page-fragment-container/package.json new file mode 100644 index 00000000..ecf55261 --- /dev/null +++ b/vue-components/page-fragment-container/package.json @@ -0,0 +1,30 @@ +{ + "version": "0.0.1", + "name": "@tmagic/vue-page-fragment-container", + "type": "module", + "main": "src/index.ts", + "files": [ + "src" + ], + "engines": { + "node": ">=18" + }, + "repository": { + "type": "git", + "url": "https://github.com/Tencent/tmagic-editor.git" + }, + "dependencies": { + "vue-demi": "^0.14.10" + }, + "peerDependencies": { + "@tmagic/schema": "workspace:*", + "@tmagic/vue-container": "workspace:*", + "@tmagic/vue-runtime-help": "workspace:*", + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } +} diff --git a/packages/ui-vue2/src/page-fragment-container/src/PageFragmentContainer.vue b/vue-components/page-fragment-container/src/PageFragmentContainer.vue similarity index 57% rename from packages/ui-vue2/src/page-fragment-container/src/PageFragmentContainer.vue rename to vue-components/page-fragment-container/src/PageFragmentContainer.vue index 5f3c3d29..1d3a1c51 100644 --- a/packages/ui-vue2/src/page-fragment-container/src/PageFragmentContainer.vue +++ b/vue-components/page-fragment-container/src/PageFragmentContainer.vue @@ -1,56 +1,76 @@ +