aq-fe-framework 0.1.301 → 0.1.302
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.
@@ -7158,7 +7158,7 @@ var days = Object.entries(enum_daysOfWeek).filter(([key]) => isNaN(Number(key)))
|
|
7158
7158
|
function CoreDayOfWeekPicker({ value = [], onChange }) {
|
7159
7159
|
const toggle = (val) => {
|
7160
7160
|
if (!onChange) return;
|
7161
|
-
const newValue = value.includes(val) ? value.filter((v5) => v5 !== val) : [...value, val];
|
7161
|
+
const newValue = value.includes(val) ? value.filter((v5) => v5 !== val) : [...value, val].sort((a5, b4) => a5 - b4);
|
7162
7162
|
onChange(newValue);
|
7163
7163
|
};
|
7164
7164
|
return /* @__PURE__ */ jsx50(MyFlexRow, { align: "center", children: /* @__PURE__ */ jsx50(Group15, { gap: "xs", children: days.map((d5) => /* @__PURE__ */ jsx50(
|
@@ -72,7 +72,7 @@ import {
|
|
72
72
|
useS_BasicAppShell,
|
73
73
|
useS_ButtonImport,
|
74
74
|
utils_layout_getItemsWithoutLinks
|
75
|
-
} from "../chunk-
|
75
|
+
} from "../chunk-EBLXYOGZ.mjs";
|
76
76
|
import "../chunk-NWBLJ3W3.mjs";
|
77
77
|
import "../chunk-K6S7R6LU.mjs";
|
78
78
|
import "../chunk-KKJ3OEEW.mjs";
|