lew-ui 2.6.35 → 2.6.36
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.mjs +3 -1
- package/dist/index.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -22501,7 +22501,9 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
22501
22501
|
class: normalizeClass(["lew-table lew-scrollbar", {
|
|
22502
22502
|
"lew-table-bordered": _ctx.bordered,
|
|
22503
22503
|
"lew-table-scroll": unref(state).isScroll,
|
|
22504
|
-
"lew-table-dragging": unref(state).isDragging
|
|
22504
|
+
"lew-table-dragging": unref(state).isDragging,
|
|
22505
|
+
"lew-table-has-fixed-left": unref(getFixedColumns)("left").length > 0 || _ctx.checkable || _ctx.sortable,
|
|
22506
|
+
"lew-table-has-fixed-right": unref(getFixedColumns)("right").length > 0
|
|
22505
22507
|
}]),
|
|
22506
22508
|
style: normalizeStyle(`max-height: ${unref(any2px)(_ctx.maxHeight)}`),
|
|
22507
22509
|
onScroll: updateScrollState,
|