sync release-3.17.0 to dev (#1777)

* fix(breadcrumb): [breadcrumb] resolve delimiter issued (#1755)

* fix(breadcrumb): [breadcrumb] resolve delimiter issued

* fix(breadcrumb): [breadcrumb] resolve delimiter issued

* feat: update runtime version

---------

Co-authored-by: wuyiping0628 <42107997+wuyiping0628@users.noreply.github.com>
Co-authored-by: zzcr <894103554@qq.com>
This commit is contained in:
Kagol 2024-07-25 17:44:36 +08:00 committed by GitHub
parent c13f676ccc
commit b3477f8f1e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 30 additions and 14 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@opentiny/vue-renderless",
"version": "3.17.4",
"version": "3.17.5",
"private": true,
"description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.",
"author": "OpenTiny Team",

View File

@ -30,7 +30,7 @@ export const renderless = (
const breadcrumb = inject('breadcrumb')
const constants = breadcrumb._constants
// separator
const separator = props.separator || designConfig?.separator || '>'
const separator = breadcrumb.separator || designConfig?.separator || '>'
const state = reactive({
size: inject('size', null),
separator

View File

@ -1,18 +1,34 @@
{
"name": "@opentiny/vue-runtime",
"version": "3.17.0",
"description": "",
"files": [
"dist2",
"dist3"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"type": "module",
"version": "3.17.1",
"description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.",
"author": "OpenTiny Team",
"license": "MIT",
"homepage": "https://opentiny.design/tiny-vue",
"repository": {
"type": "git",
"url": "git@github.com:opentiny/tiny-vue.git"
},
"bugs": {
"url": "https://github.com/opentiny/tiny-vue/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "",
"license": "ISC"
}
"keywords": [
"vue",
"vue3",
"frontend",
"component-library",
"components",
"vue-components",
"opentiny",
"renderless-components",
"headless-components"
],
"files": [
"dist2",
"dist3"
]
}