@alaarab/ogrid-vue 2.5.2 → 2.5.3

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.
@@ -273,6 +273,13 @@
273
273
  contain: none;
274
274
  }
275
275
 
276
+ /* Elevate the td containing the active/editing cell so its outline paints above
277
+ adjacent tds on hovered rows (all tds have position: relative). */
278
+ .ogrid-data-cell:has(> .ogrid-cell-content--active),
279
+ .ogrid-data-cell:has(> .ogrid-editing-cell) {
280
+ z-index: var(--ogrid-z-active-cell, 2);
281
+ }
282
+
276
283
  /* Active cell inside a selection range: suppress outline (Excel behavior).
277
284
  The range overlay border is sufficient; the active cell is distinguished
278
285
  by its white background vs. the dimmed range cells. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alaarab/ogrid-vue",
3
- "version": "2.5.2",
3
+ "version": "2.5.3",
4
4
  "description": "OGrid Vue – Vue 3 composables, headless components, and utilities for OGrid data grids.",
5
5
  "main": "dist/esm/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -36,7 +36,7 @@
36
36
  "node": ">=18"
37
37
  },
38
38
  "dependencies": {
39
- "@alaarab/ogrid-core": "2.5.2"
39
+ "@alaarab/ogrid-core": "2.5.3"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "vue": "^3.3.0"