@visns-studio/visns-components 5.13.1 → 5.13.2
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/package.json
CHANGED
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
88
88
|
},
|
|
89
89
|
"name": "@visns-studio/visns-components",
|
|
90
|
-
"version": "5.13.
|
|
90
|
+
"version": "5.13.2",
|
|
91
91
|
"description": "Various packages to assist in the development of our Custom Applications.",
|
|
92
92
|
"main": "src/index.js",
|
|
93
93
|
"files": [
|
|
@@ -87,7 +87,6 @@ function Breadcrumb({ data, page }) {
|
|
|
87
87
|
>
|
|
88
88
|
{parse(nestedData)}
|
|
89
89
|
</Link>
|
|
90
|
-
<ChevronRight strokeWidth={2} size={18} />
|
|
91
90
|
</>
|
|
92
91
|
) : (
|
|
93
92
|
page &&
|
|
@@ -102,13 +101,13 @@ function Breadcrumb({ data, page }) {
|
|
|
102
101
|
>
|
|
103
102
|
{parse(page.title)}
|
|
104
103
|
</Link>
|
|
105
|
-
<ChevronRight strokeWidth={2} size={18} />
|
|
106
104
|
</>
|
|
107
105
|
)
|
|
108
106
|
)}
|
|
109
107
|
|
|
110
108
|
{page.titleKey && data && (
|
|
111
109
|
<>
|
|
110
|
+
<ChevronRight strokeWidth={2} size={18} />
|
|
112
111
|
{Array.isArray(page.titleKey) ? (
|
|
113
112
|
<>
|
|
114
113
|
{page.titleText && (
|