lkt-tabs 2.0.3 → 2.0.4

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/dist/build.js CHANGED
@@ -158,7 +158,8 @@ const X = (e, t, s) => {
158
158
  }), {
159
159
  menuKey: `tabs-menu-${s.id}`,
160
160
  type: j.TabList,
161
- modelValue: n
161
+ modelValue: n,
162
+ renderOutside: !1
162
163
  };
163
164
  });
164
165
  return I(() => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lkt-tabs",
3
3
  "type": "module",
4
- "version": "2.0.3",
4
+ "version": "2.0.4",
5
5
  "description": "",
6
6
  "sideEffects": false,
7
7
  "module": "./dist/build.js",
@@ -107,6 +107,7 @@ const computedMenuConfig = computed(() => {
107
107
  menuKey: `tabs-menu-${props.id}`,
108
108
  type: MenuType.TabList,
109
109
  modelValue,
110
+ renderOutside: false,
110
111
  }
111
112
  })
112
113