quasar-ui-sellmate-ui-kit 3.14.22 → 3.14.24
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/index.common.js +2 -2
- package/dist/index.css +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.min.css +1 -1
- package/dist/index.rtl.css +1 -1
- package/dist/index.rtl.min.css +1 -1
- package/dist/index.umd.js +8 -11
- package/dist/index.umd.min.js +2 -2
- package/package.json +1 -1
- package/src/components/STable.vue +6 -9
package/package.json
CHANGED
|
@@ -282,14 +282,11 @@
|
|
|
282
282
|
handleColumns();
|
|
283
283
|
});
|
|
284
284
|
|
|
285
|
-
watch(
|
|
286
|
-
() =>
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
});
|
|
291
|
-
},
|
|
292
|
-
);
|
|
285
|
+
watch([() => props.rows, () => props.columns], () => {
|
|
286
|
+
nextTick(() => {
|
|
287
|
+
handleColumns();
|
|
288
|
+
});
|
|
289
|
+
});
|
|
293
290
|
|
|
294
291
|
watch(
|
|
295
292
|
() => attrs.selection,
|
|
@@ -509,7 +506,7 @@
|
|
|
509
506
|
tr {
|
|
510
507
|
th.sticky-cell {
|
|
511
508
|
position: sticky;
|
|
512
|
-
z-index:
|
|
509
|
+
z-index: 102;
|
|
513
510
|
background-color: $th-bg;
|
|
514
511
|
}
|
|
515
512
|
td.sticky-cell {
|