@oicl/openbridge-webcomponents-svelte 2.0.0-next.51 → 2.0.0-next.53

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.
@@ -65,16 +65,16 @@ hasAddNewTab?: boolean
65
65
  ontab-closed={onTabClosed}
66
66
  onadd-new-tab={onAddNewTab} >
67
67
 
68
- {#if tabs && tabIcon}
69
- {#each tabs as item}
68
+ {#if props.tabs && tabIcon}
69
+ {#each props.tabs as item}
70
70
  <div slot="tab-{item.id}-icon">
71
71
  {@render tabIcon(item)}
72
72
  </div>
73
73
  {/each}
74
74
  {/if}
75
75
 
76
- {#if tabs && tabBadgeIcon}
77
- {#each tabs as item}
76
+ {#if props.tabs && tabBadgeIcon}
77
+ {#each props.tabs as item}
78
78
  <div slot="tab-{item.id}-badge-icon">
79
79
  {@render tabBadgeIcon(item)}
80
80
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oicl/openbridge-webcomponents-svelte",
3
- "version": "2.0.0-next.51",
3
+ "version": "2.0.0-next.53",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run prepack",
@@ -31,7 +31,7 @@
31
31
  }
32
32
  },
33
33
  "dependencies": {
34
- "@oicl/openbridge-webcomponents": "^2.0.0-next.50"
34
+ "@oicl/openbridge-webcomponents": "^2.0.0-next.52"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "svelte": "^5.0.0"