@flamingo-stack/openframe-frontend-core 0.0.270 → 0.0.271
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/{chunk-37OJ53QH.js → chunk-3DYASQEL.js} +2 -2
- package/dist/{chunk-XOKXFW77.js → chunk-56V4MC32.js} +2 -2
- package/dist/{chunk-N3OPJQYI.cjs → chunk-5CTV435G.cjs} +7 -3
- package/dist/chunk-5CTV435G.cjs.map +1 -0
- package/dist/{chunk-RM7ZT3UU.js → chunk-BCPLTDRW.js} +7 -3
- package/dist/chunk-BCPLTDRW.js.map +1 -0
- package/dist/{chunk-NDSCF6LB.cjs → chunk-FC6YVRUW.cjs} +11 -11
- package/dist/{chunk-NDSCF6LB.cjs.map → chunk-FC6YVRUW.cjs.map} +1 -1
- package/dist/{chunk-EMRSIP4Q.js → chunk-J35EWU2W.js} +2 -2
- package/dist/{chunk-JIJEVSCC.cjs → chunk-LELTRQZV.cjs} +30 -30
- package/dist/{chunk-JIJEVSCC.cjs.map → chunk-LELTRQZV.cjs.map} +1 -1
- package/dist/{chunk-3H5TSZMU.cjs → chunk-YH74UZRG.cjs} +25 -25
- package/dist/{chunk-3H5TSZMU.cjs.map → chunk-YH74UZRG.cjs.map} +1 -1
- package/dist/components/chat/index.cjs +2 -2
- package/dist/components/chat/index.js +1 -1
- package/dist/components/contact/index.cjs +3 -3
- package/dist/components/contact/index.js +2 -2
- package/dist/components/features/index.cjs +2 -2
- package/dist/components/features/index.js +1 -1
- package/dist/components/features/status-filter-component.d.ts +6 -1
- package/dist/components/features/status-filter-component.d.ts.map +1 -1
- package/dist/components/index.cjs +47 -47
- package/dist/components/index.js +3 -3
- package/dist/components/navigation/index.cjs +2 -2
- package/dist/components/navigation/index.js +1 -1
- package/dist/components/related-content/index.cjs +3 -3
- package/dist/components/related-content/index.js +2 -2
- package/dist/components/tickets/index.cjs +53 -53
- package/dist/components/tickets/index.js +3 -3
- package/dist/components/ui/index.cjs +2 -2
- package/dist/components/ui/index.js +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.js +1 -1
- package/dist/types/marketing.d.ts +1 -1
- package/dist/types/marketing.d.ts.map +1 -1
- package/dist/types/video-processing.d.ts +2 -1
- package/dist/types/video-processing.d.ts.map +1 -1
- package/dist/utils/content-ref-groups.d.ts.map +1 -1
- package/dist/utils/index.cjs +2 -1
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.js +2 -1
- package/dist/utils/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/features/status-filter-component.tsx +9 -1
- package/src/types/marketing.ts +1 -0
- package/src/types/video-processing.ts +2 -0
- package/src/utils/content-ref-groups.ts +1 -0
- package/dist/chunk-N3OPJQYI.cjs.map +0 -1
- package/dist/chunk-RM7ZT3UU.js.map +0 -1
- /package/dist/{chunk-37OJ53QH.js.map → chunk-3DYASQEL.js.map} +0 -0
- /package/dist/{chunk-XOKXFW77.js.map → chunk-56V4MC32.js.map} +0 -0
- /package/dist/{chunk-EMRSIP4Q.js.map → chunk-J35EWU2W.js.map} +0 -0
|
@@ -13704,7 +13704,8 @@ var CONTENT_REF_GROUPS = {
|
|
|
13704
13704
|
event: { label: "Events", order: 6, layout: "list", gridSize: "default" },
|
|
13705
13705
|
blog_post_existing: { label: "Blog Posts", order: 7, layout: "grid", gridSize: "default" },
|
|
13706
13706
|
customer_interview: { label: "Customer Interviews", order: 8, layout: "grid", gridSize: "default" },
|
|
13707
|
-
onboarding_guide: { label: "Onboarding Guides", order: 9, layout: "list", gridSize: "default" }
|
|
13707
|
+
onboarding_guide: { label: "Onboarding Guides", order: 9, layout: "list", gridSize: "default" },
|
|
13708
|
+
what_i_shipped: { label: "What I Shipped", order: 10, layout: "grid", gridSize: "default" }
|
|
13708
13709
|
};
|
|
13709
13710
|
function getContentRefLabel(type) {
|
|
13710
13711
|
return CONTENT_REF_GROUPS[type]?.label ?? null;
|
|
@@ -18287,7 +18288,8 @@ function StatusFilterComponent({
|
|
|
18287
18288
|
statusOptions,
|
|
18288
18289
|
showCount = false,
|
|
18289
18290
|
count = 0,
|
|
18290
|
-
className = ""
|
|
18291
|
+
className = "",
|
|
18292
|
+
disabledValues = []
|
|
18291
18293
|
}) {
|
|
18292
18294
|
const filteredOptions = statusOptions.filter((option) => option.value !== "all");
|
|
18293
18295
|
return /* @__PURE__ */ jsxs121("div", { className: `flex flex-wrap items-center gap-3 p-4 bg-ods-card border border-ods-border rounded-lg ${className}`, children: [
|
|
@@ -18302,6 +18304,7 @@ function StatusFilterComponent({
|
|
|
18302
18304
|
variant: selectedStatus === "all" ? "accent" : "outline",
|
|
18303
18305
|
size: "small-legacy",
|
|
18304
18306
|
onClick: () => onStatusChange("all"),
|
|
18307
|
+
disabled: disabledValues.includes("all"),
|
|
18305
18308
|
className: "text-h3",
|
|
18306
18309
|
children: "All"
|
|
18307
18310
|
}
|
|
@@ -18313,6 +18316,7 @@ function StatusFilterComponent({
|
|
|
18313
18316
|
variant: selectedStatus === option.value ? "accent" : "outline",
|
|
18314
18317
|
size: "small-legacy",
|
|
18315
18318
|
onClick: () => onStatusChange(option.value),
|
|
18319
|
+
disabled: disabledValues.includes(option.value),
|
|
18316
18320
|
className: "text-h3",
|
|
18317
18321
|
children: option.label
|
|
18318
18322
|
},
|
|
@@ -39847,4 +39851,4 @@ export {
|
|
|
39847
39851
|
LogsList,
|
|
39848
39852
|
assets
|
|
39849
39853
|
};
|
|
39850
|
-
//# sourceMappingURL=chunk-
|
|
39854
|
+
//# sourceMappingURL=chunk-BCPLTDRW.js.map
|