@vc-shell/framework 1.0.176 → 1.0.177

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/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [1.0.177](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.176...v1.0.177) (2024-03-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **ui:** vc-breadcrumbs key fix ([192debc](https://github.com/VirtoCommerce/vc-shell/commit/192debc1791beca4e8bd253362584736dfb1de0e))
7
+
8
+
9
+
1
10
  ## [1.0.176](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.175...v1.0.176) (2024-03-07)
2
11
 
3
12
 
package/dist/framework.js CHANGED
@@ -1740,7 +1740,7 @@ const AE = { class: "tw-flex tw-flex-row tw-justify-between tw-items-center tw-r
1740
1740
  setup(n) {
1741
1741
  return (e, t) => e.items && e.items.length ? (V(), J("div", dA, [
1742
1742
  (V(!0), J(je, null, ut(e.items, (r, i) => (V(), Se(fA, Dt({
1743
- key: r.id
1743
+ key: r?.id ?? `item-${i}`
1744
1744
  }, r, {
1745
1745
  current: i === e.items.length - 1
1746
1746
  }), null, 16, ["current"]))), 128))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vc-shell/framework",
3
- "version": "1.0.176",
3
+ "version": "1.0.177",
4
4
  "type": "module",
5
5
  "main": "./dist/framework.js",
6
6
  "types": "./dist/index.d.ts",
@@ -55,9 +55,9 @@
55
55
  "whatwg-fetch": "^3.6.19"
56
56
  },
57
57
  "devDependencies": {
58
- "@vc-shell/api-client-generator": "^1.0.176",
59
- "@vc-shell/config-generator": "^1.0.176",
60
- "@vc-shell/ts-config": "^1.0.176",
58
+ "@vc-shell/api-client-generator": "^1.0.177",
59
+ "@vc-shell/config-generator": "^1.0.177",
60
+ "@vc-shell/ts-config": "^1.0.177",
61
61
  "@vitejs/plugin-vue": "^5.0.3",
62
62
  "sass": "^1.69.6",
63
63
  "typescript": "^5.3.3",
@@ -5,7 +5,7 @@
5
5
  >
6
6
  <VcBreadcrumbsItem
7
7
  v-for="(item, i) in items"
8
- :key="item.id"
8
+ :key="item?.id ?? `item-${i}`"
9
9
  v-bind="item"
10
10
  :current="i === items.length - 1"
11
11
  />