edvoyui-component-library-test-flight 0.0.101 → 0.0.102
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/library-vue-ts.cjs.js +5 -5
- package/dist/library-vue-ts.css +1 -1
- package/dist/library-vue-ts.es.js +504 -506
- package/dist/library-vue-ts.umd.js +7 -7
- package/dist/tabs/EUITabs.vue.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/table/UTable.vue +2 -2
- package/src/components/tabs/EUITabs.vue +1 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "/Users/rajmohan/Documents/Workspace/edvoy-ui-v2/src/components/tabs/EUITabs.vue?vue&type=script&setup=true&lang.ts";
|
|
2
|
-
import "/Users/rajmohan/Documents/Workspace/edvoy-ui-v2/src/components/tabs/EUITabs.vue?vue&type=style&index=0&scoped=
|
|
2
|
+
import "/Users/rajmohan/Documents/Workspace/edvoy-ui-v2/src/components/tabs/EUITabs.vue?vue&type=style&index=0&scoped=9b4681af&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
|
@@ -33,7 +33,6 @@
|
|
|
33
33
|
<table>
|
|
34
34
|
<thead>
|
|
35
35
|
<tr>
|
|
36
|
-
|
|
37
36
|
<th
|
|
38
37
|
v-if="checkable"
|
|
39
38
|
class="checkable"
|
|
@@ -60,8 +59,9 @@
|
|
|
60
59
|
header?.sortable ? 'cursor-pointer hover:!text-gray-900 pr-8 pl-3': 'px-3',
|
|
61
60
|
isScrolled && headerIndex === 0 ? stickyClass.head : null,
|
|
62
61
|
{ '!bg-gray-200': currentSort === header.value },
|
|
62
|
+
|
|
63
63
|
]"
|
|
64
|
-
:style="headerStyle(header)"
|
|
64
|
+
:style="headers.length > 6 ? headerStyle(header) : 'width: 100%;min-width: 250px;background-color: rgb(243 244 246);'"
|
|
65
65
|
@click="sortBy(header, $event)"
|
|
66
66
|
>
|
|
67
67
|
<div class="relative z-0 w-full">
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div>
|
|
3
|
-
|
|
4
|
-
<div
|
|
3
|
+
<div
|
|
5
4
|
v-if="tabStyle === 'design'"
|
|
6
5
|
class="flex flex-row items-center justify-between w-full p-2 bg-gray-100 rounded-xl"
|
|
7
6
|
>
|
|
@@ -92,7 +91,6 @@
|
|
|
92
91
|
</slot>
|
|
93
92
|
</button>
|
|
94
93
|
</div>
|
|
95
|
-
</div>
|
|
96
94
|
<div :class="['py-2 text-base font-normal text-gray-700', contentClass]">
|
|
97
95
|
<slot name="content" :active-tab="tabs[activeTabIndex]">
|
|
98
96
|
{{ tabs[activeTabIndex]?.content }}
|