@freedom-code-compliance/fcc-redesign 0.1.30 → 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 +217 -113
- 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,7 +1419,7 @@ 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
1424
|
className: `dropdown-item ${e ? "active" : ""} ${r}`,
|
|
1321
1425
|
onClick: () => t?.(!e),
|
|
@@ -1328,18 +1432,18 @@ function lt({ checked: e, onCheckedChange: t, children: n, className: r = "" })
|
|
|
1328
1432
|
})]
|
|
1329
1433
|
});
|
|
1330
1434
|
}
|
|
1331
|
-
function
|
|
1435
|
+
function vt({ children: e, className: t = "" }) {
|
|
1332
1436
|
return /* @__PURE__ */ z("div", {
|
|
1333
1437
|
className: `dropdown-label ${t}`,
|
|
1334
1438
|
children: e
|
|
1335
1439
|
});
|
|
1336
1440
|
}
|
|
1337
|
-
function
|
|
1441
|
+
function yt({ className: e = "" }) {
|
|
1338
1442
|
return /* @__PURE__ */ z("div", { className: `dropdown-divider ${e}` });
|
|
1339
1443
|
}
|
|
1340
1444
|
//#endregion
|
|
1341
1445
|
//#region src/components/ui/SearchableSelect.jsx
|
|
1342
|
-
function
|
|
1446
|
+
function bt({ options: e = [], value: t, onChange: n, placeholder: r = "Select...", searchPlaceholder: i = "Search...", allowEmpty: a = !1, disabled: s = !1, className: c = "" }) {
|
|
1343
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);
|
|
1344
1448
|
o(() => {
|
|
1345
1449
|
d && b.current && b.current.focus();
|
|
@@ -1433,7 +1537,7 @@ function ft({ options: e = [], value: t, onChange: n, placeholder: r = "Select..
|
|
|
1433
1537
|
}
|
|
1434
1538
|
//#endregion
|
|
1435
1539
|
//#region src/components/ui/Sheet.jsx
|
|
1436
|
-
function
|
|
1540
|
+
function xt({ open: e, onClose: t, side: n = "right", title: r, children: i, className: a = "" }) {
|
|
1437
1541
|
let s = l(null);
|
|
1438
1542
|
return o(() => (e ? document.body.style.overflow = "hidden" : document.body.style.overflow = "", () => {
|
|
1439
1543
|
document.body.style.overflow = "";
|
|
@@ -1467,7 +1571,7 @@ function pt({ open: e, onClose: t, side: n = "right", title: r, children: i, cla
|
|
|
1467
1571
|
})
|
|
1468
1572
|
}) : null;
|
|
1469
1573
|
}
|
|
1470
|
-
function
|
|
1574
|
+
function St({ children: e, className: t = "" }) {
|
|
1471
1575
|
return /* @__PURE__ */ z("div", {
|
|
1472
1576
|
className: `sheet-footer ${t}`,
|
|
1473
1577
|
children: e
|
|
@@ -1475,17 +1579,17 @@ function mt({ children: e, className: t = "" }) {
|
|
|
1475
1579
|
}
|
|
1476
1580
|
//#endregion
|
|
1477
1581
|
//#region src/components/ui/StatusMetric.jsx
|
|
1478
|
-
function
|
|
1582
|
+
function Ct(...e) {
|
|
1479
1583
|
return e.filter(Boolean).join(" ");
|
|
1480
1584
|
}
|
|
1481
|
-
var
|
|
1585
|
+
var wt = {
|
|
1482
1586
|
default: "",
|
|
1483
1587
|
warning: "status-metric--warning"
|
|
1484
1588
|
};
|
|
1485
|
-
function
|
|
1589
|
+
function Tt({ children: e, tone: t = "default", showIcon: n = !0, icon: r, iconSize: i = 12, className: a = "" }) {
|
|
1486
1590
|
let o = r || (t === "warning" ? f : S);
|
|
1487
1591
|
return /* @__PURE__ */ B("span", {
|
|
1488
|
-
className:
|
|
1592
|
+
className: Ct("status-metric", wt[t], a),
|
|
1489
1593
|
children: [n && o && /* @__PURE__ */ z("span", {
|
|
1490
1594
|
className: "status-metric-icon",
|
|
1491
1595
|
children: /* @__PURE__ */ z(o, { size: i })
|
|
@@ -1497,7 +1601,7 @@ function _t({ children: e, tone: t = "default", showIcon: n = !0, icon: r, iconS
|
|
|
1497
1601
|
}
|
|
1498
1602
|
//#endregion
|
|
1499
1603
|
//#region src/components/ui/Switch.jsx
|
|
1500
|
-
function
|
|
1604
|
+
function Et({ checked: e = !1, onCheckedChange: t, disabled: n = !1, size: r = "md", label: i }) {
|
|
1501
1605
|
return /* @__PURE__ */ B("div", {
|
|
1502
1606
|
className: "toggle-row",
|
|
1503
1607
|
children: [i && /* @__PURE__ */ z("span", {
|
|
@@ -1521,7 +1625,7 @@ var Z = e({
|
|
|
1521
1625
|
registerTrigger: () => {},
|
|
1522
1626
|
getTriggerNode: () => null
|
|
1523
1627
|
});
|
|
1524
|
-
function
|
|
1628
|
+
function Dt({ defaultValue: e, value: t, onValueChange: n, children: r, className: a = "" }) {
|
|
1525
1629
|
let [o, s] = u(e || ""), c = l(/* @__PURE__ */ new Map()), d = t === void 0 ? o : t, f = n || s, p = i((e, t) => {
|
|
1526
1630
|
if (t) {
|
|
1527
1631
|
c.current.set(e, t);
|
|
@@ -1542,7 +1646,7 @@ function yt({ defaultValue: e, value: t, onValueChange: n, children: r, classNam
|
|
|
1542
1646
|
})
|
|
1543
1647
|
});
|
|
1544
1648
|
}
|
|
1545
|
-
function
|
|
1649
|
+
function Ot({ children: e, className: t = "" }) {
|
|
1546
1650
|
let { value: n, getTriggerNode: r } = a(Z), i = l(null);
|
|
1547
1651
|
return c(() => {
|
|
1548
1652
|
let e = i.current, t = r(n);
|
|
@@ -1569,7 +1673,7 @@ function bt({ children: e, className: t = "" }) {
|
|
|
1569
1673
|
}), e]
|
|
1570
1674
|
});
|
|
1571
1675
|
}
|
|
1572
|
-
function
|
|
1676
|
+
function kt({ value: e, children: t, className: n = "" }) {
|
|
1573
1677
|
let { value: r, onChange: i, registerTrigger: o } = a(Z), s = r === e;
|
|
1574
1678
|
return /* @__PURE__ */ z("button", {
|
|
1575
1679
|
ref: (t) => o(e, t),
|
|
@@ -1581,7 +1685,7 @@ function xt({ value: e, children: t, className: n = "" }) {
|
|
|
1581
1685
|
children: t
|
|
1582
1686
|
});
|
|
1583
1687
|
}
|
|
1584
|
-
function
|
|
1688
|
+
function At({ value: e, children: t, className: n = "" }) {
|
|
1585
1689
|
let { value: r } = a(Z);
|
|
1586
1690
|
return r === e ? /* @__PURE__ */ z("div", {
|
|
1587
1691
|
className: n,
|
|
@@ -1591,7 +1695,7 @@ function St({ value: e, children: t, className: n = "" }) {
|
|
|
1591
1695
|
}
|
|
1592
1696
|
//#endregion
|
|
1593
1697
|
//#region src/components/ui/Textarea.jsx
|
|
1594
|
-
var
|
|
1698
|
+
var jt = n(function({ className: e = "", startAdornment: t, endAdornment: n, ...r }, i) {
|
|
1595
1699
|
return t || n ? /* @__PURE__ */ B("div", {
|
|
1596
1700
|
className: ["textarea-wrapper", e].filter(Boolean).join(" "),
|
|
1597
1701
|
children: [
|
|
@@ -1617,7 +1721,7 @@ var Ct = n(function({ className: e = "", startAdornment: t, endAdornment: n, ...
|
|
|
1617
1721
|
});
|
|
1618
1722
|
//#endregion
|
|
1619
1723
|
//#region src/components/ui/Tooltip.jsx
|
|
1620
|
-
function
|
|
1724
|
+
function Mt({ content: e, side: t = "top", children: n, className: r = "" }) {
|
|
1621
1725
|
let [i, a] = u(!1), [s, d] = u(null), f = l(null), p = l(null), m = l(null);
|
|
1622
1726
|
function h() {
|
|
1623
1727
|
m.current = setTimeout(() => a(!0), 300);
|
|
@@ -1668,7 +1772,7 @@ function wt({ content: e, side: t = "top", children: n, className: r = "" }) {
|
|
|
1668
1772
|
}
|
|
1669
1773
|
//#endregion
|
|
1670
1774
|
//#region src/components/ui/viewModeDefaults.js
|
|
1671
|
-
var
|
|
1775
|
+
var Nt = {
|
|
1672
1776
|
kanban: C,
|
|
1673
1777
|
board: C,
|
|
1674
1778
|
columns: C,
|
|
@@ -1678,7 +1782,7 @@ var Tt = {
|
|
|
1678
1782
|
grid: E,
|
|
1679
1783
|
calendar: m,
|
|
1680
1784
|
map: A
|
|
1681
|
-
},
|
|
1785
|
+
}, Pt = [{
|
|
1682
1786
|
value: "kanban",
|
|
1683
1787
|
label: "Kanban",
|
|
1684
1788
|
title: "Board View"
|
|
@@ -1689,13 +1793,13 @@ var Tt = {
|
|
|
1689
1793
|
}];
|
|
1690
1794
|
//#endregion
|
|
1691
1795
|
//#region src/components/ui/ViewModeToggle.jsx
|
|
1692
|
-
function
|
|
1693
|
-
return e.icon ? e.icon :
|
|
1796
|
+
function Ft(e) {
|
|
1797
|
+
return e.icon ? e.icon : Nt[e.value] ?? null;
|
|
1694
1798
|
}
|
|
1695
|
-
function
|
|
1799
|
+
function It(e, n) {
|
|
1696
1800
|
return e ? r(e) ? e : t(e, { size: n }) : null;
|
|
1697
1801
|
}
|
|
1698
|
-
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 = "" }) {
|
|
1699
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(() => {
|
|
1700
1804
|
let e = h.current, t = g.current.get(y);
|
|
1701
1805
|
if (e) {
|
|
@@ -1757,7 +1861,7 @@ function kt({ options: e = Et, value: t, defaultValue: n, onValueChange: r, aria
|
|
|
1757
1861
|
"aria-hidden": "true",
|
|
1758
1862
|
className: "view-mode-toggle-indicator"
|
|
1759
1863
|
}), e.map((e) => {
|
|
1760
|
-
let t = e.value === y, n =
|
|
1864
|
+
let t = e.value === y, n = It(Ft(e), s);
|
|
1761
1865
|
return /* @__PURE__ */ B("button", {
|
|
1762
1866
|
type: "button",
|
|
1763
1867
|
"aria-pressed": t,
|
|
@@ -1787,10 +1891,10 @@ function kt({ options: e = Et, value: t, defaultValue: n, onValueChange: r, aria
|
|
|
1787
1891
|
}
|
|
1788
1892
|
//#endregion
|
|
1789
1893
|
//#region src/components/ui/WorkspaceTabs.jsx
|
|
1790
|
-
function
|
|
1894
|
+
function Rt(e, n) {
|
|
1791
1895
|
return e ? r(e) ? e : t(e, { size: n }) : null;
|
|
1792
1896
|
}
|
|
1793
|
-
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 = "" }) {
|
|
1794
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(() => {
|
|
1795
1899
|
let e = h.current, t = g.current.get(y);
|
|
1796
1900
|
if (e) {
|
|
@@ -1852,7 +1956,7 @@ function jt({ items: e = [], value: t, defaultValue: n, onValueChange: r, ariaLa
|
|
|
1852
1956
|
"aria-hidden": "true",
|
|
1853
1957
|
className: "workspace-tabs-indicator"
|
|
1854
1958
|
}), e.map((e) => {
|
|
1855
|
-
let t = e.id === y, n =
|
|
1959
|
+
let t = e.id === y, n = Rt(e.icon, s);
|
|
1856
1960
|
return /* @__PURE__ */ B("button", {
|
|
1857
1961
|
type: "button",
|
|
1858
1962
|
role: "tab",
|
|
@@ -1889,7 +1993,7 @@ function jt({ items: e = [], value: t, defaultValue: n, onValueChange: r, ariaLa
|
|
|
1889
1993
|
}
|
|
1890
1994
|
//#endregion
|
|
1891
1995
|
//#region src/components/data/ActivityFeed.jsx
|
|
1892
|
-
function
|
|
1996
|
+
function Bt({ items: e = [], className: t = "" }) {
|
|
1893
1997
|
return /* @__PURE__ */ z("div", {
|
|
1894
1998
|
className: `activity-feed ${t}`,
|
|
1895
1999
|
children: e.map((e, t) => /* @__PURE__ */ B("div", {
|
|
@@ -1928,7 +2032,7 @@ function Mt({ items: e = [], className: t = "" }) {
|
|
|
1928
2032
|
}
|
|
1929
2033
|
//#endregion
|
|
1930
2034
|
//#region src/components/data/CommandBar.jsx
|
|
1931
|
-
function
|
|
2035
|
+
function Vt({ open: e, onClose: t, groups: n = [], onSelect: r, placeholder: i = "Type a command or search..." }) {
|
|
1932
2036
|
let [a, s] = u(""), [c, d] = u(0), f = l(null);
|
|
1933
2037
|
if (o(() => {
|
|
1934
2038
|
if (e) {
|
|
@@ -2012,7 +2116,7 @@ function Nt({ open: e, onClose: t, groups: n = [], onSelect: r, placeholder: i =
|
|
|
2012
2116
|
}
|
|
2013
2117
|
//#endregion
|
|
2014
2118
|
//#region src/components/data/DataTable.jsx
|
|
2015
|
-
function
|
|
2119
|
+
function Ht({ columns: e, data: t, onRowClick: n, className: r = "" }) {
|
|
2016
2120
|
let [i, a] = u(null), [o, s] = u("asc");
|
|
2017
2121
|
function c(e) {
|
|
2018
2122
|
i === e ? s((e) => e === "asc" ? "desc" : "asc") : (a(e), s("asc"));
|
|
@@ -2053,7 +2157,7 @@ function Pt({ columns: e, data: t, onRowClick: n, className: r = "" }) {
|
|
|
2053
2157
|
}
|
|
2054
2158
|
//#endregion
|
|
2055
2159
|
//#region src/components/data/FilterBar.jsx
|
|
2056
|
-
function
|
|
2160
|
+
function Ut({ searchValue: e = "", onSearchChange: t, filters: n = [], onClearAll: r, children: i, className: a = "" }) {
|
|
2057
2161
|
let o = n.some((e) => e.active);
|
|
2058
2162
|
return /* @__PURE__ */ B("div", {
|
|
2059
2163
|
className: `filter-bar ${a}`,
|
|
@@ -2106,14 +2210,14 @@ function Ft({ searchValue: e = "", onSearchChange: t, filters: n = [], onClearAl
|
|
|
2106
2210
|
function Q(...e) {
|
|
2107
2211
|
return e.filter(Boolean).join(" ");
|
|
2108
2212
|
}
|
|
2109
|
-
function
|
|
2213
|
+
function Wt({ children: e, className: t = "", style: n }) {
|
|
2110
2214
|
return /* @__PURE__ */ z("div", {
|
|
2111
2215
|
className: Q("kanban-board", t),
|
|
2112
2216
|
style: n,
|
|
2113
2217
|
children: e
|
|
2114
2218
|
});
|
|
2115
2219
|
}
|
|
2116
|
-
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 }) {
|
|
2117
2221
|
return /* @__PURE__ */ B("div", {
|
|
2118
2222
|
className: Q("kanban-column", o),
|
|
2119
2223
|
style: s,
|
|
@@ -2151,7 +2255,7 @@ function Lt({ title: e, count: t, color: n, headerAction: r = null, countVariant
|
|
|
2151
2255
|
})]
|
|
2152
2256
|
});
|
|
2153
2257
|
}
|
|
2154
|
-
function
|
|
2258
|
+
function Kt({ title: e, subtitle: t, badges: n, avatar: r, footer: i, footerEnd: a, children: o, onClick: s, className: c = "", style: l }) {
|
|
2155
2259
|
let u = a ?? r;
|
|
2156
2260
|
return /* @__PURE__ */ z("div", {
|
|
2157
2261
|
className: Q("kanban-card", c),
|
|
@@ -2187,13 +2291,13 @@ function Rt({ title: e, subtitle: t, badges: n, avatar: r, footer: i, footerEnd:
|
|
|
2187
2291
|
function $(...e) {
|
|
2188
2292
|
return e.filter(Boolean).join(" ");
|
|
2189
2293
|
}
|
|
2190
|
-
function
|
|
2294
|
+
function qt({ children: e, className: t = "" }) {
|
|
2191
2295
|
return /* @__PURE__ */ z("div", {
|
|
2192
2296
|
className: $("table-board", t),
|
|
2193
2297
|
children: e
|
|
2194
2298
|
});
|
|
2195
2299
|
}
|
|
2196
|
-
function
|
|
2300
|
+
function Jt({ title: e, count: t, accentColor: n, open: r, defaultOpen: i = !0, onOpenChange: a, children: o, className: s = "" }) {
|
|
2197
2301
|
let [c, l] = u(i), d = r != null, f = d ? r : c;
|
|
2198
2302
|
function p() {
|
|
2199
2303
|
let e = !f;
|
|
@@ -2230,7 +2334,7 @@ function Bt({ title: e, count: t, accentColor: n, open: r, defaultOpen: i = !0,
|
|
|
2230
2334
|
})]
|
|
2231
2335
|
});
|
|
2232
2336
|
}
|
|
2233
|
-
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 = "" }) {
|
|
2234
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 = [
|
|
2235
2339
|
...F,
|
|
2236
2340
|
...I > 0 ? [{
|
|
@@ -2319,7 +2423,7 @@ function Vt({ priority: e, id: t, statusColor: n = "var(--accent-yellow)", title
|
|
|
2319
2423
|
m != null && (r(m) ? m : /* @__PURE__ */ z(X, {
|
|
2320
2424
|
className: "table-board-metric",
|
|
2321
2425
|
showDot: !1,
|
|
2322
|
-
children: /* @__PURE__ */ z(
|
|
2426
|
+
children: /* @__PURE__ */ z(Tt, {
|
|
2323
2427
|
tone: h,
|
|
2324
2428
|
icon: U,
|
|
2325
2429
|
showIcon: _,
|
|
@@ -2336,7 +2440,7 @@ function Vt({ priority: e, id: t, statusColor: n = "var(--accent-yellow)", title
|
|
|
2336
2440
|
}
|
|
2337
2441
|
//#endregion
|
|
2338
2442
|
//#region src/components/data/KPICard.jsx
|
|
2339
|
-
function
|
|
2443
|
+
function Xt({ title: e, value: t, change: n, changeLabel: r, trend: i = "neutral", icon: a, className: o = "" }) {
|
|
2340
2444
|
let s = {
|
|
2341
2445
|
up: "var(--accent-green)",
|
|
2342
2446
|
down: "var(--accent-red)",
|
|
@@ -2377,7 +2481,7 @@ function Ht({ title: e, value: t, change: n, changeLabel: r, trend: i = "neutral
|
|
|
2377
2481
|
]
|
|
2378
2482
|
});
|
|
2379
2483
|
}
|
|
2380
|
-
function
|
|
2484
|
+
function Zt({ label: e, value: t, subtitle: n, color: r, className: i = "" }) {
|
|
2381
2485
|
return /* @__PURE__ */ B("div", {
|
|
2382
2486
|
className: `stat-card ${i}`,
|
|
2383
2487
|
children: [r && /* @__PURE__ */ z("div", {
|
|
@@ -2404,7 +2508,7 @@ function Ut({ label: e, value: t, subtitle: n, color: r, className: i = "" }) {
|
|
|
2404
2508
|
}
|
|
2405
2509
|
//#endregion
|
|
2406
2510
|
//#region src/components/data/NotificationsPanel.jsx
|
|
2407
|
-
function
|
|
2511
|
+
function Qt({ notifications: e = [], onMarkRead: t, onMarkAllRead: n, className: r = "" }) {
|
|
2408
2512
|
let i = e.filter((e) => !e.read);
|
|
2409
2513
|
return /* @__PURE__ */ B("div", {
|
|
2410
2514
|
className: `notifications-panel ${r}`,
|
|
@@ -2461,7 +2565,7 @@ function Wt({ notifications: e = [], onMarkRead: t, onMarkAllRead: n, className:
|
|
|
2461
2565
|
}
|
|
2462
2566
|
//#endregion
|
|
2463
2567
|
//#region src/components/Icons.jsx
|
|
2464
|
-
function
|
|
2568
|
+
function $t() {
|
|
2465
2569
|
return /* @__PURE__ */ z("svg", {
|
|
2466
2570
|
width: "16",
|
|
2467
2571
|
height: "16",
|
|
@@ -2470,7 +2574,7 @@ function Gt() {
|
|
|
2470
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" })
|
|
2471
2575
|
});
|
|
2472
2576
|
}
|
|
2473
|
-
function
|
|
2577
|
+
function en() {
|
|
2474
2578
|
return /* @__PURE__ */ B("svg", {
|
|
2475
2579
|
width: "16",
|
|
2476
2580
|
height: "16",
|
|
@@ -2490,7 +2594,7 @@ function Kt() {
|
|
|
2490
2594
|
})]
|
|
2491
2595
|
});
|
|
2492
2596
|
}
|
|
2493
|
-
function
|
|
2597
|
+
function tn() {
|
|
2494
2598
|
return /* @__PURE__ */ z("svg", {
|
|
2495
2599
|
width: "16",
|
|
2496
2600
|
height: "16",
|
|
@@ -2499,7 +2603,7 @@ function qt() {
|
|
|
2499
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" })
|
|
2500
2604
|
});
|
|
2501
2605
|
}
|
|
2502
|
-
function
|
|
2606
|
+
function nn() {
|
|
2503
2607
|
return /* @__PURE__ */ z("svg", {
|
|
2504
2608
|
width: "16",
|
|
2505
2609
|
height: "16",
|
|
@@ -2512,7 +2616,7 @@ function Jt() {
|
|
|
2512
2616
|
children: /* @__PURE__ */ z("path", { d: "M1 8h3l2-5 2 10 2-5h3" })
|
|
2513
2617
|
});
|
|
2514
2618
|
}
|
|
2515
|
-
function
|
|
2619
|
+
function rn() {
|
|
2516
2620
|
return /* @__PURE__ */ z("svg", {
|
|
2517
2621
|
width: "16",
|
|
2518
2622
|
height: "16",
|
|
@@ -2521,7 +2625,7 @@ function Yt() {
|
|
|
2521
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" })
|
|
2522
2626
|
});
|
|
2523
2627
|
}
|
|
2524
|
-
function
|
|
2628
|
+
function an() {
|
|
2525
2629
|
return /* @__PURE__ */ z("svg", {
|
|
2526
2630
|
width: "16",
|
|
2527
2631
|
height: "16",
|
|
@@ -2530,7 +2634,7 @@ function Xt() {
|
|
|
2530
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" })
|
|
2531
2635
|
});
|
|
2532
2636
|
}
|
|
2533
|
-
function
|
|
2637
|
+
function on() {
|
|
2534
2638
|
return /* @__PURE__ */ B("svg", {
|
|
2535
2639
|
width: "16",
|
|
2536
2640
|
height: "16",
|
|
@@ -2555,7 +2659,7 @@ function Zt() {
|
|
|
2555
2659
|
]
|
|
2556
2660
|
});
|
|
2557
2661
|
}
|
|
2558
|
-
function
|
|
2662
|
+
function sn() {
|
|
2559
2663
|
return /* @__PURE__ */ B("svg", {
|
|
2560
2664
|
width: "16",
|
|
2561
2665
|
height: "16",
|
|
@@ -2573,7 +2677,7 @@ function Qt() {
|
|
|
2573
2677
|
})]
|
|
2574
2678
|
});
|
|
2575
2679
|
}
|
|
2576
|
-
function
|
|
2680
|
+
function cn() {
|
|
2577
2681
|
return /* @__PURE__ */ z("svg", {
|
|
2578
2682
|
width: "16",
|
|
2579
2683
|
height: "16",
|
|
@@ -2586,7 +2690,7 @@ function $t() {
|
|
|
2586
2690
|
children: /* @__PURE__ */ z("path", { d: "M11 2l3 3-8 8H3v-3l8-8Z" })
|
|
2587
2691
|
});
|
|
2588
2692
|
}
|
|
2589
|
-
function
|
|
2693
|
+
function ln() {
|
|
2590
2694
|
return /* @__PURE__ */ z("svg", {
|
|
2591
2695
|
width: "14",
|
|
2592
2696
|
height: "14",
|
|
@@ -2599,7 +2703,7 @@ function en() {
|
|
|
2599
2703
|
children: /* @__PURE__ */ z("path", { d: "M3.5 5.5L7 9l3.5-3.5" })
|
|
2600
2704
|
});
|
|
2601
2705
|
}
|
|
2602
|
-
function
|
|
2706
|
+
function un() {
|
|
2603
2707
|
return /* @__PURE__ */ z("svg", {
|
|
2604
2708
|
width: "14",
|
|
2605
2709
|
height: "14",
|
|
@@ -2612,7 +2716,7 @@ function tn() {
|
|
|
2612
2716
|
children: /* @__PURE__ */ z("path", { d: "M3.5 9L7 5.5 10.5 9" })
|
|
2613
2717
|
});
|
|
2614
2718
|
}
|
|
2615
|
-
function
|
|
2719
|
+
function dn() {
|
|
2616
2720
|
return /* @__PURE__ */ z("svg", {
|
|
2617
2721
|
width: "14",
|
|
2618
2722
|
height: "14",
|
|
@@ -2621,7 +2725,7 @@ function nn() {
|
|
|
2621
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" })
|
|
2622
2726
|
});
|
|
2623
2727
|
}
|
|
2624
|
-
function
|
|
2728
|
+
function fn() {
|
|
2625
2729
|
return /* @__PURE__ */ B("svg", {
|
|
2626
2730
|
width: "14",
|
|
2627
2731
|
height: "14",
|
|
@@ -2642,7 +2746,7 @@ function rn() {
|
|
|
2642
2746
|
})]
|
|
2643
2747
|
});
|
|
2644
2748
|
}
|
|
2645
|
-
function
|
|
2749
|
+
function pn() {
|
|
2646
2750
|
return /* @__PURE__ */ B("svg", {
|
|
2647
2751
|
width: "14",
|
|
2648
2752
|
height: "14",
|
|
@@ -2662,7 +2766,7 @@ function an() {
|
|
|
2662
2766
|
})]
|
|
2663
2767
|
});
|
|
2664
2768
|
}
|
|
2665
|
-
function
|
|
2769
|
+
function mn() {
|
|
2666
2770
|
return /* @__PURE__ */ z("svg", {
|
|
2667
2771
|
width: "14",
|
|
2668
2772
|
height: "14",
|
|
@@ -2677,7 +2781,7 @@ function on() {
|
|
|
2677
2781
|
})
|
|
2678
2782
|
});
|
|
2679
2783
|
}
|
|
2680
|
-
function
|
|
2784
|
+
function hn() {
|
|
2681
2785
|
return /* @__PURE__ */ z("svg", {
|
|
2682
2786
|
width: "14",
|
|
2683
2787
|
height: "14",
|
|
@@ -2693,7 +2797,7 @@ function sn() {
|
|
|
2693
2797
|
})
|
|
2694
2798
|
});
|
|
2695
2799
|
}
|
|
2696
|
-
function
|
|
2800
|
+
function gn() {
|
|
2697
2801
|
return /* @__PURE__ */ B("svg", {
|
|
2698
2802
|
width: "14",
|
|
2699
2803
|
height: "14",
|
|
@@ -2713,7 +2817,7 @@ function cn() {
|
|
|
2713
2817
|
})]
|
|
2714
2818
|
});
|
|
2715
2819
|
}
|
|
2716
|
-
function
|
|
2820
|
+
function _n() {
|
|
2717
2821
|
return /* @__PURE__ */ z("svg", {
|
|
2718
2822
|
width: "14",
|
|
2719
2823
|
height: "14",
|
|
@@ -2722,7 +2826,7 @@ function ln() {
|
|
|
2722
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" })
|
|
2723
2827
|
});
|
|
2724
2828
|
}
|
|
2725
|
-
function
|
|
2829
|
+
function vn() {
|
|
2726
2830
|
return /* @__PURE__ */ B("svg", {
|
|
2727
2831
|
width: "14",
|
|
2728
2832
|
height: "14",
|
|
@@ -2753,7 +2857,7 @@ function un() {
|
|
|
2753
2857
|
]
|
|
2754
2858
|
});
|
|
2755
2859
|
}
|
|
2756
|
-
function
|
|
2860
|
+
function yn() {
|
|
2757
2861
|
return /* @__PURE__ */ B("svg", {
|
|
2758
2862
|
width: "14",
|
|
2759
2863
|
height: "14",
|
|
@@ -2786,7 +2890,7 @@ function dn() {
|
|
|
2786
2890
|
]
|
|
2787
2891
|
});
|
|
2788
2892
|
}
|
|
2789
|
-
function
|
|
2893
|
+
function bn() {
|
|
2790
2894
|
return /* @__PURE__ */ B("svg", {
|
|
2791
2895
|
width: "14",
|
|
2792
2896
|
height: "14",
|
|
@@ -2819,7 +2923,7 @@ function fn() {
|
|
|
2819
2923
|
]
|
|
2820
2924
|
});
|
|
2821
2925
|
}
|
|
2822
|
-
function
|
|
2926
|
+
function xn() {
|
|
2823
2927
|
return /* @__PURE__ */ z("svg", {
|
|
2824
2928
|
width: "14",
|
|
2825
2929
|
height: "14",
|
|
@@ -2831,7 +2935,7 @@ function pn() {
|
|
|
2831
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" })
|
|
2832
2936
|
});
|
|
2833
2937
|
}
|
|
2834
|
-
function
|
|
2938
|
+
function Sn() {
|
|
2835
2939
|
return /* @__PURE__ */ z("svg", {
|
|
2836
2940
|
width: "14",
|
|
2837
2941
|
height: "14",
|
|
@@ -2844,7 +2948,7 @@ function mn() {
|
|
|
2844
2948
|
children: /* @__PURE__ */ z("path", { d: "M2.5 4h9M5 4V2.5h4V4m-4.5 1v5.5m3-5.5v5.5M3.5 4l.5 8h6l.5-8" })
|
|
2845
2949
|
});
|
|
2846
2950
|
}
|
|
2847
|
-
function
|
|
2951
|
+
function Cn() {
|
|
2848
2952
|
return /* @__PURE__ */ B("svg", {
|
|
2849
2953
|
width: "14",
|
|
2850
2954
|
height: "14",
|
|
@@ -2861,7 +2965,7 @@ function hn() {
|
|
|
2861
2965
|
})]
|
|
2862
2966
|
});
|
|
2863
2967
|
}
|
|
2864
|
-
function
|
|
2968
|
+
function wn() {
|
|
2865
2969
|
return /* @__PURE__ */ z("svg", {
|
|
2866
2970
|
width: "14",
|
|
2867
2971
|
height: "14",
|
|
@@ -2873,7 +2977,7 @@ function gn() {
|
|
|
2873
2977
|
children: /* @__PURE__ */ z("path", { d: "M3.5 3.5l7 7M10.5 3.5l-7 7" })
|
|
2874
2978
|
});
|
|
2875
2979
|
}
|
|
2876
|
-
function
|
|
2980
|
+
function Tn() {
|
|
2877
2981
|
return /* @__PURE__ */ z("svg", {
|
|
2878
2982
|
width: "14",
|
|
2879
2983
|
height: "14",
|
|
@@ -2886,7 +2990,7 @@ function _n() {
|
|
|
2886
2990
|
children: /* @__PURE__ */ z("path", { d: "M3 7.5l3 3 5-6" })
|
|
2887
2991
|
});
|
|
2888
2992
|
}
|
|
2889
|
-
function
|
|
2993
|
+
function En() {
|
|
2890
2994
|
return /* @__PURE__ */ B("svg", {
|
|
2891
2995
|
width: "14",
|
|
2892
2996
|
height: "14",
|
|
@@ -2905,7 +3009,7 @@ function vn() {
|
|
|
2905
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" })]
|
|
2906
3010
|
});
|
|
2907
3011
|
}
|
|
2908
|
-
function
|
|
3012
|
+
function Dn() {
|
|
2909
3013
|
return /* @__PURE__ */ z("svg", {
|
|
2910
3014
|
width: "14",
|
|
2911
3015
|
height: "14",
|
|
@@ -2918,7 +3022,7 @@ function yn() {
|
|
|
2918
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" })
|
|
2919
3023
|
});
|
|
2920
3024
|
}
|
|
2921
|
-
function
|
|
3025
|
+
function On() {
|
|
2922
3026
|
return /* @__PURE__ */ B("svg", {
|
|
2923
3027
|
width: "14",
|
|
2924
3028
|
height: "14",
|
|
@@ -2937,7 +3041,7 @@ function bn() {
|
|
|
2937
3041
|
}), /* @__PURE__ */ z("path", { d: "M4.5 1v2.5M9.5 1v2.5M1.5 5.5h11" })]
|
|
2938
3042
|
});
|
|
2939
3043
|
}
|
|
2940
|
-
function
|
|
3044
|
+
function kn() {
|
|
2941
3045
|
return /* @__PURE__ */ z("svg", {
|
|
2942
3046
|
width: "14",
|
|
2943
3047
|
height: "14",
|
|
@@ -2950,7 +3054,7 @@ function xn() {
|
|
|
2950
3054
|
children: /* @__PURE__ */ z("path", { d: "M1.5 3h11M3.5 7h7M5.5 11h3" })
|
|
2951
3055
|
});
|
|
2952
3056
|
}
|
|
2953
|
-
function
|
|
3057
|
+
function An() {
|
|
2954
3058
|
return /* @__PURE__ */ B("svg", {
|
|
2955
3059
|
width: "14",
|
|
2956
3060
|
height: "14",
|
|
@@ -2968,7 +3072,7 @@ function Sn() {
|
|
|
2968
3072
|
})]
|
|
2969
3073
|
});
|
|
2970
3074
|
}
|
|
2971
|
-
function
|
|
3075
|
+
function jn() {
|
|
2972
3076
|
return /* @__PURE__ */ B("svg", {
|
|
2973
3077
|
width: "14",
|
|
2974
3078
|
height: "14",
|
|
@@ -2987,4 +3091,4 @@ function Cn() {
|
|
|
2987
3091
|
});
|
|
2988
3092
|
}
|
|
2989
3093
|
//#endregion
|
|
2990
|
-
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 };
|