@stonecrop/atable 0.10.14 → 0.10.16

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": "@stonecrop/atable",
3
- "version": "0.10.14",
3
+ "version": "0.10.16",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "author": {
@@ -35,8 +35,8 @@
35
35
  "dependencies": {
36
36
  "@vueuse/components": "^14.2.1",
37
37
  "@vueuse/core": "^14.2.1",
38
- "@stonecrop/themes": "0.10.14",
39
- "@stonecrop/utilities": "0.10.14"
38
+ "@stonecrop/utilities": "0.10.16",
39
+ "@stonecrop/themes": "0.10.16"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "pinia": "^3.0.4",
@@ -491,7 +491,7 @@ defineExpose({
491
491
  transition: left 0.1s ease-out, width 0.1s ease-out;
492
492
  height: 80%;
493
493
  top: 50%;
494
- z-index: 2;
494
+ z-index: 0;
495
495
  transform: translateY(-50%);
496
496
  }
497
497
 
@@ -594,7 +594,7 @@ defineExpose({
594
594
  opacity: 0;
595
595
  transition: opacity 0.2s ease;
596
596
  cursor: crosshair;
597
- z-index: 15;
597
+ z-index: 2;
598
598
  display: flex;
599
599
  align-items: center;
600
600
  justify-content: center;
@@ -128,7 +128,7 @@ const handleConnectionDelete = (connection: ConnectionPath) => {
128
128
  width: 100%;
129
129
  height: 100%;
130
130
  pointer-events: none;
131
- z-index: 1;
131
+ z-index: 15;
132
132
  }
133
133
 
134
134
  .connection-path {
@@ -233,7 +233,7 @@ const executeAction = (actionType: RowActionType) => {
233
233
  }
234
234
 
235
235
  .atable-row-actions.dropdown-active {
236
- z-index: 500;
236
+ z-index: 101;
237
237
  }
238
238
 
239
239
  .row-actions-icons {
@@ -320,7 +320,7 @@ const executeAction = (actionType: RowActionType) => {
320
320
 
321
321
  .row-actions-menu {
322
322
  position: fixed;
323
- z-index: 9999;
323
+ z-index: 100;
324
324
  min-width: 10rem;
325
325
  padding: 0.25rem 0;
326
326
  background: white;
@@ -365,7 +365,7 @@ defineExpose({
365
365
  .sticky-index {
366
366
  position: sticky;
367
367
  left: 0px;
368
- z-index: 10;
368
+ z-index: 100;
369
369
  order: 0;
370
370
  }
371
371
 
@@ -375,7 +375,7 @@ td.sticky-column,
375
375
  th.sticky-index,
376
376
  td.sticky-index {
377
377
  position: sticky;
378
- z-index: 10;
378
+ z-index: 100;
379
379
  order: 0;
380
380
  background: white;
381
381
  }
@@ -49,6 +49,6 @@ const amodalStyles = computed((): StyleValue => {
49
49
  .amodal {
50
50
  position: absolute;
51
51
  background-color: var(--sc-row-color-zebra-dark);
52
- z-index: 5;
52
+ z-index: 200;
53
53
  }
54
54
  </style>