feat(chore): update OpenTinyVue version (#457)

* feat(chore): update OpenTinyVue version

* feat(chore): update opentinyvue version

* fix(breadcrumb): fix breadcrumb style after update opentiny vue version

* feat(chore): change opentinyvue to peer dependencies

* feat(builtinComponent): add vue to peerDependencies
This commit is contained in:
chilingling 2024-05-11 02:43:33 -07:00 committed by GitHub
parent 30cfeb19df
commit aa8d361bd2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
55 changed files with 119 additions and 139 deletions

View File

@ -32,9 +32,9 @@
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-i18n-host": "workspace:*", "@opentiny/tiny-engine-i18n-host": "workspace:*",
"@opentiny/tiny-engine-webcomponent-core": "workspace:*", "@opentiny/tiny-engine-webcomponent-core": "workspace:*",
"@opentiny/vue": "~3.11.0", "@opentiny/vue": "~3.14.0",
"@opentiny/vue-icon": "~3.11.0", "@opentiny/vue-icon": "~3.14.0",
"@opentiny/vue-theme": "~3.11.0", "@opentiny/vue-theme": "~3.14.0",
"@vue/shared": "^3.3.11", "@vue/shared": "^3.3.11",
"vue": "^3.4.15", "vue": "^3.4.15",
"vue-i18n": "^9.9.0" "vue-i18n": "^9.9.0"

View File

@ -43,7 +43,7 @@ export default defineConfig(({ command, mode }) => {
} }
const vuePluginConfig = {} const vuePluginConfig = {}
const styleLinks = ['https://npm.onmicrosoft.cn/@opentiny/vue-theme@3.11/index.css'] const styleLinks = ['https://npm.onmicrosoft.cn/@opentiny/vue-theme@3.14/index.css']
config.publicDir = false config.publicDir = false

View File

@ -20,12 +20,14 @@
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {
"@opentiny/vue": "~3.10.0",
"vite-plugin-css-injected-by-js": "^3.3.1" "vite-plugin-css-injected-by-js": "^3.3.1"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.1.0", "@vitejs/plugin-vue-jsx": "^3.1.0",
"vite": "^4.5.0" "vite": "^4.5.0"
},
"peerDependencies": {
"vue": "^3.4.15"
} }
} }

View File

@ -32,9 +32,6 @@
"@opentiny/tiny-engine-i18n-host": "workspace:*", "@opentiny/tiny-engine-i18n-host": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*",
"@opentiny/tiny-engine-webcomponent-core": "workspace:*", "@opentiny/tiny-engine-webcomponent-core": "workspace:*",
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-icon": "~3.10.0",
"@opentiny/vue-renderless": "~3.10.0",
"@vue/babel-plugin-jsx": "1.1.1", "@vue/babel-plugin-jsx": "1.1.1",
"@vue/shared": "^3.3.4", "@vue/shared": "^3.3.4",
"@vueuse/core": "^9.6.0" "@vueuse/core": "^9.6.0"
@ -46,6 +43,9 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-icon": "^3.14.0",
"@opentiny/vue-renderless": "^3.14.0",
"vue": "^3.4.15", "vue": "^3.4.15",
"vue-i18n": "^9.9.0" "vue-i18n": "^9.9.0"
} }

View File

@ -17,7 +17,7 @@ export default {
props: { props: {
data: { data: {
type: Array, type: Array,
default: [] default: () => []
} }
}, },
emits: ['click'] emits: ['click']
@ -44,37 +44,23 @@ export default {
li { li {
width: unset !important; width: unset !important;
background: var(--ti-lowcode-breadcrumb-bg); background: var(--ti-lowcode-breadcrumb-bg);
a { .label {
padding: 0 3px 0 16px; padding: 0 3px 0 16px;
border-top: 0; border-top: 0;
color: var(--ti-lowcode-breadcrumb-color); color: var(--ti-lowcode-breadcrumb-color);
transition: 0.3s; transition: 0.3s;
&::after {
display: inline-block;
right: -6px;
border-left: 6px solid var(--ti-lowcode-breadcrumb-bg);
transition: 0.3s;
}
&::before {
display: inline-block;
right: -7px;
left: unset;
border-left: 6px solid var(--ti-lowcode-breadcrumb-icon-color);
transition: 0.3s;
z-index: 1;
}
&:hover { &:hover {
background: var(--ti-lowcode-breadcrumb-hover-bg); cursor: pointer;
&::after { &::after {
border-left-color: var(--ti-lowcode-breadcrumb-hover-bg); border-left-color: var(--ti-steps-advanced-li-hover-bg-color);
} }
} }
} }
&:last-child a { &:last-child .label {
border-right: 0px solid var(--ti-lowcode-breadcrumb-color); border-right: 0px solid var(--ti-lowcode-breadcrumb-color);
border-radius: 0; border-radius: 0;
} }
&:first-child a { &:first-child .label {
border-right: 0px solid var(--ti-lowcode-breadcrumb-color); border-right: 0px solid var(--ti-lowcode-breadcrumb-color);
border-radius: 0; border-radius: 0;
border-left: unset; border-left: unset;

View File

@ -31,9 +31,6 @@
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*",
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-icon": "~3.10.0",
"@opentiny/vue-renderless": "~3.10.0",
"@vue/shared": "^3.3.4", "@vue/shared": "^3.3.4",
"monaco-editor": "0.33.0", "monaco-editor": "0.33.0",
"prettier": "2.7.1", "prettier": "2.7.1",
@ -45,6 +42,9 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-icon": "^3.14.0",
"@opentiny/vue-renderless": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -38,9 +38,6 @@
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*",
"@opentiny/tiny-engine-i18n-host": "workspace:*", "@opentiny/tiny-engine-i18n-host": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*",
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-locale": "~3.10.0",
"@opentiny/vue-renderless": "~3.10.0",
"@vue/shared": "^3.3.4", "@vue/shared": "^3.3.4",
"css-tree": "^2.3.1", "css-tree": "^2.3.1",
"eslint-linter-browserify": "8.57.0", "eslint-linter-browserify": "8.57.0",
@ -53,6 +50,9 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-locale": "^3.14.0",
"@opentiny/vue-renderless": "^3.14.0",
"vue": "^3.4.15", "vue": "^3.4.15",
"vue-i18n": "^9.9.0" "vue-i18n": "^9.9.0"
} }

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" /> <link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="%VITE_CDN_DOMAIN%/@opentiny/vue-theme@3.11/index.css" rel="stylesheet" /> <link href="%VITE_CDN_DOMAIN%/@opentiny/vue-theme@3.14/index.css" rel="stylesheet" />
<style type="text/css"> <style type="text/css">
.loading-warp { .loading-warp {
display: flex; display: flex;

View File

@ -77,10 +77,10 @@
"@opentiny/tiny-engine-toolbar-setting": "workspace:*", "@opentiny/tiny-engine-toolbar-setting": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*",
"@opentiny/tiny-engine-webcomponent-core": "workspace:*", "@opentiny/tiny-engine-webcomponent-core": "workspace:*",
"@opentiny/vue": "~3.11.0", "@opentiny/vue": "~3.14.0",
"@opentiny/vue-design-smb": "~3.11.0", "@opentiny/vue-design-smb": "~3.14.0",
"@opentiny/vue-renderless": "~3.11.0", "@opentiny/vue-renderless": "~3.14.0",
"@opentiny/vue-theme": "~3.11.0", "@opentiny/vue-theme": "~3.14.0",
"@vue/babel-plugin-jsx": "1.1.1", "@vue/babel-plugin-jsx": "1.1.1",
"@vue/repl": "^2.9.0", "@vue/repl": "^2.9.0",
"@vueuse/core": "^9.6.0", "@vueuse/core": "^9.6.0",

View File

@ -68,7 +68,8 @@ export default {
.tiny-tabs__content { .tiny-tabs__content {
flex: 1; flex: 1;
overflow-y: scroll; overflow-y: scroll;
padding-top: 0; padding: 0;
margin-top: 0;
} }
.tiny-tabs__item { .tiny-tabs__item {
color: var(--ti-lowcode-setting-panel-tabs-item-title-color); color: var(--ti-lowcode-setting-panel-tabs-item-title-color);

View File

@ -17,7 +17,7 @@ import { VITE_CDN_DOMAIN } from '@opentiny/tiny-engine-controller/js/environment
const importMap = {} const importMap = {}
const opentinyVueVersion = '~3.11' const opentinyVueVersion = '~3.14'
const tinyVue3Imports = { const tinyVue3Imports = {
// 推荐之后统一使用@opentiny/vue去引入依赖兼容后续录入的组件来源于tiny-vue // 推荐之后统一使用@opentiny/vue去引入依赖兼容后续录入的组件来源于tiny-vue

View File

@ -16,5 +16,5 @@ function addCss(href) {
link.setAttribute('href', href) link.setAttribute('href', href)
document.head.appendChild(link) document.head.appendChild(link)
} }
addCss('VITE_CDN_DOMAIN/@opentiny/vue-theme@3.11/index.css') addCss('VITE_CDN_DOMAIN/@opentiny/vue-theme@3.14/index.css')
addCss('VITE_CDN_DOMAIN/@opentiny/vue-theme-mobile@3.11/index.css') addCss('VITE_CDN_DOMAIN/@opentiny/vue-theme-mobile@3.14/index.css')

View File

@ -131,7 +131,7 @@ const config = {
const importMapVersions = { const importMapVersions = {
prettier: '2.7.1', prettier: '2.7.1',
vue: '3.4.23', vue: '3.4.23',
tinyVue: '~3.11' tinyVue: '~3.14'
} }
const devAlias = { const devAlias = {

View File

@ -25,7 +25,6 @@
"homepage": "https://opentiny.design/tiny-engine", "homepage": "https://opentiny.design/tiny-engine",
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*",
"@opentiny/vue": "~3.10.0",
"@vueuse/core": "^9.6.0", "@vueuse/core": "^9.6.0",
"axios": "^0.27.2", "axios": "^0.27.2",
"axios-mock-adapter": "^1.21.5" "axios-mock-adapter": "^1.21.5"
@ -36,6 +35,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -29,9 +29,6 @@
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*",
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-icon": "~3.10.0",
"@opentiny/vue-renderless": "~3.10.0",
"html2canvas": "^1.4.1", "html2canvas": "^1.4.1",
"pinyin-pro": "^3.13.0" "pinyin-pro": "^3.13.0"
}, },
@ -41,6 +38,9 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-icon": "^3.14.0",
"@opentiny/vue-renderless": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -86,7 +86,6 @@
<tiny-dropdown trigger="click" @item-click="changeType"> <tiny-dropdown trigger="click" @item-click="changeType">
<span> <span>
<span>{{ state.sortTypeLabel }}</span> <span>{{ state.sortTypeLabel }}</span>
<icon-chevron-down class="ml8"></icon-chevron-down>
</span> </span>
<template #dropdown> <template #dropdown>
<tiny-dropdown-menu <tiny-dropdown-menu
@ -118,7 +117,6 @@ import {
import { PluginPanel, PluginBlockList, SvgButton, SaveNewBlock, LinkButton } from '@opentiny/tiny-engine-common' import { PluginPanel, PluginBlockList, SvgButton, SaveNewBlock, LinkButton } from '@opentiny/tiny-engine-common'
import { useBlock, useModal, useLayout, useCanvas, useHelp } from '@opentiny/tiny-engine-controller' import { useBlock, useModal, useLayout, useCanvas, useHelp } from '@opentiny/tiny-engine-controller'
import { constants } from '@opentiny/tiny-engine-utils' import { constants } from '@opentiny/tiny-engine-utils'
import { iconChevronDown } from '@opentiny/vue-icon'
import BlockSetting, { openPanel, closePanel } from './BlockSetting.vue' import BlockSetting, { openPanel, closePanel } from './BlockSetting.vue'
import BlockGroupArrange from './BlockGroupArrange.vue' import BlockGroupArrange from './BlockGroupArrange.vue'
import CategoryEdit from './CategoryEdit.vue' import CategoryEdit from './CategoryEdit.vue'
@ -188,8 +186,7 @@ export default {
CategoryEdit, CategoryEdit,
PluginBlockList, PluginBlockList,
TinyPopover, TinyPopover,
TinyButton, TinyButton
IconChevronDown: iconChevronDown()
}, },
setup() { setup() {

View File

@ -27,9 +27,7 @@
"@opentiny/tiny-engine-canvas": "workspace:*", "@opentiny/tiny-engine-canvas": "workspace:*",
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*"
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-icon": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -37,6 +35,8 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-icon": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -29,8 +29,6 @@
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*",
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-icon": "~3.10.0",
"monaco-editor": "0.33.0" "monaco-editor": "0.33.0"
}, },
"devDependencies": { "devDependencies": {
@ -39,6 +37,8 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-icon": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -7,8 +7,7 @@
<close-icon @close="closePanel"></close-icon> <close-icon @close="closePanel"></close-icon>
</div> </div>
<tiny-tabs v-model="activeName" @click="tabClick" tab-style="button-card"> <tiny-tabs v-model="activeName" @click="tabClick" tab-style="button-card">
<tiny-tab-item v-if="isBlock" :name="STATE.CURRENT_STATE" title="区块状态"></tiny-tab-item> <tiny-tab-item :name="STATE.CURRENT_STATE" :title="isBlock ? '区块状态' : '页面状态'"></tiny-tab-item>
<tiny-tab-item v-else :name="STATE.CURRENT_STATE" title="页面状态"></tiny-tab-item>
<tiny-tab-item :name="STATE.GLOBAL_STATE" title="应用状态"></tiny-tab-item> <tiny-tab-item :name="STATE.GLOBAL_STATE" title="应用状态"></tiny-tab-item>
</tiny-tabs> </tiny-tabs>
<tiny-search <tiny-search
@ -490,11 +489,8 @@ export default {
} }
:deep(.tiny-tabs__content) { :deep(.tiny-tabs__content) {
height: calc(100% - 48px); margin: 0;
padding: 0; padding: 0;
& > div {
height: 100%;
}
} }
:deep(.help-box) { :deep(.help-box) {
position: absolute; position: absolute;

View File

@ -29,9 +29,6 @@
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*",
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-icon": "~3.10.0",
"@opentiny/vue-renderless": "~3.10.0",
"@vue/shared": "^3.3.4", "@vue/shared": "^3.3.4",
"axios": "^0.27.2", "axios": "^0.27.2",
"vue-clipboard3": "^2.0.0", "vue-clipboard3": "^2.0.0",
@ -43,6 +40,9 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-icon": "^3.14.0",
"@opentiny/vue-renderless": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -26,8 +26,7 @@
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*"
"@opentiny/vue": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -35,6 +34,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -28,8 +28,6 @@
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*",
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-icon": "~3.10.0",
"vue-clipboard3": "^2.0.0" "vue-clipboard3": "^2.0.0"
}, },
"devDependencies": { "devDependencies": {
@ -38,6 +36,8 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-icon": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -27,8 +27,7 @@
"@opentiny/tiny-engine-canvas": "workspace:*", "@opentiny/tiny-engine-canvas": "workspace:*",
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*"
"@opentiny/vue": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -36,6 +35,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -402,7 +402,7 @@ export default {
.blocks-header-wrap { .blocks-header-wrap {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
padding: 8px; padding: 0 8px 8px;
.blocks-header-select { .blocks-header-select {
width: calc(100% - 36px); width: calc(100% - 36px);

View File

@ -142,7 +142,7 @@ export default {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
.tiny-search { .tiny-search {
padding: 12px 8px; padding: 0 8px 12px;
:deep(.tiny-input__inner) { :deep(.tiny-input__inner) {
height: 30px; height: 30px;
} }

View File

@ -126,7 +126,7 @@ export default {
flex-direction: column; flex-direction: column;
.tiny-search { .tiny-search {
padding: 12px 8px; padding: 0 8px 12px;
} }
.component-group { .component-group {

View File

@ -27,9 +27,7 @@
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*"
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-renderless": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -37,6 +35,8 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-renderless": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -27,9 +27,7 @@
"@opentiny/tiny-engine-canvas": "workspace:*", "@opentiny/tiny-engine-canvas": "workspace:*",
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*"
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-renderless": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -37,6 +35,8 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-renderless": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -27,8 +27,7 @@
"@opentiny/tiny-engine-canvas": "workspace:*", "@opentiny/tiny-engine-canvas": "workspace:*",
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*"
"@opentiny/vue": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -36,6 +35,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -27,9 +27,7 @@
"@opentiny/tiny-engine-canvas": "workspace:*", "@opentiny/tiny-engine-canvas": "workspace:*",
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*"
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-renderless": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -37,6 +35,8 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-renderless": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -27,10 +27,7 @@
"@opentiny/tiny-engine-canvas": "workspace:*", "@opentiny/tiny-engine-canvas": "workspace:*",
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*"
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-icon": "~3.10.0",
"@opentiny/vue-renderless": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -38,6 +35,9 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-icon": "^3.14.0",
"@opentiny/vue-renderless": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -27,7 +27,6 @@
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*",
"@opentiny/vue": "~3.10.0",
"marked": "^4.0.17" "marked": "^4.0.17"
}, },
"devDependencies": { "devDependencies": {
@ -36,6 +35,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -26,7 +26,6 @@
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/vue": "~3.10.0",
"sortablejs": "^1.14.0" "sortablejs": "^1.14.0"
}, },
"devDependencies": { "devDependencies": {
@ -35,6 +34,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -27,9 +27,7 @@
"@opentiny/tiny-engine-canvas": "workspace:*", "@opentiny/tiny-engine-canvas": "workspace:*",
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*"
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-icon": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -37,6 +35,8 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-icon": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -27,8 +27,6 @@
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*",
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-icon": "~3.10.0",
"@vueuse/core": "^9.6.0" "@vueuse/core": "^9.6.0"
}, },
"devDependencies": { "devDependencies": {
@ -37,6 +35,8 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-icon": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -29,8 +29,6 @@
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*",
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-renderless": "~3.10.0",
"@vueuse/core": "^9.6.0", "@vueuse/core": "^9.6.0",
"postcss": "^8.4.31" "postcss": "^8.4.31"
}, },
@ -40,6 +38,8 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-renderless": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -23,16 +23,15 @@
"author": "OpenTiny Team", "author": "OpenTiny Team",
"license": "MIT", "license": "MIT",
"homepage": "https://opentiny.design/tiny-engine", "homepage": "https://opentiny.design/tiny-engine",
"dependencies": { "dependencies": {},
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-icon": "~3.10.0"
},
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.1.0", "@vitejs/plugin-vue-jsx": "^3.1.0",
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-icon": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -1782,6 +1782,8 @@ button {
} }
.tiny-collapse { .tiny-collapse {
border-top: none;
border-bottom: none;
.tiny-collapse-item { .tiny-collapse-item {
border: none; border: none;
// 第一项的外边距会与其他元素外边距相加形成最终外边距,因此第一项外边距不调整 // 第一项的外边距会与其他元素外边距相加形成最终外边距,因此第一项外边距不调整

View File

@ -25,8 +25,7 @@
"homepage": "https://opentiny.design/tiny-engine", "homepage": "https://opentiny.design/tiny-engine",
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*"
"@opentiny/vue": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -34,6 +33,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -25,8 +25,7 @@
"homepage": "https://opentiny.design/tiny-engine", "homepage": "https://opentiny.design/tiny-engine",
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*"
"@opentiny/vue": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -34,6 +33,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -24,8 +24,7 @@
"license": "MIT", "license": "MIT",
"homepage": "https://opentiny.design/tiny-engine", "homepage": "https://opentiny.design/tiny-engine",
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*"
"@opentiny/vue": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -33,6 +32,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -24,8 +24,7 @@
"license": "MIT", "license": "MIT",
"homepage": "https://opentiny.design/tiny-engine", "homepage": "https://opentiny.design/tiny-engine",
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*"
"@opentiny/vue": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -33,6 +32,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -28,7 +28,6 @@
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*",
"@opentiny/vue": "~3.10.0",
"prettier": "2.7.1" "prettier": "2.7.1"
}, },
"devDependencies": { "devDependencies": {
@ -37,6 +36,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -25,7 +25,6 @@
"homepage": "https://opentiny.design/tiny-engine", "homepage": "https://opentiny.design/tiny-engine",
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*",
"@opentiny/vue": "~3.10.0",
"@vueuse/core": "^9.6.0" "@vueuse/core": "^9.6.0"
}, },
"devDependencies": { "devDependencies": {
@ -34,6 +33,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -23,15 +23,14 @@
"author": "OpenTiny Team", "author": "OpenTiny Team",
"license": "MIT", "license": "MIT",
"homepage": "https://opentiny.design/tiny-engine", "homepage": "https://opentiny.design/tiny-engine",
"dependencies": { "dependencies": {},
"@opentiny/vue": "~3.10.0"
},
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.1.0", "@vitejs/plugin-vue-jsx": "^3.1.0",
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -26,8 +26,7 @@
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*"
"@opentiny/vue": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -35,6 +34,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -26,8 +26,7 @@
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-http": "workspace:*", "@opentiny/tiny-engine-http": "workspace:*"
"@opentiny/vue": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -35,6 +34,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -23,15 +23,14 @@
"author": "OpenTiny Team", "author": "OpenTiny Team",
"license": "MIT", "license": "MIT",
"homepage": "https://opentiny.design/tiny-engine", "homepage": "https://opentiny.design/tiny-engine",
"dependencies": { "dependencies": {},
"@opentiny/vue": "~3.10.0"
},
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.1.0", "@vitejs/plugin-vue-jsx": "^3.1.0",
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -25,9 +25,7 @@
"homepage": "https://opentiny.design/tiny-engine", "homepage": "https://opentiny.design/tiny-engine",
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-canvas": "workspace:*", "@opentiny/tiny-engine-canvas": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*"
"@opentiny/vue": "~3.10.0",
"@opentiny/vue-icon": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -35,6 +33,8 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"@opentiny/vue-icon": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -26,8 +26,7 @@
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-canvas": "workspace:*", "@opentiny/tiny-engine-canvas": "workspace:*",
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*"
"@opentiny/vue": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -35,6 +34,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -24,8 +24,7 @@
"license": "MIT", "license": "MIT",
"homepage": "https://opentiny.design/tiny-engine", "homepage": "https://opentiny.design/tiny-engine",
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*"
"@opentiny/vue": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -33,6 +32,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -25,8 +25,7 @@
"homepage": "https://opentiny.design/tiny-engine", "homepage": "https://opentiny.design/tiny-engine",
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-canvas": "workspace:*", "@opentiny/tiny-engine-canvas": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*"
"@opentiny/vue": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -34,6 +33,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -27,8 +27,7 @@
"@opentiny/tiny-engine-canvas": "workspace:*", "@opentiny/tiny-engine-canvas": "workspace:*",
"@opentiny/tiny-engine-common": "workspace:*", "@opentiny/tiny-engine-common": "workspace:*",
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*"
"@opentiny/vue": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -36,6 +35,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -25,8 +25,7 @@
"homepage": "https://opentiny.design/tiny-engine", "homepage": "https://opentiny.design/tiny-engine",
"dependencies": { "dependencies": {
"@opentiny/tiny-engine-controller": "workspace:*", "@opentiny/tiny-engine-controller": "workspace:*",
"@opentiny/tiny-engine-utils": "workspace:*", "@opentiny/tiny-engine-utils": "workspace:*"
"@opentiny/vue": "~3.10.0"
}, },
"devDependencies": { "devDependencies": {
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
@ -34,6 +33,7 @@
"vite": "^4.3.7" "vite": "^4.3.7"
}, },
"peerDependencies": { "peerDependencies": {
"@opentiny/vue": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }

View File

@ -30,10 +30,9 @@
"vite": "^4.3.7", "vite": "^4.3.7",
"vitest": "^0.34.6" "vitest": "^0.34.6"
}, },
"dependencies": { "dependencies": {},
"@opentiny/vue-renderless": "~3.10.0"
},
"peerDependencies": { "peerDependencies": {
"@opentiny/vue-renderless": "^3.14.0",
"vue": "^3.4.15" "vue": "^3.4.15"
} }
} }