@keenmate/web-grid 1.0.0-rc04 → 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/README.md +9 -1
- package/component-variables.manifest.json +1 -0
- package/dist/grid.d.ts +3 -0
- package/dist/modules/toolbar/index.d.ts +1 -0
- package/dist/types.d.ts +1 -0
- package/dist/web-component.d.ts +2 -0
- package/dist/web-grid.js +677 -633
- package/dist/web-grid.umd.js +45 -45
- package/package.json +1 -1
- package/src/css/_variables.css +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keenmate/web-grid",
|
|
3
|
-
"version": "1.0.0-
|
|
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",
|
package/src/css/_variables.css
CHANGED
|
@@ -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
|