@contractspec/lib.design-system 0.0.0-canary-20260113170453 → 0.0.0-canary-20260114030712
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/atoms/LoaderCircular.d.ts +2 -2
- package/dist/components/data-view/DataViewList.d.ts +2 -2
- package/dist/components/data-view/DataViewRenderer.d.ts +2 -2
- package/dist/components/data-view/DataViewRenderer.d.ts.map +1 -1
- package/dist/components/data-view/DataViewTable.d.ts +2 -2
- package/dist/components/forms/FormOneByOneLayout.d.ts +2 -2
- package/dist/components/forms/FormOneByOneLayout.d.ts.map +1 -1
- package/dist/components/forms/ZodForm.d.ts +2 -2
- package/dist/components/legal/atoms/LegalCallout.d.ts +2 -2
- package/dist/components/legal/atoms/LegalHeading.d.ts +2 -2
- package/dist/components/legal/atoms/LegalList.d.ts +2 -2
- package/dist/components/legal/atoms/LegalSection.d.ts +2 -2
- package/dist/components/legal/atoms/LegalText.d.ts +2 -2
- package/dist/components/legal/molecules/Consent.d.ts +3 -3
- package/dist/components/legal/molecules/ContactFields.d.ts +2 -2
- package/dist/components/legal/molecules/LegalMeta.d.ts +2 -2
- package/dist/components/legal/molecules/LegalTOC.d.ts +4 -4
- package/dist/components/legal/molecules/LegalTOC.d.ts.map +1 -1
- package/dist/components/legal/organisms/ContactForm.d.ts +2 -2
- package/dist/components/legal/organisms/GDPRDataRequest.d.ts +2 -2
- package/dist/components/legal/organisms/GDPRRights.d.ts +2 -2
- package/dist/components/legal/organisms/LegalPageLayout.d.ts +2 -2
- package/dist/components/legal/templates/ContactTemplate.d.ts +2 -2
- package/dist/components/legal/templates/CookiesTemplate.d.ts +2 -2
- package/dist/components/legal/templates/PrivacyTemplate.d.ts +2 -2
- package/dist/components/legal/templates/SalesTermsTemplate.d.ts +2 -2
- package/dist/components/legal/templates/TermsTemplate.d.ts +2 -2
- package/dist/components/molecules/CodeBlock/CodeBlock.d.ts +2 -2
- package/dist/components/molecules/CommandTabs/CommandTabs.d.ts +2 -2
- package/dist/components/molecules/CopyButton/CopyButton.d.ts +2 -2
- package/dist/components/organisms/HeroResponsive.d.ts +2 -2
- package/dist/components/organisms/HeroResponsive.d.ts.map +1 -1
- package/dist/components/organisms/ListCardPage.d.ts +3 -3
- package/dist/components/organisms/ListGridPage.d.ts +3 -3
- package/dist/components/organisms/ListGridPage.d.ts.map +1 -1
- package/dist/components/organisms/ListTablePage.d.ts +2 -2
- package/package.json +7 -7
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import * as react_jsx_runtime73 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types14 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/atoms/LoaderCircular.d.ts
|
|
7
7
|
declare const spinnerVariants: (props?: ({
|
|
8
8
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
9
9
|
tone?: "default" | "muted" | null | undefined;
|
|
10
|
-
} &
|
|
10
|
+
} & class_variance_authority_types14.ClassProp) | undefined) => string;
|
|
11
11
|
type LoaderCircularProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof spinnerVariants> & {
|
|
12
12
|
label?: React.ReactNode;
|
|
13
13
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime106 from "react/jsx-runtime";
|
|
3
3
|
import { DataViewSpec } from "@contractspec/lib.contracts/data-views";
|
|
4
4
|
|
|
5
5
|
//#region src/components/data-view/DataViewList.d.ts
|
|
@@ -18,7 +18,7 @@ declare function DataViewList({
|
|
|
18
18
|
renderActions,
|
|
19
19
|
onSelect,
|
|
20
20
|
emptyState
|
|
21
|
-
}: DataViewListProps):
|
|
21
|
+
}: DataViewListProps): react_jsx_runtime106.JSX.Element;
|
|
22
22
|
//#endregion
|
|
23
23
|
export { DataViewList };
|
|
24
24
|
//# sourceMappingURL=DataViewList.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime0 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):
|
|
45
|
+
}: DataViewRendererProps): react_jsx_runtime0.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,
|
|
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,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime107 from "react/jsx-runtime";
|
|
3
3
|
import { DataViewSpec } from "@contractspec/lib.contracts/data-views";
|
|
4
4
|
|
|
5
5
|
//#region src/components/data-view/DataViewTable.d.ts
|
|
@@ -20,7 +20,7 @@ declare function DataViewTable({
|
|
|
20
20
|
emptyState,
|
|
21
21
|
headerActions,
|
|
22
22
|
footer
|
|
23
|
-
}: DataViewTableProps):
|
|
23
|
+
}: DataViewTableProps): react_jsx_runtime107.JSX.Element;
|
|
24
24
|
//#endregion
|
|
25
25
|
export { DataViewTable };
|
|
26
26
|
//# sourceMappingURL=DataViewTable.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime104 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/forms/FormOneByOneLayout.d.ts
|
|
5
5
|
interface OneByOneFieldDef {
|
|
@@ -20,7 +20,7 @@ declare function FormOneByOneLayout({
|
|
|
20
20
|
initialKey,
|
|
21
21
|
onComplete,
|
|
22
22
|
className
|
|
23
|
-
}: FormOneByOneLayoutProps):
|
|
23
|
+
}: FormOneByOneLayoutProps): react_jsx_runtime104.JSX.Element | null;
|
|
24
24
|
//#endregion
|
|
25
25
|
export { FormOneByOneLayout };
|
|
26
26
|
//# sourceMappingURL=FormOneByOneLayout.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormOneByOneLayout.d.ts","names":[],"sources":["../../../src/components/forms/FormOneByOneLayout.tsx"],"sourcesContent":[],"mappings":";;;;UAIiB,gBAAA;;SAER,KAAA,CAAM;EAFE,WAAA,CAAA,EAGD,KAAA,CAAM,SAHW;EAExB,KAAM,EAEN,KAAA,CAAM,SAFA;EACC,QAAM,CAAA,EAAA,GAAA,GAAA,OAAA;;AACE,UAIP,uBAAA,CAJO;EAIP,MAAA,EACP,gBADO,EAAuB;EAOxB,UAAA,CAAA,EAAA,MAAA;EACd,UAAA,CAAA,EAAA,GAAA,GAAA,IAAA,GAL0B,OAK1B,CAAA,IAAA,CAAA;EACA,SAAA,CAAA,EAAA,MAAA;;AAEA,iBAJc,kBAAA,CAId;EAAA,MAAA;EAAA,UAAA;EAAA,UAAA;EAAA;AAAA,CAAA,EACC,uBADD,CAAA,EACwB,
|
|
1
|
+
{"version":3,"file":"FormOneByOneLayout.d.ts","names":[],"sources":["../../../src/components/forms/FormOneByOneLayout.tsx"],"sourcesContent":[],"mappings":";;;;UAIiB,gBAAA;;SAER,KAAA,CAAM;EAFE,WAAA,CAAA,EAGD,KAAA,CAAM,SAHW;EAExB,KAAM,EAEN,KAAA,CAAM,SAFA;EACC,QAAM,CAAA,EAAA,GAAA,GAAA,OAAA;;AACE,UAIP,uBAAA,CAJO;EAIP,MAAA,EACP,gBADO,EAAuB;EAOxB,UAAA,CAAA,EAAA,MAAA;EACd,UAAA,CAAA,EAAA,GAAA,GAAA,IAAA,GAL0B,OAK1B,CAAA,IAAA,CAAA;EACA,SAAA,CAAA,EAAA,MAAA;;AAEA,iBAJc,kBAAA,CAId;EAAA,MAAA;EAAA,UAAA;EAAA,UAAA;EAAA;AAAA,CAAA,EACC,uBADD,CAAA,EACwB,oBAAA,CAAA,GAAA,CAAA,OAAA,GADxB,IAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime98 from "react/jsx-runtime";
|
|
3
3
|
import { UseFormReturn } from "@contractspec/lib.ui-kit-web/ui/form";
|
|
4
4
|
import * as z from "zod";
|
|
5
5
|
import { FieldValues } from "react-hook-form";
|
|
@@ -16,7 +16,7 @@ declare function ZodForm<TSchema extends z.ZodType<any, any, any>, TFieldValues
|
|
|
16
16
|
defaultValues,
|
|
17
17
|
onSubmit,
|
|
18
18
|
children
|
|
19
|
-
}: ZodFormProps<TSchema, TFieldValues, TOutput>):
|
|
19
|
+
}: ZodFormProps<TSchema, TFieldValues, TOutput>): react_jsx_runtime98.JSX.Element;
|
|
20
20
|
//#endregion
|
|
21
21
|
export { ZodForm };
|
|
22
22
|
//# sourceMappingURL=ZodForm.d.ts.map
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import * as react_jsx_runtime82 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types19 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/legal/atoms/LegalCallout.d.ts
|
|
7
7
|
declare const calloutVariants: (props?: ({
|
|
8
8
|
tone?: "danger" | "info" | "warning" | null | undefined;
|
|
9
|
-
} &
|
|
9
|
+
} & class_variance_authority_types19.ClassProp) | undefined) => string;
|
|
10
10
|
type LegalCalloutProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof calloutVariants>;
|
|
11
11
|
declare function LegalCallout({
|
|
12
12
|
tone,
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import * as react_jsx_runtime76 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types15 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/legal/atoms/LegalHeading.d.ts
|
|
7
7
|
declare const headingVariants: (props?: ({
|
|
8
8
|
level?: "h1" | "h2" | "h3" | "h4" | null | undefined;
|
|
9
9
|
tone?: "default" | "muted" | "accent" | null | undefined;
|
|
10
10
|
spacing?: "sm" | "md" | "lg" | "none" | null | undefined;
|
|
11
|
-
} &
|
|
11
|
+
} & class_variance_authority_types15.ClassProp) | undefined) => string;
|
|
12
12
|
type LegalHeadingProps = React.HTMLAttributes<HTMLHeadingElement> & VariantProps<typeof headingVariants> & {
|
|
13
13
|
as?: 'h1' | 'h2' | 'h3' | 'h4';
|
|
14
14
|
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import * as react_jsx_runtime81 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types18 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/legal/atoms/LegalList.d.ts
|
|
7
7
|
declare const listVariants: (props?: ({
|
|
8
8
|
type?: "none" | "unordered" | "ordered" | null | undefined;
|
|
9
9
|
spacing?: "sm" | "md" | "lg" | null | undefined;
|
|
10
|
-
} &
|
|
10
|
+
} & class_variance_authority_types18.ClassProp) | undefined) => string;
|
|
11
11
|
type LegalListProps = React.HTMLAttributes<HTMLUListElement | HTMLOListElement> & VariantProps<typeof listVariants>;
|
|
12
12
|
declare function LegalList({
|
|
13
13
|
type,
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import * as react_jsx_runtime78 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types17 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/legal/atoms/LegalSection.d.ts
|
|
7
7
|
declare const sectionVariants: (props?: ({
|
|
8
8
|
spacing?: "sm" | "md" | "lg" | null | undefined;
|
|
9
9
|
border?: "none" | "top" | "bottom" | "both" | null | undefined;
|
|
10
10
|
tone?: "subtle" | "plain" | null | undefined;
|
|
11
|
-
} &
|
|
11
|
+
} & class_variance_authority_types17.ClassProp) | undefined) => string;
|
|
12
12
|
type LegalSectionProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof sectionVariants>;
|
|
13
13
|
declare function LegalSection({
|
|
14
14
|
spacing,
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import * as react_jsx_runtime77 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types16 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/legal/atoms/LegalText.d.ts
|
|
7
7
|
declare const textVariants: (props?: ({
|
|
8
8
|
tone?: "default" | "danger" | "muted" | null | undefined;
|
|
9
9
|
size?: "base" | "sm" | "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> & {
|
|
13
13
|
as?: 'p' | 'div' | 'span';
|
|
14
14
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime85 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/legal/molecules/Consent.d.ts
|
|
5
5
|
declare function ConsentItem({
|
|
@@ -16,7 +16,7 @@ declare function ConsentItem({
|
|
|
16
16
|
checked: boolean;
|
|
17
17
|
onChange: (checked: boolean) => void;
|
|
18
18
|
className?: string;
|
|
19
|
-
}):
|
|
19
|
+
}): react_jsx_runtime85.JSX.Element;
|
|
20
20
|
declare function ConsentList({
|
|
21
21
|
items,
|
|
22
22
|
onChange,
|
|
@@ -30,7 +30,7 @@ declare function ConsentList({
|
|
|
30
30
|
}[];
|
|
31
31
|
onChange: (id: string, checked: boolean) => void;
|
|
32
32
|
className?: string;
|
|
33
|
-
}):
|
|
33
|
+
}): react_jsx_runtime85.JSX.Element;
|
|
34
34
|
//#endregion
|
|
35
35
|
export { ConsentItem, ConsentList };
|
|
36
36
|
//# sourceMappingURL=Consent.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime87 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/components/legal/molecules/ContactFields.d.ts
|
|
4
4
|
declare function ContactFields({
|
|
@@ -19,7 +19,7 @@ declare function ContactFields({
|
|
|
19
19
|
message: string;
|
|
20
20
|
}) => void;
|
|
21
21
|
disabled?: boolean;
|
|
22
|
-
}):
|
|
22
|
+
}): react_jsx_runtime87.JSX.Element;
|
|
23
23
|
//#endregion
|
|
24
24
|
export { ContactFields };
|
|
25
25
|
//# sourceMappingURL=ContactFields.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime84 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/components/legal/molecules/LegalMeta.d.ts
|
|
4
4
|
declare function LegalMeta({
|
|
@@ -9,7 +9,7 @@ declare function LegalMeta({
|
|
|
9
9
|
lastUpdated?: string | Date;
|
|
10
10
|
version?: string;
|
|
11
11
|
className?: string;
|
|
12
|
-
}):
|
|
12
|
+
}): react_jsx_runtime84.JSX.Element;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { LegalMeta };
|
|
15
15
|
//# sourceMappingURL=LegalMeta.d.ts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime83 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types20 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/legal/molecules/LegalTOC.d.ts
|
|
7
7
|
interface TocItem {
|
|
@@ -11,7 +11,7 @@ interface TocItem {
|
|
|
11
11
|
declare const tocVariants: (props?: ({
|
|
12
12
|
variant?: "sidebar" | "inline" | null | undefined;
|
|
13
13
|
size?: "sm" | "md" | null | undefined;
|
|
14
|
-
} &
|
|
14
|
+
} & class_variance_authority_types20.ClassProp) | undefined) => string;
|
|
15
15
|
type LegalTOCProps = {
|
|
16
16
|
items: TocItem[];
|
|
17
17
|
activeHref?: string;
|
|
@@ -25,7 +25,7 @@ declare function LegalTOC({
|
|
|
25
25
|
size,
|
|
26
26
|
className,
|
|
27
27
|
...props
|
|
28
|
-
}: LegalTOCProps):
|
|
28
|
+
}: LegalTOCProps): react_jsx_runtime83.JSX.Element;
|
|
29
29
|
//#endregion
|
|
30
30
|
export { LegalTOC, TocItem };
|
|
31
31
|
//# sourceMappingURL=LegalTOC.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LegalTOC.d.ts","names":[],"sources":["../../../../src/components/legal/molecules/LegalTOC.tsx"],"sourcesContent":[],"mappings":";;;;;;UAIiB,OAAA;;SAER,KAAA,CAAM;;AAFf,cAKM,WALkB,EAEf,CAAA,KAkBA,CAlBM,EAAA,CAAA;EAGT,OAAA,CAAA,EAAA,SAYJ,GAAA,QAAA,GAAA,IAAA,GAAA,SAAA;EAEU,IAAA,CAAA,EAAA,IAAA,GAAA,IAAa,GAAA,IAAA,GAAA,SAAA;CAChB,GAHP
|
|
1
|
+
{"version":3,"file":"LegalTOC.d.ts","names":[],"sources":["../../../../src/components/legal/molecules/LegalTOC.tsx"],"sourcesContent":[],"mappings":";;;;;;UAIiB,OAAA;;SAER,KAAA,CAAM;;AAFf,cAKM,WALkB,EAEf,CAAA,KAkBA,CAlBM,EAAA,CAAA;EAGT,OAAA,CAAA,EAAA,SAYJ,GAAA,QAAA,GAAA,IAAA,GAAA,SAAA;EAEU,IAAA,CAAA,EAAA,IAAA,GAAA,IAAa,GAAA,IAAA,GAAA,SAAA;CAChB,GAHP,gCAAA,CAAA,SAGO,CAAA,GAAA,SAAA,EAAA,GAAA,MAAA;AAGe,KAJZ,aAAA,GAIY;EAApB,KAAA,EAHK,OAGL,EAAA;EACmB,UAAA,CAAA,EAAA,MAAA;EAArB,UAAM,CAAA,EAAA,CAAA,IAAA,EAAA,MAAA,EAAA,GAAA,IAAA;CAAc,GADlB,YACkB,CAAA,OADE,WACF,CAAA,GAApB,KAAA,CAAM,cAAc,CAAC,cAAD,CAAA;AAEN,iBAAA,QAAA,CAAQ;EAAA,KAAA;EAAA,UAAA;EAAA,UAAA;EAAA,OAAA;EAAA,IAAA;EAAA,SAAA;EAAA,GAAA;AAAA,CAAA,EAQrB,aARqB,CAAA,EAQR,mBAAA,CAAA,GAAA,CAAA,OARQ"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime90 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/legal/organisms/ContactForm.d.ts
|
|
5
5
|
declare function ContactForm({
|
|
@@ -24,7 +24,7 @@ declare function ContactForm({
|
|
|
24
24
|
subject: string;
|
|
25
25
|
message: string;
|
|
26
26
|
}) => Promise<void> | void;
|
|
27
|
-
}):
|
|
27
|
+
}): react_jsx_runtime90.JSX.Element;
|
|
28
28
|
//#endregion
|
|
29
29
|
export { ContactForm };
|
|
30
30
|
//# sourceMappingURL=ContactForm.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime91 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/legal/organisms/GDPRDataRequest.d.ts
|
|
5
5
|
declare function GDPRDataRequest({
|
|
@@ -13,7 +13,7 @@ declare function GDPRDataRequest({
|
|
|
13
13
|
export: React.ReactNode;
|
|
14
14
|
delete: React.ReactNode;
|
|
15
15
|
};
|
|
16
|
-
}):
|
|
16
|
+
}): react_jsx_runtime91.JSX.Element;
|
|
17
17
|
//#endregion
|
|
18
18
|
export { GDPRDataRequest };
|
|
19
19
|
//# sourceMappingURL=GDPRDataRequest.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime89 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/legal/organisms/GDPRRights.d.ts
|
|
5
5
|
declare function GDPRRights({
|
|
@@ -8,7 +8,7 @@ declare function GDPRRights({
|
|
|
8
8
|
}: {
|
|
9
9
|
title?: React.ReactNode;
|
|
10
10
|
rights?: React.ReactNode[];
|
|
11
|
-
}):
|
|
11
|
+
}): react_jsx_runtime89.JSX.Element;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { GDPRRights };
|
|
14
14
|
//# sourceMappingURL=GDPRRights.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TocItem } from "../molecules/LegalTOC.js";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime88 from "react/jsx-runtime";
|
|
4
4
|
|
|
5
5
|
//#region src/components/legal/organisms/LegalPageLayout.d.ts
|
|
6
6
|
declare function LegalPageLayout({
|
|
@@ -18,7 +18,7 @@ declare function LegalPageLayout({
|
|
|
18
18
|
toc?: TocItem[];
|
|
19
19
|
children: React.ReactNode;
|
|
20
20
|
className?: string;
|
|
21
|
-
}):
|
|
21
|
+
}): react_jsx_runtime88.JSX.Element;
|
|
22
22
|
//#endregion
|
|
23
23
|
export { LegalPageLayout };
|
|
24
24
|
//# sourceMappingURL=LegalPageLayout.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime96 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/legal/templates/ContactTemplate.d.ts
|
|
5
5
|
declare function ContactTemplate({
|
|
@@ -18,7 +18,7 @@ declare function ContactTemplate({
|
|
|
18
18
|
subject: string;
|
|
19
19
|
message: string;
|
|
20
20
|
}) => Promise<void> | void;
|
|
21
|
-
}):
|
|
21
|
+
}): react_jsx_runtime96.JSX.Element;
|
|
22
22
|
//#endregion
|
|
23
23
|
export { ContactTemplate };
|
|
24
24
|
//# sourceMappingURL=ContactTemplate.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime95 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/legal/templates/CookiesTemplate.d.ts
|
|
5
5
|
declare function CookiesTemplate({
|
|
@@ -27,7 +27,7 @@ declare function CookiesTemplate({
|
|
|
27
27
|
title: React.ReactNode;
|
|
28
28
|
content: React.ReactNode;
|
|
29
29
|
}[];
|
|
30
|
-
}):
|
|
30
|
+
}): react_jsx_runtime95.JSX.Element;
|
|
31
31
|
//#endregion
|
|
32
32
|
export { CookiesTemplate };
|
|
33
33
|
//# sourceMappingURL=CookiesTemplate.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime94 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/legal/templates/PrivacyTemplate.d.ts
|
|
5
5
|
declare function PrivacyTemplate({
|
|
@@ -27,7 +27,7 @@ declare function PrivacyTemplate({
|
|
|
27
27
|
term: React.ReactNode;
|
|
28
28
|
description: React.ReactNode;
|
|
29
29
|
}[];
|
|
30
|
-
}):
|
|
30
|
+
}): react_jsx_runtime94.JSX.Element;
|
|
31
31
|
//#endregion
|
|
32
32
|
export { PrivacyTemplate };
|
|
33
33
|
//# sourceMappingURL=PrivacyTemplate.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime93 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/legal/templates/SalesTermsTemplate.d.ts
|
|
5
5
|
declare function SalesTermsTemplate({
|
|
@@ -22,7 +22,7 @@ declare function SalesTermsTemplate({
|
|
|
22
22
|
title: React.ReactNode;
|
|
23
23
|
content: React.ReactNode;
|
|
24
24
|
}[];
|
|
25
|
-
}):
|
|
25
|
+
}): react_jsx_runtime93.JSX.Element;
|
|
26
26
|
//#endregion
|
|
27
27
|
export { SalesTermsTemplate };
|
|
28
28
|
//# sourceMappingURL=SalesTermsTemplate.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime92 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/legal/templates/TermsTemplate.d.ts
|
|
5
5
|
declare function TermsTemplate({
|
|
@@ -22,7 +22,7 @@ declare function TermsTemplate({
|
|
|
22
22
|
title: React.ReactNode;
|
|
23
23
|
content: React.ReactNode;
|
|
24
24
|
}[];
|
|
25
|
-
}):
|
|
25
|
+
}): react_jsx_runtime92.JSX.Element;
|
|
26
26
|
//#endregion
|
|
27
27
|
export { TermsTemplate };
|
|
28
28
|
//# sourceMappingURL=TermsTemplate.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CodeBlockProps } from "./types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime116 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/molecules/CodeBlock/CodeBlock.d.ts
|
|
5
5
|
declare function CodeBlock({
|
|
@@ -10,7 +10,7 @@ declare function CodeBlock({
|
|
|
10
10
|
showCopyButton,
|
|
11
11
|
className,
|
|
12
12
|
...props
|
|
13
|
-
}: CodeBlockProps):
|
|
13
|
+
}: CodeBlockProps): react_jsx_runtime116.JSX.Element;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { CodeBlock };
|
|
16
16
|
//# sourceMappingURL=CodeBlock.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CommandTabsProps } from "./types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime117 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/molecules/CommandTabs/CommandTabs.d.ts
|
|
5
5
|
declare function CommandTabs({
|
|
@@ -7,7 +7,7 @@ declare function CommandTabs({
|
|
|
7
7
|
initialPreference,
|
|
8
8
|
className,
|
|
9
9
|
...props
|
|
10
|
-
}: CommandTabsProps):
|
|
10
|
+
}: CommandTabsProps): react_jsx_runtime117.JSX.Element | null;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { CommandTabs };
|
|
13
13
|
//# sourceMappingURL=CommandTabs.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CopyButtonProps } from "./types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime115 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):
|
|
10
|
+
}: CopyButtonProps): react_jsx_runtime115.JSX.Element;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { CopyButton };
|
|
13
13
|
//# sourceMappingURL=CopyButton.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HeroSection } from "./HeroSection.js";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime60 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>):
|
|
12
|
+
}: React.ComponentProps<typeof HeroSection>): react_jsx_runtime60.JSX.Element;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { HeroResponsive };
|
|
15
15
|
//# sourceMappingURL=HeroResponsive.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HeroResponsive.d.ts","names":[],"sources":["../../../src/components/organisms/HeroResponsive.tsx"],"sourcesContent":[],"mappings":";;;;;iBAMgB,cAAA;;;;;;GAMb,KAAA,CAAM,sBAAsB,eAAY,
|
|
1
|
+
{"version":3,"file":"HeroResponsive.d.ts","names":[],"sources":["../../../src/components/organisms/HeroResponsive.tsx"],"sourcesContent":[],"mappings":";;;;;iBAMgB,cAAA;;;;;;GAMb,KAAA,CAAM,sBAAsB,eAAY,mBAAA,CAAA,GAAA,CAAA"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import * as react_jsx_runtime67 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types11 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/organisms/ListCardPage.d.ts
|
|
7
7
|
declare const containerVariants: (props?: ({
|
|
8
8
|
density?: "compact" | "comfortable" | null | undefined;
|
|
9
|
-
} &
|
|
9
|
+
} & class_variance_authority_types11.ClassProp) | undefined) => string;
|
|
10
10
|
declare const gridVariants: (props?: ({
|
|
11
11
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
12
|
-
} &
|
|
12
|
+
} & class_variance_authority_types11.ClassProp) | undefined) => string;
|
|
13
13
|
interface ListCardPageProps<T> extends VariantProps<typeof containerVariants>, VariantProps<typeof gridVariants> {
|
|
14
14
|
title: React.ReactNode;
|
|
15
15
|
subtitle?: React.ReactNode;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import * as react_jsx_runtime66 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types9 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/organisms/ListGridPage.d.ts
|
|
7
7
|
declare const containerVariants: (props?: ({
|
|
8
8
|
density?: "compact" | "comfortable" | null | undefined;
|
|
9
|
-
} &
|
|
9
|
+
} & class_variance_authority_types9.ClassProp) | undefined) => string;
|
|
10
10
|
declare const gridGapVariants: (props?: ({
|
|
11
11
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
12
|
-
} &
|
|
12
|
+
} & class_variance_authority_types9.ClassProp) | undefined) => string;
|
|
13
13
|
interface ListGridPageProps<T> extends VariantProps<typeof containerVariants>, VariantProps<typeof gridGapVariants> {
|
|
14
14
|
title: React.ReactNode;
|
|
15
15
|
subtitle?: React.ReactNode;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListGridPage.d.ts","names":[],"sources":["../../../src/components/organisms/ListGridPage.tsx"],"sourcesContent":[],"mappings":";;;;;;cAOM;;IAUJ,
|
|
1
|
+
{"version":3,"file":"ListGridPage.d.ts","names":[],"sources":["../../../src/components/organisms/ListGridPage.tsx"],"sourcesContent":[],"mappings":";;;;;;cAOM;;IAUJ,+BAAA,CAAA;cAEI,uBAWJ;EAvBI,IAAA,CAAA,EAAA,IAAA,GAAA,IAAA,GAUJ,IAAA,GAAA,IAAA,GAAA,SAAA;IAaA,+BAAA,CAAA,SAAA,CAAA,GAAA,SAAA,EAAA,GAAA,MAAA;AAEe,UAAA,iBAAiB,CAAA,CAAA,CAAA,SAE9B,YAF8B,CAAA,OAEV,iBAFU,CAAA,EAG9B,YAH8B,CAAA,OAGV,eAHU,CAAA,CAAA;EAEV,KAAA,EAEf,KAAA,CAAM,SAFS;EACA,QAAA,CAAA,EAEX,KAAA,CAAM,SAFK;EACf,KAAM,EAEN,CAFM,EAAA;EACF,UAAM,EAAA,CAAA,IAAA,EAEE,CAFF,EAAA,KAAA,EAAA,MAAA,EAAA,GAEuB,KAAA,CAAM,SAF7B;EACV,SAAA,CAAA,EAAA,MAAA;EACY,OAAA,CAAA,EAAA;IAA2B,MAAA,CAAA,EAAA,MAAA;IAL5C,MAAA,CAAA,EAAA,MAAA;IACA,OAAA,CAAA,EAAA,MAAA;EAAY,CAAA;AAShB;AACE,iBADc,YACd,CAAA,CAAA,CAAA,CAAA;EAAA,KAAA;EAAA,QAAA;EAAA,KAAA;EAAA,UAAA;EAAA,SAAA;EAAA,OAAA;EAAA,OAAA;EAAA;AAAA,CAAA,EAQC,iBARD,CAQmB,CARnB,CAAA,CAAA,EAQqB,mBAAA,CAAA,GAAA,CAAA,OARrB"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import * as react_jsx_runtime68 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types13 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/organisms/ListTablePage.d.ts
|
|
7
7
|
interface TableColumn<T> {
|
|
@@ -11,7 +11,7 @@ interface TableColumn<T> {
|
|
|
11
11
|
}
|
|
12
12
|
declare const containerVariants: (props?: ({
|
|
13
13
|
density?: "compact" | "comfortable" | null | undefined;
|
|
14
|
-
} &
|
|
14
|
+
} & class_variance_authority_types13.ClassProp) | undefined) => string;
|
|
15
15
|
interface ListTablePageProps<T> extends VariantProps<typeof containerVariants> {
|
|
16
16
|
title: React.ReactNode;
|
|
17
17
|
subtitle?: React.ReactNode;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/lib.design-system",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20260114030712",
|
|
4
4
|
"description": "Design tokens and theming primitives",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"sideEffects": false,
|
|
29
29
|
"tree-shake": true,
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@contractspec/lib.ai-agent": "0.0.0-canary-
|
|
32
|
-
"@contractspec/lib.contracts": "0.0.0-canary-
|
|
33
|
-
"@contractspec/lib.ui-kit": "0.0.0-canary-
|
|
34
|
-
"@contractspec/lib.ui-kit-web": "0.0.0-canary-
|
|
31
|
+
"@contractspec/lib.ai-agent": "0.0.0-canary-20260114030712",
|
|
32
|
+
"@contractspec/lib.contracts": "0.0.0-canary-20260114030712",
|
|
33
|
+
"@contractspec/lib.ui-kit": "0.0.0-canary-20260114030712",
|
|
34
|
+
"@contractspec/lib.ui-kit-web": "0.0.0-canary-20260114030712",
|
|
35
35
|
"@hookform/resolvers": "5.2.2",
|
|
36
36
|
"class-variance-authority": "^0.7.1",
|
|
37
37
|
"clsx": "^2.1.1",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"zod": "^4.3.5"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@contractspec/tool.tsdown": "0.0.0-canary-
|
|
50
|
-
"@contractspec/tool.typescript": "0.0.0-canary-
|
|
49
|
+
"@contractspec/tool.tsdown": "0.0.0-canary-20260114030712",
|
|
50
|
+
"@contractspec/tool.typescript": "0.0.0-canary-20260114030712",
|
|
51
51
|
"@types/node": "^25.0.6",
|
|
52
52
|
"@types/react-dom": "^19.0.14",
|
|
53
53
|
"postcss": "^8.5",
|