@homebound/beam 3.69.0 → 3.71.0

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.d.cts CHANGED
@@ -4624,6 +4624,8 @@ declare const Icons: {
4624
4624
  file: JSX.Element;
4625
4625
  images: JSX.Element;
4626
4626
  openBook: JSX.Element;
4627
+ television: JSX.Element;
4628
+ monitor: JSX.Element;
4627
4629
  inbox: JSX.Element;
4628
4630
  criticalPath: JSX.Element;
4629
4631
  nested: JSX.Element;
@@ -4665,6 +4667,7 @@ declare const Icons: {
4665
4667
  basement: JSX.Element;
4666
4668
  cube: JSX.Element;
4667
4669
  history: JSX.Element;
4670
+ dinner: JSX.Element;
4668
4671
  projects: JSX.Element;
4669
4672
  tasks: JSX.Element;
4670
4673
  finances: JSX.Element;
@@ -4704,6 +4707,7 @@ declare const Icons: {
4704
4707
  subdivision: JSX.Element;
4705
4708
  lot: JSX.Element;
4706
4709
  houseFilled: JSX.Element;
4710
+ connect: JSX.Element;
4707
4711
  single: JSX.Element;
4708
4712
  linked: JSX.Element;
4709
4713
  package: JSX.Element;
@@ -9940,7 +9944,26 @@ type StepperTabProps = {
9940
9944
  };
9941
9945
  declare function StepperTab(props: StepperTabProps): JSX.Element;
9942
9946
 
9943
- type StepperTabsStep = Pick<StepperTabProps, "label" | "value" | "completed" | "disabled">;
9947
+ type WorkflowActionsProps = {
9948
+ isFirstStep: boolean;
9949
+ isLastStep: boolean;
9950
+ isMobile: boolean;
9951
+ onBack: () => void;
9952
+ /** Leaves the workflow without saving. Always shown. */
9953
+ onCancel: (e: PressEvent) => void;
9954
+ /** Saves partial progress and exits. Used whenever canExitEarly is true. */
9955
+ onSaveAndExit?: (e: PressEvent) => void | Promise<void>;
9956
+ /** Label for the completion button shown on the last step. */
9957
+ completeLabel: "Create" | "Save";
9958
+ /** Called when the completion button is clicked. Only shown on the last step. */
9959
+ onComplete: (e: PressEvent) => void | Promise<void>;
9960
+ /** Runs before continuing to the next step. Return `false` to stay put, like when the save failed. */
9961
+ onContinue: () => boolean | void | Promise<boolean | void>;
9962
+ /** Disables whichever of Continue/Complete is currently shown, e.g. while the active step is invalid. */
9963
+ primaryDisabled?: boolean;
9964
+ };
9965
+
9966
+ type StepperTabsStep = Pick<StepperTabProps, "label" | "value" | "completed" | "disabled"> & Partial<Pick<WorkflowActionsProps, "onContinue">>;
9944
9967
  type StepperTabsProps = {
9945
9968
  steps: StepperTabsStep[];
9946
9969
  currentStep: StepperTabsStep["value"];
@@ -10233,24 +10256,6 @@ type PageHeaderLayoutProps<V extends string, X> = {
10233
10256
  /** Page header + body shell with auto-hide chrome. Contract: `docs/layouts.md`. */
10234
10257
  declare function PageHeaderLayout<V extends string, X extends Only<TabsContentXss, X>>(props: PageHeaderLayoutProps<V, X>): JSX.Element;
10235
10258
 
10236
- type WorkflowActionsProps = {
10237
- isFirstStep: boolean;
10238
- isLastStep: boolean;
10239
- isMobile: boolean;
10240
- onBack: () => void;
10241
- /** Leaves the workflow without saving. Always shown. */
10242
- onCancel: (e: PressEvent) => void;
10243
- /** Saves partial progress and exits. Used whenever canExitEarly is true. */
10244
- onSaveAndExit?: (e: PressEvent) => void | Promise<void>;
10245
- /** Label for the completion button shown on the last step. */
10246
- completeLabel: "Create" | "Save";
10247
- /** Called when the completion button is clicked. Only shown on the last step. */
10248
- onComplete: (e: PressEvent) => void | Promise<void>;
10249
- onContinue: () => void;
10250
- /** Disables whichever of Continue/Complete is currently shown, e.g. while the active step is invalid. */
10251
- primaryDisabled?: boolean;
10252
- };
10253
-
10254
10259
  /** A `WorkflowLayout` step: a `StepperTabsStep` (minus `value`, which is derived from `label`) plus the page content rendered while it's active — `completed` also gates the Continue/Complete CTA when this is the active step. */
10255
10260
  type WorkflowLayoutStep = Omit<StepperTabsStep, "value"> & {
10256
10261
  /** Rendered as the page body while this is the active step. */
package/dist/index.d.ts CHANGED
@@ -4624,6 +4624,8 @@ declare const Icons: {
4624
4624
  file: JSX.Element;
4625
4625
  images: JSX.Element;
4626
4626
  openBook: JSX.Element;
4627
+ television: JSX.Element;
4628
+ monitor: JSX.Element;
4627
4629
  inbox: JSX.Element;
4628
4630
  criticalPath: JSX.Element;
4629
4631
  nested: JSX.Element;
@@ -4665,6 +4667,7 @@ declare const Icons: {
4665
4667
  basement: JSX.Element;
4666
4668
  cube: JSX.Element;
4667
4669
  history: JSX.Element;
4670
+ dinner: JSX.Element;
4668
4671
  projects: JSX.Element;
4669
4672
  tasks: JSX.Element;
4670
4673
  finances: JSX.Element;
@@ -4704,6 +4707,7 @@ declare const Icons: {
4704
4707
  subdivision: JSX.Element;
4705
4708
  lot: JSX.Element;
4706
4709
  houseFilled: JSX.Element;
4710
+ connect: JSX.Element;
4707
4711
  single: JSX.Element;
4708
4712
  linked: JSX.Element;
4709
4713
  package: JSX.Element;
@@ -9940,7 +9944,26 @@ type StepperTabProps = {
9940
9944
  };
9941
9945
  declare function StepperTab(props: StepperTabProps): JSX.Element;
9942
9946
 
9943
- type StepperTabsStep = Pick<StepperTabProps, "label" | "value" | "completed" | "disabled">;
9947
+ type WorkflowActionsProps = {
9948
+ isFirstStep: boolean;
9949
+ isLastStep: boolean;
9950
+ isMobile: boolean;
9951
+ onBack: () => void;
9952
+ /** Leaves the workflow without saving. Always shown. */
9953
+ onCancel: (e: PressEvent) => void;
9954
+ /** Saves partial progress and exits. Used whenever canExitEarly is true. */
9955
+ onSaveAndExit?: (e: PressEvent) => void | Promise<void>;
9956
+ /** Label for the completion button shown on the last step. */
9957
+ completeLabel: "Create" | "Save";
9958
+ /** Called when the completion button is clicked. Only shown on the last step. */
9959
+ onComplete: (e: PressEvent) => void | Promise<void>;
9960
+ /** Runs before continuing to the next step. Return `false` to stay put, like when the save failed. */
9961
+ onContinue: () => boolean | void | Promise<boolean | void>;
9962
+ /** Disables whichever of Continue/Complete is currently shown, e.g. while the active step is invalid. */
9963
+ primaryDisabled?: boolean;
9964
+ };
9965
+
9966
+ type StepperTabsStep = Pick<StepperTabProps, "label" | "value" | "completed" | "disabled"> & Partial<Pick<WorkflowActionsProps, "onContinue">>;
9944
9967
  type StepperTabsProps = {
9945
9968
  steps: StepperTabsStep[];
9946
9969
  currentStep: StepperTabsStep["value"];
@@ -10233,24 +10256,6 @@ type PageHeaderLayoutProps<V extends string, X> = {
10233
10256
  /** Page header + body shell with auto-hide chrome. Contract: `docs/layouts.md`. */
10234
10257
  declare function PageHeaderLayout<V extends string, X extends Only<TabsContentXss, X>>(props: PageHeaderLayoutProps<V, X>): JSX.Element;
10235
10258
 
10236
- type WorkflowActionsProps = {
10237
- isFirstStep: boolean;
10238
- isLastStep: boolean;
10239
- isMobile: boolean;
10240
- onBack: () => void;
10241
- /** Leaves the workflow without saving. Always shown. */
10242
- onCancel: (e: PressEvent) => void;
10243
- /** Saves partial progress and exits. Used whenever canExitEarly is true. */
10244
- onSaveAndExit?: (e: PressEvent) => void | Promise<void>;
10245
- /** Label for the completion button shown on the last step. */
10246
- completeLabel: "Create" | "Save";
10247
- /** Called when the completion button is clicked. Only shown on the last step. */
10248
- onComplete: (e: PressEvent) => void | Promise<void>;
10249
- onContinue: () => void;
10250
- /** Disables whichever of Continue/Complete is currently shown, e.g. while the active step is invalid. */
10251
- primaryDisabled?: boolean;
10252
- };
10253
-
10254
10259
  /** A `WorkflowLayout` step: a `StepperTabsStep` (minus `value`, which is derived from `label`) plus the page content rendered while it's active — `completed` also gates the Continue/Complete CTA when this is the active step. */
10255
10260
  type WorkflowLayoutStep = Omit<StepperTabsStep, "value"> & {
10256
10261
  /** Rendered as the page body while this is the active step. */
package/dist/index.js CHANGED
@@ -4690,6 +4690,28 @@ var Icons = {
4690
4690
  /* @__PURE__ */ jsx3("path", { d: "M12 12L11 11L9 14H19L15 8L12 12Z" })
4691
4691
  ] }),
4692
4692
  openBook: /* @__PURE__ */ jsx3("path", { d: "M21 3H14C13.229 3 12.532 3.301 12 3.78C11.468 3.301 10.771 3 10 3H3C2.447 3 2 3.448 2 4V19C2 19.553 2.447 20 3 20H8.758C9.284 20 9.8 20.214 10.172 20.586L11.293 21.707C11.302 21.716 11.314 21.719 11.323 21.728C11.409 21.807 11.505 21.877 11.617 21.924C11.618 21.924 11.618 21.924 11.619 21.924C11.74 21.974 11.869 22 12 22C12.131 22 12.26 21.974 12.381 21.924C12.382 21.924 12.382 21.924 12.383 21.924C12.495 21.877 12.591 21.807 12.677 21.728C12.686 21.719 12.698 21.716 12.707 21.707L13.828 20.586C14.2 20.214 14.716 20 15.242 20H21C21.553 20 22 19.553 22 19V4C22 3.448 21.553 3 21 3ZM8.758 18H4V5H10C10.552 5 11 5.449 11 6V18.689C10.342 18.246 9.557 18 8.758 18ZM20 18H15.242C14.443 18 13.658 18.246 13 18.689V6C13 5.449 13.448 5 14 5H20V18Z" }),
4693
+ television: /* @__PURE__ */ jsxs2(Fragment2, { children: [
4694
+ /* @__PURE__ */ jsx3("path", { d: "M20 5.99997H14.414L16.707 3.70697L15.293 2.29297L12 5.58597L8.707 2.29297L7.293 3.70697L9.586 5.99997H4C2.897 5.99997 2 6.89697 2 7.99997V19C2 20.103 2.897 21 4 21H20C21.103 21 22 20.103 22 19V7.99997C22 6.89697 21.103 5.99997 20 5.99997ZM4 19V7.99997H20L20.002 19H4Z" }),
4695
+ /* @__PURE__ */ jsx3("path", { d: "M20 5.99997H14.414L16.707 3.70697L15.293 2.29297L12 5.58597L8.707 2.29297L7.293 3.70697L9.586 5.99997H4C2.897 5.99997 2 6.89697 2 7.99997V19C2 20.103 2.897 21 4 21H20C21.103 21 22 20.103 22 19V7.99997C22 6.89697 21.103 5.99997 20 5.99997ZM4 19V7.99997H20L20.002 19H4Z" }),
4696
+ /* @__PURE__ */ jsx3("path", { d: "M20 5.99997H14.414L16.707 3.70697L15.293 2.29297L12 5.58597L8.707 2.29297L7.293 3.70697L9.586 5.99997H4C2.897 5.99997 2 6.89697 2 7.99997V19C2 20.103 2.897 21 4 21H20C21.103 21 22 20.103 22 19V7.99997C22 6.89697 21.103 5.99997 20 5.99997ZM4 19V7.99997H20L20.002 19H4Z" }),
4697
+ /* @__PURE__ */ jsx3("path", { d: "M20 5.99997H14.414L16.707 3.70697L15.293 2.29297L12 5.58597L8.707 2.29297L7.293 3.70697L9.586 5.99997H4C2.897 5.99997 2 6.89697 2 7.99997V19C2 20.103 2.897 21 4 21H20C21.103 21 22 20.103 22 19V7.99997C22 6.89697 21.103 5.99997 20 5.99997ZM4 19V7.99997H20L20.002 19H4Z" }),
4698
+ /* @__PURE__ */ jsx3("path", { d: "M20 5.99997H14.414L16.707 3.70697L15.293 2.29297L12 5.58597L8.707 2.29297L7.293 3.70697L9.586 5.99997H4C2.897 5.99997 2 6.89697 2 7.99997V19C2 20.103 2.897 21 4 21H20C21.103 21 22 20.103 22 19V7.99997C22 6.89697 21.103 5.99997 20 5.99997ZM4 19V7.99997H20L20.002 19H4Z" }),
4699
+ /* @__PURE__ */ jsx3("path", { d: "M20 5.99997H14.414L16.707 3.70697L15.293 2.29297L12 5.58597L8.707 2.29297L7.293 3.70697L9.586 5.99997H4C2.897 5.99997 2 6.89697 2 7.99997V19C2 20.103 2.897 21 4 21H20C21.103 21 22 20.103 22 19V7.99997C22 6.89697 21.103 5.99997 20 5.99997ZM4 19V7.99997H20L20.002 19H4Z" }),
4700
+ /* @__PURE__ */ jsx3("path", { d: "M20 5.99997H14.414L16.707 3.70697L15.293 2.29297L12 5.58597L8.707 2.29297L7.293 3.70697L9.586 5.99997H4C2.897 5.99997 2 6.89697 2 7.99997V19C2 20.103 2.897 21 4 21H20C21.103 21 22 20.103 22 19V7.99997C22 6.89697 21.103 5.99997 20 5.99997ZM4 19V7.99997H20L20.002 19H4Z" }),
4701
+ /* @__PURE__ */ jsx3("path", { d: "M20 5.99997H14.414L16.707 3.70697L15.293 2.29297L12 5.58597L8.707 2.29297L7.293 3.70697L9.586 5.99997H4C2.897 5.99997 2 6.89697 2 7.99997V19C2 20.103 2.897 21 4 21H20C21.103 21 22 20.103 22 19V7.99997C22 6.89697 21.103 5.99997 20 5.99997ZM4 19V7.99997H20L20.002 19H4Z" }),
4702
+ /* @__PURE__ */ jsx3("path", { d: "M20 5.99997H14.414L16.707 3.70697L15.293 2.29297L12 5.58597L8.707 2.29297L7.293 3.70697L9.586 5.99997H4C2.897 5.99997 2 6.89697 2 7.99997V19C2 20.103 2.897 21 4 21H20C21.103 21 22 20.103 22 19V7.99997C22 6.89697 21.103 5.99997 20 5.99997ZM4 19V7.99997H20L20.002 19H4Z" })
4703
+ ] }),
4704
+ monitor: /* @__PURE__ */ jsxs2(Fragment2, { children: [
4705
+ /* @__PURE__ */ jsx3("path", { d: "M20 3H4C2.897 3 2 3.897 2 5V16C2 17.103 2.897 18 4 18H11V20H8V22H11H13H16V20H13V18H20C21.103 18 22 17.103 22 16V5C22 3.897 21.103 3 20 3ZM4 14V5H20L20.002 14H4Z" }),
4706
+ /* @__PURE__ */ jsx3("path", { d: "M20 3H4C2.897 3 2 3.897 2 5V16C2 17.103 2.897 18 4 18H11V20H8V22H11H13H16V20H13V18H20C21.103 18 22 17.103 22 16V5C22 3.897 21.103 3 20 3ZM4 14V5H20L20.002 14H4Z" }),
4707
+ /* @__PURE__ */ jsx3("path", { d: "M20 3H4C2.897 3 2 3.897 2 5V16C2 17.103 2.897 18 4 18H11V20H8V22H11H13H16V20H13V18H20C21.103 18 22 17.103 22 16V5C22 3.897 21.103 3 20 3ZM4 14V5H20L20.002 14H4Z" }),
4708
+ /* @__PURE__ */ jsx3("path", { d: "M20 3H4C2.897 3 2 3.897 2 5V16C2 17.103 2.897 18 4 18H11V20H8V22H11H13H16V20H13V18H20C21.103 18 22 17.103 22 16V5C22 3.897 21.103 3 20 3ZM4 14V5H20L20.002 14H4Z" }),
4709
+ /* @__PURE__ */ jsx3("path", { d: "M20 3H4C2.897 3 2 3.897 2 5V16C2 17.103 2.897 18 4 18H11V20H8V22H11H13H16V20H13V18H20C21.103 18 22 17.103 22 16V5C22 3.897 21.103 3 20 3ZM4 14V5H20L20.002 14H4Z" }),
4710
+ /* @__PURE__ */ jsx3("path", { d: "M20 3H4C2.897 3 2 3.897 2 5V16C2 17.103 2.897 18 4 18H11V20H8V22H11H13H16V20H13V18H20C21.103 18 22 17.103 22 16V5C22 3.897 21.103 3 20 3ZM4 14V5H20L20.002 14H4Z" }),
4711
+ /* @__PURE__ */ jsx3("path", { d: "M20 3H4C2.897 3 2 3.897 2 5V16C2 17.103 2.897 18 4 18H11V20H8V22H11H13H16V20H13V18H20C21.103 18 22 17.103 22 16V5C22 3.897 21.103 3 20 3ZM4 14V5H20L20.002 14H4Z" }),
4712
+ /* @__PURE__ */ jsx3("path", { d: "M20 3H4C2.897 3 2 3.897 2 5V16C2 17.103 2.897 18 4 18H11V20H8V22H11H13H16V20H13V18H20C21.103 18 22 17.103 22 16V5C22 3.897 21.103 3 20 3ZM4 14V5H20L20.002 14H4Z" }),
4713
+ /* @__PURE__ */ jsx3("path", { d: "M20 3H4C2.897 3 2 3.897 2 5V16C2 17.103 2.897 18 4 18H11V20H8V22H11H13H16V20H13V18H20C21.103 18 22 17.103 22 16V5C22 3.897 21.103 3 20 3ZM4 14V5H20L20.002 14H4Z" })
4714
+ ] }),
4693
4715
  // Misc
4694
4716
  inbox: /* @__PURE__ */ jsx3("path", { d: "M20 3H4C2.897 3 2 3.897 2 5V13V14V19C2 20.104 2.896 21 4 21H20C21.104 21 22 20.104 22 19V14V13V5C22 3.897 21.103 3 20 3ZM19 12H16H15.858C15.412 13.722 13.861 15 12 15C10.139 15 8.588 13.722 8.142 12H8H4V5H20V12H19Z" }),
4695
4717
  criticalPath: /* @__PURE__ */ jsx3("path", { d: "M6.5 20H14.844C15.2 20.753 15.636 21.422 16.093 22H6.5C4.019 22 2 19.981 2 17.5C2 15.019 4.019 13 6.5 13H13.5C14.327 13 15 12.327 15 11.5C15 10.673 14.327 10 13.5 10H7.285C7.771 9.443 8.248 8.771 8.639 8H13.5C15.43 8 17 9.57 17 11.5C17 13.43 15.43 15 13.5 15H6.5C5.121 15 4 16.121 4 17.5C4 18.879 5.121 20 6.5 20ZM2 5C2 3.346 3.346 2 5 2C6.654 2 8 3.346 8 5C8 8.187 5 10 5 10C5 10 2 8.188 2 5ZM3.5 5C3.5 5.828 4.172 6.5 5 6.5C5.828 6.5 6.5 5.828 6.5 5C6.5 4.172 5.828 3.5 5 3.5C4.172 3.5 3.5 4.172 3.5 5ZM16 17C16 15.346 17.346 14 19 14C20.654 14 22 15.346 22 17C22 20.187 19 22 19 22C19 22 16 20.188 16 17ZM17.5 17C17.5 17.828 18.172 18.5 19 18.5C19.828 18.5 20.5 17.828 20.5 17C20.5 16.172 19.828 15.5 19 15.5C18.172 15.5 17.5 16.172 17.5 17Z" }),
@@ -4752,13 +4774,17 @@ var Icons = {
4752
4774
  /* @__PURE__ */ jsx3("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6 11H22V8H3V15H6V11ZM7 16H2V7H23V12H7V16Z" }),
4753
4775
  /* @__PURE__ */ jsx3("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.24335 21.7762C5.35823 21.6723 5.5 21.4626 5.5 21C5.5 20.8857 5.4543 20.6946 5.30831 20.4252C5.16704 20.1646 4.96603 19.8932 4.74404 19.6368C4.66213 19.5423 4.5798 19.4525 4.5 19.369C4.4202 19.4525 4.33787 19.5423 4.25596 19.6368C4.03397 19.8932 3.83296 20.1646 3.69169 20.4252C3.5457 20.6946 3.5 20.8857 3.5 21C3.5 21.4626 3.64177 21.6723 3.75665 21.7762C3.88852 21.8955 4.12535 22 4.5 22C4.87465 22 5.11148 21.8955 5.24335 21.7762ZM4.5 23C5.60457 23 6.5 22.3807 6.5 21C6.5 19.6193 4.5 18 4.5 18C4.5 18 2.5 19.6193 2.5 21C2.5 22.3807 3.39543 23 4.5 23Z" })
4754
4776
  ] }),
4755
- bed: /* @__PURE__ */ jsxs2(Fragment2, { children: [
4756
- /* @__PURE__ */ jsx3("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M22 12H2V18H22V12ZM1 11V19H23V11H1Z" }),
4757
- /* @__PURE__ */ jsx3("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M20 2H4V11H20V2ZM3 1V12H21V1H3Z" }),
4758
- /* @__PURE__ */ jsx3("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M15 7H9V11H15V7ZM8 6V12H16V6H8Z" }),
4759
- /* @__PURE__ */ jsx3("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.5 23V19H4.5V23H3.5Z" }),
4760
- /* @__PURE__ */ jsx3("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M19.5 23V19H20.5V23H19.5Z" })
4761
- ] }),
4777
+ bed: /* @__PURE__ */ jsx3(Fragment2, { children: /* @__PURE__ */ jsxs2(Fragment2, { children: [
4778
+ /* @__PURE__ */ jsx3("path", { d: "M20 9.557V7V6V3H18V5H13H11H6V3H4V6V7V9.557C2.81 10.25 2 11.525 2 13V17C2 17.553 2.448 18 3 18H4V22H6V18H18V22H20V18H21C21.553 18 22 17.553 22 17V13C22 11.525 21.189 10.25 20 9.557ZM18 7V9H13V7H18ZM6 7H11V9H6V7ZM20 16H18H4V13C4 11.897 4.897 11 6 11H18C19.103 11 20 11.897 20 13V16Z" }),
4779
+ /* @__PURE__ */ jsx3("path", { d: "M20 9.557V7V6V3H18V5H13H11H6V3H4V6V7V9.557C2.81 10.25 2 11.525 2 13V17C2 17.553 2.448 18 3 18H4V22H6V18H18V22H20V18H21C21.553 18 22 17.553 22 17V13C22 11.525 21.189 10.25 20 9.557ZM18 7V9H13V7H18ZM6 7H11V9H6V7ZM20 16H18H4V13C4 11.897 4.897 11 6 11H18C19.103 11 20 11.897 20 13V16Z" }),
4780
+ /* @__PURE__ */ jsx3("path", { d: "M20 9.557V7V6V3H18V5H13H11H6V3H4V6V7V9.557C2.81 10.25 2 11.525 2 13V17C2 17.553 2.448 18 3 18H4V22H6V18H18V22H20V18H21C21.553 18 22 17.553 22 17V13C22 11.525 21.189 10.25 20 9.557ZM18 7V9H13V7H18ZM6 7H11V9H6V7ZM20 16H18H4V13C4 11.897 4.897 11 6 11H18C19.103 11 20 11.897 20 13V16Z" }),
4781
+ /* @__PURE__ */ jsx3("path", { d: "M20 9.557V7V6V3H18V5H13H11H6V3H4V6V7V9.557C2.81 10.25 2 11.525 2 13V17C2 17.553 2.448 18 3 18H4V22H6V18H18V22H20V18H21C21.553 18 22 17.553 22 17V13C22 11.525 21.189 10.25 20 9.557ZM18 7V9H13V7H18ZM6 7H11V9H6V7ZM20 16H18H4V13C4 11.897 4.897 11 6 11H18C19.103 11 20 11.897 20 13V16Z" }),
4782
+ /* @__PURE__ */ jsx3("path", { d: "M20 9.557V7V6V3H18V5H13H11H6V3H4V6V7V9.557C2.81 10.25 2 11.525 2 13V17C2 17.553 2.448 18 3 18H4V22H6V18H18V22H20V18H21C21.553 18 22 17.553 22 17V13C22 11.525 21.189 10.25 20 9.557ZM18 7V9H13V7H18ZM6 7H11V9H6V7ZM20 16H18H4V13C4 11.897 4.897 11 6 11H18C19.103 11 20 11.897 20 13V16Z" }),
4783
+ /* @__PURE__ */ jsx3("path", { d: "M20 9.557V7V6V3H18V5H13H11H6V3H4V6V7V9.557C2.81 10.25 2 11.525 2 13V17C2 17.553 2.448 18 3 18H4V22H6V18H18V22H20V18H21C21.553 18 22 17.553 22 17V13C22 11.525 21.189 10.25 20 9.557ZM18 7V9H13V7H18ZM6 7H11V9H6V7ZM20 16H18H4V13C4 11.897 4.897 11 6 11H18C19.103 11 20 11.897 20 13V16Z" }),
4784
+ /* @__PURE__ */ jsx3("path", { d: "M20 9.557V7V6V3H18V5H13H11H6V3H4V6V7V9.557C2.81 10.25 2 11.525 2 13V17C2 17.553 2.448 18 3 18H4V22H6V18H18V22H20V18H21C21.553 18 22 17.553 22 17V13C22 11.525 21.189 10.25 20 9.557ZM18 7V9H13V7H18ZM6 7H11V9H6V7ZM20 16H18H4V13C4 11.897 4.897 11 6 11H18C19.103 11 20 11.897 20 13V16Z" }),
4785
+ /* @__PURE__ */ jsx3("path", { d: "M20 9.557V7V6V3H18V5H13H11H6V3H4V6V7V9.557C2.81 10.25 2 11.525 2 13V17C2 17.553 2.448 18 3 18H4V22H6V18H18V22H20V18H21C21.553 18 22 17.553 22 17V13C22 11.525 21.189 10.25 20 9.557ZM18 7V9H13V7H18ZM6 7H11V9H6V7ZM20 16H18H4V13C4 11.897 4.897 11 6 11H18C19.103 11 20 11.897 20 13V16Z" }),
4786
+ /* @__PURE__ */ jsx3("path", { d: "M20 9.557V7V6V3H18V5H13H11H6V3H4V6V7V9.557C2.81 10.25 2 11.525 2 13V17C2 17.553 2.448 18 3 18H4V22H6V18H18V22H20V18H21C21.553 18 22 17.553 22 17V13C22 11.525 21.189 10.25 20 9.557ZM18 7V9H13V7H18ZM6 7H11V9H6V7ZM20 16H18H4V13C4 11.897 4.897 11 6 11H18C19.103 11 20 11.897 20 13V16Z" })
4787
+ ] }) }),
4762
4788
  sqFeet: /* @__PURE__ */ jsxs2(Fragment2, { children: [
4763
4789
  /* @__PURE__ */ jsx3("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0.958374 0.958328H6.95837V1.95833H1.95837V6.95833H0.958374V0.958328Z" }),
4764
4790
  /* @__PURE__ */ jsx3("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0.958374 23.0417L0.958374 17.0417L1.95837 17.0417L1.95837 22.0417L6.95837 22.0417L6.95837 23.0417L0.958374 23.0417Z" }),
@@ -4789,6 +4815,17 @@ var Icons = {
4789
4815
  /* @__PURE__ */ jsx3("path", { d: "M12 8V13H17V11H14V8H12Z" }),
4790
4816
  /* @__PURE__ */ jsx3("path", { d: "M21.292 8.49699C21.066 7.96199 20.787 7.44699 20.463 6.96799C20.141 6.48999 19.772 6.04199 19.364 5.63499C18.956 5.22799 18.51 4.85999 18.032 4.53699C17.55 4.21099 17.035 3.93299 16.504 3.70799C15.959 3.47799 15.39 3.30099 14.814 3.18299C13.633 2.93999 12.37 2.93899 11.188 3.18299C10.609 3.30099 10.041 3.47799 9.498 3.70699C8.967 3.93199 8.453 4.20999 7.969 4.53699C7.492 4.85899 7.043 5.22899 6.636 5.63599C6.229 6.04299 5.859 6.49199 5.537 6.96799C5.211 7.45199 4.932 7.96599 4.708 8.49599C4.478 9.03999 4.301 9.60899 4.183 10.186C4.062 10.778 4 11.388 4 12C4 12.008 4.001 12.017 4.001 12.025H2L5 16L8 12.025H6.001C6.001 12.017 6 12.008 6 12C6 11.523 6.048 11.048 6.142 10.588C6.234 10.139 6.371 9.69799 6.55 9.27499C6.724 8.86299 6.941 8.46199 7.195 8.08699C7.445 7.71599 7.733 7.36799 8.05 7.04999C8.367 6.73199 8.716 6.44499 9.086 6.19499C9.462 5.94099 9.863 5.72399 10.276 5.54899C10.697 5.36999 11.139 5.23299 11.589 5.14099C12.508 4.95199 13.493 4.95299 14.412 5.14099C14.859 5.23299 15.302 5.36999 15.725 5.54899C16.138 5.72299 16.538 5.94099 16.913 6.19299C17.283 6.44399 17.633 6.73199 17.95 7.04899C18.267 7.36499 18.554 7.71399 18.805 8.08599C19.057 8.45799 19.274 8.85799 19.45 9.27499C19.628 9.69199 19.764 10.133 19.858 10.586C19.952 11.049 20 11.524 20 12C20 12.476 19.952 12.951 19.858 13.41C19.764 13.865 19.628 14.306 19.45 14.724C19.274 15.14 19.057 15.539 18.804 15.913C18.554 16.284 18.267 16.633 17.95 16.949C17.633 17.266 17.283 17.554 16.914 17.804C16.538 18.057 16.139 18.275 15.725 18.45C15.302 18.629 14.86 18.766 14.412 18.858C13.494 19.046 12.51 19.047 11.589 18.858C11.14 18.766 10.699 18.629 10.276 18.45C9.864 18.276 9.463 18.059 9.088 17.805C8.717 17.555 8.369 17.267 8.051 16.95L6.637 18.364C7.044 18.772 7.492 19.141 7.969 19.463C8.452 19.789 8.967 20.068 9.497 20.292C10.041 20.522 10.61 20.699 11.187 20.817C11.778 20.938 12.388 21 13 21C13.612 21 14.223 20.938 14.813 20.817C15.39 20.699 15.959 20.523 16.503 20.293C17.035 20.068 17.55 19.789 18.034 19.462C18.51 19.14 18.957 18.771 19.364 18.364C19.771 17.957 20.14 17.509 20.462 17.033C20.787 16.553 21.066 16.038 21.292 15.504C21.52 14.966 21.697 14.398 21.817 13.812C21.938 13.22 22 12.61 22 12C22 11.39 21.938 10.78 21.817 10.186C21.697 9.60199 21.52 9.03399 21.292 8.49699Z" })
4791
4817
  ] }),
4818
+ dinner: /* @__PURE__ */ jsxs2(Fragment2, { children: [
4819
+ /* @__PURE__ */ jsx3("path", { d: "M8 7H6V0H4V7H2V0H0V8C0 9.654 1.346 11 3 11H4V18H6V11H7C8.654 11 10 9.654 10 8V0H8V7ZM15 0H14C12.841 0 12 1.262 12 3V11H14V18H16V1C16 0.447 15.553 0 15 0Z" }),
4820
+ /* @__PURE__ */ jsx3("path", { d: "M8 7H6V0H4V7H2V0H0V8C0 9.654 1.346 11 3 11H4V18H6V11H7C8.654 11 10 9.654 10 8V0H8V7ZM15 0H14C12.841 0 12 1.262 12 3V11H14V18H16V1C16 0.447 15.553 0 15 0Z" }),
4821
+ /* @__PURE__ */ jsx3("path", { d: "M8 7H6V0H4V7H2V0H0V8C0 9.654 1.346 11 3 11H4V18H6V11H7C8.654 11 10 9.654 10 8V0H8V7ZM15 0H14C12.841 0 12 1.262 12 3V11H14V18H16V1C16 0.447 15.553 0 15 0Z" }),
4822
+ /* @__PURE__ */ jsx3("path", { d: "M8 7H6V0H4V7H2V0H0V8C0 9.654 1.346 11 3 11H4V18H6V11H7C8.654 11 10 9.654 10 8V0H8V7ZM15 0H14C12.841 0 12 1.262 12 3V11H14V18H16V1C16 0.447 15.553 0 15 0Z" }),
4823
+ /* @__PURE__ */ jsx3("path", { d: "M8 7H6V0H4V7H2V0H0V8C0 9.654 1.346 11 3 11H4V18H6V11H7C8.654 11 10 9.654 10 8V0H8V7ZM15 0H14C12.841 0 12 1.262 12 3V11H14V18H16V1C16 0.447 15.553 0 15 0Z" }),
4824
+ /* @__PURE__ */ jsx3("path", { d: "M8 7H6V0H4V7H2V0H0V8C0 9.654 1.346 11 3 11H4V18H6V11H7C8.654 11 10 9.654 10 8V0H8V7ZM15 0H14C12.841 0 12 1.262 12 3V11H14V18H16V1C16 0.447 15.553 0 15 0Z" }),
4825
+ /* @__PURE__ */ jsx3("path", { d: "M8 7H6V0H4V7H2V0H0V8C0 9.654 1.346 11 3 11H4V18H6V11H7C8.654 11 10 9.654 10 8V0H8V7ZM15 0H14C12.841 0 12 1.262 12 3V11H14V18H16V1C16 0.447 15.553 0 15 0Z" }),
4826
+ /* @__PURE__ */ jsx3("path", { d: "M8 7H6V0H4V7H2V0H0V8C0 9.654 1.346 11 3 11H4V18H6V11H7C8.654 11 10 9.654 10 8V0H8V7ZM15 0H14C12.841 0 12 1.262 12 3V11H14V18H16V1C16 0.447 15.553 0 15 0Z" }),
4827
+ /* @__PURE__ */ jsx3("path", { d: "M8 7H6V0H4V7H2V0H0V8C0 9.654 1.346 11 3 11H4V18H6V11H7C8.654 11 10 9.654 10 8V0H8V7ZM15 0H14C12.841 0 12 1.262 12 3V11H14V18H16V1C16 0.447 15.553 0 15 0Z" })
4828
+ ] }),
4792
4829
  // Navigation
4793
4830
  projects: /* @__PURE__ */ jsx3("path", { d: "M4 6H6V8H4V6ZM4 11H6V13H4V11ZM4 16H6V18H4V16ZM20 8V6H18.8H9.2H8.023V8H9.2H18.8H20ZM8 11H20V13H8V11ZM8 16H20V18H8V16Z" }),
4794
4831
  tasks: /* @__PURE__ */ jsxs2(Fragment2, { children: [
@@ -4950,6 +4987,7 @@ var Icons = {
4950
4987
  /* @__PURE__ */ jsx3("path", { d: "M10.6309 14.7413V10.9913H13.6309V14.7413C13.6309 15.1538 13.9684 15.4913 14.3809 15.4913H16.6309C17.0434 15.4913 17.3809 15.1538 17.3809 14.7413V9.4913H18.6559C19.0009 9.4913 19.1659 9.0638 18.9034 8.8388L12.6334 3.19125C12.3484 2.93625 11.9134 2.93625 11.6284 3.19125L5.35831 8.8388C5.10331 9.0638 5.26081 9.4913 5.60581 9.4913H6.88082V14.7413C6.88082 15.1538 7.21833 15.4913 7.63083 15.4913H9.88085C10.2934 15.4913 10.6309 15.1538 10.6309 14.7413Z" })
4951
4988
  ] }),
4952
4989
  houseFilled: /* @__PURE__ */ jsx3(Fragment2, { children: /* @__PURE__ */ jsx3("path", { d: "M9.82369 19.9192V14.5155H14.1715V19.9192C14.1715 20.5137 14.6606 21 15.2584 21H18.5193C19.1171 21 19.6062 20.5137 19.6062 19.9192V12.3539H21.454C21.954 12.3539 22.1932 11.7379 21.8127 11.4137L12.7258 3.27559C12.3128 2.90814 11.6824 2.90814 11.2693 3.27559L2.18245 11.4137C1.81288 11.7379 2.04114 12.3539 2.54114 12.3539H4.38895V19.9192C4.38895 20.5137 4.87808 21 5.4759 21H8.73674C9.33456 21 9.82369 20.5137 9.82369 19.9192Z" }) }),
4990
+ connect: /* @__PURE__ */ jsx3(Fragment2, { children: /* @__PURE__ */ jsx3("path", { d: "M20 16C19.756 16 19.5227 16.0293 19.2907 16.072L7.928 4.70933C7.97067 4.47867 8 4.24267 8 4C8 1.79467 6.20533 0 4 0C1.79467 0 0 1.79467 0 4C0 5.736 1.11867 7.20133 2.66667 7.75333V16.2453C1.11867 16.7987 0 18.264 0 20C0 22.2053 1.79467 24 4 24C5.736 24 7.20133 22.8827 7.75333 21.3333H16.2453C16.7973 22.8827 18.264 24 19.9987 24C22.204 24 23.9987 22.2053 23.9987 20C23.9987 17.7947 22.2053 16 20 16ZM5.33333 16.2453V7.75467C5.772 7.59733 6.172 7.36667 6.52533 7.07733L16.924 17.476C16.6333 17.8293 16.4027 18.228 16.2467 18.668H7.75333C7.352 17.5373 6.464 16.648 5.33333 16.2453ZM4 2.66667C4.736 2.66667 5.33333 3.26533 5.33333 4C5.33333 4.73467 4.736 5.33333 4 5.33333C3.264 5.33333 2.66667 4.73467 2.66667 4C2.66667 3.26533 3.264 2.66667 4 2.66667ZM4 21.3333C3.264 21.3333 2.66667 20.7347 2.66667 20C2.66667 19.2653 3.264 18.6667 4 18.6667C4.736 18.6667 5.33333 19.2653 5.33333 20C5.33333 20.7347 4.736 21.3333 4 21.3333ZM20 21.3333C19.264 21.3333 18.6667 20.7347 18.6667 20C18.6667 19.2653 19.264 18.6667 20 18.6667C20.736 18.6667 21.3333 19.2653 21.3333 20C21.3333 20.7347 20.736 21.3333 20 21.3333Z" }) }),
4953
4991
  // Option Type / slot icons
4954
4992
  single: /* @__PURE__ */ jsxs2(Fragment2, { children: [
4955
4993
  /* @__PURE__ */ jsx3("path", { d: "M9 15V17H5V15H9ZM9 9H5V17C3.96435 17 3.113 16.2128 3.01074 15.2041L3 15V9C3 7.89543 3.89543 7 5 7H9L9.2041 7.01074C10.2128 7.113 11 7.96435 11 9V15C11 16.1046 10.1046 17 9 17V9Z" }),
@@ -26556,7 +26594,14 @@ function WorkflowLayout(props) {
26556
26594
  const isFirstStep = currentIndex <= 0;
26557
26595
  const isLastStep = currentIndex === tabSteps.length - 1;
26558
26596
  const activeStep = tabSteps[currentIndex];
26559
- const buttons = /* @__PURE__ */ jsx218(WorkflowActions, { isFirstStep, isLastStep, isMobile, onBack: () => setCurrentStep(tabSteps[currentIndex - 1].value), onCancel: onCancelClick, onSaveAndExit, completeLabel, onComplete, primaryDisabled: !activeStep?.completed, onContinue: () => setCurrentStep(tabSteps[currentIndex + 1].value) });
26597
+ const buttons = /* @__PURE__ */ jsx218(WorkflowActions, { isFirstStep, isLastStep, isMobile, onBack: () => setCurrentStep(tabSteps[currentIndex - 1].value), onCancel: onCancelClick, onSaveAndExit, completeLabel, onComplete, primaryDisabled: !activeStep?.completed, onContinue: async () => {
26598
+ const onContinue = activeStep?.onContinue;
26599
+ if (onContinue) {
26600
+ const allowed = await onContinue();
26601
+ if (allowed === false) return;
26602
+ }
26603
+ setCurrentStep(tabSteps[currentIndex + 1].value);
26604
+ } });
26560
26605
  const showFooter = isMobile;
26561
26606
  useLayoutEffect10(() => {
26562
26607
  const root = document.documentElement;