@onereach/ui-components-vue2 26.4.1-beta.5879.0 → 26.4.1-beta.5880.0
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.
|
@@ -206,6 +206,8 @@ const DataGridTableContentCell = [
|
|
|
206
206
|
'theme-border-transparent border-1', 'dark:theme-border-transparent-dark', 'theme-outline-transparent outline-2 -outline-offset-1', 'dark:theme-outline-transparent-dark',
|
|
207
207
|
// Theme (focus)
|
|
208
208
|
'focus-within:theme-border-primary', 'dark:focus-within:theme-border-primary-dark', 'focus-within:theme-outline-primary', 'dark:focus-within:theme-outline-primary-dark',
|
|
209
|
+
// Theme (Stacking)
|
|
210
|
+
'relative',
|
|
209
211
|
// Theme (.sticky-start)
|
|
210
212
|
'[&.sticky-start]:theme-background-default [&.sticky-start]:border-e-disabled [&.sticky-start]:border-solid', 'dark:[&.sticky-start]:theme-background-default-dark dark:[&.sticky-start]:border-e-disabled-dark', 'hover:[&.sticky-start]:theme-background-surface-1 dark:hover:[&.sticky-start]:theme-background-surface-1-dark', 'selected:[&.sticky-start]:theme-background-surface-2 dark:selected:[&.sticky-start]:theme-background-surface-2-dark', 'hover:selected:[&.sticky-start]:theme-background-surface-3 dark:hover:selected:[&.sticky-start]:theme-background-surface-3-dark',
|
|
211
213
|
// Theme (.sticky-end)
|
|
@@ -274,6 +276,7 @@ var script$e = defineComponent({
|
|
|
274
276
|
return {
|
|
275
277
|
position: 'sticky',
|
|
276
278
|
insetInlineStart: '0',
|
|
279
|
+
zIndex: '30',
|
|
277
280
|
flexDirection: props.column.alignment === 'end' ? 'row-reverse' : undefined,
|
|
278
281
|
justifyContent: props.column.alignment
|
|
279
282
|
};
|
|
@@ -281,6 +284,7 @@ var script$e = defineComponent({
|
|
|
281
284
|
return {
|
|
282
285
|
position: 'sticky',
|
|
283
286
|
insetInlineEnd: '0',
|
|
287
|
+
zIndex: '30',
|
|
284
288
|
flexDirection: props.column.alignment === 'end' ? 'row-reverse' : undefined,
|
|
285
289
|
justifyContent: props.column.alignment
|
|
286
290
|
};
|
|
@@ -478,6 +482,8 @@ var __vue_component__$t = __vue_component__$s;
|
|
|
478
482
|
const DataGridTableContentRow = [
|
|
479
483
|
// Layout
|
|
480
484
|
'grid grid-cols-[subgrid] col-span-full',
|
|
485
|
+
// Stacking context
|
|
486
|
+
'relative z-[1]',
|
|
481
487
|
// Typography
|
|
482
488
|
'typography-body-2-regular',
|
|
483
489
|
// Theme
|
|
@@ -821,11 +827,11 @@ const DataGridTableHeaderCell = [
|
|
|
821
827
|
// Theme
|
|
822
828
|
'theme-border-transparent border-1', 'dark:theme-border-transparent-dark', 'theme-outline-transparent outline-2 -outline-offset-1', 'dark:theme-outline-transparent-dark',
|
|
823
829
|
// Theme (Stacking)
|
|
824
|
-
'relative
|
|
830
|
+
'relative hover:z-[2]',
|
|
825
831
|
// Theme (.sticky-start)
|
|
826
|
-
'[&.sticky-start]:theme-background-surface-variant-1 [&.sticky-start]:border-e-disabled [&.sticky-start]:border-solid
|
|
832
|
+
'[&.sticky-start]:theme-background-surface-variant-1 [&.sticky-start]:border-e-disabled [&.sticky-start]:border-solid', 'dark:[&.sticky-start]:theme-background-surface-variant-1-dark dark:[&.sticky-start]:border-e-disabled-dark',
|
|
827
833
|
// Theme (.sticky-end)
|
|
828
|
-
'[&.sticky-end]:theme-background-surface-variant-1 [&.sticky-end]:border-s-disabled [&.sticky-end]:border-solid
|
|
834
|
+
'[&.sticky-end]:theme-background-surface-variant-1 [&.sticky-end]:border-s-disabled [&.sticky-end]:border-solid', 'dark:[&.sticky-end]:theme-background-surface-variant-1-dark dark:[&.sticky-end]:border-s-disabled-dark',
|
|
829
835
|
// Theme (.resizable)
|
|
830
836
|
'[&.resizable]:border-e-disabled [&.resizable]:border-solid', 'dark:[&.resizable]:border-e-disabled-dark'];
|
|
831
837
|
const DataGridTableHeaderCellResizeHandle = [
|
|
@@ -892,6 +898,7 @@ var script$8 = defineComponent({
|
|
|
892
898
|
return {
|
|
893
899
|
position: 'sticky',
|
|
894
900
|
insetInlineStart: '0',
|
|
901
|
+
zIndex: '120',
|
|
895
902
|
flexDirection: props.column.alignment === 'end' ? 'row-reverse' : undefined,
|
|
896
903
|
justifyContent: props.column.alignment
|
|
897
904
|
};
|
|
@@ -899,6 +906,7 @@ var script$8 = defineComponent({
|
|
|
899
906
|
return {
|
|
900
907
|
position: 'sticky',
|
|
901
908
|
insetInlineEnd: '0',
|
|
909
|
+
zIndex: '120',
|
|
902
910
|
flexDirection: props.column.alignment === 'end' ? 'row-reverse' : undefined,
|
|
903
911
|
justifyContent: props.column.alignment
|
|
904
912
|
};
|
|
@@ -1066,7 +1074,7 @@ var __vue_component__$h = __vue_component__$g;
|
|
|
1066
1074
|
|
|
1067
1075
|
const DataGridTableHeaderRow = [
|
|
1068
1076
|
// Position
|
|
1069
|
-
'sticky top-0 z-
|
|
1077
|
+
'sticky top-0 z-[110]',
|
|
1070
1078
|
// Layout
|
|
1071
1079
|
'grid grid-cols-[subgrid] col-span-full',
|
|
1072
1080
|
// Typography
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onereach/ui-components-vue2",
|
|
3
|
-
"version": "26.4.1-beta.
|
|
3
|
+
"version": "26.4.1-beta.5880.0",
|
|
4
4
|
"description": "Vue components library for v2",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"@codemirror/view": "^6",
|
|
41
41
|
"@floating-ui/dom": "1.5.3",
|
|
42
42
|
"@lezer/highlight": "*",
|
|
43
|
-
"@onereach/styles": "^26.4.1-beta.
|
|
44
|
-
"@onereach/ui-components-common": "^26.4.1-beta.
|
|
43
|
+
"@onereach/styles": "^26.4.1-beta.5880.0",
|
|
44
|
+
"@onereach/ui-components-common": "^26.4.1-beta.5880.0",
|
|
45
45
|
"@splidejs/splide": "4.0.6",
|
|
46
46
|
"@tiptap/core": "2.27.1",
|
|
47
47
|
"@tiptap/extension-blockquote": "2.27.1",
|