@contractspec/lib.design-system 1.47.0 → 1.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/agent/AgentMonitor.d.ts +2 -2
- package/dist/components/agent/ApprovalQueue.d.ts +2 -2
- package/dist/components/atoms/ActionButtons.d.ts +7 -7
- package/dist/components/atoms/ButtonLink.d.ts +2 -2
- package/dist/components/atoms/Cta.d.ts +1 -1
- package/dist/components/atoms/DataChips.d.ts +5 -5
- package/dist/components/atoms/EmptyState.d.ts +2 -2
- package/dist/components/atoms/Input.d.ts +2 -2
- package/dist/components/atoms/Link.d.ts +2 -2
- package/dist/components/atoms/Stepper.d.ts +2 -2
- package/dist/components/atoms/Textarea.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/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/molecules/EntityCard.d.ts +1 -1
- package/dist/components/molecules/InstallCommand/InstallCommand.d.ts +2 -2
- package/dist/components/molecules/NavMain.d.ts +2 -2
- package/dist/components/molecules/NavUser.d.ts +2 -2
- 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/molecules/StatCard.d.ts +1 -1
- package/dist/components/templates/lists/ListPageTemplate/index.web.d.ts +2 -2
- package/dist/theme/variants.d.ts +1 -1
- package/package.json +7 -7
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime19 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/components/agent/AgentMonitor.d.ts
|
|
4
4
|
interface AgentSessionSnapshot {
|
|
@@ -23,7 +23,7 @@ declare function AgentMonitor({
|
|
|
23
23
|
highlightStatus,
|
|
24
24
|
onSelectSession,
|
|
25
25
|
className
|
|
26
|
-
}: AgentMonitorProps):
|
|
26
|
+
}: AgentMonitorProps): react_jsx_runtime19.JSX.Element;
|
|
27
27
|
//#endregion
|
|
28
28
|
export { AgentMonitor };
|
|
29
29
|
//# sourceMappingURL=AgentMonitor.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime18 from "react/jsx-runtime";
|
|
3
3
|
import { ApprovalRequest } from "@contractspec/lib.ai-agent/approval";
|
|
4
4
|
|
|
5
5
|
//#region src/components/agent/ApprovalQueue.d.ts
|
|
@@ -20,7 +20,7 @@ declare function ApprovalQueue({
|
|
|
20
20
|
onReject,
|
|
21
21
|
className,
|
|
22
22
|
emptyState
|
|
23
|
-
}: ApprovalQueueProps):
|
|
23
|
+
}: ApprovalQueueProps): react_jsx_runtime18.JSX.Element;
|
|
24
24
|
//#endregion
|
|
25
25
|
export { ApprovalQueue };
|
|
26
26
|
//# sourceMappingURL=ApprovalQueue.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ButtonProps } from "./Button.js";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime6 from "react/jsx-runtime";
|
|
4
4
|
import { VariantProps } from "class-variance-authority";
|
|
5
5
|
import * as class_variance_authority_types1 from "class-variance-authority/types";
|
|
6
6
|
|
|
@@ -13,14 +13,14 @@ type ActionBtnProps = Omit<ButtonProps, 'size' | 'variant'> & VariantProps<typeo
|
|
|
13
13
|
label?: React.ReactNode;
|
|
14
14
|
iconLeft?: React.ReactNode;
|
|
15
15
|
};
|
|
16
|
-
declare function EditButton(props: Omit<ActionBtnProps, 'iconLeft' | 'tone'>):
|
|
17
|
-
declare function DeleteButton(props: Omit<ActionBtnProps, 'iconLeft'>):
|
|
18
|
-
declare function ViewButton(props: Omit<ActionBtnProps, 'iconLeft'>):
|
|
16
|
+
declare function EditButton(props: Omit<ActionBtnProps, 'iconLeft' | 'tone'>): react_jsx_runtime6.JSX.Element;
|
|
17
|
+
declare function DeleteButton(props: Omit<ActionBtnProps, 'iconLeft'>): react_jsx_runtime6.JSX.Element;
|
|
18
|
+
declare function ViewButton(props: Omit<ActionBtnProps, 'iconLeft'>): react_jsx_runtime6.JSX.Element;
|
|
19
19
|
declare function ToggleButton(props: Omit<ActionBtnProps, 'iconLeft'> & {
|
|
20
20
|
active?: boolean;
|
|
21
|
-
}):
|
|
22
|
-
declare function ToggleLeftButton(props: Omit<ActionBtnProps, 'iconLeft'>):
|
|
23
|
-
declare function ToggleRightButton(props: Omit<ActionBtnProps, 'iconLeft'>):
|
|
21
|
+
}): react_jsx_runtime6.JSX.Element;
|
|
22
|
+
declare function ToggleLeftButton(props: Omit<ActionBtnProps, 'iconLeft'>): react_jsx_runtime6.JSX.Element;
|
|
23
|
+
declare function ToggleRightButton(props: Omit<ActionBtnProps, 'iconLeft'>): react_jsx_runtime6.JSX.Element;
|
|
24
24
|
//#endregion
|
|
25
25
|
export { DeleteButton, EditButton, ToggleButton, ToggleLeftButton, ToggleRightButton, ViewButton };
|
|
26
26
|
//# sourceMappingURL=ActionButtons.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
|
|
3
|
+
import * as react_jsx_runtime0 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):
|
|
19
|
+
}: ButtonLinkProps): react_jsx_runtime0.JSX.Element;
|
|
20
20
|
//#endregion
|
|
21
21
|
export { ButtonLink };
|
|
22
22
|
//# sourceMappingURL=ButtonLink.d.ts.map
|
|
@@ -19,7 +19,7 @@ declare const Cta: React.ForwardRefExoticComponent<Omit<_contractspec_lib_ui_kit
|
|
|
19
19
|
disabled?: boolean;
|
|
20
20
|
} & VariantProps<(props?: ({
|
|
21
21
|
size?: "sm" | "md" | "lg" | "touch" | null | undefined;
|
|
22
|
-
emphasis?: "
|
|
22
|
+
emphasis?: "strong" | "default" | "subtle" | null | undefined;
|
|
23
23
|
} & class_variance_authority_types0.ClassProp) | undefined) => string> & {
|
|
24
24
|
capture?: (cta: string) => void;
|
|
25
25
|
ctaName?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime12 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
4
|
import * as class_variance_authority_types2 from "class-variance-authority/types";
|
|
5
5
|
|
|
@@ -14,25 +14,25 @@ declare function DateChip({
|
|
|
14
14
|
...v
|
|
15
15
|
}: {
|
|
16
16
|
value?: string | Date | null;
|
|
17
|
-
} & ChipVariants):
|
|
17
|
+
} & ChipVariants): react_jsx_runtime12.JSX.Element | null;
|
|
18
18
|
declare function TimeChip({
|
|
19
19
|
value,
|
|
20
20
|
...v
|
|
21
21
|
}: {
|
|
22
22
|
value?: string | Date | null;
|
|
23
|
-
} & ChipVariants):
|
|
23
|
+
} & ChipVariants): react_jsx_runtime12.JSX.Element | null;
|
|
24
24
|
declare function PlaceChip({
|
|
25
25
|
label,
|
|
26
26
|
...v
|
|
27
27
|
}: {
|
|
28
28
|
label?: React.ReactNode;
|
|
29
|
-
} & ChipVariants):
|
|
29
|
+
} & ChipVariants): react_jsx_runtime12.JSX.Element | null;
|
|
30
30
|
declare function DurationChip({
|
|
31
31
|
minutes,
|
|
32
32
|
...v
|
|
33
33
|
}: {
|
|
34
34
|
minutes?: number | null;
|
|
35
|
-
} & ChipVariants):
|
|
35
|
+
} & ChipVariants): react_jsx_runtime12.JSX.Element | null;
|
|
36
36
|
//#endregion
|
|
37
37
|
export { DateChip, DurationChip, PlaceChip, TimeChip };
|
|
38
38
|
//# sourceMappingURL=DataChips.d.ts.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime4 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):
|
|
5
|
+
declare function EmptyState$1(props: EmptyStateProps): react_jsx_runtime4.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
|
|
2
|
+
import * as react_jsx_runtime2 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):
|
|
33
|
+
}: InputProps$1): react_jsx_runtime2.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
|
|
2
|
+
import * as react_jsx_runtime1 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):
|
|
9
|
+
}: LinkProps): react_jsx_runtime1.JSX.Element;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { Link };
|
|
12
12
|
//# sourceMappingURL=Link.d.ts.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime5 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):
|
|
5
|
+
declare function Stepper$1(props: StepperProps): react_jsx_runtime5.JSX.Element;
|
|
6
6
|
//#endregion
|
|
7
7
|
export { Stepper$1 as Stepper };
|
|
8
8
|
//# sourceMappingURL=Stepper.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { KeyboardOptions } from "../../lib/keyboard.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime3 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):
|
|
35
|
+
}: TextareaProps$1): react_jsx_runtime3.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
|
|
2
|
+
import * as react_jsx_runtime20 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_runtime20.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,mBAAA,CAAA,GAAA,CAAA,OAZtB"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CodeBlockProps } from "./types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime111 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_runtime111.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_runtime113 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_runtime113.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_runtime112 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_runtime112.JSX.Element;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { CopyButton };
|
|
13
13
|
//# sourceMappingURL=CopyButton.d.ts.map
|
|
@@ -6,7 +6,7 @@ import * as class_variance_authority_types7 from "class-variance-authority/types
|
|
|
6
6
|
|
|
7
7
|
//#region src/components/molecules/EntityCard.d.ts
|
|
8
8
|
declare const entityCardVariants: (props?: ({
|
|
9
|
-
emphasis?: "
|
|
9
|
+
emphasis?: "strong" | "default" | "subtle" | null | undefined;
|
|
10
10
|
density?: "compact" | "comfortable" | null | undefined;
|
|
11
11
|
} & class_variance_authority_types7.ClassProp) | undefined) => string;
|
|
12
12
|
type EntityCardProps = React.ComponentProps<typeof Card> & VariantProps<typeof entityCardVariants> & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { InstallCommandProps } from "./types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime114 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/molecules/InstallCommand/InstallCommand.d.ts
|
|
5
5
|
|
|
@@ -21,7 +21,7 @@ declare function InstallCommand({
|
|
|
21
21
|
dev,
|
|
22
22
|
global,
|
|
23
23
|
...props
|
|
24
|
-
}: InstallCommandProps):
|
|
24
|
+
}: InstallCommandProps): react_jsx_runtime114.JSX.Element;
|
|
25
25
|
//#endregion
|
|
26
26
|
export { InstallCommand };
|
|
27
27
|
//# sourceMappingURL=InstallCommand.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HeaderNavItem } from "../../types/navigation.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime16 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/molecules/NavMain.d.ts
|
|
5
5
|
declare function NavMain({
|
|
@@ -8,7 +8,7 @@ declare function NavMain({
|
|
|
8
8
|
}: {
|
|
9
9
|
items: HeaderNavItem[];
|
|
10
10
|
className?: string;
|
|
11
|
-
}):
|
|
11
|
+
}): react_jsx_runtime16.JSX.Element;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { NavMain };
|
|
14
14
|
//# sourceMappingURL=NavMain.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { UserMenuItem } from "../../types/navigation.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime17 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/molecules/NavUser.d.ts
|
|
5
5
|
declare function NavUser({
|
|
@@ -12,7 +12,7 @@ declare function NavUser({
|
|
|
12
12
|
email?: string;
|
|
13
13
|
imageUrl?: string;
|
|
14
14
|
items: UserMenuItem[];
|
|
15
|
-
}):
|
|
15
|
+
}): react_jsx_runtime17.JSX.Element;
|
|
16
16
|
//#endregion
|
|
17
17
|
export { NavUser };
|
|
18
18
|
//# sourceMappingURL=NavUser.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SkeletonBlockProps } from "./types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime117 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_runtime117.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_runtime116 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_runtime116.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_runtime118 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_runtime118.JSX.Element;
|
|
9
9
|
//#endregion
|
|
10
10
|
export { SkeletonList };
|
|
11
11
|
//# sourceMappingURL=index.web.d.ts.map
|
|
@@ -6,7 +6,7 @@ import * as class_variance_authority_types8 from "class-variance-authority/types
|
|
|
6
6
|
|
|
7
7
|
//#region src/components/molecules/StatCard.d.ts
|
|
8
8
|
declare const statVariants: (props?: ({
|
|
9
|
-
emphasis?: "
|
|
9
|
+
emphasis?: "strong" | "default" | "subtle" | null | undefined;
|
|
10
10
|
density?: "compact" | "comfortable" | null | undefined;
|
|
11
11
|
} & class_variance_authority_types8.ClassProp) | undefined) => string;
|
|
12
12
|
type StatCardProps = React.ComponentProps<typeof Card> & VariantProps<typeof statVariants> & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ListPageTemplateProps } from "./types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime115 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_runtime115.JSX.Element;
|
|
21
21
|
//#endregion
|
|
22
22
|
export { ListPageTemplate };
|
|
23
23
|
//# sourceMappingURL=index.web.d.ts.map
|
package/dist/theme/variants.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ declare const dsBaseVariants: (props?: ({
|
|
|
14
14
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
15
15
|
density?: "compact" | "comfortable" | null | undefined;
|
|
16
16
|
tone?: "neutral" | "danger" | "info" | "success" | "warning" | null | undefined;
|
|
17
|
-
emphasis?: "
|
|
17
|
+
emphasis?: "strong" | "default" | "subtle" | null | undefined;
|
|
18
18
|
} & class_variance_authority_types21.ClassProp) | undefined) => string;
|
|
19
19
|
type DSBaseVariantsProps = VariantProps<typeof dsBaseVariants>;
|
|
20
20
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/lib.design-system",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.48.0",
|
|
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": "1.
|
|
32
|
-
"@contractspec/lib.contracts": "1.
|
|
33
|
-
"@contractspec/lib.ui-kit": "1.
|
|
34
|
-
"@contractspec/lib.ui-kit-web": "1.
|
|
31
|
+
"@contractspec/lib.ai-agent": "1.48.0",
|
|
32
|
+
"@contractspec/lib.contracts": "1.48.0",
|
|
33
|
+
"@contractspec/lib.ui-kit": "1.48.0",
|
|
34
|
+
"@contractspec/lib.ui-kit-web": "1.48.0",
|
|
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": "1.
|
|
50
|
-
"@contractspec/tool.typescript": "1.
|
|
49
|
+
"@contractspec/tool.tsdown": "1.48.0",
|
|
50
|
+
"@contractspec/tool.typescript": "1.48.0",
|
|
51
51
|
"@types/node": "^25.0.6",
|
|
52
52
|
"@types/react-dom": "^19.0.14",
|
|
53
53
|
"postcss": "^8.5",
|