@dxos/lit-grid 0.8.4-main.d05539e30a → 0.8.4-main.d9fc60f731

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/lit-grid",
3
- "version": "0.8.4-main.d05539e30a",
3
+ "version": "0.8.4-main.d9fc60f731",
4
4
  "description": "A grid Web Component using Lit",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -39,7 +39,10 @@
39
39
  "lit": "^3.3.1"
40
40
  },
41
41
  "devDependencies": {
42
- "@dxos/random": "0.8.4-main.d05539e30a",
43
- "@dxos/test-utils": "0.8.4-main.d05539e30a"
42
+ "@dxos/random": "0.8.4-main.d9fc60f731",
43
+ "@dxos/test-utils": "0.8.4-main.d9fc60f731"
44
+ },
45
+ "publishConfig": {
46
+ "access": "public"
44
47
  }
45
48
  }
@@ -25,6 +25,6 @@ dx-grid-axis-resize-handle {
25
25
  outline: none;
26
26
  }
27
27
  &:focus-visible {
28
- background: var(--color-accent-surface);
28
+ background: var(--color-accent-bg);
29
29
  }
30
30
  }
package/src/dx-grid.pcss CHANGED
@@ -75,13 +75,13 @@
75
75
 
76
76
  .dx-grid {
77
77
  --grid-cell-surface: var(--color-grid-surface);
78
- --grid-cell-foreground: var(--color-grid-foreground);
78
+ --grid-cell-fg: var(--color-grid-fg);
79
79
 
80
80
  [role='gridcell'],
81
81
  [role='columnheader'],
82
82
  [role='rowheader'] {
83
83
  background: var(--grid-cell-surface);
84
- color: var(--grid-cell-foreground);
84
+ color: var(--grid-cell-fg);
85
85
  cursor: pointer;
86
86
  position: relative;
87
87
 
@@ -141,7 +141,7 @@
141
141
  [role='rowheader'] {
142
142
  &[aria-selected] {
143
143
  --grid-cell-surface: var(--color-grid-selection-surface);
144
- --grid-cell-foreground: var(--color-grid-selection-foreground);
144
+ --grid-cell-fg: var(--color-grid-selection-fg);
145
145
 
146
146
  &:focus:not([aria-readonly='true']),
147
147
  &:focus-visible,
@@ -196,7 +196,7 @@
196
196
  z-index: 1;
197
197
 
198
198
  background: var(--grid-cell-surface);
199
- color: var(--grid-cell-foreground);
199
+ color: var(--grid-cell-fg);
200
200
  }
201
201
 
202
202
  &:not([aria-readonly='true']) > .dx-grid__cell__content {