@window-splitter/vue 0.8.5 → 1.0.1
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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +27 -0
- package/LICENSE +7 -0
- package/README.md +49 -0
- package/dist/PanelResizer.vue.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -6
- package/src/PanelResizer.vue +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1047,13 +1047,13 @@ function St(e, t) {
|
|
|
1047
1047
|
return [n, d, r];
|
|
1048
1048
|
}
|
|
1049
1049
|
function Ct({ groupId: e, id: t, collapsible: a, collapsed: r }) {
|
|
1050
|
-
|
|
1050
|
+
const l = {
|
|
1051
1051
|
id: t,
|
|
1052
1052
|
"data-splitter-group-id": e,
|
|
1053
1053
|
"data-splitter-type": "panel",
|
|
1054
|
-
"data-splitter-id": t
|
|
1055
|
-
"data-collapsed": a ? r : void 0
|
|
1054
|
+
"data-splitter-id": t
|
|
1056
1055
|
};
|
|
1056
|
+
return a && (l["data-collapsed"] = r), l;
|
|
1057
1057
|
}
|
|
1058
1058
|
function xt({ groupId: e, id: t, orientation: a, isDragging: r, activeDragHandleId: l, disabled: n, controlsId: o, min: i, max: u, currentValue: d, groupSize: c }) {
|
|
1059
1059
|
return {
|
|
@@ -1478,7 +1478,6 @@ const Et = /* @__PURE__ */ ze({
|
|
|
1478
1478
|
};
|
|
1479
1479
|
});
|
|
1480
1480
|
return (g, p) => (Ie(), ye("div", Ee(f.value, {
|
|
1481
|
-
"data-panel-resizer": "",
|
|
1482
1481
|
tabindex: g.disabled ? -1 : 0
|
|
1483
1482
|
}), [
|
|
1484
1483
|
Pe(g.$slots, "default")
|