tsv2-library 0.2.78 → 0.2.79
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/tsv2-library.es.js
CHANGED
|
@@ -10061,7 +10061,7 @@ const ZJ = {
|
|
|
10061
10061
|
thead: ({ context: e }) => ({
|
|
10062
10062
|
class: [
|
|
10063
10063
|
{
|
|
10064
|
-
"top-0 z-40 sticky": e.scrollable
|
|
10064
|
+
"top-0 z-40 !sticky": e.scrollable
|
|
10065
10065
|
}
|
|
10066
10066
|
]
|
|
10067
10067
|
}),
|
|
@@ -10101,7 +10101,7 @@ const ZJ = {
|
|
|
10101
10101
|
"text-general-800 dark:text-general-800",
|
|
10102
10102
|
"text-xs leading-[16.39px] tracking-[0.02em]",
|
|
10103
10103
|
// Position
|
|
10104
|
-
{ "sticky z-20 border-b": t.frozen || t.frozen === "" },
|
|
10104
|
+
{ "!sticky z-20 border-b": t.frozen || t.frozen === "" },
|
|
10105
10105
|
{ relative: e.resizable },
|
|
10106
10106
|
// Alignment
|
|
10107
10107
|
"text-left",
|
|
@@ -10895,7 +10895,7 @@ const ZJ = {
|
|
|
10895
10895
|
},
|
|
10896
10896
|
rowgroupheader: {
|
|
10897
10897
|
class: [
|
|
10898
|
-
"sticky z-20",
|
|
10898
|
+
"!sticky z-20",
|
|
10899
10899
|
"bg-surface-0 text-surface-600 dark:text-white/70",
|
|
10900
10900
|
"dark:bg-surface-800"
|
|
10901
10901
|
]
|
package/package.json
CHANGED
|
@@ -77,7 +77,7 @@ export default {
|
|
|
77
77
|
thead: ({ context }) => ({
|
|
78
78
|
class: [
|
|
79
79
|
{
|
|
80
|
-
'top-0 z-40 sticky': context.scrollable,
|
|
80
|
+
'top-0 z-40 !sticky': context.scrollable,
|
|
81
81
|
},
|
|
82
82
|
],
|
|
83
83
|
}),
|
|
@@ -121,7 +121,7 @@ export default {
|
|
|
121
121
|
'text-xs leading-[16.39px] tracking-[0.02em]',
|
|
122
122
|
|
|
123
123
|
// Position
|
|
124
|
-
{ 'sticky z-20 border-b': props.frozen || props.frozen === '' },
|
|
124
|
+
{ '!sticky z-20 border-b': props.frozen || props.frozen === '' },
|
|
125
125
|
{ relative: context.resizable },
|
|
126
126
|
|
|
127
127
|
// Alignment
|
|
@@ -1105,7 +1105,7 @@ export default {
|
|
|
1105
1105
|
},
|
|
1106
1106
|
rowgroupheader: {
|
|
1107
1107
|
class: [
|
|
1108
|
-
'sticky z-20',
|
|
1108
|
+
'!sticky z-20',
|
|
1109
1109
|
'bg-surface-0 text-surface-600 dark:text-white/70',
|
|
1110
1110
|
'dark:bg-surface-800',
|
|
1111
1111
|
],
|