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

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.124",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist/",
@@ -18,7 +18,7 @@
18
18
  @apply sticky top-0 left-0 z-20 before:-bottom-px before:left-0 before:absolute before:h-px before:w-full before:bg-gray-300 rounded-xl;
19
19
  tr {
20
20
  th {
21
- @apply bg-gray-50 text-sm text-gray-600 text-left first-letter:uppercase border border-b-0 border-l-0 border-solid border-gray-200/50 cursor-auto whitespace-nowrap last-of-type:rounded-tr-lg first-of-type:rounded-tl-lg first:border-l last:border-r font-medium snap-start snap-always h-10;
21
+ @apply bg-gray-50 text-sm text-gray-700 text-left first-letter:uppercase border border-b-0 border-l-0 border-solid border-gray-200/50 whitespace-nowrap last-of-type:rounded-tr-lg first-of-type:rounded-tl-lg first:border-l last:border-r font-bold snap-start snap-always h-10;
22
22
  transition: all 0.15s ease-out;
23
23
  &:first-of-type.checkable {
24
24
  @apply min-h-10 px-2 max-w-[45px] w-[45px] sticky left-0 top-0 z-20 bg-gray-100 flex justify-center;
@@ -40,7 +40,7 @@
40
40
  }
41
41
  }
42
42
  td {
43
- @apply border-0 first:border-l border-r relative text-sm font-medium text-gray-600 border-b border-solid break-words border-gray-100 py-1.5 px-3 h-12 align-middle;
43
+ @apply border-0 first:border-l border-r relative text-sm font-medium text-gray-600 border-b border-solid break-words border-gray-100 py-1.5 px-3 h-14 align-middle;
44
44
  &:first-of-type.checkable {
45
45
  @apply flex justify-center w-[45px] text-center sticky left-0 top-0 z-[11] bg-white overflow-visible;
46
46
  }
@@ -58,7 +58,7 @@
58
58
  'snap-start snap-always py-2',
59
59
  header?.sortable
60
60
  ? 'cursor-pointer hover:!text-gray-900 pr-8 pl-3'
61
- : 'px-3',
61
+ : 'px-3 cursor-auto',
62
62
  isScrolled && headerIndex === 0 ? stickyClass.head : null,
63
63
  { '!bg-gray-200': currentSort === header.value },
64
64
  ]"
@@ -71,7 +71,7 @@
71
71
  >
72
72
  <div class="relative z-0 w-full">
73
73
  <div
74
- class="w-full text-sm font-medium text-current truncate font-inter"
74
+ class="w-full text-sm font-bold text-current truncate font-inter"
75
75
  >
76
76
  <slot name="header" :header="header">
77
77
  {{ capitalizeText(header?.text ?? header?.name ?? "") }}
@@ -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