mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
chore(playground): playground添加design style
This commit is contained in:
parent
c73a27eb1a
commit
feaa295606
6
playground/shims-vue.d.ts
vendored
Normal file
6
playground/shims-vue.d.ts
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
declare module '*.vue' {
|
||||||
|
import { DefineComponent } from 'vue';
|
||||||
|
|
||||||
|
const component: DefineComponent<{}, {}, any>;
|
||||||
|
export default component;
|
||||||
|
}
|
@ -33,6 +33,7 @@ import App from './App.vue';
|
|||||||
import router from './route';
|
import router from './route';
|
||||||
|
|
||||||
import 'element-plus/dist/index.css';
|
import 'element-plus/dist/index.css';
|
||||||
|
import '@tmagic/design/dist/style.css';
|
||||||
import '@tmagic/editor/dist/style.css';
|
import '@tmagic/editor/dist/style.css';
|
||||||
import '@tmagic/form/dist/style.css';
|
import '@tmagic/form/dist/style.css';
|
||||||
import '@tmagic/table/dist/style.css';
|
import '@tmagic/table/dist/style.css';
|
||||||
|
@ -57,6 +57,10 @@ export default defineConfig({
|
|||||||
find: /^@tmagic\/table\/dist\/style.css/,
|
find: /^@tmagic\/table\/dist\/style.css/,
|
||||||
replacement: path.join(__dirname, '../packages/table/dist/style.css'),
|
replacement: path.join(__dirname, '../packages/table/dist/style.css'),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
find: /^@tmagic\/design\/dist\/style.css/,
|
||||||
|
replacement: path.join(__dirname, '../packages/design/dist/style.css'),
|
||||||
|
},
|
||||||
{ find: /^@tmagic\/core/, replacement: path.join(__dirname, '../packages/core/src/index.ts') },
|
{ find: /^@tmagic\/core/, replacement: path.join(__dirname, '../packages/core/src/index.ts') },
|
||||||
{ find: /^@editor/, replacement: path.join(__dirname, '../packages/editor/src/') },
|
{ find: /^@editor/, replacement: path.join(__dirname, '../packages/editor/src/') },
|
||||||
{ find: /^@tmagic\/editor/, replacement: path.join(__dirname, '../packages/editor/src/index.ts') },
|
{ find: /^@tmagic\/editor/, replacement: path.join(__dirname, '../packages/editor/src/index.ts') },
|
||||||
@ -70,7 +74,10 @@ export default defineConfig({
|
|||||||
{ find: /^@tmagic\/stage/, replacement: path.join(__dirname, '../packages/stage/src/index.ts') },
|
{ find: /^@tmagic\/stage/, replacement: path.join(__dirname, '../packages/stage/src/index.ts') },
|
||||||
{ find: /^@tmagic\/utils/, replacement: path.join(__dirname, '../packages/utils/src/index.ts') },
|
{ find: /^@tmagic\/utils/, replacement: path.join(__dirname, '../packages/utils/src/index.ts') },
|
||||||
{ find: /^@tmagic\/design/, replacement: path.join(__dirname, '../packages/design/src/index.ts') },
|
{ find: /^@tmagic\/design/, replacement: path.join(__dirname, '../packages/design/src/index.ts') },
|
||||||
{ find: /^@tmagic\/data-source/, replacement: path.join(__dirname, '../packages/data-source/src/index.ts') },
|
{
|
||||||
|
find: /^@tmagic\/data-source/,
|
||||||
|
replacement: path.join(__dirname, '../packages/data-source/src/index.ts'),
|
||||||
|
},
|
||||||
{ find: /^@tmagic\/dep/, replacement: path.join(__dirname, '../packages/dep/src/index.ts') },
|
{ find: /^@tmagic\/dep/, replacement: path.join(__dirname, '../packages/dep/src/index.ts') },
|
||||||
{ find: /^@data-source/, replacement: path.join(__dirname, '../packages/data-source/src') },
|
{ find: /^@data-source/, replacement: path.join(__dirname, '../packages/data-source/src') },
|
||||||
{
|
{
|
||||||
|
@ -33,11 +33,11 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"lodash-es": "^4.17.21",
|
"lodash-es": "^4.17.21",
|
||||||
"@tmagic/core": "workspace:*",
|
"@tmagic/core": "workspace:^",
|
||||||
"@tmagic/data-source": "workspace:*",
|
"@tmagic/data-source": "workspace:^",
|
||||||
"@tmagic/schema": "workspace:*",
|
"@tmagic/schema": "workspace:^",
|
||||||
"@tmagic/stage": "workspace:*",
|
"@tmagic/stage": "workspace:^",
|
||||||
"@tmagic/utils": "workspace:*",
|
"@tmagic/utils": "workspace:^",
|
||||||
"react": ">=18.3.1",
|
"react": ">=18.3.1",
|
||||||
"typescript": "*"
|
"typescript": "*"
|
||||||
},
|
},
|
||||||
|
@ -32,12 +32,12 @@
|
|||||||
"url": "https://github.com/Tencent/tmagic-editor.git"
|
"url": "https://github.com/Tencent/tmagic-editor.git"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tmagic/core": "workspace:*",
|
"@tmagic/core": "workspace:^",
|
||||||
"@tmagic/editor": "workspace:*",
|
"@tmagic/editor": "workspace:^",
|
||||||
"@tmagic/form": "workspace:*",
|
"@tmagic/form": "workspace:^",
|
||||||
"@tmagic/utils": "workspace:*",
|
"@tmagic/utils": "workspace:^",
|
||||||
"@tmagic/schema": "workspace:*",
|
"@tmagic/schema": "workspace:^",
|
||||||
"@tmagic/stage": "workspace:*",
|
"@tmagic/stage": "workspace:^",
|
||||||
"element-plus": ">=2.8.0",
|
"element-plus": ">=2.8.0",
|
||||||
"vue": ">=3.4.27"
|
"vue": ">=3.4.27"
|
||||||
},
|
},
|
||||||
|
@ -32,11 +32,11 @@
|
|||||||
"vue-demi": "^0.14.10"
|
"vue-demi": "^0.14.10"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tmagic/core": "workspace:*",
|
"@tmagic/core": "workspace:^",
|
||||||
"@tmagic/data-source": "workspace:*",
|
"@tmagic/data-source": "workspace:^",
|
||||||
"@tmagic/schema": "workspace:*",
|
"@tmagic/schema": "workspace:^",
|
||||||
"@tmagic/stage": "workspace:*",
|
"@tmagic/stage": "workspace:^",
|
||||||
"@tmagic/utils": "workspace:*",
|
"@tmagic/utils": "workspace:^",
|
||||||
"@vue/composition-api": ">=1.7.2",
|
"@vue/composition-api": ">=1.7.2",
|
||||||
"typescript": "*",
|
"typescript": "*",
|
||||||
"vue": ">=2.0.0 || >=3.0.0"
|
"vue": ">=2.0.0 || >=3.0.0"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user