@flamingo-stack/openframe-frontend-core 0.0.220-snapshot.20260602172647 → 0.0.220

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.
Files changed (49) hide show
  1. package/dist/{chunk-CPIX5AAR.js → chunk-3S5LHIG6.js} +2 -2
  2. package/dist/{chunk-E2AWBQEU.js → chunk-6XYG4J4R.js} +2 -2
  3. package/dist/{chunk-JMGSJHFP.cjs → chunk-B4RBJQBJ.cjs} +10 -10
  4. package/dist/{chunk-JMGSJHFP.cjs.map → chunk-B4RBJQBJ.cjs.map} +1 -1
  5. package/dist/{chunk-FOOQFRJR.js → chunk-CH5KIJJT.js} +2 -2
  6. package/dist/{chunk-SRCEVQYA.js → chunk-HIGI5ZPK.js} +2 -2
  7. package/dist/{chunk-ZAGQXSAP.cjs → chunk-ICJRYD3E.cjs} +14 -6
  8. package/dist/chunk-ICJRYD3E.cjs.map +1 -0
  9. package/dist/{chunk-IS4IZC7N.js → chunk-OPTUEWOT.js} +14 -6
  10. package/dist/chunk-OPTUEWOT.js.map +1 -0
  11. package/dist/{chunk-4PBV66HQ.cjs → chunk-RBTT2TIG.cjs} +7 -7
  12. package/dist/{chunk-4PBV66HQ.cjs.map → chunk-RBTT2TIG.cjs.map} +1 -1
  13. package/dist/{chunk-73YDB6AT.cjs → chunk-SEAFHHDR.cjs} +9 -9
  14. package/dist/{chunk-73YDB6AT.cjs.map → chunk-SEAFHHDR.cjs.map} +1 -1
  15. package/dist/{chunk-7TQNW2AM.cjs → chunk-TYR7DCGH.cjs} +24 -24
  16. package/dist/{chunk-7TQNW2AM.cjs.map → chunk-TYR7DCGH.cjs.map} +1 -1
  17. package/dist/components/chat/guide-welcome.d.ts +2 -4
  18. package/dist/components/chat/guide-welcome.d.ts.map +1 -1
  19. package/dist/components/chat/index.cjs +2 -2
  20. package/dist/components/chat/index.js +1 -1
  21. package/dist/components/contact/index.cjs +3 -3
  22. package/dist/components/contact/index.js +2 -2
  23. package/dist/components/features/index.cjs +2 -2
  24. package/dist/components/features/index.js +1 -1
  25. package/dist/components/index.cjs +77 -77
  26. package/dist/components/index.js +4 -4
  27. package/dist/components/layout/page-heading.d.ts +6 -7
  28. package/dist/components/layout/page-heading.d.ts.map +1 -1
  29. package/dist/components/navigation/index.cjs +2 -2
  30. package/dist/components/navigation/index.js +1 -1
  31. package/dist/components/onboarding-guides/index.cjs +25 -25
  32. package/dist/components/onboarding-guides/index.js +3 -3
  33. package/dist/components/tickets/index.cjs +64 -64
  34. package/dist/components/tickets/index.js +4 -4
  35. package/dist/components/ui/index.cjs +2 -2
  36. package/dist/components/ui/index.js +1 -1
  37. package/dist/index.cjs +2 -2
  38. package/dist/index.js +1 -1
  39. package/package.json +1 -1
  40. package/src/components/chat/embeddable-chat.tsx +3 -5
  41. package/src/components/chat/guide-welcome.tsx +13 -5
  42. package/src/components/layout/page-heading.tsx +7 -13
  43. package/src/stories/GuideWelcome.stories.tsx +0 -22
  44. package/dist/chunk-IS4IZC7N.js.map +0 -1
  45. package/dist/chunk-ZAGQXSAP.cjs.map +0 -1
  46. /package/dist/{chunk-CPIX5AAR.js.map → chunk-3S5LHIG6.js.map} +0 -0
  47. /package/dist/{chunk-E2AWBQEU.js.map → chunk-6XYG4J4R.js.map} +0 -0
  48. /package/dist/{chunk-FOOQFRJR.js.map → chunk-CH5KIJJT.js.map} +0 -0
  49. /package/dist/{chunk-SRCEVQYA.js.map → chunk-HIGI5ZPK.js.map} +0 -0
@@ -5175,10 +5175,19 @@ function MoreActionsMenu({
5175
5175
  import { jsx as jsx33, jsxs as jsxs30 } from "react/jsx-runtime";
5176
5176
  var DEFAULT_TITLE = "Guide Mode Chat";
5177
5177
  var DEFAULT_SUBTITLE2 = "This chat is temporary and will not be saved. Ask about OpenFrame docs, known issues, or manage your support tickets right here.";
5178
+ var DEFAULT_QUICK_ACTIONS = [
5179
+ { id: "how-to-start", label: "How to start" },
5180
+ { id: "connect-device", label: "Connect device" },
5181
+ { id: "find-device", label: "Find device" },
5182
+ { id: "remote-connection", label: "Remote connection" },
5183
+ { id: "run-scripts", label: "Run scripts" },
5184
+ { id: "device-software", label: "Device software" },
5185
+ { id: "bulk-update", label: "Bulk update" }
5186
+ ];
5178
5187
  function GuideWelcome({
5179
5188
  title = DEFAULT_TITLE,
5180
5189
  subtitle = DEFAULT_SUBTITLE2,
5181
- quickActions = [],
5190
+ quickActions = DEFAULT_QUICK_ACTIONS,
5182
5191
  maxVisibleQuickActions = 3,
5183
5192
  onQuickAction,
5184
5193
  children,
@@ -14703,7 +14712,7 @@ function ListPageLayout({
14703
14712
 
14704
14713
  // src/components/layout/page-heading.tsx
14705
14714
  import { Fragment as Fragment21, jsx as jsx117, jsxs as jsxs95 } from "react/jsx-runtime";
14706
- var PAGE_HEADING_CLASS = "text-h1 text-ods-text-primary";
14715
+ var PAGE_HEADING_CLASS = "text-h1 text-ods-text-primary tracking-[-1.12px]";
14707
14716
  var DESCRIPTION_CLASS = "mt-6 max-w-[640px] font-['DM_Sans'] text-[16px] md:text-[18px] leading-[24px] md:leading-[28px] text-ods-text-secondary";
14708
14717
  function PageHeading({
14709
14718
  children,
@@ -14714,10 +14723,9 @@ function PageHeading({
14714
14723
  }) {
14715
14724
  const headingClass = className ? `${PAGE_HEADING_CLASS} ${className}` : PAGE_HEADING_CLASS;
14716
14725
  const descClass = descriptionClassName ? `${DESCRIPTION_CLASS} ${descriptionClassName}` : DESCRIPTION_CLASS;
14717
- const hasDescription = description != null && description !== "" && typeof description !== "boolean";
14718
14726
  return /* @__PURE__ */ jsxs95(Fragment21, { children: [
14719
14727
  /* @__PURE__ */ jsx117(Tag2, { className: headingClass, children }),
14720
- hasDescription && /* @__PURE__ */ jsx117("p", { className: descClass, children: description })
14728
+ description != null && description !== "" && /* @__PURE__ */ jsx117("p", { className: descClass, children: description })
14721
14729
  ] });
14722
14730
  }
14723
14731
 
@@ -41804,7 +41812,7 @@ function EmbeddableChatInner({
41804
41812
  onOpenArchive: fetchArchivedDialogs ? openArchive : void 0
41805
41813
  }
41806
41814
  ),
41807
- activeMode === "guide" && !!effectiveModes.mingo && /* @__PURE__ */ jsx293(GuideModeBanner, { className: "animate-in fade-in-0 duration-200" }),
41815
+ activeMode === "guide" && /* @__PURE__ */ jsx293(GuideModeBanner, { className: "animate-in fade-in-0 duration-200" }),
41808
41816
  /* @__PURE__ */ jsx293("div", { className: "flex flex-1 min-h-0 overflow-hidden", children: /* @__PURE__ */ jsxs236("div", { className: "flex flex-1 flex-col min-h-0 min-w-0", children: [
41809
41817
  /* @__PURE__ */ jsx293(
41810
41818
  "div",
@@ -42819,4 +42827,4 @@ export {
42819
42827
  LogsList,
42820
42828
  assets
42821
42829
  };
42822
- //# sourceMappingURL=chunk-IS4IZC7N.js.map
42830
+ //# sourceMappingURL=chunk-OPTUEWOT.js.map