@mdxui/services 0.3.0 → 0.4.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/components/index.d.ts +18 -3
- package/dist/components/index.js +163 -31
- package/dist/components/index.js.map +1 -1
- package/dist/{index-D2nWoFGI.d.ts → index-DNgc8Joy.d.ts} +33 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +339 -192
- package/dist/index.js.map +1 -1
- package/dist/schemas/index.d.ts +1 -1
- package/dist/schemas/index.js +14 -1
- package/dist/schemas/index.js.map +1 -1
- package/dist/shared/index.d.ts +7 -1
- package/dist/shared/index.js +3 -1
- package/dist/shared/index.js.map +1 -1
- package/dist/styles.css +9 -0
- package/package.json +2 -2
|
@@ -945,21 +945,49 @@ declare const FinalCtaPropsSchema: z.ZodObject<{
|
|
|
945
945
|
}, z.core.$strip>>;
|
|
946
946
|
}, z.core.$strip>;
|
|
947
947
|
type FinalCtaProps = z.infer<typeof FinalCtaPropsSchema>;
|
|
948
|
+
/**
|
|
949
|
+
* One masthead nav link (centered nav on `md`+, mobile dropdown below).
|
|
950
|
+
* Mirrors carriage's `NavLink` (Masthead.tsx, origin/master a8700e6).
|
|
951
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-masthead §24
|
|
952
|
+
*/
|
|
953
|
+
declare const NavLinkSchema: z.ZodObject<{
|
|
954
|
+
label: z.ZodString;
|
|
955
|
+
href: z.ZodString;
|
|
956
|
+
}, z.core.$strip>;
|
|
957
|
+
type NavLink = z.infer<typeof NavLinkSchema>;
|
|
948
958
|
/**
|
|
949
959
|
* MastheadPropsSchema — HeaderPropsSchema extended for Carriage's Masthead.
|
|
950
960
|
*
|
|
951
|
-
*
|
|
961
|
+
* carriage parity (origin/master): the masthead is a three-zone lockup — brand
|
|
962
|
+
* (left, with an optional `brand.logo` to the LEFT of the wordmark, fda6fb6),
|
|
963
|
+
* an optional centered nav of 3–5 page `links` (middle, `md`+ only), and the
|
|
964
|
+
* right-side CTA/eyebrow. Below `md` the centered nav collapses into a hamburger
|
|
965
|
+
* (`MobileNav`) that opens a dropdown overlay carrying the same links.
|
|
966
|
+
*
|
|
967
|
+
* The `.max(5)` link cap IS the schema/contract layer carriage lacks — carriage
|
|
968
|
+
* enforces `navLinks ≤ 5` in a `verify-service` gate at the service-definition
|
|
969
|
+
* level; here the contract encodes it directly.
|
|
970
|
+
*
|
|
971
|
+
* upstream-proposal: docs/patterns/upstream-proposals.md §PR3-masthead §24
|
|
952
972
|
*/
|
|
953
973
|
declare const MastheadPropsSchema: z.ZodObject<{
|
|
954
974
|
brand: z.ZodObject<{
|
|
955
975
|
primary: z.ZodString;
|
|
956
976
|
secondary: z.ZodOptional<z.ZodString>;
|
|
957
977
|
href: z.ZodString;
|
|
978
|
+
logo: z.ZodOptional<z.ZodObject<{
|
|
979
|
+
src: z.ZodString;
|
|
980
|
+
alt: z.ZodString;
|
|
981
|
+
}, z.core.$strip>>;
|
|
958
982
|
}, z.core.$strip>;
|
|
959
983
|
cta: z.ZodOptional<z.ZodObject<{
|
|
960
984
|
label: z.ZodString;
|
|
961
985
|
href: z.ZodString;
|
|
962
986
|
}, z.core.$strip>>;
|
|
987
|
+
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
988
|
+
label: z.ZodString;
|
|
989
|
+
href: z.ZodString;
|
|
990
|
+
}, z.core.$strip>>>;
|
|
963
991
|
eyebrow: z.ZodOptional<z.ZodString>;
|
|
964
992
|
narrow: z.ZodOptional<z.ZodBoolean>;
|
|
965
993
|
}, z.core.$strip>;
|
|
@@ -1890,6 +1918,8 @@ type index_LogoUploadPropsFromSchema = LogoUploadPropsFromSchema;
|
|
|
1890
1918
|
declare const index_LogoUploadPropsSchema: typeof LogoUploadPropsSchema;
|
|
1891
1919
|
type index_MastheadProps = MastheadProps;
|
|
1892
1920
|
declare const index_MastheadPropsSchema: typeof MastheadPropsSchema;
|
|
1921
|
+
type index_NavLink = NavLink;
|
|
1922
|
+
declare const index_NavLinkSchema: typeof NavLinkSchema;
|
|
1893
1923
|
type index_OrderField = OrderField;
|
|
1894
1924
|
declare const index_OrderFieldSchema: typeof OrderFieldSchema;
|
|
1895
1925
|
type index_OrderFlow = OrderFlow;
|
|
@@ -1967,7 +1997,7 @@ declare const index_WhatYouGetItemSchema: typeof WhatYouGetItemSchema;
|
|
|
1967
1997
|
type index_WhatYouGetProps = WhatYouGetProps;
|
|
1968
1998
|
declare const index_WhatYouGetPropsSchema: typeof WhatYouGetPropsSchema;
|
|
1969
1999
|
declare namespace index {
|
|
1970
|
-
export { type index_Breadcrumb as Breadcrumb, index_BreadcrumbSchema as BreadcrumbSchema, type index_CatalogHero as CatalogHero, index_CatalogHeroSchema as CatalogHeroSchema, type index_CatalogShape as CatalogShape, type index_CatalogShapeFull as CatalogShapeFull, index_CatalogShapeFullSchema as CatalogShapeFullSchema, index_CatalogShapeSchema as CatalogShapeSchema, type index_CheckoutPanelPropsFromSchema as CheckoutPanelPropsFromSchema, index_CheckoutPanelPropsSchema as CheckoutPanelPropsSchema, type index_Cta as Cta, index_CtaSchema as CtaSchema, type index_DefensibilityColumnFromSchema as DefensibilityColumnFromSchema, index_DefensibilityColumnSchema as DefensibilityColumnSchema, type index_DefensibilityPropsFromSchema as DefensibilityPropsFromSchema, index_DefensibilityPropsSchema as DefensibilityPropsSchema, type index_DeliveryShape as DeliveryShape, index_DeliveryShapeSchema as DeliveryShapeSchema, type index_DeliveryUx as DeliveryUx, index_DeliveryUxSchema as DeliveryUxSchema, type index_FaqItem as FaqItem, index_FaqItemSchema as FaqItemSchema, type index_FaqPropsExtended as FaqPropsExtended, index_FaqPropsExtendedSchema as FaqPropsExtendedSchema, type index_FieldRowProps as FieldRowProps, index_FieldRowPropsSchema as FieldRowPropsSchema, type index_FileInput as FileInput, index_FileInputSchema as FileInputSchema, type index_FinalCtaProps as FinalCtaProps, index_FinalCtaPropsSchema as FinalCtaPropsSchema, type index_HeroPropsExtended as HeroPropsExtended, index_HeroPropsExtendedSchema as HeroPropsExtendedSchema, type index_HeroVariantFromSchema as HeroVariantFromSchema, index_HeroVariantSchema as HeroVariantSchema, type index_HowItWorksProps as HowItWorksProps, index_HowItWorksPropsSchema as HowItWorksPropsSchema, type index_HowItWorksStep as HowItWorksStep, index_HowItWorksStepSchema as HowItWorksStepSchema, type index_ImageUploadFieldPropsFromSchema as ImageUploadFieldPropsFromSchema, index_ImageUploadFieldPropsSchema as ImageUploadFieldPropsSchema, type index_LandingPricing as LandingPricing, index_LandingPricingSchema as LandingPricingSchema, type index_LandingPublicCopy as LandingPublicCopy, index_LandingPublicCopySchema as LandingPublicCopySchema, type index_LogoUploadPropsFromSchema as LogoUploadPropsFromSchema, index_LogoUploadPropsSchema as LogoUploadPropsSchema, type index_MastheadProps as MastheadProps, index_MastheadPropsSchema as MastheadPropsSchema, type index_OrderField as OrderField, index_OrderFieldSchema as OrderFieldSchema, type index_OrderFlow as OrderFlow, index_OrderFlowSchema as OrderFlowSchema, type index_OrderGroup as OrderGroup, index_OrderGroupSchema as OrderGroupSchema, type index_OrderLegal as OrderLegal, index_OrderLegalSchema as OrderLegalSchema, type index_OrderShape as OrderShape, index_OrderShapeSchema as OrderShapeSchema, type index_OrderStep as OrderStep, index_OrderStepSchema as OrderStepSchema, type index_PortalAction as PortalAction, type index_PortalActionKind as PortalActionKind, index_PortalActionKindSchema as PortalActionKindSchema, index_PortalActionSchema as PortalActionSchema, type index_PortalColumn as PortalColumn, index_PortalColumnSchema as PortalColumnSchema, type index_PortalColumnType as PortalColumnType, index_PortalColumnTypeSchema as PortalColumnTypeSchema, type index_PortalFilter as PortalFilter, index_PortalFilterSchema as PortalFilterSchema, type index_PortalShape as PortalShape, index_PortalShapeSchema as PortalShapeSchema, type index_PreviewMode as PreviewMode, index_PreviewModeSchema as PreviewModeSchema, type index_PriceTier as PriceTier, index_PriceTierSchema as PriceTierSchema, type index_Pricing as Pricing, type index_PricingPropsExtended as PricingPropsExtended, index_PricingPropsExtendedSchema as PricingPropsExtendedSchema, index_PricingSchema as PricingSchema, type index_PricingSummary as PricingSummary, index_PricingSummarySchema as PricingSummarySchema, type index_ProblemItem as ProblemItem, index_ProblemItemSchema as ProblemItemSchema, type index_ProblemProps as ProblemProps, index_ProblemPropsSchema as ProblemPropsSchema, type index_RadioGroupInput as RadioGroupInput, index_RadioGroupInputSchema as RadioGroupInputSchema, type index_RadioGroupOption as RadioGroupOption, index_RadioGroupOptionSchema as RadioGroupOptionSchema, type index_RadioGroupProps as RadioGroupProps, index_RadioGroupPropsSchema as RadioGroupPropsSchema, type index_SelectFieldProps as SelectFieldProps, index_SelectFieldPropsSchema as SelectFieldPropsSchema, type index_SelectInput as SelectInput, index_SelectInputSchema as SelectInputSchema, type index_ServiceArchetypeId as ServiceArchetypeId, index_ServiceArchetypeIdSchema as ServiceArchetypeIdSchema, type index_ServiceBranding as ServiceBranding, index_ServiceBrandingSchema as ServiceBrandingSchema, type index_ServiceFormPropsFromSchema as ServiceFormPropsFromSchema, index_ServiceFormPropsSchema as ServiceFormPropsSchema, type index_ServiceSchemaSpec as ServiceSchemaSpec, index_ServiceSchemaSpecSchema as ServiceSchemaSpecSchema, type index_SiteAction as SiteAction, index_SiteActionSchema as SiteActionSchema, type index_SiteFooterLink as SiteFooterLink, index_SiteFooterLinkSchema as SiteFooterLinkSchema, type index_SiteFooterProps as SiteFooterProps, index_SiteFooterPropsSchema as SiteFooterPropsSchema, type index_StepHeadingPropsFromSchema as StepHeadingPropsFromSchema, index_StepHeadingPropsSchema as StepHeadingPropsSchema, type index_TextFieldProps as TextFieldProps, index_TextFieldPropsSchema as TextFieldPropsSchema, type index_TextInput as TextInput, index_TextInputSchema as TextInputSchema, type index_UpsellBannerPropsFromSchema as UpsellBannerPropsFromSchema, index_UpsellBannerPropsSchema as UpsellBannerPropsSchema, type index_UpsellCardPropsFromSchema as UpsellCardPropsFromSchema, index_UpsellCardPropsSchema as UpsellCardPropsSchema, type index_WhatYouGetItem as WhatYouGetItem, index_WhatYouGetItemSchema as WhatYouGetItemSchema, type index_WhatYouGetProps as WhatYouGetProps, index_WhatYouGetPropsSchema as WhatYouGetPropsSchema };
|
|
2000
|
+
export { type index_Breadcrumb as Breadcrumb, index_BreadcrumbSchema as BreadcrumbSchema, type index_CatalogHero as CatalogHero, index_CatalogHeroSchema as CatalogHeroSchema, type index_CatalogShape as CatalogShape, type index_CatalogShapeFull as CatalogShapeFull, index_CatalogShapeFullSchema as CatalogShapeFullSchema, index_CatalogShapeSchema as CatalogShapeSchema, type index_CheckoutPanelPropsFromSchema as CheckoutPanelPropsFromSchema, index_CheckoutPanelPropsSchema as CheckoutPanelPropsSchema, type index_Cta as Cta, index_CtaSchema as CtaSchema, type index_DefensibilityColumnFromSchema as DefensibilityColumnFromSchema, index_DefensibilityColumnSchema as DefensibilityColumnSchema, type index_DefensibilityPropsFromSchema as DefensibilityPropsFromSchema, index_DefensibilityPropsSchema as DefensibilityPropsSchema, type index_DeliveryShape as DeliveryShape, index_DeliveryShapeSchema as DeliveryShapeSchema, type index_DeliveryUx as DeliveryUx, index_DeliveryUxSchema as DeliveryUxSchema, type index_FaqItem as FaqItem, index_FaqItemSchema as FaqItemSchema, type index_FaqPropsExtended as FaqPropsExtended, index_FaqPropsExtendedSchema as FaqPropsExtendedSchema, type index_FieldRowProps as FieldRowProps, index_FieldRowPropsSchema as FieldRowPropsSchema, type index_FileInput as FileInput, index_FileInputSchema as FileInputSchema, type index_FinalCtaProps as FinalCtaProps, index_FinalCtaPropsSchema as FinalCtaPropsSchema, type index_HeroPropsExtended as HeroPropsExtended, index_HeroPropsExtendedSchema as HeroPropsExtendedSchema, type index_HeroVariantFromSchema as HeroVariantFromSchema, index_HeroVariantSchema as HeroVariantSchema, type index_HowItWorksProps as HowItWorksProps, index_HowItWorksPropsSchema as HowItWorksPropsSchema, type index_HowItWorksStep as HowItWorksStep, index_HowItWorksStepSchema as HowItWorksStepSchema, type index_ImageUploadFieldPropsFromSchema as ImageUploadFieldPropsFromSchema, index_ImageUploadFieldPropsSchema as ImageUploadFieldPropsSchema, type index_LandingPricing as LandingPricing, index_LandingPricingSchema as LandingPricingSchema, type index_LandingPublicCopy as LandingPublicCopy, index_LandingPublicCopySchema as LandingPublicCopySchema, type index_LogoUploadPropsFromSchema as LogoUploadPropsFromSchema, index_LogoUploadPropsSchema as LogoUploadPropsSchema, type index_MastheadProps as MastheadProps, index_MastheadPropsSchema as MastheadPropsSchema, type index_NavLink as NavLink, index_NavLinkSchema as NavLinkSchema, type index_OrderField as OrderField, index_OrderFieldSchema as OrderFieldSchema, type index_OrderFlow as OrderFlow, index_OrderFlowSchema as OrderFlowSchema, type index_OrderGroup as OrderGroup, index_OrderGroupSchema as OrderGroupSchema, type index_OrderLegal as OrderLegal, index_OrderLegalSchema as OrderLegalSchema, type index_OrderShape as OrderShape, index_OrderShapeSchema as OrderShapeSchema, type index_OrderStep as OrderStep, index_OrderStepSchema as OrderStepSchema, type index_PortalAction as PortalAction, type index_PortalActionKind as PortalActionKind, index_PortalActionKindSchema as PortalActionKindSchema, index_PortalActionSchema as PortalActionSchema, type index_PortalColumn as PortalColumn, index_PortalColumnSchema as PortalColumnSchema, type index_PortalColumnType as PortalColumnType, index_PortalColumnTypeSchema as PortalColumnTypeSchema, type index_PortalFilter as PortalFilter, index_PortalFilterSchema as PortalFilterSchema, type index_PortalShape as PortalShape, index_PortalShapeSchema as PortalShapeSchema, type index_PreviewMode as PreviewMode, index_PreviewModeSchema as PreviewModeSchema, type index_PriceTier as PriceTier, index_PriceTierSchema as PriceTierSchema, type index_Pricing as Pricing, type index_PricingPropsExtended as PricingPropsExtended, index_PricingPropsExtendedSchema as PricingPropsExtendedSchema, index_PricingSchema as PricingSchema, type index_PricingSummary as PricingSummary, index_PricingSummarySchema as PricingSummarySchema, type index_ProblemItem as ProblemItem, index_ProblemItemSchema as ProblemItemSchema, type index_ProblemProps as ProblemProps, index_ProblemPropsSchema as ProblemPropsSchema, type index_RadioGroupInput as RadioGroupInput, index_RadioGroupInputSchema as RadioGroupInputSchema, type index_RadioGroupOption as RadioGroupOption, index_RadioGroupOptionSchema as RadioGroupOptionSchema, type index_RadioGroupProps as RadioGroupProps, index_RadioGroupPropsSchema as RadioGroupPropsSchema, type index_SelectFieldProps as SelectFieldProps, index_SelectFieldPropsSchema as SelectFieldPropsSchema, type index_SelectInput as SelectInput, index_SelectInputSchema as SelectInputSchema, type index_ServiceArchetypeId as ServiceArchetypeId, index_ServiceArchetypeIdSchema as ServiceArchetypeIdSchema, type index_ServiceBranding as ServiceBranding, index_ServiceBrandingSchema as ServiceBrandingSchema, type index_ServiceFormPropsFromSchema as ServiceFormPropsFromSchema, index_ServiceFormPropsSchema as ServiceFormPropsSchema, type index_ServiceSchemaSpec as ServiceSchemaSpec, index_ServiceSchemaSpecSchema as ServiceSchemaSpecSchema, type index_SiteAction as SiteAction, index_SiteActionSchema as SiteActionSchema, type index_SiteFooterLink as SiteFooterLink, index_SiteFooterLinkSchema as SiteFooterLinkSchema, type index_SiteFooterProps as SiteFooterProps, index_SiteFooterPropsSchema as SiteFooterPropsSchema, type index_StepHeadingPropsFromSchema as StepHeadingPropsFromSchema, index_StepHeadingPropsSchema as StepHeadingPropsSchema, type index_TextFieldProps as TextFieldProps, index_TextFieldPropsSchema as TextFieldPropsSchema, type index_TextInput as TextInput, index_TextInputSchema as TextInputSchema, type index_UpsellBannerPropsFromSchema as UpsellBannerPropsFromSchema, index_UpsellBannerPropsSchema as UpsellBannerPropsSchema, type index_UpsellCardPropsFromSchema as UpsellCardPropsFromSchema, index_UpsellCardPropsSchema as UpsellCardPropsSchema, type index_WhatYouGetItem as WhatYouGetItem, index_WhatYouGetItemSchema as WhatYouGetItemSchema, type index_WhatYouGetProps as WhatYouGetProps, index_WhatYouGetPropsSchema as WhatYouGetPropsSchema };
|
|
1971
2001
|
}
|
|
1972
2002
|
|
|
1973
|
-
export {
|
|
2003
|
+
export { type LandingPricing as $, DeliveryShapeSchema as A, type Breadcrumb as B, type CatalogHero as C, type DefensibilityPropsFromSchema as D, type DeliveryUx as E, type FaqPropsExtended as F, DeliveryUxSchema as G, type HeroPropsExtended as H, FaqItemSchema as I, FaqPropsExtendedSchema as J, type FieldRowProps as K, FieldRowPropsSchema as L, type MastheadProps as M, type NavLink as N, type FileInput as O, type ProblemProps as P, FileInputSchema as Q, FinalCtaPropsSchema as R, type SiteFooterProps as S, HeroPropsExtendedSchema as T, type HeroVariantFromSchema as U, HeroVariantSchema as V, type WhatYouGetProps as W, HowItWorksPropsSchema as X, HowItWorksStepSchema as Y, type ImageUploadFieldPropsFromSchema as Z, ImageUploadFieldPropsSchema as _, type HowItWorksProps as a, type TextFieldProps as a$, LandingPricingSchema as a0, type LandingPublicCopy as a1, LandingPublicCopySchema as a2, type LogoUploadPropsFromSchema as a3, LogoUploadPropsSchema as a4, MastheadPropsSchema as a5, NavLinkSchema as a6, type OrderField as a7, OrderFieldSchema as a8, type OrderFlow as a9, type PricingSummary as aA, PricingSummarySchema as aB, ProblemItemSchema as aC, ProblemPropsSchema as aD, type RadioGroupInput as aE, RadioGroupInputSchema as aF, type RadioGroupOption as aG, RadioGroupOptionSchema as aH, type RadioGroupProps as aI, RadioGroupPropsSchema as aJ, type SelectFieldProps as aK, SelectFieldPropsSchema as aL, type SelectInput as aM, SelectInputSchema as aN, type ServiceArchetypeId as aO, ServiceArchetypeIdSchema as aP, type ServiceBranding as aQ, ServiceBrandingSchema as aR, type ServiceFormPropsFromSchema as aS, ServiceFormPropsSchema as aT, type ServiceSchemaSpec as aU, ServiceSchemaSpecSchema as aV, SiteActionSchema as aW, SiteFooterLinkSchema as aX, SiteFooterPropsSchema as aY, type StepHeadingPropsFromSchema as aZ, StepHeadingPropsSchema as a_, OrderFlowSchema as aa, type OrderGroup as ab, OrderGroupSchema as ac, type OrderLegal as ad, OrderLegalSchema as ae, type OrderShape as af, OrderShapeSchema as ag, type OrderStep as ah, OrderStepSchema as ai, type PortalAction as aj, type PortalActionKind as ak, PortalActionKindSchema as al, PortalActionSchema as am, type PortalColumn as an, PortalColumnSchema as ao, type PortalColumnType as ap, PortalColumnTypeSchema as aq, type PortalFilter as ar, PortalFilterSchema as as, type PortalShape as at, PortalShapeSchema as au, type PreviewMode as av, PreviewModeSchema as aw, PriceTierSchema as ax, PricingPropsExtendedSchema as ay, PricingSchema as az, type PricingPropsExtended as b, TextFieldPropsSchema as b0, type TextInput as b1, TextInputSchema as b2, type UpsellBannerPropsFromSchema as b3, UpsellBannerPropsSchema as b4, type UpsellCardPropsFromSchema as b5, UpsellCardPropsSchema as b6, WhatYouGetItemSchema as b7, WhatYouGetPropsSchema as b8, type Pricing as c, type FinalCtaProps as d, type SiteAction as e, type ProblemItem as f, type WhatYouGetItem as g, type HowItWorksStep as h, index as i, type DefensibilityColumnFromSchema as j, type PriceTier as k, type FaqItem as l, type SiteFooterLink as m, BreadcrumbSchema as n, CatalogHeroSchema as o, type CatalogShape as p, type CatalogShapeFull as q, CatalogShapeFullSchema as r, CatalogShapeSchema as s, type CheckoutPanelPropsFromSchema as t, CheckoutPanelPropsSchema as u, type Cta as v, CtaSchema as w, DefensibilityColumnSchema as x, DefensibilityPropsSchema as y, type DeliveryShape as z };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { DialectViewProps } from '@mdxui/dialect';
|
|
3
|
-
import { M as MastheadProps, H as HeroPropsExtended, P as ProblemProps, W as WhatYouGetProps, a as HowItWorksProps, D as DefensibilityPropsFromSchema, b as PricingPropsExtended, c as Pricing, F as FaqPropsExtended, d as FinalCtaProps, S as SiteFooterProps } from './index-
|
|
4
|
-
export { i as schemas } from './index-
|
|
5
|
-
export { Defensibility, DefensibilityColumn, DefensibilityProps, Faq, FaqItem, FaqProps, FinalCta, FinalCtaProps, Footer, FooterLink, FooterProps, Hero, HeroAction, HeroProps, HeroSplit, HeroStacked, HowItWorks, HowItWorksProps, HowItWorksStep, Masthead, MastheadProps, PriceTier, Pricing, PricingComponentProps, PricingData, PricingProps, PrimaryAction, Problem, ProblemItem, ProblemProps, Pricing as ReportPricing, ScrollHeader, ScrollHeaderProps, SecondaryAction, Hero as ServiceHero, WhatYouGet, WhatYouGetItem, WhatYouGetProps } from './components/index.js';
|
|
3
|
+
import { M as MastheadProps, H as HeroPropsExtended, P as ProblemProps, W as WhatYouGetProps, a as HowItWorksProps, D as DefensibilityPropsFromSchema, b as PricingPropsExtended, c as Pricing, F as FaqPropsExtended, d as FinalCtaProps, S as SiteFooterProps } from './index-DNgc8Joy.js';
|
|
4
|
+
export { N as NavLink, i as schemas } from './index-DNgc8Joy.js';
|
|
5
|
+
export { Defensibility, DefensibilityColumn, DefensibilityProps, Faq, FaqItem, FaqProps, FinalCta, FinalCtaProps, Footer, FooterLink, FooterProps, Hero, HeroAction, HeroProps, HeroSplit, HeroStacked, HowItWorks, HowItWorksProps, HowItWorksStep, Masthead, MastheadProps, MobileNav, MobileNavProps, PriceTier, Pricing, PricingComponentProps, PricingData, PricingProps, PrimaryAction, Problem, ProblemItem, ProblemProps, Pricing as ReportPricing, ScrollHeader, ScrollHeaderProps, SecondaryAction, Hero as ServiceHero, WhatYouGet, WhatYouGetItem, WhatYouGetProps } from './components/index.js';
|
|
6
6
|
export { ScrollReveal, ScrollRevealProps, SectionEyebrow, SvgInline, SvgInlineProps } from './shared/index.js';
|
|
7
7
|
import { ZodError, ZodSchema } from 'zod';
|
|
8
8
|
import 'zod/v4/core';
|