-
-
-
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/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/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 @@