@stonecrop/atable 0.10.13 → 0.10.15
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/dist/assets/index.css +1 -1
- package/dist/atable.js +5 -5
- package/dist/atable.js.map +1 -1
- package/package.json +3 -3
- package/src/components/AGanttCell.vue +2 -2
- package/src/components/AGanttConnection.vue +1 -1
- package/src/components/ARowActions.vue +2 -2
- package/src/components/ATable.vue +2 -2
- package/src/components/ATableModal.vue +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stonecrop/atable",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.15",
|
|
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.
|
|
39
|
-
"@stonecrop/utilities": "0.10.
|
|
38
|
+
"@stonecrop/themes": "0.10.15",
|
|
39
|
+
"@stonecrop/utilities": "0.10.15"
|
|
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:
|
|
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:
|
|
597
|
+
z-index: 2;
|
|
598
598
|
display: flex;
|
|
599
599
|
align-items: center;
|
|
600
600
|
justify-content: center;
|
|
@@ -233,7 +233,7 @@ const executeAction = (actionType: RowActionType) => {
|
|
|
233
233
|
}
|
|
234
234
|
|
|
235
235
|
.atable-row-actions.dropdown-active {
|
|
236
|
-
z-index:
|
|
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:
|
|
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:
|
|
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:
|
|
378
|
+
z-index: 100;
|
|
379
379
|
order: 0;
|
|
380
380
|
background: white;
|
|
381
381
|
}
|