edvoyui-component-library-test-flight 0.0.63 → 0.0.64
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 +1 -1
- package/dist/library-vue-ts.css +1 -1
- package/dist/library-vue-ts.es.js +3 -4
- package/dist/library-vue-ts.umd.js +2 -2
- package/package.json +1 -1
- package/src/components/table/EUIStudentPagination.vue +1 -1
- package/src/components/table/UTable.scss +4 -6
- package/src/components/table/UTable.vue +2 -3
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
i === '…'
|
|
21
21
|
? 'select-none pointer-events-none'
|
|
22
22
|
: currentPage === i
|
|
23
|
-
? 'text-black bg-
|
|
23
|
+
? 'text-black bg-purple-50 ring-2 ring-inset ring-purple-600'
|
|
24
24
|
: 'bg-white text-black',
|
|
25
25
|
]"
|
|
26
26
|
@click="typeof i === 'number' && changePage(i - 1)"
|
|
@@ -6,10 +6,8 @@
|
|
|
6
6
|
linear-gradient(to left, rgba(223, 231, 242, 1), rgba(255, 255, 255, 0)),
|
|
7
7
|
linear-gradient(to top, white, rgba(255, 255, 255, 0)),
|
|
8
8
|
linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(223, 231, 242, 1));
|
|
9
|
-
background-position: left center, right center, left center, right center,
|
|
10
|
-
|
|
11
|
-
background-size: 30px 100%, 30px 100%, 20px 100%, 20px 100%, 100% 100px,
|
|
12
|
-
100% 20px;
|
|
9
|
+
background-position: left center, right center, left center, right center, left bottom, left bottom;
|
|
10
|
+
background-size: 30px 100%, 30px 100%, 20px 100%, 20px 100%, 100% 100px, 100% 20px;
|
|
13
11
|
background-attachment: local, local, scroll, scroll, local, scroll;
|
|
14
12
|
|
|
15
13
|
.table {
|
|
@@ -38,14 +36,14 @@
|
|
|
38
36
|
transition: all 0.15s ease-out;
|
|
39
37
|
@apply bg-purple-50;
|
|
40
38
|
td {
|
|
41
|
-
@apply border-purple-500 border-t first:rounded-l-sm last:rounded-r-sm border-r-gray-200 last:border-r-purple-500 transition-colors duration-100 ease-in
|
|
39
|
+
@apply border-purple-500 border-t first:rounded-l-sm last:rounded-r-sm border-r-gray-200 last:border-r-purple-500 transition-colors duration-100 ease-in text-gray-900 bg-purple-50;
|
|
42
40
|
&:first-of-type.checkable {
|
|
43
41
|
@apply bg-purple-50;
|
|
44
42
|
}
|
|
45
43
|
}
|
|
46
44
|
}
|
|
47
45
|
td {
|
|
48
|
-
@apply relative text-sm text-gray-
|
|
46
|
+
@apply relative text-sm font-medium text-gray-600 border-b border-solid break-words flex items-center border-0 first:border-l border-r border-gray-100 py-1.5 px-3 h-12;
|
|
49
47
|
&:first-of-type.checkable {
|
|
50
48
|
@apply w-[45px] text-center sticky left-0 top-0 z-[11] bg-white;
|
|
51
49
|
}
|
|
@@ -16,11 +16,10 @@
|
|
|
16
16
|
<EUICircleLoader />
|
|
17
17
|
</div>
|
|
18
18
|
</div>
|
|
19
|
-
<div v-else class="relative
|
|
19
|
+
<div v-else class="relative mx-auto overflow-hidden max-w-screen-2xl">
|
|
20
20
|
<div
|
|
21
|
-
id="euitable-comp"
|
|
22
21
|
:class="[
|
|
23
|
-
'ui-table scrollbar--
|
|
22
|
+
'ui-table scrollbar--hide overscroll-none',
|
|
24
23
|
computedItems.length === 0
|
|
25
24
|
? 'overflow-hidden pointer-events-none'
|
|
26
25
|
: 'overflow-auto',
|