@opentinyvue/vue-breadcrumb-item 2.28.0 → 2.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/pc.js +12 -3
- package/package.json +4 -4
package/lib/pc.js
CHANGED
|
@@ -49,7 +49,10 @@ var render = function render2() {
|
|
|
49
49
|
var _h = _vm.$createElement;
|
|
50
50
|
var _c = _vm._self._c || _h;
|
|
51
51
|
return _c("span", {
|
|
52
|
-
class: ["tiny-breadcrumb__item", _vm.state.size ? "tiny-breadcrumb__item--" + _vm.state.size : ""]
|
|
52
|
+
class: ["tiny-breadcrumb__item", _vm.state.size ? "tiny-breadcrumb__item--" + _vm.state.size : ""],
|
|
53
|
+
attrs: {
|
|
54
|
+
"role": "listitem"
|
|
55
|
+
}
|
|
53
56
|
}, [_c("span", {
|
|
54
57
|
ref: "link",
|
|
55
58
|
class: ["tiny-breadcrumb__inner", _vm.to ? "is-link" : ""],
|
|
@@ -63,9 +66,15 @@ var render = function render2() {
|
|
|
63
66
|
return [_c("span", [_vm._v(_vm._s(_vm.label))])];
|
|
64
67
|
})], 2), _vm.breadcrumb.separatorIcon ? _c(_vm.breadcrumb.separatorIcon, {
|
|
65
68
|
tag: "component",
|
|
66
|
-
staticClass: "tiny-svg-size tiny-breadcrumb__separator-cls"
|
|
69
|
+
staticClass: "tiny-svg-size tiny-breadcrumb__separator-cls",
|
|
70
|
+
attrs: {
|
|
71
|
+
"aria-hidden": "true"
|
|
72
|
+
}
|
|
67
73
|
}) : _c("span", {
|
|
68
|
-
staticClass: "tiny-breadcrumb__separator"
|
|
74
|
+
staticClass: "tiny-breadcrumb__separator",
|
|
75
|
+
attrs: {
|
|
76
|
+
"aria-hidden": "true"
|
|
77
|
+
}
|
|
69
78
|
}, [_vm._v(_vm._s(_vm.state.separator))])], 1);
|
|
70
79
|
};
|
|
71
80
|
var staticRenderFns = [];
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-breadcrumb-item",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.29.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib/index.js",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"type": "module",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
11
|
-
"@opentinyvue/vue-common": "~2.
|
|
12
|
-
"@opentinyvue/vue-theme": "~3.
|
|
10
|
+
"@opentinyvue/vue-renderless": "~3.29.0",
|
|
11
|
+
"@opentinyvue/vue-common": "~2.29.0",
|
|
12
|
+
"@opentinyvue/vue-theme": "~3.29.0"
|
|
13
13
|
},
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"types": "index.d.ts",
|