@keenmate/web-grid 1.0.0-rc02 → 1.0.0-rc05

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": "@keenmate/web-grid",
3
- "version": "1.0.0-rc02",
3
+ "version": "1.0.0-rc05",
4
4
  "description": "Framework-agnostic data grid web component with sorting, filtering, inline editing, and keyboard navigation",
5
5
  "type": "module",
6
6
  "main": "./dist/web-grid.umd.js",
@@ -51,13 +51,13 @@
51
51
  --wg-text-color-1: var(--base-text-color-1, #242424);
52
52
  --wg-text-color-2: var(--base-text-color-2, #424242);
53
53
  --wg-text-color-3: var(--base-text-color-3, #707070);
54
- --wg-text-on-accent: var(--base-text-on-accent, #ffffff);
54
+ --wg-text-on-accent: var(--base-text-color-on-accent, #ffffff);
55
55
 
56
56
  /* Background/Surface Colors */
57
- --wg-surface-1: var(--base-surface-1, #ffffff);
58
- --wg-surface-2: var(--base-surface-2, #f5f5f5);
59
- --wg-surface-3: var(--base-surface-3, #ebebeb);
60
- --wg-surface-floating: var(--base-dropdown-bg, var(--base-surface-1, #ffffff));
57
+ --wg-surface-1: var(--base-main-bg, #ffffff);
58
+ --wg-surface-2: var(--base-elevated-bg, #f5f5f5);
59
+ --wg-surface-3: var(--base-hover-bg, #ebebeb);
60
+ --wg-surface-floating: var(--base-dropdown-bg, var(--base-main-bg, #ffffff));
61
61
 
62
62
  /* Border Colors */
63
63
  --wg-border-color: var(--base-border-color, #e0e0e0);
@@ -76,8 +76,8 @@
76
76
  --wg-danger-bg-light: var(--base-danger-bg-light, #fde7e9);
77
77
 
78
78
  /* Hover/Active States */
79
- --wg-hover-bg: var(--base-surface-3, #f0f0f0);
80
- --wg-active-bg: var(--base-surface-3, #e0e0e0);
79
+ --wg-hover-bg: var(--base-hover-bg, #f0f0f0);
80
+ --wg-active-bg: var(--base-hover-bg, #e0e0e0);
81
81
 
82
82
  /* ==========================================================================
83
83
  TYPOGRAPHY
@@ -132,7 +132,7 @@
132
132
  --wg-cell-border: 1px solid var(--wg-border-color);
133
133
  --wg-cell-bg-hover: var(--wg-hover-bg);
134
134
  --wg-cell-bg-editing: var(--wg-surface-1);
135
- --wg-cell-readonly-bg: var(--wg-surface-2);
135
+ --wg-cell-readonly-bg: var(--base-disabled-bg, var(--wg-surface-2));
136
136
 
137
137
  /* ==========================================================================
138
138
  ROW COMPONENT