edvoyui-component-library-test-flight 0.0.121 → 0.0.123

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.
@@ -1,5 +1,5 @@
1
1
  export * from "/Volumes/work/repos/edvoy-ui-v2/src/components/tabs/EUITabs.vue?vue&type=script&setup=true&lang.ts";
2
- import "/Volumes/work/repos/edvoy-ui-v2/src/components/tabs/EUITabs.vue?vue&type=style&index=0&scoped=e35126f7&lang.css";
2
+ import "/Volumes/work/repos/edvoy-ui-v2/src/components/tabs/EUITabs.vue?vue&type=style&index=0&scoped=f9d29e2f&lang.css";
3
3
  declare const _default: any;
4
4
  export default _default;
5
5
  //# sourceMappingURL=EUITabs.vue.d.ts.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "edvoyui-component-library-test-flight",
3
3
  "private": false,
4
- "version": "0.0.121",
4
+ "version": "0.0.123",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist/",
@@ -158,20 +158,20 @@
158
158
  </slot>
159
159
  </button>
160
160
  </div>
161
- <div
162
- :class="[
163
- 'py-2 text-base font-normal text-gray-700 bg-white relative',
164
- contentClass,
165
- {
166
- 'rounded-lg !rounded-tl-none shadow-[0px_-2px_24px_0px_rgba(0,0,0,0.075)] z-20':
167
- tabStyle === 'shadow',
168
- },
169
- ]"
170
- >
171
- <slot name="content" :active-tab="tabs[activeTabIndex]">
172
- {{ tabs[activeTabIndex]?.content }}
173
- </slot>
174
- </div>
161
+ <slot name="content" :active-tab="tabs[activeTabIndex]">
162
+ <div
163
+ :class="[
164
+ 'py-2 text-base font-normal text-gray-700 bg-white relative',
165
+ contentClass,
166
+ {
167
+ 'rounded-lg !rounded-tl-none shadow-[0px_-2px_24px_0px_rgba(0,0,0,0.075)] z-20':
168
+ tabStyle === 'shadow',
169
+ },
170
+ ]"
171
+ >
172
+ {{ tabs[activeTabIndex]?.content }}
173
+ </div>
174
+ </slot>
175
175
  </div>
176
176
  </template>
177
177