feat(vue): add vue sub packages dependencies (#1424)

* feat(vue): add vue sub packages dependencies

* feat(vue): add vue sub packages dependencies
This commit is contained in:
gimmyhehe 2024-02-27 10:40:03 +08:00 committed by GitHub
parent d7d326d6e8
commit 7c7db7a295
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
178 changed files with 579 additions and 208 deletions

View File

@ -7,11 +7,13 @@
"scripts": {
"start": "esno ./src/index.ts",
"scan": "esno ./src/demos-scan.ts",
"diff": "esno ./src/aui-diff.ts"
"diff": "esno ./src/aui-diff.ts",
"add-dep": "esno ./src/add-dependencies.ts"
},
"dependencies": {
"fs-extra": "^11.2.0",
"esno": "^4.0.0"
"esno": "^4.0.0",
"fast-glob": "^3.2.12",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@types/node": "^20.10.5",

View File

@ -0,0 +1,65 @@
import path from 'node:path'
import { writeFile } from 'node:fs/promises'
import { fileURLToPath } from 'node:url'
import fg from 'fast-glob'
import { difference } from 'lodash-es'
import { scanDir, safeReadFile } from './utils/files'
import { parseString } from './utils/parse-string'
const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
const root = path.join(__dirname, '../../../packages/vue/src')
async function writeJson(jsonPath, dependencies) {
const jsonStr: any = await safeReadFile(jsonPath)
const json = parseString(jsonStr)
const newDep = difference(dependencies, Object.keys(json.dependencies))
newDep.forEach((dep) => {
json.dependencies[dep] = 'workspace:~'
})
writeFile(jsonPath, JSON.stringify(json, null, 2) + '\n')
}
// 解析文件内容中的opentiny依赖
function parseDepencies(content) {
const reg = /import.+(\@opentiny\/.+)/g
return content.match(reg)?.map((importStr) => {
const depReg = /('|")(\@opentiny\/.+)('|")/
const dep = importStr.match(depReg)[2]
const needDep = dep.split('/').slice(0, 2).join('/')
return needDep
})
}
async function addComponentDepencies(component) {
let dependencies = []
const componentPath = path.join(root, component)
// 如果没有package.json 则跳过
const jsonPath = path.join(componentPath, 'package.json')
const packageJson = await safeReadFile(jsonPath)
if (!packageJson) {
return
}
const allFiles = await fg(['**/*.ts', '**/*.vue'], {
dot: true,
cwd: componentPath,
ignore: ['node_modules', '__test__']
})
for (let i = 0; i < allFiles.length; i++) {
const file = allFiles[i]
const filePath = path.join(componentPath, file)
const fileContent = await safeReadFile(filePath)
const componentDependencies = parseDepencies(fileContent)
dependencies = dependencies.concat(componentDependencies)
}
dependencies = Array.from(new Set(dependencies.filter((i) => i)))
writeJson(jsonPath, dependencies)
}
scanDir(root, 'dir').then((dirs) => {
dirs.forEach(addComponentDepencies)
})

View File

@ -0,0 +1,35 @@
import path from 'node:path'
import { readdir, stat, readFile } from 'node:fs/promises'
/**
* @description
* @param dirPath {String}
* @param getTarget {String} file返回所有文件dir返回文件夹all返回两者
*/
export async function scanDir(dirPath, getTarget = 'file'): Promise<string[]> {
const dirArr: string[] = []
const dirs = await readdir(dirPath)
return new Promise((resolve) => {
dirs.forEach(async (name: string, index) => {
const info = await stat(path.join(dirPath, name))
const isDir = info.isDirectory()
if (getTarget === 'all') {
dirArr.push(name)
} else if (isDir && getTarget === 'dir') {
dirArr.push(name)
} else if (!isDir && getTarget === 'file') {
dirArr.push(name)
}
if (index === dirs.length - 1) {
resolve(dirArr)
}
})
})
}
// 官方弃用exists api推荐直接catch错误
export function safeReadFile(filePath): Promise<string | undefined> {
return readFile(filePath, { encoding: 'utf-8' })
.then((res) => res)
.catch(() => undefined)
}

View File

@ -19,7 +19,9 @@
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-dropdown": "workspace:~",
"@opentiny/vue-dropdown-menu": "workspace:~",
"@opentiny/vue-dropdown-item": "workspace:~"
"@opentiny/vue-dropdown-item": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-locale": "workspace:~"
},
"license": "MIT"
}

View File

@ -19,7 +19,9 @@
"@opentiny/vue-drawer": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@better-scroll/core": "2.5.0"
"@better-scroll/core": "2.5.0",
"@opentiny/vue-button": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,9 @@
"dependencies": {
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-icon": "workspace:~"
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -27,7 +27,8 @@
"@opentiny/vue-filter-box": "workspace:~",
"@opentiny/vue-radio": "workspace:~",
"@opentiny/vue-radio-group": "workspace:~",
"@opentiny/vue-action-sheet": "workspace:~"
"@opentiny/vue-action-sheet": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}
}

View File

@ -15,7 +15,8 @@
},
"dependencies": {
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-common": "workspace:~"
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -18,7 +18,8 @@
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-select": "workspace:~",
"@opentiny/vue-option": "workspace:~"
"@opentiny/vue-option": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -19,7 +19,8 @@
"@opentiny/vue-input": "workspace:~",
"@opentiny/vue-scrollbar": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-common": "workspace:~"
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,8 @@
},
"dependencies": {
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-common": "workspace:~"
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,9 @@
},
"dependencies": {
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-common": "workspace:~"
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,8 @@
},
"dependencies": {
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-common": "workspace:~"
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,9 @@
},
"dependencies": {
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-common": "workspace:~"
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-breadcrumb-item": "workspace:~"
},
"license": "MIT"
}

View File

@ -19,7 +19,8 @@
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-tabs": "workspace:~",
"@opentiny/vue-tab-item": "workspace:~"
"@opentiny/vue-tab-item": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,11 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-popover": "workspace:~",
"@opentiny/vue-button": "workspace:~",
"@opentiny/vue-icon": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,9 @@
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,8 @@
"@opentiny/vue-radio-button": "workspace:~",
"@opentiny/vue-radio-group": "workspace:~",
"@opentiny/vue-slider-button": "workspace:~",
"@opentiny/vue-slider-button-group": "workspace:~"
"@opentiny/vue-slider-button-group": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}
}

View File

@ -19,7 +19,9 @@
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-tooltip": "workspace:~",
"@opentiny/vue-popover": "workspace:~"
"@opentiny/vue-popover": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-button": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,8 @@
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,8 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,8 @@
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -19,7 +19,8 @@
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-scrollbar": "workspace:~",
"@opentiny/vue-cascader-node": "workspace:~"
"@opentiny/vue-cascader-node": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -11,7 +11,9 @@
"@opentiny/vue-action-sheet": "workspace:~",
"@opentiny/vue-exception": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-locale": "workspace:~"
},
"devDependencies": {
"@opentiny-internal/vue-test-utils": "workspace:*",

View File

@ -18,7 +18,9 @@
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-checkbox": "workspace:~",
"@opentiny/vue-radio": "workspace:~"
"@opentiny/vue-radio": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,8 @@
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-cascader-menu": "workspace:~"
"@opentiny/vue-cascader-menu": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -12,7 +12,8 @@
"@opentiny/vue-exception": "workspace:~",
"@opentiny/vue-action-sheet": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-checkbox": "workspace:~"
},
"license": "MIT",
"devDependencies": {
@ -23,4 +24,4 @@
"build": "pnpm -w build:ui $npm_package_name",
"//postversion": "pnpm build"
}
}
}

View File

@ -23,7 +23,10 @@
"@opentiny/vue-tooltip": "workspace:~",
"@opentiny/vue-scrollbar": "workspace:~",
"@opentiny/vue-cascader-panel": "workspace:~",
"@opentiny/vue-filter-box": "workspace:~"
"@opentiny/vue-filter-box": "workspace:~",
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-cascader-mobile": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}
}

View File

@ -9,7 +9,8 @@
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-locale": "workspace:~"
},
"license": "MIT",
"devDependencies": {

View File

@ -40,7 +40,15 @@
"@opentiny/vue-chart-liquidfill-beta": "workspace:~",
"@opentiny/vue-chart-wordcloud-beta": "workspace:~",
"@opentiny/vue-chart-map-beta": "workspace:~",
"@opentiny/vue-chart-boxplot-beta": "workspace:~"
"@opentiny/vue-chart-boxplot-beta": "workspace:~",
"@opentiny/vue-autonavi-map-beta": "workspace:~",
"@opentiny/vue-baidu-map-beta": "workspace:~",
"@opentiny/vue-chart-graph-beta": "workspace:~",
"@opentiny/vue-chart-sunburst-beta": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
},
"license": "MIT"
}
}

View File

@ -30,7 +30,9 @@
"@opentiny/vue-chart-pie": "workspace:~",
"@opentiny/vue-chart-funnel": "workspace:~",
"@opentiny/vue-chart-radar": "workspace:~",
"@opentiny/vue-chart-waterfall": "workspace:~"
"@opentiny/vue-chart-waterfall": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-locale": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,8 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -18,7 +18,9 @@
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-checkbox": "workspace:~",
"@opentiny/vue-checkbox-button": "workspace:~"
"@opentiny/vue-checkbox-button": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,10 @@
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-tooltip": "workspace:~"
"@opentiny/vue-tooltip": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}
}

View File

@ -16,7 +16,8 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,9 @@
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-icon": "workspace:~"
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-collapse-transition": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,8 @@
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-icon": "workspace:~"
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,8 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -12,11 +12,14 @@
"@opentiny/vue-option": "workspace:~",
"@opentiny/vue-button": "workspace:~",
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-color-select-panel": "workspace:~"
"@opentiny/vue-color-select-panel": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-color-picker": "workspace:~"
},
"devDependencies": {
"@opentiny-internal/vue-test-utils": "workspace:*",
"vitest": "^0.31.0"
},
"license": "MIT"
}
}

View File

@ -14,7 +14,8 @@
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-input": "workspace:~",
"@opentiny/vue-collapse": "workspace:~",
"@opentiny/vue-collapse-item": "workspace:~"
"@opentiny/vue-collapse-item": "workspace:~",
"@opentiny/vue-button-group": "workspace:~"
},
"license": "MIT"
}

View File

@ -21,4 +21,4 @@
"@opentiny/vue-radio": "workspace:~"
},
"license": "MIT"
}
}

View File

@ -18,7 +18,8 @@
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-select": "workspace:~",
"@opentiny/vue-option": "workspace:~"
"@opentiny/vue-option": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -15,7 +15,9 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-config-provider": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,9 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~"
},
"license": "MIT"
}

View File

@ -18,7 +18,8 @@
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-select": "workspace:~",
"@opentiny/vue-option": "workspace:~"
"@opentiny/vue-option": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,8 @@
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-credit-card": "workspace:~"
"@opentiny/vue-credit-card": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,8 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -18,7 +18,8 @@
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"cropperjs": "1.5.7"
"cropperjs": "1.5.7",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -18,7 +18,10 @@
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-select": "workspace:~",
"@opentiny/vue-option": "workspace:~"
"@opentiny/vue-option": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-select-mobile": "workspace:~",
"@opentiny/vue-icon": "workspace:~"
},
"license": "MIT"
}

View File

@ -23,7 +23,9 @@
"@opentiny/vue-time": "workspace:~",
"@opentiny/vue-date-table": "workspace:~",
"@opentiny/vue-year-table": "workspace:~",
"@opentiny/vue-month-table": "workspace:~"
"@opentiny/vue-month-table": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-popup": "workspace:~"
},
"license": "MIT"
}

View File

@ -11,7 +11,9 @@
"@opentiny/vue-button": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-time-picker-mobile": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-recycle-scroller": "workspace:~"
},
"license": "MIT",
"devDependencies": {

View File

@ -20,7 +20,8 @@
"@opentiny/vue-picker": "workspace:~",
"@opentiny/vue-mini-picker": "workspace:~",
"@opentiny/vue-input": "workspace:~",
"@opentiny/vue-icon": "workspace:~"
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}
}

View File

@ -21,7 +21,9 @@
"@opentiny/vue-button": "workspace:~",
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-time": "workspace:~",
"@opentiny/vue-date-table": "workspace:~"
"@opentiny/vue-date-table": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-icon": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,8 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -23,7 +23,9 @@
"@opentiny/vue-row": "workspace:~",
"@opentiny/vue-col": "workspace:~",
"@opentiny/vue-modal": "workspace:~",
"@opentiny/vue-input": "workspace:~"
"@opentiny/vue-input": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-dialog-box": "workspace:~"
},
"license": "MIT"
}

View File

@ -20,7 +20,8 @@
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-checkbox": "workspace:~",
"@opentiny/vue-button": "workspace:~",
"@opentiny/vue-modal": "workspace:~"
"@opentiny/vue-modal": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -18,7 +18,9 @@
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-action-sheet": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}
}

View File

@ -20,7 +20,8 @@
"@opentiny/vue-split": "workspace:~",
"@opentiny/vue-selected-box": "workspace:~",
"@opentiny/vue-input": "workspace:~",
"@opentiny/vue-tree": "workspace:~"
"@opentiny/vue-tree": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -12,7 +12,8 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -14,7 +14,9 @@
"@opentiny/vue-button": "workspace:~",
"@opentiny/vue-tooltip": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -19,7 +19,8 @@
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-select": "workspace:~",
"@opentiny/vue-option": "workspace:~",
"@opentiny/vue-icon": "workspace:~"
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -18,7 +18,8 @@
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-select": "workspace:~",
"@opentiny/vue-option": "workspace:~"
"@opentiny/vue-option": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -20,7 +20,9 @@
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-popup": "workspace:~",
"@opentiny/vue-button": "workspace:~",
"@opentiny/vue-tooltip": "workspace:~"
"@opentiny/vue-tooltip": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -18,7 +18,10 @@
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-tooltip": "workspace:~"
"@opentiny/vue-tooltip": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~",
"@opentiny/vue-dropdown-item": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}
}

View File

@ -20,7 +20,8 @@
"@opentiny/vue-button": "workspace:~",
"@opentiny/vue-button-group": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-icon": "workspace:~"
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-dropdown-menu": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,8 @@
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,8 @@
"dependencies": {
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-button": "workspace:~"
"@opentiny/vue-button": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~"
},
"license": "MIT"
}

View File

@ -19,7 +19,8 @@
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-row": "workspace:~",
"@opentiny/vue-col": "workspace:~"
"@opentiny/vue-col": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -29,7 +29,9 @@
"@opentiny/vue-input": "workspace:~",
"@opentiny/vue-switch": "workspace:~",
"streamsaver": "2.0.6",
"crypto-js": "4.2.0"
"crypto-js": "4.2.0",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~"
},
"license": "MIT"
}
}

View File

@ -8,7 +8,8 @@
"type": "module",
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-icon": "workspace:~"
},
"license": "MIT",
"devDependencies": {

View File

@ -14,7 +14,8 @@
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-tooltip": "workspace:~"
"@opentiny/vue-tooltip": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -14,7 +14,8 @@
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-filter-box": "workspace:~",
"@opentiny/vue-popover": "workspace:~"
"@opentiny/vue-popover": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -10,7 +10,8 @@
"@opentiny/vue-button": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-filter-bar": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-icon": "workspace:~"
},
"license": "MIT",
"devDependencies": {

View File

@ -16,7 +16,8 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,8 @@
"dependencies": {
"@opentiny/vue-tooltip": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-icon": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,9 @@
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-tooltip": "workspace:~"
"@opentiny/vue-tooltip": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}
}

View File

@ -16,7 +16,8 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -28,7 +28,20 @@
"@opentiny/vue-col": "workspace:~",
"@opentiny/vue-alert": "workspace:~",
"@opentiny/vue-dialog-box": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-split": "workspace:~",
"@opentiny/vue-checkbox": "workspace:~",
"@opentiny/vue-radio": "workspace:~",
"@opentiny/vue-checkbox-group": "workspace:~",
"@opentiny/vue-radio-group": "workspace:~",
"@opentiny/vue-search": "workspace:~",
"@opentiny/vue-dropdown": "workspace:~",
"@opentiny/vue-dropdown-menu": "workspace:~",
"@opentiny/vue-dropdown-item": "workspace:~",
"@opentiny/vue-tooltip": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-input": "workspace:~",
"@opentiny/vue-popover": "workspace:~"
},
"license": "MIT"
}

View File

@ -29,7 +29,8 @@
"@opentiny/vue-button": "workspace:~",
"@opentiny/vue-popover": "workspace:~",
"@opentiny/vue-tag": "workspace:~",
"@opentiny/vue-loading": "workspace:~"
"@opentiny/vue-loading": "workspace:~",
"@opentiny/vue-common": "workspace:~"
},
"license": "MIT"
}
}

View File

@ -14,7 +14,8 @@
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"shepherd.js": "11.0.1",
"@floating-ui/dom": "^1.0.10"
"@floating-ui/dom": "^1.0.10",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -21,7 +21,8 @@
"@opentiny/vue-radio": "workspace:~",
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-loading": "workspace:~",
"@opentiny/vue-modal": "workspace:~"
"@opentiny/vue-modal": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,13 @@
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-dropdown": "workspace:~",
"@opentiny/vue-dropdown-menu": "workspace:~",
"@opentiny/vue-dropdown-item": "workspace:~",
"@opentiny/vue-action-sheet": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,8 @@
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-image-viewer": "workspace:~"
"@opentiny/vue-image-viewer": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,8 @@
"dependencies": {
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,8 @@
"dependencies": {
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~"
},
"license": "MIT"
}

View File

@ -19,7 +19,9 @@
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-tooltip": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -17,7 +17,8 @@
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,8 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,8 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -21,7 +21,8 @@
"@opentiny/vue-input": "workspace:~",
"@opentiny/vue-tree": "workspace:~",
"@opentiny/vue-button": "workspace:~",
"@opentiny/vue-dialog-box": "workspace:~"
"@opentiny/vue-dialog-box": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,8 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,8 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~"
},
"license": "MIT"
}

View File

@ -18,7 +18,9 @@
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-locale": "workspace:~"
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~"
},
"license": "MIT"
}

View File

@ -19,7 +19,8 @@
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-popover": "workspace:~",
"@opentiny/vue-locale": "workspace:~"
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,9 @@
},
"dependencies": {
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-locale": "workspace:~"
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-common": "workspace:~"
},
"license": "MIT"
}

View File

@ -16,7 +16,8 @@
},
"dependencies": {
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~"
},
"license": "MIT"
}

View File

@ -18,7 +18,8 @@
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-tooltip": "workspace:~"
"@opentiny/vue-tooltip": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}

View File

@ -18,7 +18,8 @@
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-picker-column": "workspace:~"
"@opentiny/vue-picker-column": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~"
},
"license": "MIT"
}

View File

@ -21,7 +21,10 @@
"@opentiny/vue-checkbox": "workspace:~",
"@opentiny/vue-checkbox-group": "workspace:~",
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-popconfirm": "workspace:~"
"@opentiny/vue-popconfirm": "workspace:~",
"@opentiny/vue-icon": "workspace:~",
"@opentiny/vue-theme-mobile": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
},
"license": "MIT"
}
}

View File

@ -18,7 +18,9 @@
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-locale": "workspace:~",
"@opentiny/vue-month-table": "workspace:~"
"@opentiny/vue-month-table": "workspace:~",
"@opentiny/vue-theme": "workspace:~",
"@opentiny/vue-icon": "workspace:~"
},
"license": "MIT"
}

Some files were not shown because too many files have changed in this diff Show More