@freedom-code-compliance/fcc-redesign 0.1.29 → 0.1.31
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.cjs +1 -1
- package/dist/index.js +224 -118
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -857,36 +857,140 @@ function Le({ open: e, onClose: t, title: n, header: r, children: a, loading: s
|
|
|
857
857
|
}), j);
|
|
858
858
|
}
|
|
859
859
|
//#endregion
|
|
860
|
+
//#region src/components/ui/FCCFullPagePanel.jsx
|
|
861
|
+
var Re = 220;
|
|
862
|
+
function ze({ open: e, onClose: t, children: n, className: r = "", closeOnEscape: i = !0, lockScroll: a = !0 }) {
|
|
863
|
+
let [s, c] = u(e ? "open" : "closed"), l = e || s !== "closed";
|
|
864
|
+
return o(() => {
|
|
865
|
+
if (a) return l ? document.body.style.overflow = "hidden" : document.body.style.overflow = "", () => {
|
|
866
|
+
document.body.style.overflow = "";
|
|
867
|
+
};
|
|
868
|
+
}, [a, l]), o(() => {
|
|
869
|
+
if (!i) return;
|
|
870
|
+
function e(e) {
|
|
871
|
+
e.key === "Escape" && t?.();
|
|
872
|
+
}
|
|
873
|
+
return l && document.addEventListener("keydown", e), () => document.removeEventListener("keydown", e);
|
|
874
|
+
}, [
|
|
875
|
+
i,
|
|
876
|
+
l,
|
|
877
|
+
t
|
|
878
|
+
]), o(() => {
|
|
879
|
+
if (e) {
|
|
880
|
+
let e = requestAnimationFrame(() => c("open"));
|
|
881
|
+
return () => cancelAnimationFrame(e);
|
|
882
|
+
}
|
|
883
|
+
if (s === "closed") return;
|
|
884
|
+
let t = requestAnimationFrame(() => c("closing")), n = window.setTimeout(() => c("closed"), Re);
|
|
885
|
+
return () => {
|
|
886
|
+
cancelAnimationFrame(t), window.clearTimeout(n);
|
|
887
|
+
};
|
|
888
|
+
}, [e, s]), !l || typeof document > "u" ? null : V(/* @__PURE__ */ z("div", {
|
|
889
|
+
className: `fcc-fpp-overlay ${r}`,
|
|
890
|
+
"data-state": s,
|
|
891
|
+
role: "dialog",
|
|
892
|
+
"aria-modal": "true",
|
|
893
|
+
children: /* @__PURE__ */ z("div", {
|
|
894
|
+
className: "fcc-fpp",
|
|
895
|
+
children: n
|
|
896
|
+
})
|
|
897
|
+
}), document.body);
|
|
898
|
+
}
|
|
899
|
+
function Be({ title: e, subtitle: t, eyebrow: n, leading: r, actions: i, onClose: a, className: o = "" }) {
|
|
900
|
+
return /* @__PURE__ */ B("div", {
|
|
901
|
+
className: `fcc-fpp-header ${o}`,
|
|
902
|
+
children: [/* @__PURE__ */ B("div", {
|
|
903
|
+
className: "fcc-fpp-header-lead",
|
|
904
|
+
children: [r, /* @__PURE__ */ B("div", {
|
|
905
|
+
className: "fcc-fpp-header-titles",
|
|
906
|
+
children: [
|
|
907
|
+
n && /* @__PURE__ */ z("span", {
|
|
908
|
+
className: "fcc-fpp-eyebrow",
|
|
909
|
+
children: n
|
|
910
|
+
}),
|
|
911
|
+
e && /* @__PURE__ */ z("h2", {
|
|
912
|
+
className: "fcc-fpp-title",
|
|
913
|
+
children: e
|
|
914
|
+
}),
|
|
915
|
+
t && /* @__PURE__ */ z("p", {
|
|
916
|
+
className: "fcc-fpp-subtitle",
|
|
917
|
+
children: t
|
|
918
|
+
})
|
|
919
|
+
]
|
|
920
|
+
})]
|
|
921
|
+
}), /* @__PURE__ */ B("div", {
|
|
922
|
+
className: "fcc-fpp-header-actions",
|
|
923
|
+
children: [i, a && /* @__PURE__ */ z("button", {
|
|
924
|
+
type: "button",
|
|
925
|
+
className: "btn btn-ghost btn-icon btn-sm",
|
|
926
|
+
onClick: a,
|
|
927
|
+
"aria-label": "Close panel",
|
|
928
|
+
children: /* @__PURE__ */ z(L, { size: 16 })
|
|
929
|
+
})]
|
|
930
|
+
})]
|
|
931
|
+
});
|
|
932
|
+
}
|
|
933
|
+
function Ve({ children: e, className: t = "" }) {
|
|
934
|
+
return /* @__PURE__ */ z("div", {
|
|
935
|
+
className: `fcc-fpp-toolbar ${t}`,
|
|
936
|
+
children: e
|
|
937
|
+
});
|
|
938
|
+
}
|
|
939
|
+
function He({ children: e, className: t = "" }) {
|
|
940
|
+
return /* @__PURE__ */ z("div", {
|
|
941
|
+
className: `fcc-fpp-body ${t}`,
|
|
942
|
+
children: e
|
|
943
|
+
});
|
|
944
|
+
}
|
|
945
|
+
function Ue({ children: e, className: t = "" }) {
|
|
946
|
+
return /* @__PURE__ */ z("div", {
|
|
947
|
+
className: `fcc-fpp-main ${t}`,
|
|
948
|
+
children: e
|
|
949
|
+
});
|
|
950
|
+
}
|
|
951
|
+
function We({ children: e, side: t = "right", className: n = "" }) {
|
|
952
|
+
return /* @__PURE__ */ z("aside", {
|
|
953
|
+
className: `fcc-fpp-sidebar fcc-fpp-sidebar-${t} ${n}`,
|
|
954
|
+
children: e
|
|
955
|
+
});
|
|
956
|
+
}
|
|
957
|
+
function Ge({ children: e, className: t = "" }) {
|
|
958
|
+
return /* @__PURE__ */ z("div", {
|
|
959
|
+
className: `fcc-fpp-footer ${t}`,
|
|
960
|
+
children: e
|
|
961
|
+
});
|
|
962
|
+
}
|
|
963
|
+
//#endregion
|
|
860
964
|
//#region src/components/ui/Accordion.jsx
|
|
861
|
-
function
|
|
862
|
-
let [
|
|
965
|
+
function Ke({ title: e, header: t, defaultOpen: n = !1, className: r = "", contentClassName: i = "", children: a }) {
|
|
966
|
+
let [o, s] = u(n);
|
|
863
967
|
return /* @__PURE__ */ B("div", {
|
|
864
968
|
className: `accordion-item ${r}`,
|
|
865
969
|
children: [/* @__PURE__ */ B("div", {
|
|
866
|
-
className: `accordion-trigger ${
|
|
867
|
-
onClick: () =>
|
|
970
|
+
className: `accordion-trigger ${o ? "expanded" : ""}`,
|
|
971
|
+
onClick: () => s(!o),
|
|
868
972
|
role: "button",
|
|
869
|
-
"aria-expanded":
|
|
973
|
+
"aria-expanded": o,
|
|
870
974
|
children: [t || /* @__PURE__ */ z("span", {
|
|
871
975
|
className: "accordion-trigger-title",
|
|
872
976
|
children: e
|
|
873
977
|
}), /* @__PURE__ */ z("span", {
|
|
874
978
|
className: "accordion-trigger-chevron",
|
|
875
|
-
children: z(
|
|
979
|
+
children: z(o ? v : y, { size: 14 })
|
|
876
980
|
})]
|
|
877
981
|
}), /* @__PURE__ */ z("div", {
|
|
878
|
-
className: `accordion-collapse ${
|
|
982
|
+
className: `accordion-collapse ${o ? "open" : ""}`,
|
|
879
983
|
children: /* @__PURE__ */ z("div", {
|
|
880
984
|
className: "accordion-collapse-inner",
|
|
881
985
|
children: /* @__PURE__ */ z("div", {
|
|
882
|
-
className:
|
|
883
|
-
children:
|
|
986
|
+
className: `accordion-content ${i}`.trim(),
|
|
987
|
+
children: a
|
|
884
988
|
})
|
|
885
989
|
})
|
|
886
990
|
})]
|
|
887
991
|
});
|
|
888
992
|
}
|
|
889
|
-
function
|
|
993
|
+
function qe({ items: e = [], className: t = "" }) {
|
|
890
994
|
let [n, r] = u(/* @__PURE__ */ new Set());
|
|
891
995
|
function i(e) {
|
|
892
996
|
r((t) => {
|
|
@@ -928,12 +1032,12 @@ function ze({ items: e = [], className: t = "" }) {
|
|
|
928
1032
|
}
|
|
929
1033
|
//#endregion
|
|
930
1034
|
//#region src/components/ui/Avatar.jsx
|
|
931
|
-
var
|
|
1035
|
+
var Je = {
|
|
932
1036
|
sm: "avatar-sm",
|
|
933
1037
|
md: "",
|
|
934
1038
|
lg: "avatar-lg",
|
|
935
1039
|
xl: "avatar-xl"
|
|
936
|
-
},
|
|
1040
|
+
}, Ye = [
|
|
937
1041
|
"#5e6ad2",
|
|
938
1042
|
"#5bb98e",
|
|
939
1043
|
"#c9a84e",
|
|
@@ -942,13 +1046,13 @@ var Be = {
|
|
|
942
1046
|
"#5a8ebf",
|
|
943
1047
|
"#c4a06a"
|
|
944
1048
|
];
|
|
945
|
-
function
|
|
1049
|
+
function Xe(e) {
|
|
946
1050
|
let t = 0;
|
|
947
1051
|
for (let n = 0; n < e.length; n++) t = e.charCodeAt(n) + ((t << 5) - t);
|
|
948
|
-
return
|
|
1052
|
+
return Ye[Math.abs(t) % Ye.length];
|
|
949
1053
|
}
|
|
950
1054
|
function J({ imageUrl: e, initials: t, name: n, size: r = "md", className: i = "", style: a = {} }) {
|
|
951
|
-
let [o, s] = u(!1), c = t || (n ? n.split(" ").map((e) => e[0]).join("").slice(0, 2).toUpperCase() : "?"), l = a.background ||
|
|
1055
|
+
let [o, s] = u(!1), c = t || (n ? n.split(" ").map((e) => e[0]).join("").slice(0, 2).toUpperCase() : "?"), l = a.background || Xe(c), d = Je[r] || "";
|
|
952
1056
|
return e && !o ? /* @__PURE__ */ z("img", {
|
|
953
1057
|
src: e,
|
|
954
1058
|
alt: n || "",
|
|
@@ -993,7 +1097,7 @@ function X({ variant: e = "default", className: t = "", children: n, showDot: r
|
|
|
993
1097
|
}
|
|
994
1098
|
//#endregion
|
|
995
1099
|
//#region src/components/ui/Button.jsx
|
|
996
|
-
var
|
|
1100
|
+
var Ze = {
|
|
997
1101
|
default: "btn-primary",
|
|
998
1102
|
destructive: "btn-danger",
|
|
999
1103
|
success: "btn-success",
|
|
@@ -1002,76 +1106,76 @@ var Ue = {
|
|
|
1002
1106
|
secondary: "btn-secondary",
|
|
1003
1107
|
ghost: "btn-ghost",
|
|
1004
1108
|
link: "btn-link"
|
|
1005
|
-
},
|
|
1109
|
+
}, Qe = {
|
|
1006
1110
|
sm: "btn-sm",
|
|
1007
1111
|
default: "",
|
|
1008
1112
|
lg: "btn-lg",
|
|
1009
1113
|
icon: "btn-icon"
|
|
1010
|
-
},
|
|
1114
|
+
}, $e = n(function({ variant: e = "default", size: t = "default", className: n = "", children: r, ...i }, a) {
|
|
1011
1115
|
return /* @__PURE__ */ z("button", {
|
|
1012
1116
|
ref: a,
|
|
1013
1117
|
className: [
|
|
1014
1118
|
"btn",
|
|
1015
|
-
|
|
1016
|
-
|
|
1119
|
+
Ze[e],
|
|
1120
|
+
Qe[t],
|
|
1017
1121
|
n
|
|
1018
1122
|
].filter(Boolean).join(" "),
|
|
1019
1123
|
...i,
|
|
1020
1124
|
children: r
|
|
1021
1125
|
});
|
|
1022
|
-
}),
|
|
1126
|
+
}), et = {
|
|
1023
1127
|
default: "card-default",
|
|
1024
1128
|
green: "card-green",
|
|
1025
1129
|
red: "card-red",
|
|
1026
1130
|
yellow: "card-yellow"
|
|
1027
|
-
},
|
|
1131
|
+
}, tt = n(function({ variant: e = "default", className: t = "", children: n, ...r }, i) {
|
|
1028
1132
|
return /* @__PURE__ */ z("div", {
|
|
1029
1133
|
ref: i,
|
|
1030
1134
|
className: [
|
|
1031
1135
|
"card",
|
|
1032
|
-
|
|
1136
|
+
et[e],
|
|
1033
1137
|
t
|
|
1034
1138
|
].filter(Boolean).join(" "),
|
|
1035
1139
|
...r,
|
|
1036
1140
|
children: n
|
|
1037
1141
|
});
|
|
1038
|
-
}),
|
|
1142
|
+
}), nt = n(function({ className: e = "", children: t, ...n }, r) {
|
|
1039
1143
|
return /* @__PURE__ */ z("div", {
|
|
1040
1144
|
ref: r,
|
|
1041
1145
|
className: `card-header ${e}`,
|
|
1042
1146
|
...n,
|
|
1043
1147
|
children: t
|
|
1044
1148
|
});
|
|
1045
|
-
}),
|
|
1149
|
+
}), rt = n(function({ className: e = "", children: t, ...n }, r) {
|
|
1046
1150
|
return /* @__PURE__ */ z("h3", {
|
|
1047
1151
|
ref: r,
|
|
1048
1152
|
className: `card-title ${e}`,
|
|
1049
1153
|
...n,
|
|
1050
1154
|
children: t
|
|
1051
1155
|
});
|
|
1052
|
-
}),
|
|
1156
|
+
}), it = n(function({ className: e = "", children: t, ...n }, r) {
|
|
1053
1157
|
return /* @__PURE__ */ z("p", {
|
|
1054
1158
|
ref: r,
|
|
1055
1159
|
className: `card-description ${e}`,
|
|
1056
1160
|
...n,
|
|
1057
1161
|
children: t
|
|
1058
1162
|
});
|
|
1059
|
-
}),
|
|
1163
|
+
}), at = n(function({ className: e = "", children: t, ...n }, r) {
|
|
1060
1164
|
return /* @__PURE__ */ z("div", {
|
|
1061
1165
|
ref: r,
|
|
1062
1166
|
className: `card-body ${e}`,
|
|
1063
1167
|
...n,
|
|
1064
1168
|
children: t
|
|
1065
1169
|
});
|
|
1066
|
-
}),
|
|
1170
|
+
}), ot = n(function({ className: e = "", children: t, ...n }, r) {
|
|
1067
1171
|
return /* @__PURE__ */ z("div", {
|
|
1068
1172
|
ref: r,
|
|
1069
1173
|
className: `card-footer ${e}`,
|
|
1070
1174
|
...n,
|
|
1071
1175
|
children: t
|
|
1072
1176
|
});
|
|
1073
|
-
}),
|
|
1074
|
-
function
|
|
1177
|
+
}), st = 220;
|
|
1178
|
+
function ct({ open: e, onClose: t, children: n, className: r = "", overlayClassName: i = "", contained: a = !1 }) {
|
|
1075
1179
|
let s = l(null), [c, d] = u(e ? "open" : "closed"), f = e || c !== "closed";
|
|
1076
1180
|
return o(() => {
|
|
1077
1181
|
if (!a) return f ? document.body.style.overflow = "hidden" : document.body.style.overflow = "", () => {
|
|
@@ -1088,7 +1192,7 @@ function et({ open: e, onClose: t, children: n, className: r = "", overlayClassN
|
|
|
1088
1192
|
return () => cancelAnimationFrame(e);
|
|
1089
1193
|
}
|
|
1090
1194
|
if (c === "closed") return;
|
|
1091
|
-
let t = requestAnimationFrame(() => d("closing")), n = window.setTimeout(() => d("closed"),
|
|
1195
|
+
let t = requestAnimationFrame(() => d("closing")), n = window.setTimeout(() => d("closed"), st);
|
|
1092
1196
|
return () => {
|
|
1093
1197
|
cancelAnimationFrame(t), window.clearTimeout(n);
|
|
1094
1198
|
};
|
|
@@ -1105,7 +1209,7 @@ function et({ open: e, onClose: t, children: n, className: r = "", overlayClassN
|
|
|
1105
1209
|
})
|
|
1106
1210
|
}) : null;
|
|
1107
1211
|
}
|
|
1108
|
-
function
|
|
1212
|
+
function lt({ children: e, onClose: t, className: n = "" }) {
|
|
1109
1213
|
return /* @__PURE__ */ B("div", {
|
|
1110
1214
|
className: `dialog-header ${n}`,
|
|
1111
1215
|
children: [/* @__PURE__ */ z("div", {
|
|
@@ -1118,25 +1222,25 @@ function tt({ children: e, onClose: t, className: n = "" }) {
|
|
|
1118
1222
|
})]
|
|
1119
1223
|
});
|
|
1120
1224
|
}
|
|
1121
|
-
function
|
|
1225
|
+
function ut({ children: e, className: t = "" }) {
|
|
1122
1226
|
return /* @__PURE__ */ z("h3", {
|
|
1123
1227
|
className: `dialog-title ${t}`,
|
|
1124
1228
|
children: e
|
|
1125
1229
|
});
|
|
1126
1230
|
}
|
|
1127
|
-
function
|
|
1231
|
+
function dt({ children: e, className: t = "" }) {
|
|
1128
1232
|
return /* @__PURE__ */ z("p", {
|
|
1129
1233
|
className: `dialog-description ${t}`,
|
|
1130
1234
|
children: e
|
|
1131
1235
|
});
|
|
1132
1236
|
}
|
|
1133
|
-
function
|
|
1237
|
+
function ft({ children: e, className: t = "" }) {
|
|
1134
1238
|
return /* @__PURE__ */ z("div", {
|
|
1135
1239
|
className: `dialog-body ${t}`,
|
|
1136
1240
|
children: e
|
|
1137
1241
|
});
|
|
1138
1242
|
}
|
|
1139
|
-
function
|
|
1243
|
+
function pt({ children: e, className: t = "" }) {
|
|
1140
1244
|
return /* @__PURE__ */ z("div", {
|
|
1141
1245
|
className: `dialog-footer ${t}`,
|
|
1142
1246
|
children: e
|
|
@@ -1144,7 +1248,7 @@ function at({ children: e, className: t = "" }) {
|
|
|
1144
1248
|
}
|
|
1145
1249
|
//#endregion
|
|
1146
1250
|
//#region src/components/ui/Input.jsx
|
|
1147
|
-
var
|
|
1251
|
+
var mt = n(function({ id: e, label: t, labelMode: n = "stacked", description: r, error: i, clearable: a = !1, startIcon: o, endIcon: c, placeholder: d, value: f, defaultValue: p, className: m = "", inputClassName: h = "", disabled: g = !1, type: _ = "text", "aria-describedby": v, "aria-invalid": y, onChange: b, ...x }, S) {
|
|
1148
1252
|
let C = l(null), w = s(), T = e || w, E = i && i !== !0 ? i : r, D = E ? `${T}-helper` : void 0, O = !!(i || y), k = !!(t && n === "floating"), A = [v, D].filter(Boolean).join(" ") || void 0, j = k ? " " : d, M = f !== void 0, [N, P] = u(() => String(p ?? "")), F = a && !g && (M ? String(f ?? "") : N).length > 0;
|
|
1149
1253
|
function I(e) {
|
|
1150
1254
|
C.current = e, typeof S == "function" ? S(e) : S && (S.current = e);
|
|
@@ -1238,7 +1342,7 @@ var ot = n(function({ id: e, label: t, labelMode: n = "stacked", description: r,
|
|
|
1238
1342
|
});
|
|
1239
1343
|
//#endregion
|
|
1240
1344
|
//#region src/components/ui/DropdownMenu.jsx
|
|
1241
|
-
function
|
|
1345
|
+
function ht({ trigger: e, children: t, align: n = "left", className: r = "", sideOffset: i = 6, onOpenChange: a }) {
|
|
1242
1346
|
let [s, d] = u(!1), [f, p] = u(null), m = l(null), h = l(null);
|
|
1243
1347
|
return o(() => {
|
|
1244
1348
|
a?.(s);
|
|
@@ -1291,7 +1395,7 @@ function st({ trigger: e, children: t, align: n = "left", className: r = "", sid
|
|
|
1291
1395
|
}), document.body)]
|
|
1292
1396
|
});
|
|
1293
1397
|
}
|
|
1294
|
-
function
|
|
1398
|
+
function gt({ icon: e, children: t, shortcut: n, active: r, onClick: i, className: a = "" }) {
|
|
1295
1399
|
return /* @__PURE__ */ B("div", {
|
|
1296
1400
|
className: `dropdown-item ${r ? "active" : ""} ${a}`,
|
|
1297
1401
|
onClick: i,
|
|
@@ -1315,29 +1419,31 @@ function ct({ icon: e, children: t, shortcut: n, active: r, onClick: i, classNam
|
|
|
1315
1419
|
]
|
|
1316
1420
|
});
|
|
1317
1421
|
}
|
|
1318
|
-
function
|
|
1422
|
+
function _t({ checked: e, onCheckedChange: t, children: n, className: r = "" }) {
|
|
1319
1423
|
return /* @__PURE__ */ B("div", {
|
|
1320
|
-
className: `dropdown-item ${r}`,
|
|
1424
|
+
className: `dropdown-item ${e ? "active" : ""} ${r}`,
|
|
1321
1425
|
onClick: () => t?.(!e),
|
|
1322
1426
|
children: [/* @__PURE__ */ z("span", {
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1427
|
+
style: { flex: 1 },
|
|
1428
|
+
children: n
|
|
1429
|
+
}), e && /* @__PURE__ */ z(h, {
|
|
1430
|
+
size: 14,
|
|
1431
|
+
className: "dropdown-item-check"
|
|
1432
|
+
})]
|
|
1327
1433
|
});
|
|
1328
1434
|
}
|
|
1329
|
-
function
|
|
1435
|
+
function vt({ children: e, className: t = "" }) {
|
|
1330
1436
|
return /* @__PURE__ */ z("div", {
|
|
1331
1437
|
className: `dropdown-label ${t}`,
|
|
1332
1438
|
children: e
|
|
1333
1439
|
});
|
|
1334
1440
|
}
|
|
1335
|
-
function
|
|
1441
|
+
function yt({ className: e = "" }) {
|
|
1336
1442
|
return /* @__PURE__ */ z("div", { className: `dropdown-divider ${e}` });
|
|
1337
1443
|
}
|
|
1338
1444
|
//#endregion
|
|
1339
1445
|
//#region src/components/ui/SearchableSelect.jsx
|
|
1340
|
-
function
|
|
1446
|
+
function bt({ options: e = [], value: t, onChange: n, placeholder: r = "Select...", searchPlaceholder: i = "Search...", allowEmpty: a = !1, disabled: s = !1, className: c = "" }) {
|
|
1341
1447
|
let [d, f] = u(!1), [p, m] = u(""), [g, _] = u(-1), y = l(null), b = l(null), x = e.filter((e) => e.label.toLowerCase().includes(p.toLowerCase()) || e.description && e.description.toLowerCase().includes(p.toLowerCase())), S = e.find((e) => e.value === t);
|
|
1342
1448
|
o(() => {
|
|
1343
1449
|
d && b.current && b.current.focus();
|
|
@@ -1431,7 +1537,7 @@ function ft({ options: e = [], value: t, onChange: n, placeholder: r = "Select..
|
|
|
1431
1537
|
}
|
|
1432
1538
|
//#endregion
|
|
1433
1539
|
//#region src/components/ui/Sheet.jsx
|
|
1434
|
-
function
|
|
1540
|
+
function xt({ open: e, onClose: t, side: n = "right", title: r, children: i, className: a = "" }) {
|
|
1435
1541
|
let s = l(null);
|
|
1436
1542
|
return o(() => (e ? document.body.style.overflow = "hidden" : document.body.style.overflow = "", () => {
|
|
1437
1543
|
document.body.style.overflow = "";
|
|
@@ -1465,7 +1571,7 @@ function pt({ open: e, onClose: t, side: n = "right", title: r, children: i, cla
|
|
|
1465
1571
|
})
|
|
1466
1572
|
}) : null;
|
|
1467
1573
|
}
|
|
1468
|
-
function
|
|
1574
|
+
function St({ children: e, className: t = "" }) {
|
|
1469
1575
|
return /* @__PURE__ */ z("div", {
|
|
1470
1576
|
className: `sheet-footer ${t}`,
|
|
1471
1577
|
children: e
|
|
@@ -1473,17 +1579,17 @@ function mt({ children: e, className: t = "" }) {
|
|
|
1473
1579
|
}
|
|
1474
1580
|
//#endregion
|
|
1475
1581
|
//#region src/components/ui/StatusMetric.jsx
|
|
1476
|
-
function
|
|
1582
|
+
function Ct(...e) {
|
|
1477
1583
|
return e.filter(Boolean).join(" ");
|
|
1478
1584
|
}
|
|
1479
|
-
var
|
|
1585
|
+
var wt = {
|
|
1480
1586
|
default: "",
|
|
1481
1587
|
warning: "status-metric--warning"
|
|
1482
1588
|
};
|
|
1483
|
-
function
|
|
1589
|
+
function Tt({ children: e, tone: t = "default", showIcon: n = !0, icon: r, iconSize: i = 12, className: a = "" }) {
|
|
1484
1590
|
let o = r || (t === "warning" ? f : S);
|
|
1485
1591
|
return /* @__PURE__ */ B("span", {
|
|
1486
|
-
className:
|
|
1592
|
+
className: Ct("status-metric", wt[t], a),
|
|
1487
1593
|
children: [n && o && /* @__PURE__ */ z("span", {
|
|
1488
1594
|
className: "status-metric-icon",
|
|
1489
1595
|
children: /* @__PURE__ */ z(o, { size: i })
|
|
@@ -1495,7 +1601,7 @@ function _t({ children: e, tone: t = "default", showIcon: n = !0, icon: r, iconS
|
|
|
1495
1601
|
}
|
|
1496
1602
|
//#endregion
|
|
1497
1603
|
//#region src/components/ui/Switch.jsx
|
|
1498
|
-
function
|
|
1604
|
+
function Et({ checked: e = !1, onCheckedChange: t, disabled: n = !1, size: r = "md", label: i }) {
|
|
1499
1605
|
return /* @__PURE__ */ B("div", {
|
|
1500
1606
|
className: "toggle-row",
|
|
1501
1607
|
children: [i && /* @__PURE__ */ z("span", {
|
|
@@ -1519,7 +1625,7 @@ var Z = e({
|
|
|
1519
1625
|
registerTrigger: () => {},
|
|
1520
1626
|
getTriggerNode: () => null
|
|
1521
1627
|
});
|
|
1522
|
-
function
|
|
1628
|
+
function Dt({ defaultValue: e, value: t, onValueChange: n, children: r, className: a = "" }) {
|
|
1523
1629
|
let [o, s] = u(e || ""), c = l(/* @__PURE__ */ new Map()), d = t === void 0 ? o : t, f = n || s, p = i((e, t) => {
|
|
1524
1630
|
if (t) {
|
|
1525
1631
|
c.current.set(e, t);
|
|
@@ -1540,7 +1646,7 @@ function yt({ defaultValue: e, value: t, onValueChange: n, children: r, classNam
|
|
|
1540
1646
|
})
|
|
1541
1647
|
});
|
|
1542
1648
|
}
|
|
1543
|
-
function
|
|
1649
|
+
function Ot({ children: e, className: t = "" }) {
|
|
1544
1650
|
let { value: n, getTriggerNode: r } = a(Z), i = l(null);
|
|
1545
1651
|
return c(() => {
|
|
1546
1652
|
let e = i.current, t = r(n);
|
|
@@ -1567,7 +1673,7 @@ function bt({ children: e, className: t = "" }) {
|
|
|
1567
1673
|
}), e]
|
|
1568
1674
|
});
|
|
1569
1675
|
}
|
|
1570
|
-
function
|
|
1676
|
+
function kt({ value: e, children: t, className: n = "" }) {
|
|
1571
1677
|
let { value: r, onChange: i, registerTrigger: o } = a(Z), s = r === e;
|
|
1572
1678
|
return /* @__PURE__ */ z("button", {
|
|
1573
1679
|
ref: (t) => o(e, t),
|
|
@@ -1579,7 +1685,7 @@ function xt({ value: e, children: t, className: n = "" }) {
|
|
|
1579
1685
|
children: t
|
|
1580
1686
|
});
|
|
1581
1687
|
}
|
|
1582
|
-
function
|
|
1688
|
+
function At({ value: e, children: t, className: n = "" }) {
|
|
1583
1689
|
let { value: r } = a(Z);
|
|
1584
1690
|
return r === e ? /* @__PURE__ */ z("div", {
|
|
1585
1691
|
className: n,
|
|
@@ -1589,7 +1695,7 @@ function St({ value: e, children: t, className: n = "" }) {
|
|
|
1589
1695
|
}
|
|
1590
1696
|
//#endregion
|
|
1591
1697
|
//#region src/components/ui/Textarea.jsx
|
|
1592
|
-
var
|
|
1698
|
+
var jt = n(function({ className: e = "", startAdornment: t, endAdornment: n, ...r }, i) {
|
|
1593
1699
|
return t || n ? /* @__PURE__ */ B("div", {
|
|
1594
1700
|
className: ["textarea-wrapper", e].filter(Boolean).join(" "),
|
|
1595
1701
|
children: [
|
|
@@ -1615,7 +1721,7 @@ var Ct = n(function({ className: e = "", startAdornment: t, endAdornment: n, ...
|
|
|
1615
1721
|
});
|
|
1616
1722
|
//#endregion
|
|
1617
1723
|
//#region src/components/ui/Tooltip.jsx
|
|
1618
|
-
function
|
|
1724
|
+
function Mt({ content: e, side: t = "top", children: n, className: r = "" }) {
|
|
1619
1725
|
let [i, a] = u(!1), [s, d] = u(null), f = l(null), p = l(null), m = l(null);
|
|
1620
1726
|
function h() {
|
|
1621
1727
|
m.current = setTimeout(() => a(!0), 300);
|
|
@@ -1666,7 +1772,7 @@ function wt({ content: e, side: t = "top", children: n, className: r = "" }) {
|
|
|
1666
1772
|
}
|
|
1667
1773
|
//#endregion
|
|
1668
1774
|
//#region src/components/ui/viewModeDefaults.js
|
|
1669
|
-
var
|
|
1775
|
+
var Nt = {
|
|
1670
1776
|
kanban: C,
|
|
1671
1777
|
board: C,
|
|
1672
1778
|
columns: C,
|
|
@@ -1676,7 +1782,7 @@ var Tt = {
|
|
|
1676
1782
|
grid: E,
|
|
1677
1783
|
calendar: m,
|
|
1678
1784
|
map: A
|
|
1679
|
-
},
|
|
1785
|
+
}, Pt = [{
|
|
1680
1786
|
value: "kanban",
|
|
1681
1787
|
label: "Kanban",
|
|
1682
1788
|
title: "Board View"
|
|
@@ -1687,13 +1793,13 @@ var Tt = {
|
|
|
1687
1793
|
}];
|
|
1688
1794
|
//#endregion
|
|
1689
1795
|
//#region src/components/ui/ViewModeToggle.jsx
|
|
1690
|
-
function
|
|
1691
|
-
return e.icon ? e.icon :
|
|
1796
|
+
function Ft(e) {
|
|
1797
|
+
return e.icon ? e.icon : Nt[e.value] ?? null;
|
|
1692
1798
|
}
|
|
1693
|
-
function
|
|
1799
|
+
function It(e, n) {
|
|
1694
1800
|
return e ? r(e) ? e : t(e, { size: n }) : null;
|
|
1695
1801
|
}
|
|
1696
|
-
function
|
|
1802
|
+
function Lt({ options: e = Pt, value: t, defaultValue: n, onValueChange: r, ariaLabel: a = "View mode", iconSize: s = 16, showLabels: d = !1, className: f = "", optionClassName: p = "" }) {
|
|
1697
1803
|
let m = l(null), h = l(null), g = l(/* @__PURE__ */ new Map()), [_, v] = u(n ?? e[0]?.value ?? ""), y = t === void 0 ? _ : t, b = i(() => {
|
|
1698
1804
|
let e = h.current, t = g.current.get(y);
|
|
1699
1805
|
if (e) {
|
|
@@ -1755,7 +1861,7 @@ function kt({ options: e = Et, value: t, defaultValue: n, onValueChange: r, aria
|
|
|
1755
1861
|
"aria-hidden": "true",
|
|
1756
1862
|
className: "view-mode-toggle-indicator"
|
|
1757
1863
|
}), e.map((e) => {
|
|
1758
|
-
let t = e.value === y, n =
|
|
1864
|
+
let t = e.value === y, n = It(Ft(e), s);
|
|
1759
1865
|
return /* @__PURE__ */ B("button", {
|
|
1760
1866
|
type: "button",
|
|
1761
1867
|
"aria-pressed": t,
|
|
@@ -1785,10 +1891,10 @@ function kt({ options: e = Et, value: t, defaultValue: n, onValueChange: r, aria
|
|
|
1785
1891
|
}
|
|
1786
1892
|
//#endregion
|
|
1787
1893
|
//#region src/components/ui/WorkspaceTabs.jsx
|
|
1788
|
-
function
|
|
1894
|
+
function Rt(e, n) {
|
|
1789
1895
|
return e ? r(e) ? e : t(e, { size: n }) : null;
|
|
1790
1896
|
}
|
|
1791
|
-
function
|
|
1897
|
+
function zt({ items: e = [], value: t, defaultValue: n, onValueChange: r, ariaLabel: a = "Workspace tabs", iconSize: s = 14, variant: d = "plain", className: f = "", itemClassName: p = "" }) {
|
|
1792
1898
|
let m = l(null), h = l(null), g = l(/* @__PURE__ */ new Map()), [_, v] = u(n ?? e[0]?.id ?? ""), y = t === void 0 ? _ : t, b = i(() => {
|
|
1793
1899
|
let e = h.current, t = g.current.get(y);
|
|
1794
1900
|
if (e) {
|
|
@@ -1850,7 +1956,7 @@ function jt({ items: e = [], value: t, defaultValue: n, onValueChange: r, ariaLa
|
|
|
1850
1956
|
"aria-hidden": "true",
|
|
1851
1957
|
className: "workspace-tabs-indicator"
|
|
1852
1958
|
}), e.map((e) => {
|
|
1853
|
-
let t = e.id === y, n =
|
|
1959
|
+
let t = e.id === y, n = Rt(e.icon, s);
|
|
1854
1960
|
return /* @__PURE__ */ B("button", {
|
|
1855
1961
|
type: "button",
|
|
1856
1962
|
role: "tab",
|
|
@@ -1887,7 +1993,7 @@ function jt({ items: e = [], value: t, defaultValue: n, onValueChange: r, ariaLa
|
|
|
1887
1993
|
}
|
|
1888
1994
|
//#endregion
|
|
1889
1995
|
//#region src/components/data/ActivityFeed.jsx
|
|
1890
|
-
function
|
|
1996
|
+
function Bt({ items: e = [], className: t = "" }) {
|
|
1891
1997
|
return /* @__PURE__ */ z("div", {
|
|
1892
1998
|
className: `activity-feed ${t}`,
|
|
1893
1999
|
children: e.map((e, t) => /* @__PURE__ */ B("div", {
|
|
@@ -1926,7 +2032,7 @@ function Mt({ items: e = [], className: t = "" }) {
|
|
|
1926
2032
|
}
|
|
1927
2033
|
//#endregion
|
|
1928
2034
|
//#region src/components/data/CommandBar.jsx
|
|
1929
|
-
function
|
|
2035
|
+
function Vt({ open: e, onClose: t, groups: n = [], onSelect: r, placeholder: i = "Type a command or search..." }) {
|
|
1930
2036
|
let [a, s] = u(""), [c, d] = u(0), f = l(null);
|
|
1931
2037
|
if (o(() => {
|
|
1932
2038
|
if (e) {
|
|
@@ -2010,7 +2116,7 @@ function Nt({ open: e, onClose: t, groups: n = [], onSelect: r, placeholder: i =
|
|
|
2010
2116
|
}
|
|
2011
2117
|
//#endregion
|
|
2012
2118
|
//#region src/components/data/DataTable.jsx
|
|
2013
|
-
function
|
|
2119
|
+
function Ht({ columns: e, data: t, onRowClick: n, className: r = "" }) {
|
|
2014
2120
|
let [i, a] = u(null), [o, s] = u("asc");
|
|
2015
2121
|
function c(e) {
|
|
2016
2122
|
i === e ? s((e) => e === "asc" ? "desc" : "asc") : (a(e), s("asc"));
|
|
@@ -2051,7 +2157,7 @@ function Pt({ columns: e, data: t, onRowClick: n, className: r = "" }) {
|
|
|
2051
2157
|
}
|
|
2052
2158
|
//#endregion
|
|
2053
2159
|
//#region src/components/data/FilterBar.jsx
|
|
2054
|
-
function
|
|
2160
|
+
function Ut({ searchValue: e = "", onSearchChange: t, filters: n = [], onClearAll: r, children: i, className: a = "" }) {
|
|
2055
2161
|
let o = n.some((e) => e.active);
|
|
2056
2162
|
return /* @__PURE__ */ B("div", {
|
|
2057
2163
|
className: `filter-bar ${a}`,
|
|
@@ -2104,14 +2210,14 @@ function Ft({ searchValue: e = "", onSearchChange: t, filters: n = [], onClearAl
|
|
|
2104
2210
|
function Q(...e) {
|
|
2105
2211
|
return e.filter(Boolean).join(" ");
|
|
2106
2212
|
}
|
|
2107
|
-
function
|
|
2213
|
+
function Wt({ children: e, className: t = "", style: n }) {
|
|
2108
2214
|
return /* @__PURE__ */ z("div", {
|
|
2109
2215
|
className: Q("kanban-board", t),
|
|
2110
2216
|
style: n,
|
|
2111
2217
|
children: e
|
|
2112
2218
|
});
|
|
2113
2219
|
}
|
|
2114
|
-
function
|
|
2220
|
+
function Gt({ title: e, count: t, color: n, headerAction: r = null, countVariant: i = "pill", children: a, className: o = "", style: s, headerClassName: c = "", headerStyle: l, countClassName: u = "", bodyClassName: d = "", bodyStyle: f }) {
|
|
2115
2221
|
return /* @__PURE__ */ B("div", {
|
|
2116
2222
|
className: Q("kanban-column", o),
|
|
2117
2223
|
style: s,
|
|
@@ -2149,7 +2255,7 @@ function Lt({ title: e, count: t, color: n, headerAction: r = null, countVariant
|
|
|
2149
2255
|
})]
|
|
2150
2256
|
});
|
|
2151
2257
|
}
|
|
2152
|
-
function
|
|
2258
|
+
function Kt({ title: e, subtitle: t, badges: n, avatar: r, footer: i, footerEnd: a, children: o, onClick: s, className: c = "", style: l }) {
|
|
2153
2259
|
let u = a ?? r;
|
|
2154
2260
|
return /* @__PURE__ */ z("div", {
|
|
2155
2261
|
className: Q("kanban-card", c),
|
|
@@ -2185,13 +2291,13 @@ function Rt({ title: e, subtitle: t, badges: n, avatar: r, footer: i, footerEnd:
|
|
|
2185
2291
|
function $(...e) {
|
|
2186
2292
|
return e.filter(Boolean).join(" ");
|
|
2187
2293
|
}
|
|
2188
|
-
function
|
|
2294
|
+
function qt({ children: e, className: t = "" }) {
|
|
2189
2295
|
return /* @__PURE__ */ z("div", {
|
|
2190
2296
|
className: $("table-board", t),
|
|
2191
2297
|
children: e
|
|
2192
2298
|
});
|
|
2193
2299
|
}
|
|
2194
|
-
function
|
|
2300
|
+
function Jt({ title: e, count: t, accentColor: n, open: r, defaultOpen: i = !0, onOpenChange: a, children: o, className: s = "" }) {
|
|
2195
2301
|
let [c, l] = u(i), d = r != null, f = d ? r : c;
|
|
2196
2302
|
function p() {
|
|
2197
2303
|
let e = !f;
|
|
@@ -2228,7 +2334,7 @@ function Bt({ title: e, count: t, accentColor: n, open: r, defaultOpen: i = !0,
|
|
|
2228
2334
|
})]
|
|
2229
2335
|
});
|
|
2230
2336
|
}
|
|
2231
|
-
function
|
|
2337
|
+
function Yt({ priority: e, id: t, statusColor: n = "var(--accent-yellow)", title: i, subtitle: a, subtitleInline: s = !1, pills: c = [], maxVisibleLeadingPills: d, pinnedTrailingPillsCount: p = 0, metric: m, metricTone: h = "default", metricIcon: g, showMetricIcon: _ = !0, avatar: v, avatarImageUrl: y, avatarLabel: b, avatarName: x, avatarStyle: C, meta: w, onClick: T, className: E = "" }) {
|
|
2232
2338
|
let D = typeof T == "function", O = l(null), [k, A] = u(!1), j = Array.isArray(c) ? c : [], M = Math.max(0, Math.min(p, j.length)), N = M > 0 ? j.slice(0, -M) : j, P = M > 0 ? j.slice(-M) : [], F = typeof d == "number" && d >= 0 ? N.slice(0, d) : N, I = Math.max(0, N.length - F.length), L = [
|
|
2233
2339
|
...F,
|
|
2234
2340
|
...I > 0 ? [{
|
|
@@ -2317,7 +2423,7 @@ function Vt({ priority: e, id: t, statusColor: n = "var(--accent-yellow)", title
|
|
|
2317
2423
|
m != null && (r(m) ? m : /* @__PURE__ */ z(X, {
|
|
2318
2424
|
className: "table-board-metric",
|
|
2319
2425
|
showDot: !1,
|
|
2320
|
-
children: /* @__PURE__ */ z(
|
|
2426
|
+
children: /* @__PURE__ */ z(Tt, {
|
|
2321
2427
|
tone: h,
|
|
2322
2428
|
icon: U,
|
|
2323
2429
|
showIcon: _,
|
|
@@ -2334,7 +2440,7 @@ function Vt({ priority: e, id: t, statusColor: n = "var(--accent-yellow)", title
|
|
|
2334
2440
|
}
|
|
2335
2441
|
//#endregion
|
|
2336
2442
|
//#region src/components/data/KPICard.jsx
|
|
2337
|
-
function
|
|
2443
|
+
function Xt({ title: e, value: t, change: n, changeLabel: r, trend: i = "neutral", icon: a, className: o = "" }) {
|
|
2338
2444
|
let s = {
|
|
2339
2445
|
up: "var(--accent-green)",
|
|
2340
2446
|
down: "var(--accent-red)",
|
|
@@ -2375,7 +2481,7 @@ function Ht({ title: e, value: t, change: n, changeLabel: r, trend: i = "neutral
|
|
|
2375
2481
|
]
|
|
2376
2482
|
});
|
|
2377
2483
|
}
|
|
2378
|
-
function
|
|
2484
|
+
function Zt({ label: e, value: t, subtitle: n, color: r, className: i = "" }) {
|
|
2379
2485
|
return /* @__PURE__ */ B("div", {
|
|
2380
2486
|
className: `stat-card ${i}`,
|
|
2381
2487
|
children: [r && /* @__PURE__ */ z("div", {
|
|
@@ -2402,7 +2508,7 @@ function Ut({ label: e, value: t, subtitle: n, color: r, className: i = "" }) {
|
|
|
2402
2508
|
}
|
|
2403
2509
|
//#endregion
|
|
2404
2510
|
//#region src/components/data/NotificationsPanel.jsx
|
|
2405
|
-
function
|
|
2511
|
+
function Qt({ notifications: e = [], onMarkRead: t, onMarkAllRead: n, className: r = "" }) {
|
|
2406
2512
|
let i = e.filter((e) => !e.read);
|
|
2407
2513
|
return /* @__PURE__ */ B("div", {
|
|
2408
2514
|
className: `notifications-panel ${r}`,
|
|
@@ -2459,7 +2565,7 @@ function Wt({ notifications: e = [], onMarkRead: t, onMarkAllRead: n, className:
|
|
|
2459
2565
|
}
|
|
2460
2566
|
//#endregion
|
|
2461
2567
|
//#region src/components/Icons.jsx
|
|
2462
|
-
function
|
|
2568
|
+
function $t() {
|
|
2463
2569
|
return /* @__PURE__ */ z("svg", {
|
|
2464
2570
|
width: "16",
|
|
2465
2571
|
height: "16",
|
|
@@ -2468,7 +2574,7 @@ function Gt() {
|
|
|
2468
2574
|
children: /* @__PURE__ */ z("path", { d: "M2 3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6.5l-2.5-2.5a.5.5 0 0 0-.354-.146H8.5a.5.5 0 0 0-.5.5v2.793L6.854 9.001a.5.5 0 0 0-.708 0L2 13.147V3Zm12 8.207V13a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-.44l4.5-4.5L8.146 9.707a.5.5 0 0 0 .708 0L11.5 7.06l2.5 2.5V11.207Z" })
|
|
2469
2575
|
});
|
|
2470
2576
|
}
|
|
2471
|
-
function
|
|
2577
|
+
function en() {
|
|
2472
2578
|
return /* @__PURE__ */ B("svg", {
|
|
2473
2579
|
width: "16",
|
|
2474
2580
|
height: "16",
|
|
@@ -2488,7 +2594,7 @@ function Kt() {
|
|
|
2488
2594
|
})]
|
|
2489
2595
|
});
|
|
2490
2596
|
}
|
|
2491
|
-
function
|
|
2597
|
+
function tn() {
|
|
2492
2598
|
return /* @__PURE__ */ z("svg", {
|
|
2493
2599
|
width: "16",
|
|
2494
2600
|
height: "16",
|
|
@@ -2497,7 +2603,7 @@ function qt() {
|
|
|
2497
2603
|
children: /* @__PURE__ */ z("path", { d: "M8 1l2.2 4.4L15 6.3l-3.5 3.4.8 4.9L8 12.4 3.7 14.6l.8-4.9L1 6.3l4.8-.9L8 1Z" })
|
|
2498
2604
|
});
|
|
2499
2605
|
}
|
|
2500
|
-
function
|
|
2606
|
+
function nn() {
|
|
2501
2607
|
return /* @__PURE__ */ z("svg", {
|
|
2502
2608
|
width: "16",
|
|
2503
2609
|
height: "16",
|
|
@@ -2510,7 +2616,7 @@ function Jt() {
|
|
|
2510
2616
|
children: /* @__PURE__ */ z("path", { d: "M1 8h3l2-5 2 10 2-5h3" })
|
|
2511
2617
|
});
|
|
2512
2618
|
}
|
|
2513
|
-
function
|
|
2619
|
+
function rn() {
|
|
2514
2620
|
return /* @__PURE__ */ z("svg", {
|
|
2515
2621
|
width: "16",
|
|
2516
2622
|
height: "16",
|
|
@@ -2519,7 +2625,7 @@ function Yt() {
|
|
|
2519
2625
|
children: /* @__PURE__ */ z("path", { d: "M3 2h10a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1Zm1 3v2h8V5H4Zm0 4v2h5V9H4Z" })
|
|
2520
2626
|
});
|
|
2521
2627
|
}
|
|
2522
|
-
function
|
|
2628
|
+
function an() {
|
|
2523
2629
|
return /* @__PURE__ */ z("svg", {
|
|
2524
2630
|
width: "16",
|
|
2525
2631
|
height: "16",
|
|
@@ -2528,7 +2634,7 @@ function Xt() {
|
|
|
2528
2634
|
children: /* @__PURE__ */ z("path", { d: "M2 3.5A1.5 1.5 0 0 1 3.5 2h3.379a1.5 1.5 0 0 1 1.06.44l.622.62A1.5 1.5 0 0 0 9.622 3.5H12.5A1.5 1.5 0 0 1 14 5v7.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 12.5v-9Z" })
|
|
2529
2635
|
});
|
|
2530
2636
|
}
|
|
2531
|
-
function
|
|
2637
|
+
function on() {
|
|
2532
2638
|
return /* @__PURE__ */ B("svg", {
|
|
2533
2639
|
width: "16",
|
|
2534
2640
|
height: "16",
|
|
@@ -2553,7 +2659,7 @@ function Zt() {
|
|
|
2553
2659
|
]
|
|
2554
2660
|
});
|
|
2555
2661
|
}
|
|
2556
|
-
function
|
|
2662
|
+
function sn() {
|
|
2557
2663
|
return /* @__PURE__ */ B("svg", {
|
|
2558
2664
|
width: "16",
|
|
2559
2665
|
height: "16",
|
|
@@ -2571,7 +2677,7 @@ function Qt() {
|
|
|
2571
2677
|
})]
|
|
2572
2678
|
});
|
|
2573
2679
|
}
|
|
2574
|
-
function
|
|
2680
|
+
function cn() {
|
|
2575
2681
|
return /* @__PURE__ */ z("svg", {
|
|
2576
2682
|
width: "16",
|
|
2577
2683
|
height: "16",
|
|
@@ -2584,7 +2690,7 @@ function $t() {
|
|
|
2584
2690
|
children: /* @__PURE__ */ z("path", { d: "M11 2l3 3-8 8H3v-3l8-8Z" })
|
|
2585
2691
|
});
|
|
2586
2692
|
}
|
|
2587
|
-
function
|
|
2693
|
+
function ln() {
|
|
2588
2694
|
return /* @__PURE__ */ z("svg", {
|
|
2589
2695
|
width: "14",
|
|
2590
2696
|
height: "14",
|
|
@@ -2597,7 +2703,7 @@ function en() {
|
|
|
2597
2703
|
children: /* @__PURE__ */ z("path", { d: "M3.5 5.5L7 9l3.5-3.5" })
|
|
2598
2704
|
});
|
|
2599
2705
|
}
|
|
2600
|
-
function
|
|
2706
|
+
function un() {
|
|
2601
2707
|
return /* @__PURE__ */ z("svg", {
|
|
2602
2708
|
width: "14",
|
|
2603
2709
|
height: "14",
|
|
@@ -2610,7 +2716,7 @@ function tn() {
|
|
|
2610
2716
|
children: /* @__PURE__ */ z("path", { d: "M3.5 9L7 5.5 10.5 9" })
|
|
2611
2717
|
});
|
|
2612
2718
|
}
|
|
2613
|
-
function
|
|
2719
|
+
function dn() {
|
|
2614
2720
|
return /* @__PURE__ */ z("svg", {
|
|
2615
2721
|
width: "14",
|
|
2616
2722
|
height: "14",
|
|
@@ -2619,7 +2725,7 @@ function nn() {
|
|
|
2619
2725
|
children: /* @__PURE__ */ z("path", { d: "M7 1l1.76 3.52L13 5.26l-3 2.94.7 4.13L7 10.4 3.3 12.33l.7-4.13-3-2.94 4.24-.74L7 1Z" })
|
|
2620
2726
|
});
|
|
2621
2727
|
}
|
|
2622
|
-
function
|
|
2728
|
+
function fn() {
|
|
2623
2729
|
return /* @__PURE__ */ B("svg", {
|
|
2624
2730
|
width: "14",
|
|
2625
2731
|
height: "14",
|
|
@@ -2640,7 +2746,7 @@ function rn() {
|
|
|
2640
2746
|
})]
|
|
2641
2747
|
});
|
|
2642
2748
|
}
|
|
2643
|
-
function
|
|
2749
|
+
function pn() {
|
|
2644
2750
|
return /* @__PURE__ */ B("svg", {
|
|
2645
2751
|
width: "14",
|
|
2646
2752
|
height: "14",
|
|
@@ -2660,7 +2766,7 @@ function an() {
|
|
|
2660
2766
|
})]
|
|
2661
2767
|
});
|
|
2662
2768
|
}
|
|
2663
|
-
function
|
|
2769
|
+
function mn() {
|
|
2664
2770
|
return /* @__PURE__ */ z("svg", {
|
|
2665
2771
|
width: "14",
|
|
2666
2772
|
height: "14",
|
|
@@ -2675,7 +2781,7 @@ function on() {
|
|
|
2675
2781
|
})
|
|
2676
2782
|
});
|
|
2677
2783
|
}
|
|
2678
|
-
function
|
|
2784
|
+
function hn() {
|
|
2679
2785
|
return /* @__PURE__ */ z("svg", {
|
|
2680
2786
|
width: "14",
|
|
2681
2787
|
height: "14",
|
|
@@ -2691,7 +2797,7 @@ function sn() {
|
|
|
2691
2797
|
})
|
|
2692
2798
|
});
|
|
2693
2799
|
}
|
|
2694
|
-
function
|
|
2800
|
+
function gn() {
|
|
2695
2801
|
return /* @__PURE__ */ B("svg", {
|
|
2696
2802
|
width: "14",
|
|
2697
2803
|
height: "14",
|
|
@@ -2711,7 +2817,7 @@ function cn() {
|
|
|
2711
2817
|
})]
|
|
2712
2818
|
});
|
|
2713
2819
|
}
|
|
2714
|
-
function
|
|
2820
|
+
function _n() {
|
|
2715
2821
|
return /* @__PURE__ */ z("svg", {
|
|
2716
2822
|
width: "14",
|
|
2717
2823
|
height: "14",
|
|
@@ -2720,7 +2826,7 @@ function ln() {
|
|
|
2720
2826
|
children: /* @__PURE__ */ z("path", { d: "M7 1a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V2a1 1 0 0 1 1-1Zm0 10a1.25 1.25 0 1 1 0 2.5A1.25 1.25 0 0 1 7 11Z" })
|
|
2721
2827
|
});
|
|
2722
2828
|
}
|
|
2723
|
-
function
|
|
2829
|
+
function vn() {
|
|
2724
2830
|
return /* @__PURE__ */ B("svg", {
|
|
2725
2831
|
width: "14",
|
|
2726
2832
|
height: "14",
|
|
@@ -2751,7 +2857,7 @@ function un() {
|
|
|
2751
2857
|
]
|
|
2752
2858
|
});
|
|
2753
2859
|
}
|
|
2754
|
-
function
|
|
2860
|
+
function yn() {
|
|
2755
2861
|
return /* @__PURE__ */ B("svg", {
|
|
2756
2862
|
width: "14",
|
|
2757
2863
|
height: "14",
|
|
@@ -2784,7 +2890,7 @@ function dn() {
|
|
|
2784
2890
|
]
|
|
2785
2891
|
});
|
|
2786
2892
|
}
|
|
2787
|
-
function
|
|
2893
|
+
function bn() {
|
|
2788
2894
|
return /* @__PURE__ */ B("svg", {
|
|
2789
2895
|
width: "14",
|
|
2790
2896
|
height: "14",
|
|
@@ -2817,7 +2923,7 @@ function fn() {
|
|
|
2817
2923
|
]
|
|
2818
2924
|
});
|
|
2819
2925
|
}
|
|
2820
|
-
function
|
|
2926
|
+
function xn() {
|
|
2821
2927
|
return /* @__PURE__ */ z("svg", {
|
|
2822
2928
|
width: "14",
|
|
2823
2929
|
height: "14",
|
|
@@ -2829,7 +2935,7 @@ function pn() {
|
|
|
2829
2935
|
children: /* @__PURE__ */ z("path", { d: "M6 8l2-2m-2.5-.5L4 7a2.83 2.83 0 0 0 4 4l1.5-1.5m-1-5L10 3a2.83 2.83 0 0 1 4 4l-1.5 1.5" })
|
|
2830
2936
|
});
|
|
2831
2937
|
}
|
|
2832
|
-
function
|
|
2938
|
+
function Sn() {
|
|
2833
2939
|
return /* @__PURE__ */ z("svg", {
|
|
2834
2940
|
width: "14",
|
|
2835
2941
|
height: "14",
|
|
@@ -2842,7 +2948,7 @@ function mn() {
|
|
|
2842
2948
|
children: /* @__PURE__ */ z("path", { d: "M2.5 4h9M5 4V2.5h4V4m-4.5 1v5.5m3-5.5v5.5M3.5 4l.5 8h6l.5-8" })
|
|
2843
2949
|
});
|
|
2844
2950
|
}
|
|
2845
|
-
function
|
|
2951
|
+
function Cn() {
|
|
2846
2952
|
return /* @__PURE__ */ B("svg", {
|
|
2847
2953
|
width: "14",
|
|
2848
2954
|
height: "14",
|
|
@@ -2859,7 +2965,7 @@ function hn() {
|
|
|
2859
2965
|
})]
|
|
2860
2966
|
});
|
|
2861
2967
|
}
|
|
2862
|
-
function
|
|
2968
|
+
function wn() {
|
|
2863
2969
|
return /* @__PURE__ */ z("svg", {
|
|
2864
2970
|
width: "14",
|
|
2865
2971
|
height: "14",
|
|
@@ -2871,7 +2977,7 @@ function gn() {
|
|
|
2871
2977
|
children: /* @__PURE__ */ z("path", { d: "M3.5 3.5l7 7M10.5 3.5l-7 7" })
|
|
2872
2978
|
});
|
|
2873
2979
|
}
|
|
2874
|
-
function
|
|
2980
|
+
function Tn() {
|
|
2875
2981
|
return /* @__PURE__ */ z("svg", {
|
|
2876
2982
|
width: "14",
|
|
2877
2983
|
height: "14",
|
|
@@ -2884,7 +2990,7 @@ function _n() {
|
|
|
2884
2990
|
children: /* @__PURE__ */ z("path", { d: "M3 7.5l3 3 5-6" })
|
|
2885
2991
|
});
|
|
2886
2992
|
}
|
|
2887
|
-
function
|
|
2993
|
+
function En() {
|
|
2888
2994
|
return /* @__PURE__ */ B("svg", {
|
|
2889
2995
|
width: "14",
|
|
2890
2996
|
height: "14",
|
|
@@ -2903,7 +3009,7 @@ function vn() {
|
|
|
2903
3009
|
}), /* @__PURE__ */ z("path", { d: "M9.5 4.5V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v5.5a1 1 0 0 0 1 1h1.5" })]
|
|
2904
3010
|
});
|
|
2905
3011
|
}
|
|
2906
|
-
function
|
|
3012
|
+
function Dn() {
|
|
2907
3013
|
return /* @__PURE__ */ z("svg", {
|
|
2908
3014
|
width: "14",
|
|
2909
3015
|
height: "14",
|
|
@@ -2916,7 +3022,7 @@ function yn() {
|
|
|
2916
3022
|
children: /* @__PURE__ */ z("path", { d: "M5.5 12a1.5 1.5 0 0 0 3 0M7 1a4 4 0 0 0-4 4c0 3-1.5 4.5-1.5 4.5h11S11 8 11 5a4 4 0 0 0-4-4Z" })
|
|
2917
3023
|
});
|
|
2918
3024
|
}
|
|
2919
|
-
function
|
|
3025
|
+
function On() {
|
|
2920
3026
|
return /* @__PURE__ */ B("svg", {
|
|
2921
3027
|
width: "14",
|
|
2922
3028
|
height: "14",
|
|
@@ -2935,7 +3041,7 @@ function bn() {
|
|
|
2935
3041
|
}), /* @__PURE__ */ z("path", { d: "M4.5 1v2.5M9.5 1v2.5M1.5 5.5h11" })]
|
|
2936
3042
|
});
|
|
2937
3043
|
}
|
|
2938
|
-
function
|
|
3044
|
+
function kn() {
|
|
2939
3045
|
return /* @__PURE__ */ z("svg", {
|
|
2940
3046
|
width: "14",
|
|
2941
3047
|
height: "14",
|
|
@@ -2948,7 +3054,7 @@ function xn() {
|
|
|
2948
3054
|
children: /* @__PURE__ */ z("path", { d: "M1.5 3h11M3.5 7h7M5.5 11h3" })
|
|
2949
3055
|
});
|
|
2950
3056
|
}
|
|
2951
|
-
function
|
|
3057
|
+
function An() {
|
|
2952
3058
|
return /* @__PURE__ */ B("svg", {
|
|
2953
3059
|
width: "14",
|
|
2954
3060
|
height: "14",
|
|
@@ -2966,7 +3072,7 @@ function Sn() {
|
|
|
2966
3072
|
})]
|
|
2967
3073
|
});
|
|
2968
3074
|
}
|
|
2969
|
-
function
|
|
3075
|
+
function jn() {
|
|
2970
3076
|
return /* @__PURE__ */ B("svg", {
|
|
2971
3077
|
width: "14",
|
|
2972
3078
|
height: "14",
|
|
@@ -2985,4 +3091,4 @@ function Cn() {
|
|
|
2985
3091
|
});
|
|
2986
3092
|
}
|
|
2987
3093
|
//#endregion
|
|
2988
|
-
export {
|
|
3094
|
+
export { qe as Accordion, Ke as AccordionItem, Bt as ActivityFeed, Pe as AppLoader, J as Avatar, X as Badge, Dn as BellIcon, $e as Button, On as CalendarIcon, tt as Card, at as CardContent, it as CardDescription, ot as CardFooter, nt as CardHeader, rt as CardTitle, Tn as CheckIcon, ln as ChevronDown, un as ChevronUp, wn as CloseIcon, Vt as CommandBar, En as CopyIcon, Nt as DEFAULT_ICON_BY_VALUE, Pt as DEFAULT_VIEW_MODE_OPTIONS, Ht as DataTable, ct as Dialog, ft as DialogBody, dt as DialogDescription, pt as DialogFooter, lt as DialogHeader, ut as DialogTitle, ht as DropdownMenu, _t as DropdownMenuCheckboxItem, gt as DropdownMenuItem, vt as DropdownMenuLabel, yt as DropdownMenuSeparator, cn as EditIcon, je as FCCAppShell, Me as FCCBrandLogo, we as FCCBreadcrumbs, ce as FCCDesignProvider, Le as FCCDetailsPanel, ze as FCCFullPagePanel, He as FCCFullPagePanelBody, Ge as FCCFullPagePanelFooter, Be as FCCFullPagePanelHeader, Ue as FCCFullPagePanelMain, We as FCCFullPagePanelSidebar, Ve as FCCFullPagePanelToolbar, K as FCCHeaderStatus, Ie as FCCLoader, Ee as FCCMainWindow, ue as FCCSidePanel, ye as FCCSidePanelAction, fe as FCCSidePanelBody, _e as FCCSidePanelCard, be as FCCSidePanelChatWrap, ve as FCCSidePanelContact, xe as FCCSidePanelConversation, he as FCCSidePanelGroupLabel, de as FCCSidePanelHeader, ge as FCCSidePanelItem, Se as FCCSidePanelMessage, me as FCCSidePanelSearch, pe as FCCSidePanelTabs, Ae as FCCSidebar, Ne as FCCThemeToggle, q as FCCWorkspaceHeader, Ut as FilterBar, kn as FilterIcon, $t as InboxIcon, rn as InitiativesIcon, mt as Input, en as IssuesIcon, Xt as KPICard, Wt as KanbanBoard, Kt as KanbanCard, Gt as KanbanColumn, jn as LabelIcon, xn as LinkIcon, on as MoreIcon, Qt as NotificationsPanel, vn as PriorityHigh, bn as PriorityLow, yn as PriorityMedium, _n as PriorityUrgent, an as ProjectsIcon, nn as PulseIcon, tn as ReviewsIcon, sn as SearchIcon, bt as SearchableSelect, Cn as SettingsIcon, xt as Sheet, St as SheetFooter, Fe as Spinner, dn as StarIcon, Zt as StatCard, hn as StatusBacklog, gn as StatusCancelled, pn as StatusDone, fn as StatusInProgress, Tt as StatusMetric, mn as StatusTodo, Et as Switch, qt as TableBoard, Jt as TableBoardGroup, Yt as TableBoardRow, Dt as Tabs, At as TabsContent, Ot as TabsList, kt as TabsTrigger, jt as Textarea, se as ThemeProvider, te as ToastProvider, Mt as Tooltip, Sn as TrashIcon, An as UserIcon, Lt as ViewModeToggle, zt as WorkspaceTabs, W as useTheme, ne as useToast };
|