edvoyui-component-library-test-flight 0.0.123 → 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.
- package/dist/library-vue-ts.cjs.js +69 -23
- package/dist/library-vue-ts.css +1 -1
- package/dist/library-vue-ts.es.js +13320 -9815
- package/dist/library-vue-ts.umd.js +70 -24
- package/package.json +1 -1
- package/src/components/table/UTable.scss +2 -2
- package/src/components/table/UTable.vue +2 -2
package/package.json
CHANGED
|
@@ -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-
|
|
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-
|
|
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-
|
|
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 ?? "") }}
|