shared-ritm 1.3.118 → 1.3.120
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/shared-ritm.es.js +2 -2
- package/dist/shared-ritm.umd.js +2 -2
- package/dist/types/common/app-table/controllers/useTableModel.d.ts +1 -0
- package/package.json +1 -1
- package/src/common/app-sidebar/AppSidebar.vue +4 -1
- package/src/common/app-table/controllers/useColumnSelector.ts +1 -1
- package/src/common/app-table/controllers/useTableModel.ts +1 -0
package/dist/shared-ritm.es.js
CHANGED
|
@@ -11510,7 +11510,7 @@ const qC = ["left", "center", "right", "justify"], VC = je({
|
|
|
11510
11510
|
setup(e, { emit: t }) {
|
|
11511
11511
|
const n = t, r = _d(), o = X(!0), a = X(!0), i = X(!1), s = _(() => r.screen.lt.lg), u = _(() => a.value ? "menu" : "close"), l = _(() => s.value ? 250 : 275), c = _(() => s.value ? 47 : 72);
|
|
11512
11512
|
function d(p) {
|
|
11513
|
-
!i.value && !s.value && (a.value = p);
|
|
11513
|
+
!i.value && !s.value && (a.value = p, window.dispatchEvent(new CustomEvent("toggle-sidebar")));
|
|
11514
11514
|
}
|
|
11515
11515
|
function f() {
|
|
11516
11516
|
i.value = !i.value, a.value = !a.value;
|
|
@@ -37419,7 +37419,7 @@ function $M(e, t = []) {
|
|
|
37419
37419
|
type: "checkbox",
|
|
37420
37420
|
model: [...n.value],
|
|
37421
37421
|
items: e.map((i) => ({
|
|
37422
|
-
label: i.label,
|
|
37422
|
+
label: i.checkboxLabel ?? i.label,
|
|
37423
37423
|
value: i.name,
|
|
37424
37424
|
disable: t.includes(i.name)
|
|
37425
37425
|
}))
|