@contractspec/lib.design-system 0.0.0-canary-20260113170453 → 0.0.0-canary-20260113173657
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/DataViewDetail.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/forms/FormOneByOneLayout.d.ts +2 -2
- package/dist/components/forms/FormOneByOneLayout.d.ts.map +1 -1
- package/dist/components/forms/FormStepsLayout.d.ts +2 -2
- package/dist/components/forms/FormStepsLayout.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/TermsTemplate.d.ts +2 -2
- package/dist/components/molecules/LoaderBlock.d.ts +2 -2
- package/dist/components/molecules/LoaderBlock.d.ts.map +1 -1
- package/dist/components/molecules/SkeletonBlock/index.web.d.ts +2 -2
- package/dist/components/molecules/SkeletonCircle/index.web.d.ts +2 -2
- package/dist/components/molecules/SkeletonList/index.web.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/dist/components/templates/lists/ListPageTemplate/index.web.d.ts +2 -2
- package/dist/renderers/form-contract.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_runtime107 from "react/jsx-runtime";
|
|
3
3
|
import { DataViewSpec } from "@contractspec/lib.contracts/data-views";
|
|
4
4
|
|
|
5
5
|
//#region src/components/data-view/DataViewDetail.d.ts
|
|
@@ -16,7 +16,7 @@ declare function DataViewDetail({
|
|
|
16
16
|
className,
|
|
17
17
|
emptyState,
|
|
18
18
|
headerActions
|
|
19
|
-
}: DataViewDetailProps):
|
|
19
|
+
}: DataViewDetailProps): react_jsx_runtime107.JSX.Element;
|
|
20
20
|
//#endregion
|
|
21
21
|
export { DataViewDetail };
|
|
22
22
|
//# sourceMappingURL=DataViewDetail.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime103 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_runtime103.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_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_runtime96 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/forms/FormStepsLayout.d.ts
|
|
5
5
|
interface StepDef {
|
|
@@ -21,7 +21,7 @@ declare function FormStepsLayout({
|
|
|
21
21
|
onFinish,
|
|
22
22
|
canNext,
|
|
23
23
|
className
|
|
24
|
-
}: FormStepsLayoutProps):
|
|
24
|
+
}: FormStepsLayoutProps): react_jsx_runtime96.JSX.Element | null;
|
|
25
25
|
//#endregion
|
|
26
26
|
export { FormStepsLayout };
|
|
27
27
|
//# sourceMappingURL=FormStepsLayout.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormStepsLayout.d.ts","names":[],"sources":["../../../src/components/forms/FormStepsLayout.tsx"],"sourcesContent":[],"mappings":";;;;UAKiB,OAAA;;SAER,KAAA,CAAM;EAFE,WAAO,CAAA,EAGR,KAAA,CAAM,SAHE;EAEf,OAAM,EAEJ,KAAA,CAAM,SAFF;;AAEE,UAGA,oBAAA,CAHA;EAAS,KAAA,EAIjB,OAJiB,EAAA;EAGT,cAAA,CAAA,EAAA,MAAoB;EAQrB,QAAA,CAAA,EAAA,GAAA,GAAA,IAAe,GALL,OAKK,CAAA,IAAA,CAAA;EAC7B,OAAA,CAAA,EAAA,CAAA,OAAA,EAAA,MAAA,EAAA,GAAA,OAAA;EACA,SAAA,CAAA,EAAA,MAAA;;AAEA,iBAJc,eAAA,CAId;EAAA,KAAA;EAAA,cAAA;EAAA,QAAA;EAAA,OAAA;EAAA;AAAA,CAAA,EAEC,oBAFD,CAAA,EAEqB,
|
|
1
|
+
{"version":3,"file":"FormStepsLayout.d.ts","names":[],"sources":["../../../src/components/forms/FormStepsLayout.tsx"],"sourcesContent":[],"mappings":";;;;UAKiB,OAAA;;SAER,KAAA,CAAM;EAFE,WAAO,CAAA,EAGR,KAAA,CAAM,SAHE;EAEf,OAAM,EAEJ,KAAA,CAAM,SAFF;;AAEE,UAGA,oBAAA,CAHA;EAAS,KAAA,EAIjB,OAJiB,EAAA;EAGT,cAAA,CAAA,EAAA,MAAoB;EAQrB,QAAA,CAAA,EAAA,GAAA,GAAA,IAAe,GALL,OAKK,CAAA,IAAA,CAAA;EAC7B,OAAA,CAAA,EAAA,CAAA,OAAA,EAAA,MAAA,EAAA,GAAA,OAAA;EACA,SAAA,CAAA,EAAA,MAAA;;AAEA,iBAJc,eAAA,CAId;EAAA,KAAA;EAAA,cAAA;EAAA,QAAA;EAAA,OAAA;EAAA;AAAA,CAAA,EAEC,oBAFD,CAAA,EAEqB,mBAAA,CAAA,GAAA,CAAA,OAAA,GAFrB,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_runtime74 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_runtime74.JSX.Element;
|
|
26
26
|
//#endregion
|
|
27
27
|
export { TermsTemplate };
|
|
28
28
|
//# sourceMappingURL=TermsTemplate.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime108 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/molecules/LoaderBlock.d.ts
|
|
5
5
|
interface LoaderBlockProps {
|
|
@@ -13,7 +13,7 @@ declare function LoaderBlock({
|
|
|
13
13
|
description,
|
|
14
14
|
className,
|
|
15
15
|
size
|
|
16
|
-
}: LoaderBlockProps):
|
|
16
|
+
}: LoaderBlockProps): react_jsx_runtime108.JSX.Element;
|
|
17
17
|
//#endregion
|
|
18
18
|
export { LoaderBlock };
|
|
19
19
|
//# sourceMappingURL=LoaderBlock.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LoaderBlock.d.ts","names":[],"sources":["../../../src/components/molecules/LoaderBlock.tsx"],"sourcesContent":[],"mappings":";;;;UAIiB,gBAAA;UACP,KAAA,CAAM;gBACA,KAAA,CAAM;EAFL,SAAA,CAAA,EAAA,MAAA;EAOD,IAAA,CAAA,EAAA,IAAA,GAAW,IAAA,GAAA,IAAA;;AAEzB,iBAFc,WAAA,CAEd;EAAA,KAAA;EAAA,WAAA;EAAA,SAAA;EAAA;AAAA,CAAA,EAGC,gBAHD,CAAA,EAGiB,
|
|
1
|
+
{"version":3,"file":"LoaderBlock.d.ts","names":[],"sources":["../../../src/components/molecules/LoaderBlock.tsx"],"sourcesContent":[],"mappings":";;;;UAIiB,gBAAA;UACP,KAAA,CAAM;gBACA,KAAA,CAAM;EAFL,SAAA,CAAA,EAAA,MAAA;EAOD,IAAA,CAAA,EAAA,IAAA,GAAW,IAAA,GAAA,IAAA;;AAEzB,iBAFc,WAAA,CAEd;EAAA,KAAA;EAAA,WAAA;EAAA,SAAA;EAAA;AAAA,CAAA,EAGC,gBAHD,CAAA,EAGiB,oBAAA,CAAA,GAAA,CAAA,OAHjB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SkeletonBlockProps } from "./types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime111 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/molecules/SkeletonBlock/index.web.d.ts
|
|
5
5
|
declare function SkeletonBlock({
|
|
@@ -7,7 +7,7 @@ declare function SkeletonBlock({
|
|
|
7
7
|
h,
|
|
8
8
|
rounded,
|
|
9
9
|
className
|
|
10
|
-
}: SkeletonBlockProps):
|
|
10
|
+
}: SkeletonBlockProps): react_jsx_runtime111.JSX.Element;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { SkeletonBlock };
|
|
13
13
|
//# sourceMappingURL=index.web.d.ts.map
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { SkeletonCircleProps } from "./types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime112 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/molecules/SkeletonCircle/index.web.d.ts
|
|
5
5
|
declare function SkeletonCircle({
|
|
6
6
|
size,
|
|
7
7
|
sizeClass,
|
|
8
8
|
className
|
|
9
|
-
}: SkeletonCircleProps):
|
|
9
|
+
}: SkeletonCircleProps): react_jsx_runtime112.JSX.Element;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { SkeletonCircle };
|
|
12
12
|
//# sourceMappingURL=index.web.d.ts.map
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { SkeletonListProps } from "./types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime113 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/molecules/SkeletonList/index.web.d.ts
|
|
5
5
|
declare function SkeletonList({
|
|
6
6
|
count,
|
|
7
7
|
className
|
|
8
|
-
}: SkeletonListProps):
|
|
8
|
+
}: SkeletonListProps): react_jsx_runtime113.JSX.Element;
|
|
9
9
|
//#endregion
|
|
10
10
|
export { SkeletonList };
|
|
11
11
|
//# sourceMappingURL=index.web.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;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ListPageTemplateProps } from "./types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime110 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/templates/lists/ListPageTemplate/index.web.d.ts
|
|
5
5
|
declare function ListPageTemplate<T = unknown>({
|
|
@@ -17,7 +17,7 @@ declare function ListPageTemplate<T = unknown>({
|
|
|
17
17
|
data,
|
|
18
18
|
renderItem,
|
|
19
19
|
emptyProps
|
|
20
|
-
}: ListPageTemplateProps<T>):
|
|
20
|
+
}: ListPageTemplateProps<T>): react_jsx_runtime110.JSX.Element;
|
|
21
21
|
//#endregion
|
|
22
22
|
export { ListPageTemplate };
|
|
23
23
|
//# sourceMappingURL=index.web.d.ts.map
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as _contractspec_lib_contracts_client_react_form_render0 from "@contractspec/lib.contracts/client/react/form-render";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime114 from "react/jsx-runtime";
|
|
3
3
|
import * as _contractspec_lib_schema0 from "@contractspec/lib.schema";
|
|
4
4
|
import * as _contractspec_lib_contracts_forms0 from "@contractspec/lib.contracts/forms";
|
|
5
5
|
|
|
6
6
|
//#region src/renderers/form-contract.d.ts
|
|
7
7
|
declare const formRenderer: {
|
|
8
|
-
render: (spec: _contractspec_lib_contracts_forms0.FormSpec<_contractspec_lib_schema0.AnySchemaModel>, options?: _contractspec_lib_contracts_client_react_form_render0.RenderOptions<unknown> | undefined) =>
|
|
8
|
+
render: (spec: _contractspec_lib_contracts_forms0.FormSpec<_contractspec_lib_schema0.AnySchemaModel>, options?: _contractspec_lib_contracts_client_react_form_render0.RenderOptions<unknown> | undefined) => react_jsx_runtime114.JSX.Element;
|
|
9
9
|
};
|
|
10
10
|
//#endregion
|
|
11
11
|
export { formRenderer };
|
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-20260113173657",
|
|
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-20260113173657",
|
|
32
|
+
"@contractspec/lib.contracts": "0.0.0-canary-20260113173657",
|
|
33
|
+
"@contractspec/lib.ui-kit": "0.0.0-canary-20260113173657",
|
|
34
|
+
"@contractspec/lib.ui-kit-web": "0.0.0-canary-20260113173657",
|
|
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-20260113173657",
|
|
50
|
+
"@contractspec/tool.typescript": "0.0.0-canary-20260113173657",
|
|
51
51
|
"@types/node": "^25.0.6",
|
|
52
52
|
"@types/react-dom": "^19.0.14",
|
|
53
53
|
"postcss": "^8.5",
|