@contractspec/lib.design-system 0.0.0-canary-20260119224949 → 0.0.0-canary-20260119225944

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 (54) hide show
  1. package/dist/components/atoms/ActionButtons.d.ts +9 -9
  2. package/dist/components/atoms/ActionButtons.d.ts.map +1 -1
  3. package/dist/components/atoms/Button.d.ts +2 -2
  4. package/dist/components/atoms/ButtonLink.d.ts +2 -2
  5. package/dist/components/atoms/DataChips.d.ts +7 -7
  6. package/dist/components/atoms/DataChips.d.ts.map +1 -1
  7. package/dist/components/atoms/EmptyState.d.ts +2 -2
  8. package/dist/components/atoms/Input.d.ts +2 -2
  9. package/dist/components/atoms/Link.d.ts +2 -2
  10. package/dist/components/atoms/NavBrand.d.ts +2 -2
  11. package/dist/components/atoms/Stepper.d.ts +2 -2
  12. package/dist/components/atoms/Stepper.d.ts.map +1 -1
  13. package/dist/components/atoms/Textarea.d.ts +2 -2
  14. package/dist/components/data-view/DataViewRenderer.d.ts +2 -2
  15. package/dist/components/data-view/DataViewRenderer.d.ts.map +1 -1
  16. package/dist/components/legal/atoms/LegalText.d.ts +2 -2
  17. package/dist/components/marketing/MarketingCard.d.ts +2 -2
  18. package/dist/components/marketing/MarketingCardsSection.d.ts +2 -2
  19. package/dist/components/marketing/MarketingComparisonSection.d.ts +2 -2
  20. package/dist/components/marketing/MarketingIconCard.d.ts +2 -2
  21. package/dist/components/marketing/MarketingSection.d.ts +2 -2
  22. package/dist/components/marketing/MarketingStepCard.d.ts +2 -2
  23. package/dist/components/molecules/Breadcrumbs.d.ts +2 -2
  24. package/dist/components/molecules/CodeBlock/CodeBlock.d.ts +2 -2
  25. package/dist/components/molecules/CommandPalette.d.ts +2 -2
  26. package/dist/components/molecules/CommandSearchTrigger.d.ts +2 -2
  27. package/dist/components/molecules/CommandTabs/CommandTabs.d.ts +2 -2
  28. package/dist/components/molecules/CopyButton/CopyButton.d.ts +2 -2
  29. package/dist/components/molecules/EntityCard.d.ts +2 -2
  30. package/dist/components/molecules/HoverPreview.d.ts +2 -2
  31. package/dist/components/molecules/InstallCommand/InstallCommand.d.ts +2 -2
  32. package/dist/components/molecules/LangSwitch.d.ts +2 -2
  33. package/dist/components/molecules/OverviewCard.d.ts +2 -2
  34. package/dist/components/molecules/StatCard.d.ts +3 -3
  35. package/dist/components/molecules/StatusChip.d.ts +2 -2
  36. package/dist/components/molecules/hover-previews/Media.d.ts +2 -2
  37. package/dist/components/molecules/hover-previews/Simple.d.ts +2 -2
  38. package/dist/components/organisms/AcademyLayout.d.ts +2 -2
  39. package/dist/components/organisms/AppHeader.d.ts +2 -2
  40. package/dist/components/organisms/AppLayout.d.ts +2 -2
  41. package/dist/components/organisms/AppSidebar.d.ts +2 -2
  42. package/dist/components/organisms/FeatureCarousel.d.ts +2 -2
  43. package/dist/components/organisms/Footer.d.ts +2 -2
  44. package/dist/components/organisms/Header.d.ts +4 -4
  45. package/dist/components/organisms/HeroResponsive.d.ts +2 -2
  46. package/dist/components/organisms/HeroSection.d.ts +2 -2
  47. package/dist/components/organisms/MarketingHeader.d.ts +2 -2
  48. package/dist/components/organisms/MarketingHeader.d.ts.map +1 -1
  49. package/dist/components/organisms/MarketingHeaderDesktop.d.ts +2 -2
  50. package/dist/components/organisms/MarketingHeaderMobile.d.ts +2 -2
  51. package/dist/components/organisms/MarketingLayout.d.ts +2 -2
  52. package/dist/components/organisms/PricingCarousel.d.ts +2 -2
  53. package/dist/components/providers/PackageManagerProvider.d.ts +2 -2
  54. package/package.json +3 -3
@@ -1,26 +1,26 @@
1
1
  import { ButtonProps } from "./Button.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime7 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime11 from "react/jsx-runtime";
4
4
  import { VariantProps } from "class-variance-authority";
5
- import * as class_variance_authority_types1 from "class-variance-authority/types";
5
+ import * as class_variance_authority_types2 from "class-variance-authority/types";
6
6
 
7
7
  //#region src/components/atoms/ActionButtons.d.ts
8
8
  declare const _actionBtn: (props?: ({
9
9
  tone?: "subtle" | "neutral" | "danger" | "outline" | null | undefined;
10
10
  size?: "sm" | "md" | "lg" | "icon" | null | undefined;
11
- } & class_variance_authority_types1.ClassProp) | undefined) => string;
11
+ } & class_variance_authority_types2.ClassProp) | undefined) => string;
12
12
  type ActionBtnProps = Omit<ButtonProps, 'size' | 'variant'> & VariantProps<typeof _actionBtn> & {
13
13
  label?: React.ReactNode;
14
14
  iconLeft?: React.ReactNode;
15
15
  };
16
- declare function EditButton(props: Omit<ActionBtnProps, 'iconLeft' | 'tone'>): react_jsx_runtime7.JSX.Element;
17
- declare function DeleteButton(props: Omit<ActionBtnProps, 'iconLeft'>): react_jsx_runtime7.JSX.Element;
18
- declare function ViewButton(props: Omit<ActionBtnProps, 'iconLeft'>): react_jsx_runtime7.JSX.Element;
16
+ declare function EditButton(props: Omit<ActionBtnProps, 'iconLeft' | 'tone'>): react_jsx_runtime11.JSX.Element;
17
+ declare function DeleteButton(props: Omit<ActionBtnProps, 'iconLeft'>): react_jsx_runtime11.JSX.Element;
18
+ declare function ViewButton(props: Omit<ActionBtnProps, 'iconLeft'>): react_jsx_runtime11.JSX.Element;
19
19
  declare function ToggleButton(props: Omit<ActionBtnProps, 'iconLeft'> & {
20
20
  active?: boolean;
21
- }): react_jsx_runtime7.JSX.Element;
22
- declare function ToggleLeftButton(props: Omit<ActionBtnProps, 'iconLeft'>): react_jsx_runtime7.JSX.Element;
23
- declare function ToggleRightButton(props: Omit<ActionBtnProps, 'iconLeft'>): react_jsx_runtime7.JSX.Element;
21
+ }): react_jsx_runtime11.JSX.Element;
22
+ declare function ToggleLeftButton(props: Omit<ActionBtnProps, 'iconLeft'>): react_jsx_runtime11.JSX.Element;
23
+ declare function ToggleRightButton(props: Omit<ActionBtnProps, 'iconLeft'>): react_jsx_runtime11.JSX.Element;
24
24
  //#endregion
25
25
  export { DeleteButton, EditButton, ToggleButton, ToggleLeftButton, ToggleRightButton, ViewButton };
26
26
  //# sourceMappingURL=ActionButtons.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ActionButtons.d.ts","names":[],"sources":["../../../src/components/atoms/ActionButtons.tsx"],"sourcesContent":[],"mappings":";;;;;;;cAaM;;;IAgBJ,+BAAA,CAAA;AA3BgE,KA6B7D,cAAA,GAAiB,IAFpB,CAEyB,WAFzB,EAAA,MAAA,GAAA,SAAA,CAAA,GAGA,YAHA,CAAA,OAGoB,UAHpB,CAAA,GAAA;EAEG,KAAA,CAAA,EAEO,KAAA,CAAM,SAFC;EAAQ,QAAA,CAAA,EAGZ,KAAA,CAAM,SAHM;CAAL;AACA,iBAwDN,UAAA,CAxDM,KAAA,EAwDY,IAxDZ,CAwDiB,cAxDjB,EAAA,UAAA,GAAA,MAAA,CAAA,CAAA,EAwDqD,kBAAA,CAAA,GAAA,CAAA,OAxDrD;AAApB,iBA8Dc,YAAA,CA9Dd,KAAA,EA8DkC,IA9DlC,CA8DuC,cA9DvC,EAAA,UAAA,CAAA,CAAA,EA8DkE,kBAAA,CAAA,GAAA,CAAA,OA9DlE;AACgB,iBAuEF,UAAA,CAvEE,KAAA,EAuEgB,IAvEhB,CAuEqB,cAvErB,EAAA,UAAA,CAAA,CAAA,EAuEgD,kBAAA,CAAA,GAAA,CAAA,OAvEhD;AACG,iBA4EL,YAAA,CA5EK,KAAA,EA6EZ,IA7EY,CA6EP,cA7EO,EAAA,UAAA,CAAA,GAAA;EAAS,MAAA,CAAA,EAAA,OAAA;AAsD9B,CAAA,CAAA,EAuBgE,kBAAA,CAAA,GAAA,CAAA,OAvBtC;AAAa,iBAwCvB,gBAAA,CAxCuB,KAAA,EAwCC,IAxCD,CAwCM,cAxCN,EAAA,UAAA,CAAA,CAAA,EAwCiC,kBAAA,CAAA,GAAA,CAAA,OAxCjC;AAAL,iBAiDlB,iBAAA,CAjDkB,KAAA,EAiDO,IAjDP,CAiDY,cAjDZ,EAAA,UAAA,CAAA,CAAA,EAiDuC,kBAAA,CAAA,GAAA,CAAA,OAjDvC"}
1
+ {"version":3,"file":"ActionButtons.d.ts","names":[],"sources":["../../../src/components/atoms/ActionButtons.tsx"],"sourcesContent":[],"mappings":";;;;;;;cAaM;;;IAgBJ,+BAAA,CAAA;AA3BgE,KA6B7D,cAAA,GAAiB,IAFpB,CAEyB,WAFzB,EAAA,MAAA,GAAA,SAAA,CAAA,GAGA,YAHA,CAAA,OAGoB,UAHpB,CAAA,GAAA;EAEG,KAAA,CAAA,EAEO,KAAA,CAAM,SAFC;EAAQ,QAAA,CAAA,EAGZ,KAAA,CAAM,SAHM;CAAL;AACA,iBAwDN,UAAA,CAxDM,KAAA,EAwDY,IAxDZ,CAwDiB,cAxDjB,EAAA,UAAA,GAAA,MAAA,CAAA,CAAA,EAwDqD,mBAAA,CAAA,GAAA,CAAA,OAxDrD;AAApB,iBA8Dc,YAAA,CA9Dd,KAAA,EA8DkC,IA9DlC,CA8DuC,cA9DvC,EAAA,UAAA,CAAA,CAAA,EA8DkE,mBAAA,CAAA,GAAA,CAAA,OA9DlE;AACgB,iBAuEF,UAAA,CAvEE,KAAA,EAuEgB,IAvEhB,CAuEqB,cAvErB,EAAA,UAAA,CAAA,CAAA,EAuEgD,mBAAA,CAAA,GAAA,CAAA,OAvEhD;AACG,iBA4EL,YAAA,CA5EK,KAAA,EA6EZ,IA7EY,CA6EP,cA7EO,EAAA,UAAA,CAAA,GAAA;EAAS,MAAA,CAAA,EAAA,OAAA;AAsD9B,CAAA,CAAA,EAuBgE,mBAAA,CAAA,GAAA,CAAA,OAvBtC;AAAa,iBAwCvB,gBAAA,CAxCuB,KAAA,EAwCC,IAxCD,CAwCM,cAxCN,EAAA,UAAA,CAAA,CAAA,EAwCiC,mBAAA,CAAA,GAAA,CAAA,OAxCjC;AAAL,iBAiDlB,iBAAA,CAjDkB,KAAA,EAiDO,IAjDP,CAiDY,cAjDZ,EAAA,UAAA,CAAA,CAAA,EAiDuC,mBAAA,CAAA,GAAA,CAAA,OAjDvC"}
@@ -1,6 +1,6 @@
1
1
  import * as React from "react";
2
2
  import { ButtonProps } from "@contractspec/lib.ui-kit-web/ui/button";
3
- import * as react_jsx_runtime0 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime4 from "react/jsx-runtime";
4
4
 
5
5
  //#region src/components/atoms/Button.d.ts
6
6
  type SpinnerPlacement = 'start' | 'end';
@@ -33,7 +33,7 @@ declare function Button$1({
33
33
  className,
34
34
  disabled,
35
35
  ...rest
36
- }: ButtonProps$1): react_jsx_runtime0.JSX.Element;
36
+ }: ButtonProps$1): react_jsx_runtime4.JSX.Element;
37
37
  //#endregion
38
38
  export { Button$1 as Button, ButtonProps$1 as ButtonProps };
39
39
  //# sourceMappingURL=Button.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { ButtonProps } from "./Button.js";
2
2
  import { LinkProps } from "./Link.web.js";
3
- import * as react_jsx_runtime1 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime5 from "react/jsx-runtime";
4
4
 
5
5
  //#region src/components/atoms/ButtonLink.d.ts
6
6
  type ButtonLinkProps = Omit<ButtonProps, 'onClick'> & Pick<LinkProps, 'href' | 'target' | 'rel' | 'onClick'> & {
@@ -16,7 +16,7 @@ declare function ButtonLink({
16
16
  children,
17
17
  onClick,
18
18
  ...btn
19
- }: ButtonLinkProps): react_jsx_runtime1.JSX.Element;
19
+ }: ButtonLinkProps): react_jsx_runtime5.JSX.Element;
20
20
  //#endregion
21
21
  export { ButtonLink };
22
22
  //# sourceMappingURL=ButtonLink.d.ts.map
@@ -1,38 +1,38 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime13 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
3
3
  import { VariantProps } from "class-variance-authority";
4
- import * as class_variance_authority_types2 from "class-variance-authority/types";
4
+ import * as class_variance_authority_types0 from "class-variance-authority/types";
5
5
 
6
6
  //#region src/components/atoms/DataChips.d.ts
7
7
  declare const chip: (props?: ({
8
8
  size?: "sm" | "md" | null | undefined;
9
9
  tone?: "default" | "muted" | null | undefined;
10
- } & class_variance_authority_types2.ClassProp) | undefined) => string;
10
+ } & class_variance_authority_types0.ClassProp) | undefined) => string;
11
11
  type ChipVariants = VariantProps<typeof chip>;
12
12
  declare function DateChip({
13
13
  value,
14
14
  ...v
15
15
  }: {
16
16
  value?: string | Date | null;
17
- } & ChipVariants): react_jsx_runtime13.JSX.Element | null;
17
+ } & ChipVariants): react_jsx_runtime0.JSX.Element | null;
18
18
  declare function TimeChip({
19
19
  value,
20
20
  ...v
21
21
  }: {
22
22
  value?: string | Date | null;
23
- } & ChipVariants): react_jsx_runtime13.JSX.Element | null;
23
+ } & ChipVariants): react_jsx_runtime0.JSX.Element | null;
24
24
  declare function PlaceChip({
25
25
  label,
26
26
  ...v
27
27
  }: {
28
28
  label?: React.ReactNode;
29
- } & ChipVariants): react_jsx_runtime13.JSX.Element | null;
29
+ } & ChipVariants): react_jsx_runtime0.JSX.Element | null;
30
30
  declare function DurationChip({
31
31
  minutes,
32
32
  ...v
33
33
  }: {
34
34
  minutes?: number | null;
35
- } & ChipVariants): react_jsx_runtime13.JSX.Element | null;
35
+ } & ChipVariants): react_jsx_runtime0.JSX.Element | null;
36
36
  //#endregion
37
37
  export { DateChip, DurationChip, PlaceChip, TimeChip };
38
38
  //# sourceMappingURL=DataChips.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"DataChips.d.ts","names":[],"sources":["../../../src/components/atoms/DataChips.tsx"],"sourcesContent":[],"mappings":";;;;;;cAIM;;;IASL,+BAAA,CAAA;AATK,KAWM,YAAA,GAAe,YAF1B,CAAA,OAE8C,IAF9C,CAAA;AAEW,iBAEI,QAAA,CAF+B;EAAA,KAApB;EAAA,GAAA;AAGzB,CAHyB,EAAY;EAEvB,KAAA,CAAA,EAAA,MAAQ,GAGF,IAHE,GAAA,IAAA;CACtB,GAEoC,YAFpC,CAAA,EAEgD,mBAAA,CAAA,GAAA,CAAA,OAAA,GAFhD,IAAA;AAEoB,iBAgBN,QAAA,CAhBM;EAAA,KAAA;EAAA,GAAA;AAA4B,CAA5B,EAAA;EAAgB,KAAA,CAAA,EAAA,MAAA,GAmBhB,IAnBgB,GAAA,IAAA;CAAY,GAmBZ,YAnBY,CAAA,EAmBA,mBAAA,CAAA,GAAA,CAAA,OAAA,GAnBA,IAAA;AAAA,iBAmClC,SAAA,CAnCkC;EAAA,KAAA;EAAA,GAAA;AAiBhD,CAjBgD,EAAA;EAgBlC,KAAA,CAAA,EAsBH,KAAA,CAAM,SAtBK;CACtB,GAqB+B,YArB/B,CAAA,EAqB2C,mBAAA,CAAA,GAAA,CAAA,OAAA,GArB3C,IAAA;AAEoB,iBA4BN,YAAA,CA5BM;EAAA,OAAA;EAAA,GAAA;AAA4B,CAA5B,EAAA;EAAgB,OAAA,CAAA,EAAA,MAAA,GAAA,IAAA;CAAY,GA+BjB,YA/BiB,CAAA,EA+BL,mBAAA,CAAA,GAAA,CAAA,OAAA,GA/BK,IAAA"}
1
+ {"version":3,"file":"DataChips.d.ts","names":[],"sources":["../../../src/components/atoms/DataChips.tsx"],"sourcesContent":[],"mappings":";;;;;;cAIM;;;IASL,+BAAA,CAAA;AATK,KAWM,YAAA,GAAe,YAF1B,CAAA,OAE8C,IAF9C,CAAA;AAEW,iBAEI,QAAA,CAF+B;EAAA,KAApB;EAAA,GAAA;AAGzB,CAHyB,EAAY;EAEvB,KAAA,CAAA,EAAA,MAAQ,GAGF,IAHE,GAAA,IAAA;CACtB,GAEoC,YAFpC,CAAA,EAEgD,kBAAA,CAAA,GAAA,CAAA,OAAA,GAFhD,IAAA;AAEoB,iBAgBN,QAAA,CAhBM;EAAA,KAAA;EAAA,GAAA;AAA4B,CAA5B,EAAA;EAAgB,KAAA,CAAA,EAAA,MAAA,GAmBhB,IAnBgB,GAAA,IAAA;CAAY,GAmBZ,YAnBY,CAAA,EAmBA,kBAAA,CAAA,GAAA,CAAA,OAAA,GAnBA,IAAA;AAAA,iBAmClC,SAAA,CAnCkC;EAAA,KAAA;EAAA,GAAA;AAiBhD,CAjBgD,EAAA;EAgBlC,KAAA,CAAA,EAsBH,KAAA,CAAM,SAtBK;CACtB,GAqB+B,YArB/B,CAAA,EAqB2C,kBAAA,CAAA,GAAA,CAAA,OAAA,GArB3C,IAAA;AAEoB,iBA4BN,YAAA,CA5BM;EAAA,OAAA;EAAA,GAAA;AAA4B,CAA5B,EAAA;EAAgB,OAAA,CAAA,EAAA,MAAA,GAAA,IAAA;CAAY,GA+BjB,YA/BiB,CAAA,EA+BL,kBAAA,CAAA,GAAA,CAAA,OAAA,GA/BK,IAAA"}
@@ -1,8 +1,8 @@
1
- import * as react_jsx_runtime5 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime9 from "react/jsx-runtime";
2
2
  import { EmptyStateProps } from "@contractspec/lib.ui-kit-web/ui/empty-state";
3
3
 
4
4
  //#region src/components/atoms/EmptyState.d.ts
5
- declare function EmptyState$1(props: EmptyStateProps): react_jsx_runtime5.JSX.Element;
5
+ declare function EmptyState$1(props: EmptyStateProps): react_jsx_runtime9.JSX.Element;
6
6
  //#endregion
7
7
  export { EmptyState$1 as EmptyState };
8
8
  //# sourceMappingURL=EmptyState.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { KeyboardOptions } from "../../lib/keyboard.js";
2
- import * as react_jsx_runtime3 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime7 from "react/jsx-runtime";
3
3
  import { InputProps } from "@contractspec/lib.ui-kit-web/ui/input";
4
4
 
5
5
  //#region src/components/atoms/Input.d.ts
@@ -30,7 +30,7 @@ declare function Input$1({
30
30
  className,
31
31
  keyboard,
32
32
  ...rest
33
- }: InputProps$1): react_jsx_runtime3.JSX.Element;
33
+ }: InputProps$1): react_jsx_runtime7.JSX.Element;
34
34
  //#endregion
35
35
  export { Input$1 as Input };
36
36
  //# sourceMappingURL=Input.d.ts.map
@@ -1,12 +1,12 @@
1
1
  import { AnchorHTMLAttributes } from "react";
2
- import * as react_jsx_runtime2 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime6 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/atoms/Link.d.ts
5
5
  type LinkProps = AnchorHTMLAttributes<HTMLAnchorElement>;
6
6
  declare function Link({
7
7
  children,
8
8
  ...props
9
- }: LinkProps): react_jsx_runtime2.JSX.Element;
9
+ }: LinkProps): react_jsx_runtime6.JSX.Element;
10
10
  //#endregion
11
11
  export { Link };
12
12
  //# sourceMappingURL=Link.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime43 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime42 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/atoms/NavBrand.d.ts
5
5
  interface NavBrandProps {
@@ -13,7 +13,7 @@ declare function NavBrand({
13
13
  logo,
14
14
  title,
15
15
  className
16
- }: NavBrandProps): react_jsx_runtime43.JSX.Element;
16
+ }: NavBrandProps): react_jsx_runtime42.JSX.Element;
17
17
  //#endregion
18
18
  export { NavBrand };
19
19
  //# sourceMappingURL=NavBrand.d.ts.map
@@ -1,8 +1,8 @@
1
- import * as react_jsx_runtime6 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime10 from "react/jsx-runtime";
2
2
  import { StepperProps } from "@contractspec/lib.ui-kit-web/ui/stepper";
3
3
 
4
4
  //#region src/components/atoms/Stepper.d.ts
5
- declare function Stepper$1(props: StepperProps): react_jsx_runtime6.JSX.Element;
5
+ declare function Stepper$1(props: StepperProps): react_jsx_runtime10.JSX.Element;
6
6
  //#endregion
7
7
  export { Stepper$1 as Stepper };
8
8
  //# sourceMappingURL=Stepper.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Stepper.d.ts","names":[],"sources":["../../../src/components/atoms/Stepper.tsx"],"sourcesContent":[],"mappings":";;;;iBAQgB,SAAA,QAAe,eAAY,kBAAA,CAAA,GAAA,CAAA"}
1
+ {"version":3,"file":"Stepper.d.ts","names":[],"sources":["../../../src/components/atoms/Stepper.tsx"],"sourcesContent":[],"mappings":";;;;iBAQgB,SAAA,QAAe,eAAY,mBAAA,CAAA,GAAA,CAAA"}
@@ -1,5 +1,5 @@
1
1
  import { KeyboardOptions } from "../../lib/keyboard.js";
2
- import * as react_jsx_runtime4 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime8 from "react/jsx-runtime";
3
3
  import { TextareaProps } from "@contractspec/lib.ui-kit-web/ui/textarea";
4
4
 
5
5
  //#region src/components/atoms/Textarea.d.ts
@@ -32,7 +32,7 @@ declare function Textarea$1({
32
32
  rows,
33
33
  keyboard,
34
34
  ...rest
35
- }: TextareaProps$1): react_jsx_runtime4.JSX.Element;
35
+ }: TextareaProps$1): react_jsx_runtime8.JSX.Element;
36
36
  //#endregion
37
37
  export { Textarea$1 as Textarea };
38
38
  //# sourceMappingURL=Textarea.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime0 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime60 from "react/jsx-runtime";
3
3
  import { DataViewSpec } from "@contractspec/lib.contracts/data-views";
4
4
 
5
5
  //#region src/components/data-view/DataViewRenderer.d.ts
@@ -42,7 +42,7 @@ declare function DataViewRenderer({
42
42
  onFilterChange,
43
43
  pagination,
44
44
  onPageChange
45
- }: DataViewRendererProps): react_jsx_runtime0.JSX.Element;
45
+ }: DataViewRendererProps): react_jsx_runtime60.JSX.Element;
46
46
  //#endregion
47
47
  export { DataViewRenderer };
48
48
  //# sourceMappingURL=DataViewRenderer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"DataViewRenderer.d.ts","names":[],"sources":["../../../src/components/data-view/DataViewRenderer.tsx"],"sourcesContent":[],"mappings":";;;;;UAqBiB,qBAAA;QACT;UACE;EAFO,IAAA,CAAA,EAGR,MAHQ,CAAA,MAAA,EAAA,OAAqB,CAAA,GAAA,IAAA;EAC9B,SAAA,CAAA,EAAA,MAAA;EACE,aAAA,CAAA,EAAA,CAAA,IAAA,EAGe,MAHf,CAAA,MAAA,EAAA,OAAA,CAAA,EAAA,GAG2C,KAAA,CAAM,SAHjD;EACD,QAAA,CAAA,EAAA,CAAA,IAAA,EAGW,MAHX,CAAA,MAAA,EAAA,OAAA,CAAA,EAAA,GAAA,IAAA;EAEgB,UAAA,CAAA,EAAA,CAAA,IAAA,EAEH,MAFG,CAAA,MAAA,EAAA,OAAA,CAAA,EAAA,GAAA,IAAA;EAA4B,aAAM,CAAA,EAGzC,KAAA,CAAM,SAHmC;EACvC,UAAA,CAAA,EAGL,KAAA,CAAM,SAHD;EACE,MAAA,CAAA,EAGX,KAAA,CAAM,SAHK;EACJ,MAAM,CAAA,EAAA,MAAA;EACT,cAAM,CAAA,EAAA,CAAA,KAAA,EAAA,MAAA,EAAA,GAAA,IAAA;EACV,OAAM,CAAA,EAKL,MALK,CAAA,MAAA,EAAA,OAAA,CAAA;EAKL,cAAA,CAAA,EAAA,CAAA,OAAA,EACiB,MADjB,CAAA,MAAA,EAAA,OAAA,CAAA,EAAA,GAAA,IAAA;EACiB,UAAA,CAAA,EAAA;IAAM,IAAA,EAAA,MAAA;IAWnB,QAAA,EAAA,MAAgB;IAC9B,KAAA,EAAA,MAAA;EACA,CAAA;EACA,YAAA,CAAA,EAAA,CAAA,IAAA,EAAA,MAAA,EAAA,GAAA,IAAA;;AAEA,iBALc,gBAAA,CAKd;EAAA,IAAA;EAAA,KAAA;EAAA,IAAA;EAAA,SAAA;EAAA,aAAA;EAAA,QAAA;EAAA,UAAA;EAAA,aAAA;EAAA,UAAA;EAAA,MAAA;EAAA,MAAA;EAAA,cAAA;EAAA,OAAA;EAAA,cAAA;EAAA,UAAA;EAAA;AAAA,CAAA,EAYC,qBAZD,CAAA,EAYsB,kBAAA,CAAA,GAAA,CAAA,OAZtB"}
1
+ {"version":3,"file":"DataViewRenderer.d.ts","names":[],"sources":["../../../src/components/data-view/DataViewRenderer.tsx"],"sourcesContent":[],"mappings":";;;;;UAqBiB,qBAAA;QACT;UACE;EAFO,IAAA,CAAA,EAGR,MAHQ,CAAA,MAAA,EAAA,OAAqB,CAAA,GAAA,IAAA;EAC9B,SAAA,CAAA,EAAA,MAAA;EACE,aAAA,CAAA,EAAA,CAAA,IAAA,EAGe,MAHf,CAAA,MAAA,EAAA,OAAA,CAAA,EAAA,GAG2C,KAAA,CAAM,SAHjD;EACD,QAAA,CAAA,EAAA,CAAA,IAAA,EAGW,MAHX,CAAA,MAAA,EAAA,OAAA,CAAA,EAAA,GAAA,IAAA;EAEgB,UAAA,CAAA,EAAA,CAAA,IAAA,EAEH,MAFG,CAAA,MAAA,EAAA,OAAA,CAAA,EAAA,GAAA,IAAA;EAA4B,aAAM,CAAA,EAGzC,KAAA,CAAM,SAHmC;EACvC,UAAA,CAAA,EAGL,KAAA,CAAM,SAHD;EACE,MAAA,CAAA,EAGX,KAAA,CAAM,SAHK;EACJ,MAAM,CAAA,EAAA,MAAA;EACT,cAAM,CAAA,EAAA,CAAA,KAAA,EAAA,MAAA,EAAA,GAAA,IAAA;EACV,OAAM,CAAA,EAKL,MALK,CAAA,MAAA,EAAA,OAAA,CAAA;EAKL,cAAA,CAAA,EAAA,CAAA,OAAA,EACiB,MADjB,CAAA,MAAA,EAAA,OAAA,CAAA,EAAA,GAAA,IAAA;EACiB,UAAA,CAAA,EAAA;IAAM,IAAA,EAAA,MAAA;IAWnB,QAAA,EAAA,MAAgB;IAC9B,KAAA,EAAA,MAAA;EACA,CAAA;EACA,YAAA,CAAA,EAAA,CAAA,IAAA,EAAA,MAAA,EAAA,GAAA,IAAA;;AAEA,iBALc,gBAAA,CAKd;EAAA,IAAA;EAAA,KAAA;EAAA,IAAA;EAAA,SAAA;EAAA,aAAA;EAAA,QAAA;EAAA,UAAA;EAAA,aAAA;EAAA,UAAA;EAAA,MAAA;EAAA,MAAA;EAAA,cAAA;EAAA,OAAA;EAAA,cAAA;EAAA,UAAA;EAAA;AAAA,CAAA,EAYC,qBAZD,CAAA,EAYsB,mBAAA,CAAA,GAAA,CAAA,OAZtB"}
@@ -5,8 +5,8 @@ import * as class_variance_authority_types16 from "class-variance-authority/type
5
5
 
6
6
  //#region src/components/legal/atoms/LegalText.d.ts
7
7
  declare const textVariants: (props?: ({
8
- tone?: "default" | "danger" | "muted" | null | undefined;
9
- size?: "base" | "sm" | "lg" | null | undefined;
8
+ tone?: "default" | "muted" | "danger" | null | undefined;
9
+ size?: "sm" | "base" | "lg" | null | undefined;
10
10
  spacing?: "sm" | "md" | "lg" | "none" | null | undefined;
11
11
  } & class_variance_authority_types16.ClassProp) | undefined) => string;
12
12
  type LegalTextProps = React.HTMLAttributes<HTMLParagraphElement> & VariantProps<typeof textVariants> & {
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime34 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime33 from "react/jsx-runtime";
3
3
  import { Card, CardContent as CardContent$1, CardDescription, CardHeader as CardHeader$1, CardTitle as CardTitle$1 } from "@contractspec/lib.ui-kit-web/ui/card";
4
4
 
5
5
  //#region src/components/marketing/MarketingCard.d.ts
@@ -11,7 +11,7 @@ declare function MarketingCard({
11
11
  tone,
12
12
  className,
13
13
  ...props
14
- }: MarketingCardProps): react_jsx_runtime34.JSX.Element;
14
+ }: MarketingCardProps): react_jsx_runtime33.JSX.Element;
15
15
  //#endregion
16
16
  export { CardContent$1 as CardContent, CardDescription, CardHeader$1 as CardHeader, CardTitle$1 as CardTitle, MarketingCard, MarketingCardTone };
17
17
  //# sourceMappingURL=MarketingCard.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { MarketingSection } from "./MarketingSection.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime33 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime32 from "react/jsx-runtime";
4
4
  import { VariantProps } from "class-variance-authority";
5
5
  import * as class_variance_authority_types4 from "class-variance-authority/types";
6
6
 
@@ -16,7 +16,7 @@ declare function MarketingCardsSection({
16
16
  columns,
17
17
  gridClassName,
18
18
  ...sectionProps
19
- }: MarketingCardsSectionProps): react_jsx_runtime33.JSX.Element;
19
+ }: MarketingCardsSectionProps): react_jsx_runtime32.JSX.Element;
20
20
  //#endregion
21
21
  export { MarketingCardsSection };
22
22
  //# sourceMappingURL=MarketingCardsSection.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { MarketingSectionPadding, MarketingSectionTone } from "./MarketingSection.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime37 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime36 from "react/jsx-runtime";
4
4
 
5
5
  //#region src/components/marketing/MarketingComparisonSection.d.ts
6
6
  interface ComparisonColumn {
@@ -24,7 +24,7 @@ declare function MarketingComparisonSection({
24
24
  right,
25
25
  tone,
26
26
  padding
27
- }: MarketingComparisonSectionProps): react_jsx_runtime37.JSX.Element;
27
+ }: MarketingComparisonSectionProps): react_jsx_runtime36.JSX.Element;
28
28
  //#endregion
29
29
  export { MarketingComparisonSection };
30
30
  //# sourceMappingURL=MarketingComparisonSection.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { MarketingCardTone } from "./MarketingCard.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime35 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime34 from "react/jsx-runtime";
4
4
  import { VariantProps } from "class-variance-authority";
5
5
  import * as class_variance_authority_types5 from "class-variance-authority/types";
6
6
 
@@ -32,7 +32,7 @@ declare function MarketingIconCard({
32
32
  headerAction,
33
33
  variant,
34
34
  className
35
- }: MarketingIconCardProps): react_jsx_runtime35.JSX.Element;
35
+ }: MarketingIconCardProps): react_jsx_runtime34.JSX.Element;
36
36
  //#endregion
37
37
  export { MarketingIconCard };
38
38
  //# sourceMappingURL=MarketingIconCard.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime32 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime31 from "react/jsx-runtime";
3
3
  import { VariantProps } from "class-variance-authority";
4
4
  import * as class_variance_authority_types3 from "class-variance-authority/types";
5
5
 
@@ -28,7 +28,7 @@ declare function MarketingSection({
28
28
  tone,
29
29
  padding,
30
30
  className
31
- }: MarketingSectionProps): react_jsx_runtime32.JSX.Element;
31
+ }: MarketingSectionProps): react_jsx_runtime31.JSX.Element;
32
32
  //#endregion
33
33
  export { MarketingSection, MarketingSectionPadding, MarketingSectionTone };
34
34
  //# sourceMappingURL=MarketingSection.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { MarketingCardTone } from "./MarketingCard.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime36 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime35 from "react/jsx-runtime";
4
4
 
5
5
  //#region src/components/marketing/MarketingStepCard.d.ts
6
6
  interface MarketingStepCardProps {
@@ -14,7 +14,7 @@ declare function MarketingStepCard({
14
14
  title,
15
15
  description,
16
16
  tone
17
- }: MarketingStepCardProps): react_jsx_runtime36.JSX.Element;
17
+ }: MarketingStepCardProps): react_jsx_runtime35.JSX.Element;
18
18
  //#endregion
19
19
  export { MarketingStepCard };
20
20
  //# sourceMappingURL=MarketingStepCard.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime44 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime27 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/molecules/Breadcrumbs.d.ts
5
5
  interface BreadcrumbItemDef {
@@ -10,7 +10,7 @@ declare function Breadcrumbs({
10
10
  items
11
11
  }: {
12
12
  items: BreadcrumbItemDef[];
13
- }): react_jsx_runtime44.JSX.Element | null;
13
+ }): react_jsx_runtime27.JSX.Element | null;
14
14
  //#endregion
15
15
  export { Breadcrumbs };
16
16
  //# sourceMappingURL=Breadcrumbs.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { CodeBlockProps } from "./types.js";
2
- import * as react_jsx_runtime115 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime117 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/molecules/CodeBlock/CodeBlock.d.ts
5
5
  declare function CodeBlock({
@@ -11,7 +11,7 @@ declare function CodeBlock({
11
11
  onCopy,
12
12
  className,
13
13
  ...props
14
- }: CodeBlockProps): react_jsx_runtime115.JSX.Element;
14
+ }: CodeBlockProps): react_jsx_runtime117.JSX.Element;
15
15
  //#endregion
16
16
  export { CodeBlock };
17
17
  //# sourceMappingURL=CodeBlock.d.ts.map
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime41 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime40 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/components/molecules/CommandPalette.d.ts
4
4
  interface CommandPaletteProps {
@@ -21,7 +21,7 @@ declare function CommandPalette({
21
21
  onOpenChange,
22
22
  groups,
23
23
  placeholder
24
- }: CommandPaletteProps): react_jsx_runtime41.JSX.Element;
24
+ }: CommandPaletteProps): react_jsx_runtime40.JSX.Element;
25
25
  //#endregion
26
26
  export { CommandPalette };
27
27
  //# sourceMappingURL=CommandPalette.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { CommandPalette } from "./CommandPalette.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime45 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime44 from "react/jsx-runtime";
4
4
 
5
5
  //#region src/components/molecules/CommandSearchTrigger.d.ts
6
6
  declare function CommandSearchTrigger({
@@ -13,7 +13,7 @@ declare function CommandSearchTrigger({
13
13
  className?: string;
14
14
  placeholder?: string;
15
15
  compact?: boolean;
16
- }): react_jsx_runtime45.JSX.Element;
16
+ }): react_jsx_runtime44.JSX.Element;
17
17
  //#endregion
18
18
  export { CommandSearchTrigger };
19
19
  //# sourceMappingURL=CommandSearchTrigger.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { CommandTabsProps } from "./types.js";
2
- import * as react_jsx_runtime117 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime116 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/molecules/CommandTabs/CommandTabs.d.ts
5
5
  declare function CommandTabs({
@@ -8,7 +8,7 @@ declare function CommandTabs({
8
8
  className,
9
9
  onCopy,
10
10
  ...props
11
- }: CommandTabsProps): react_jsx_runtime117.JSX.Element | null;
11
+ }: CommandTabsProps): react_jsx_runtime116.JSX.Element | null;
12
12
  //#endregion
13
13
  export { CommandTabs };
14
14
  //# sourceMappingURL=CommandTabs.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { CopyButtonProps } from "./types.js";
2
- import * as react_jsx_runtime116 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime118 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/molecules/CopyButton/CopyButton.d.ts
5
5
  declare function CopyButton({
@@ -7,7 +7,7 @@ declare function CopyButton({
7
7
  onCopy,
8
8
  className,
9
9
  ...props
10
- }: CopyButtonProps): react_jsx_runtime116.JSX.Element;
10
+ }: CopyButtonProps): react_jsx_runtime118.JSX.Element;
11
11
  //#endregion
12
12
  export { CopyButton };
13
13
  //# sourceMappingURL=CopyButton.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime47 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime46 from "react/jsx-runtime";
3
3
  import { VariantProps } from "class-variance-authority";
4
4
  import { Card } from "@contractspec/lib.ui-kit-web/ui/card";
5
5
  import * as class_variance_authority_types7 from "class-variance-authority/types";
@@ -32,7 +32,7 @@ declare function EntityCard({
32
32
  href,
33
33
  preview,
34
34
  ...cardProps
35
- }: EntityCardProps): react_jsx_runtime47.JSX.Element;
35
+ }: EntityCardProps): react_jsx_runtime46.JSX.Element;
36
36
  //#endregion
37
37
  export { EntityCard };
38
38
  //# sourceMappingURL=EntityCard.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime51 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime50 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/molecules/HoverPreview.d.ts
5
5
  interface HoverPreviewProps {
@@ -15,7 +15,7 @@ declare function HoverPreview({
15
15
  align,
16
16
  sideOffset,
17
17
  className
18
- }: HoverPreviewProps): react_jsx_runtime51.JSX.Element;
18
+ }: HoverPreviewProps): react_jsx_runtime50.JSX.Element;
19
19
  //#endregion
20
20
  export { HoverPreview };
21
21
  //# sourceMappingURL=HoverPreview.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { InstallCommandProps } from "./types.js";
2
- import * as react_jsx_runtime118 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime115 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/molecules/InstallCommand/InstallCommand.d.ts
5
5
 
@@ -22,7 +22,7 @@ declare function InstallCommand({
22
22
  global,
23
23
  onCopy,
24
24
  ...props
25
- }: InstallCommandProps): react_jsx_runtime118.JSX.Element;
25
+ }: InstallCommandProps): react_jsx_runtime115.JSX.Element;
26
26
  //#endregion
27
27
  export { InstallCommand };
28
28
  //# sourceMappingURL=InstallCommand.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime42 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime41 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/molecules/LangSwitch.d.ts
5
5
  interface LangOption {
@@ -17,7 +17,7 @@ declare function LangSwitch({
17
17
  options,
18
18
  onChange,
19
19
  size
20
- }: LangSwitchProps): react_jsx_runtime42.JSX.Element;
20
+ }: LangSwitchProps): react_jsx_runtime41.JSX.Element;
21
21
  //#endregion
22
22
  export { LangSwitch, LangSwitchProps };
23
23
  //# sourceMappingURL=LangSwitch.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime50 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime49 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/molecules/OverviewCard.d.ts
5
5
  interface OverviewCardProps {
@@ -15,7 +15,7 @@ declare function OverviewCard({
15
15
  href,
16
16
  preview,
17
17
  ctaLabel
18
- }: OverviewCardProps): react_jsx_runtime50.JSX.Element;
18
+ }: OverviewCardProps): react_jsx_runtime49.JSX.Element;
19
19
  //#endregion
20
20
  export { OverviewCard };
21
21
  //# sourceMappingURL=OverviewCard.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime48 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime47 from "react/jsx-runtime";
3
3
  import { VariantProps } from "class-variance-authority";
4
4
  import { Card } from "@contractspec/lib.ui-kit-web/ui/card";
5
5
  import * as class_variance_authority_types8 from "class-variance-authority/types";
@@ -24,14 +24,14 @@ declare function StatCard({
24
24
  density,
25
25
  className,
26
26
  ...props
27
- }: StatCardProps): react_jsx_runtime48.JSX.Element;
27
+ }: StatCardProps): react_jsx_runtime47.JSX.Element;
28
28
  declare function StatCardGroup({
29
29
  children,
30
30
  className
31
31
  }: {
32
32
  children: React.ReactNode;
33
33
  className?: string;
34
- }): react_jsx_runtime48.JSX.Element;
34
+ }): react_jsx_runtime47.JSX.Element;
35
35
  //#endregion
36
36
  export { StatCard, StatCardGroup };
37
37
  //# sourceMappingURL=StatCard.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime46 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime45 from "react/jsx-runtime";
3
3
  import { VariantProps } from "class-variance-authority";
4
4
  import * as class_variance_authority_types6 from "class-variance-authority/types";
5
5
 
@@ -21,7 +21,7 @@ declare function StatusChip({
21
21
  className,
22
22
  hoverContent,
23
23
  ...props
24
- }: StatusChipProps): react_jsx_runtime46.JSX.Element;
24
+ }: StatusChipProps): react_jsx_runtime45.JSX.Element;
25
25
  //#endregion
26
26
  export { StatusChip };
27
27
  //# sourceMappingURL=StatusChip.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime53 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime43 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/molecules/hover-previews/Media.d.ts
5
5
  interface HoverPreviewMediaProps {
@@ -15,7 +15,7 @@ declare function HoverPreviewMedia({
15
15
  media,
16
16
  caption,
17
17
  className
18
- }: HoverPreviewMediaProps): react_jsx_runtime53.JSX.Element;
18
+ }: HoverPreviewMediaProps): react_jsx_runtime43.JSX.Element;
19
19
  //#endregion
20
20
  export { HoverPreviewMedia };
21
21
  //# sourceMappingURL=Media.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime52 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime51 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/molecules/hover-previews/Simple.d.ts
5
5
  interface HoverPreviewLine {
@@ -20,7 +20,7 @@ declare function HoverPreviewSimple({
20
20
  lines,
21
21
  footer,
22
22
  className
23
- }: HoverPreviewSimpleProps): react_jsx_runtime52.JSX.Element;
23
+ }: HoverPreviewSimpleProps): react_jsx_runtime51.JSX.Element;
24
24
  //#endregion
25
25
  export { HoverPreviewSimple };
26
26
  //# sourceMappingURL=Simple.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime39 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime38 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/organisms/AcademyLayout.d.ts
5
5
  interface AcademyLayoutProps {
@@ -24,7 +24,7 @@ declare function AcademyLayout({
24
24
  rightPanel,
25
25
  footer,
26
26
  className
27
- }: AcademyLayoutProps): react_jsx_runtime39.JSX.Element;
27
+ }: AcademyLayoutProps): react_jsx_runtime38.JSX.Element;
28
28
  //#endregion
29
29
  export { AcademyLayout };
30
30
  //# sourceMappingURL=AcademyLayout.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { HeaderProps } from "./Header.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime40 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime39 from "react/jsx-runtime";
4
4
 
5
5
  //#region src/components/organisms/AppHeader.d.ts
6
6
  interface AppHeaderProps extends HeaderProps {
@@ -13,7 +13,7 @@ declare function AppHeader({
13
13
  toolbarRight,
14
14
  className,
15
15
  ...props
16
- }: AppHeaderProps): react_jsx_runtime40.JSX.Element;
16
+ }: AppHeaderProps): react_jsx_runtime39.JSX.Element;
17
17
  //#endregion
18
18
  export { AppHeader };
19
19
  //# sourceMappingURL=AppHeader.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { AppSidebar } from "./AppSidebar.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime38 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime37 from "react/jsx-runtime";
4
4
 
5
5
  //#region src/components/organisms/AppLayout.d.ts
6
6
  interface AppLayoutProps {
@@ -23,7 +23,7 @@ declare function AppLayout({
23
23
  children,
24
24
  footer,
25
25
  className
26
- }: AppLayoutProps): react_jsx_runtime38.JSX.Element;
26
+ }: AppLayoutProps): react_jsx_runtime37.JSX.Element;
27
27
  //#endregion
28
28
  export { AppLayout };
29
29
  //# sourceMappingURL=AppLayout.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { NavSection } from "../../types/navigation.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime22 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime21 from "react/jsx-runtime";
4
4
 
5
5
  //#region src/components/organisms/AppSidebar.d.ts
6
6
  interface AppSidebarProps {
@@ -18,7 +18,7 @@ declare function AppSidebar({
18
18
  searchPlaceholder,
19
19
  className,
20
20
  density
21
- }: AppSidebarProps): react_jsx_runtime22.JSX.Element;
21
+ }: AppSidebarProps): react_jsx_runtime21.JSX.Element;
22
22
  //#endregion
23
23
  export { AppSidebar };
24
24
  //# sourceMappingURL=AppSidebar.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime27 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime52 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/organisms/FeatureCarousel.d.ts
5
5
  interface FeatureSlide {
@@ -13,7 +13,7 @@ declare function FeatureCarousel({
13
13
  }: {
14
14
  slides: FeatureSlide[];
15
15
  className?: string;
16
- }): react_jsx_runtime27.JSX.Element;
16
+ }): react_jsx_runtime52.JSX.Element;
17
17
  //#endregion
18
18
  export { FeatureCarousel };
19
19
  //# sourceMappingURL=FeatureCarousel.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime26 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime23 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/organisms/Footer.d.ts
5
5
  interface FooterProps {
@@ -20,7 +20,7 @@ declare function Footer({
20
20
  links,
21
21
  className,
22
22
  variant
23
- }: FooterProps): react_jsx_runtime26.JSX.Element;
23
+ }: FooterProps): react_jsx_runtime23.JSX.Element;
24
24
  //#endregion
25
25
  export { Footer };
26
26
  //# sourceMappingURL=Footer.d.ts.map
@@ -1,7 +1,7 @@
1
1
  import { CtaAction, HeaderNavItem, NavSection } from "../../types/navigation.js";
2
2
  import { NavUser } from "../molecules/NavUser.js";
3
3
  import * as React from "react";
4
- import * as react_jsx_runtime23 from "react/jsx-runtime";
4
+ import * as react_jsx_runtime24 from "react/jsx-runtime";
5
5
 
6
6
  //#region src/components/organisms/Header.d.ts
7
7
  interface HeaderProps {
@@ -24,15 +24,15 @@ declare function DesktopHeader({
24
24
  cta,
25
25
  className,
26
26
  density
27
- }: HeaderProps): react_jsx_runtime23.JSX.Element;
27
+ }: HeaderProps): react_jsx_runtime24.JSX.Element;
28
28
  declare function MobileHeader({
29
29
  logo,
30
30
  userMenu,
31
31
  mobileSidebar,
32
32
  className,
33
33
  density
34
- }: HeaderProps): react_jsx_runtime23.JSX.Element;
35
- declare function Header(props: HeaderProps): react_jsx_runtime23.JSX.Element;
34
+ }: HeaderProps): react_jsx_runtime24.JSX.Element;
35
+ declare function Header(props: HeaderProps): react_jsx_runtime24.JSX.Element;
36
36
  //#endregion
37
37
  export { DesktopHeader, Header, HeaderProps, MobileHeader };
38
38
  //# sourceMappingURL=Header.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { HeroSection } from "./HeroSection.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime60 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime59 from "react/jsx-runtime";
4
4
 
5
5
  //#region src/components/organisms/HeroResponsive.d.ts
6
6
  declare function HeroResponsive({
@@ -9,7 +9,7 @@ declare function HeroResponsive({
9
9
  primaryCta,
10
10
  secondaryCta,
11
11
  className
12
- }: React.ComponentProps<typeof HeroSection>): react_jsx_runtime60.JSX.Element;
12
+ }: React.ComponentProps<typeof HeroSection>): react_jsx_runtime59.JSX.Element;
13
13
  //#endregion
14
14
  export { HeroResponsive };
15
15
  //# sourceMappingURL=HeroResponsive.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime59 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime57 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/organisms/HeroSection.d.ts
5
5
  declare function HeroSection({
@@ -24,7 +24,7 @@ declare function HeroSection({
24
24
  };
25
25
  className?: string;
26
26
  density?: 'compact' | 'comfortable';
27
- }): react_jsx_runtime59.JSX.Element;
27
+ }): react_jsx_runtime57.JSX.Element;
28
28
  //#endregion
29
29
  export { HeroSection };
30
30
  //# sourceMappingURL=HeroSection.d.ts.map
@@ -2,7 +2,7 @@ import { CtaAction, HeaderNavItem, UserMenuItem } from "../../types/navigation.j
2
2
  import { CommandPalette } from "../molecules/CommandPalette.js";
3
3
  import { LangSwitchProps } from "../molecules/LangSwitch.js";
4
4
  import * as React from "react";
5
- import * as react_jsx_runtime28 from "react/jsx-runtime";
5
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
6
6
 
7
7
  //#region src/components/organisms/MarketingHeader.d.ts
8
8
  interface MarketingHeaderProps {
@@ -33,7 +33,7 @@ declare function MarketingHeader({
33
33
  right,
34
34
  commandPaletteGroups,
35
35
  langSwitchProps
36
- }: MarketingHeaderProps): react_jsx_runtime28.JSX.Element;
36
+ }: MarketingHeaderProps): react_jsx_runtime0.JSX.Element;
37
37
  //#endregion
38
38
  export { MarketingHeader, MarketingHeaderProps };
39
39
  //# sourceMappingURL=MarketingHeader.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"MarketingHeader.d.ts","names":[],"sources":["../../../src/components/organisms/MarketingHeader.tsx"],"sourcesContent":[],"mappings":";;;;;;;UAsCiB,oBAAA;QACT,KAAA,CAAM;QACN;EAFS,gBAAA,CAAA,EAAA,MAAoB;EAC7B,QAAM,CAAA,EAAA;IACN,IAAA,CAAA,EAAA,MAAA;IAMG,KAAA,CAAA,EAAA,MAAA;IAEH,QAAA,CAAA,EAAA,MAAA;IAGQ,KAAA,EALL,YAKK,EAAA;EACoC,CAAA;EAA5B,GAAM,CAAA,EAJtB,SAIsB;EACX,SAAA,CAAA,EAAA,MAAA;EAAe,OAAA,CAAA,EAAA,SAAA,GAAA,aAAA;EAalB,KAAA,CAAA,EAfN,KAAA,CAAM,SAee;EAC7B,oBAAA,EAfsB,KAAA,CAAM,cAe5B,CAAA,OAfkD,cAelD,CAAA,CAAA,QAAA,CAAA;EACA,eAAA,EAfiB,eAejB;;AAEA,iBAJc,eAAA,CAId;EAAA,IAAA;EAAA,GAAA;EAAA,gBAAA;EAAA,QAAA;EAAA,GAAA;EAAA,SAAA;EAAA,OAAA;EAAA,KAAA;EAAA,oBAAA;EAAA;AAAA,CAAA,EAOC,oBAPD,CAAA,EAOqB,mBAAA,CAAA,GAAA,CAAA,OAPrB"}
1
+ {"version":3,"file":"MarketingHeader.d.ts","names":[],"sources":["../../../src/components/organisms/MarketingHeader.tsx"],"sourcesContent":[],"mappings":";;;;;;;UAsCiB,oBAAA;QACT,KAAA,CAAM;QACN;EAFS,gBAAA,CAAA,EAAA,MAAoB;EAC7B,QAAM,CAAA,EAAA;IACN,IAAA,CAAA,EAAA,MAAA;IAMG,KAAA,CAAA,EAAA,MAAA;IAEH,QAAA,CAAA,EAAA,MAAA;IAGQ,KAAA,EALL,YAKK,EAAA;EACoC,CAAA;EAA5B,GAAM,CAAA,EAJtB,SAIsB;EACX,SAAA,CAAA,EAAA,MAAA;EAAe,OAAA,CAAA,EAAA,SAAA,GAAA,aAAA;EAalB,KAAA,CAAA,EAfN,KAAA,CAAM,SAee;EAC7B,oBAAA,EAfsB,KAAA,CAAM,cAe5B,CAAA,OAfkD,cAelD,CAAA,CAAA,QAAA,CAAA;EACA,eAAA,EAfiB,eAejB;;AAEA,iBAJc,eAAA,CAId;EAAA,IAAA;EAAA,GAAA;EAAA,gBAAA;EAAA,QAAA;EAAA,GAAA;EAAA,SAAA;EAAA,OAAA;EAAA,KAAA;EAAA,oBAAA;EAAA;AAAA,CAAA,EAOC,oBAPD,CAAA,EAOqB,kBAAA,CAAA,GAAA,CAAA,OAPrB"}
@@ -1,5 +1,5 @@
1
1
  import { MarketingHeaderProps } from "./MarketingHeader.js";
2
- import * as react_jsx_runtime29 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime28 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/organisms/MarketingHeaderDesktop.d.ts
5
5
  declare function MarketingHeaderDesktop({
@@ -10,7 +10,7 @@ declare function MarketingHeaderDesktop({
10
10
  className,
11
11
  density,
12
12
  right
13
- }: MarketingHeaderProps): react_jsx_runtime29.JSX.Element;
13
+ }: MarketingHeaderProps): react_jsx_runtime28.JSX.Element;
14
14
  //#endregion
15
15
  export { MarketingHeaderDesktop };
16
16
  //# sourceMappingURL=MarketingHeaderDesktop.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { MarketingHeaderProps } from "./MarketingHeader.js";
2
- import * as react_jsx_runtime30 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime29 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/organisms/MarketingHeaderMobile.d.ts
5
5
  declare function MarketingHeaderMobile({
@@ -7,7 +7,7 @@ declare function MarketingHeaderMobile({
7
7
  nav,
8
8
  className,
9
9
  right
10
- }: MarketingHeaderProps): react_jsx_runtime30.JSX.Element;
10
+ }: MarketingHeaderProps): react_jsx_runtime29.JSX.Element;
11
11
  //#endregion
12
12
  export { MarketingHeaderMobile };
13
13
  //# sourceMappingURL=MarketingHeaderMobile.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime31 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime30 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/organisms/MarketingLayout.d.ts
5
5
  interface MarketingLayoutProps {
@@ -13,7 +13,7 @@ declare function MarketingLayout({
13
13
  children,
14
14
  footer,
15
15
  className
16
- }: MarketingLayoutProps): react_jsx_runtime31.JSX.Element;
16
+ }: MarketingLayoutProps): react_jsx_runtime30.JSX.Element;
17
17
  //#endregion
18
18
  export { MarketingLayout };
19
19
  //# sourceMappingURL=MarketingLayout.d.ts.map
@@ -1,4 +1,4 @@
1
- import * as react_jsx_runtime57 from "react/jsx-runtime";
1
+ import * as react_jsx_runtime53 from "react/jsx-runtime";
2
2
 
3
3
  //#region src/components/organisms/PricingCarousel.d.ts
4
4
  interface PricingSlide {
@@ -19,7 +19,7 @@ declare function PricingCarousel({
19
19
  }: {
20
20
  tiers: PricingSlide[];
21
21
  className?: string;
22
- }): react_jsx_runtime57.JSX.Element;
22
+ }): react_jsx_runtime53.JSX.Element;
23
23
  //#endregion
24
24
  export { PricingCarousel };
25
25
  //# sourceMappingURL=PricingCarousel.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { PackageManager, PackageManagerContextValue } from "../molecules/CommandTabs/types.js";
2
2
  import { ReactNode } from "react";
3
- import * as react_jsx_runtime21 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime22 from "react/jsx-runtime";
4
4
 
5
5
  //#region src/components/providers/PackageManagerProvider.d.ts
6
6
  interface PackageManagerProviderProps {
@@ -15,7 +15,7 @@ interface PackageManagerProviderProps {
15
15
  declare function PackageManagerProvider({
16
16
  children,
17
17
  defaultPreference
18
- }: PackageManagerProviderProps): react_jsx_runtime21.JSX.Element;
18
+ }: PackageManagerProviderProps): react_jsx_runtime22.JSX.Element;
19
19
  /**
20
20
  * Hook to access the package manager preference.
21
21
  * Returns null if not wrapped in a PackageManagerProvider (components will use local state).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/lib.design-system",
3
- "version": "0.0.0-canary-20260119224949",
3
+ "version": "0.0.0-canary-20260119225944",
4
4
  "description": "Design tokens and theming primitives",
5
5
  "keywords": [
6
6
  "contractspec",
@@ -28,8 +28,8 @@
28
28
  "sideEffects": false,
29
29
  "tree-shake": true,
30
30
  "dependencies": {
31
- "@contractspec/lib.ai-agent": "0.0.0-canary-20260119224949",
32
- "@contractspec/lib.contracts": "0.0.0-canary-20260119224949",
31
+ "@contractspec/lib.ai-agent": "0.0.0-canary-20260119225944",
32
+ "@contractspec/lib.contracts": "0.0.0-canary-20260119225944",
33
33
  "@contractspec/lib.ui-kit": "1.48.0",
34
34
  "@contractspec/lib.ui-kit-web": "1.48.0",
35
35
  "@hookform/resolvers": "5.2.2",