@schemavaults/ui 0.74.0 → 0.75.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/ui/description-list/description-list.d.ts +66 -0
- package/dist/components/ui/description-list/description-list.js +87 -0
- package/dist/components/ui/description-list/description-list.js.map +1 -0
- package/dist/components/ui/description-list/index.d.ts +3 -0
- package/dist/components/ui/description-list/index.js +3 -0
- package/dist/components/ui/description-list/index.js.map +1 -0
- package/dist/components/ui/index.d.ts +2 -0
- package/dist/components/ui/index.js +1 -0
- package/dist/components/ui/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { type VariantProps } from "class-variance-authority";
|
|
2
|
+
import type { HTMLAttributes, ReactElement, Ref } from "react";
|
|
3
|
+
export declare const descriptionListLayoutIds: ["stacked", "inline", "grid", "responsive"];
|
|
4
|
+
export type DescriptionListLayoutId = (typeof descriptionListLayoutIds)[number];
|
|
5
|
+
export declare const descriptionListSizeIds: ["sm", "md", "lg"];
|
|
6
|
+
export type DescriptionListSizeId = (typeof descriptionListSizeIds)[number];
|
|
7
|
+
export declare const descriptionListVariantIds: ["default", "card", "muted"];
|
|
8
|
+
export type DescriptionListVariantId = (typeof descriptionListVariantIds)[number];
|
|
9
|
+
declare const descriptionListVariants: (props?: ({
|
|
10
|
+
variant?: "default" | "muted" | "card" | null | undefined;
|
|
11
|
+
size?: "sm" | "lg" | "md" | null | undefined;
|
|
12
|
+
padded?: boolean | null | undefined;
|
|
13
|
+
divided?: boolean | null | undefined;
|
|
14
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
15
|
+
export interface DescriptionListProps extends HTMLAttributes<HTMLDListElement>, Omit<VariantProps<typeof descriptionListVariants>, "padded" | "divided"> {
|
|
16
|
+
/**
|
|
17
|
+
* Controls how each term/details pair is laid out.
|
|
18
|
+
* - `stacked`: dt above dd (default)
|
|
19
|
+
* - `inline`: dt and dd on the same row
|
|
20
|
+
* - `grid`: 1/3 + 2/3 grid columns on all sizes
|
|
21
|
+
* - `responsive`: stacked on mobile, grid on `sm:` and up
|
|
22
|
+
*/
|
|
23
|
+
layout?: DescriptionListLayoutId;
|
|
24
|
+
/**
|
|
25
|
+
* Adds horizontal padding so the list sits nicely inside `card`/`muted`
|
|
26
|
+
* containers. Defaults to true when `variant` is `card` or `muted`.
|
|
27
|
+
*/
|
|
28
|
+
padded?: boolean;
|
|
29
|
+
/** Add a thin divider between consecutive items. */
|
|
30
|
+
divided?: boolean;
|
|
31
|
+
ref?: Ref<HTMLDListElement>;
|
|
32
|
+
}
|
|
33
|
+
declare function DescriptionList({ className, variant, size, layout, padded, divided, ref, ...props }: DescriptionListProps): ReactElement;
|
|
34
|
+
declare namespace DescriptionList {
|
|
35
|
+
var displayName: string;
|
|
36
|
+
}
|
|
37
|
+
declare const descriptionItemVariants: (props?: ({
|
|
38
|
+
layout?: "grid" | "inline" | "stacked" | "responsive" | null | undefined;
|
|
39
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
40
|
+
export interface DescriptionItemProps extends HTMLAttributes<HTMLDivElement>, VariantProps<typeof descriptionItemVariants> {
|
|
41
|
+
ref?: Ref<HTMLDivElement>;
|
|
42
|
+
}
|
|
43
|
+
declare function DescriptionItem({ className, layout, ref, ...props }: DescriptionItemProps): ReactElement;
|
|
44
|
+
declare namespace DescriptionItem {
|
|
45
|
+
var displayName: string;
|
|
46
|
+
}
|
|
47
|
+
export interface DescriptionTermProps extends HTMLAttributes<HTMLElement> {
|
|
48
|
+
ref?: Ref<HTMLElement>;
|
|
49
|
+
}
|
|
50
|
+
declare function DescriptionTerm({ className, ref, ...props }: DescriptionTermProps): ReactElement;
|
|
51
|
+
declare namespace DescriptionTerm {
|
|
52
|
+
var displayName: string;
|
|
53
|
+
}
|
|
54
|
+
export interface DescriptionDetailsProps extends HTMLAttributes<HTMLElement> {
|
|
55
|
+
/**
|
|
56
|
+
* When true, render a skeleton placeholder in place of the value. Useful for
|
|
57
|
+
* async data fetches where the term is known but the value is still loading.
|
|
58
|
+
*/
|
|
59
|
+
loading?: boolean;
|
|
60
|
+
ref?: Ref<HTMLElement>;
|
|
61
|
+
}
|
|
62
|
+
declare function DescriptionDetails({ className, loading, children, ref, ...props }: DescriptionDetailsProps): ReactElement;
|
|
63
|
+
declare namespace DescriptionDetails {
|
|
64
|
+
var displayName: string;
|
|
65
|
+
}
|
|
66
|
+
export { DescriptionList, DescriptionItem, DescriptionTerm, DescriptionDetails, descriptionListVariants, descriptionItemVariants, };
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
import { cva } from "class-variance-authority";
|
|
4
|
+
import { cn } from "../../../lib/utils";
|
|
5
|
+
import { Skeleton } from "../skeleton/skeleton";
|
|
6
|
+
export const descriptionListLayoutIds = [
|
|
7
|
+
"stacked",
|
|
8
|
+
"inline",
|
|
9
|
+
"grid",
|
|
10
|
+
"responsive",
|
|
11
|
+
];
|
|
12
|
+
export const descriptionListSizeIds = ["sm", "md", "lg"];
|
|
13
|
+
export const descriptionListVariantIds = [
|
|
14
|
+
"default",
|
|
15
|
+
"card",
|
|
16
|
+
"muted",
|
|
17
|
+
];
|
|
18
|
+
const descriptionListVariants = cva("w-full text-foreground", {
|
|
19
|
+
variants: {
|
|
20
|
+
variant: {
|
|
21
|
+
default: "",
|
|
22
|
+
card: "rounded-lg border border-border bg-card text-card-foreground shadow-sm",
|
|
23
|
+
muted: "rounded-lg bg-muted/40",
|
|
24
|
+
},
|
|
25
|
+
size: {
|
|
26
|
+
sm: "text-xs [&_dt]:text-xs [&_dd]:text-xs",
|
|
27
|
+
md: "text-sm [&_dt]:text-sm [&_dd]:text-sm",
|
|
28
|
+
lg: "text-base [&_dt]:text-base [&_dd]:text-base",
|
|
29
|
+
},
|
|
30
|
+
padded: {
|
|
31
|
+
true: "",
|
|
32
|
+
false: "",
|
|
33
|
+
},
|
|
34
|
+
divided: {
|
|
35
|
+
true: "[&>*+*]:border-t [&>*+*]:border-border",
|
|
36
|
+
false: "",
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
compoundVariants: [
|
|
40
|
+
{ variant: "card", padded: true, class: "px-4 py-2" },
|
|
41
|
+
{ variant: "muted", padded: true, class: "px-4 py-2" },
|
|
42
|
+
{ variant: "default", padded: true, class: "py-1" },
|
|
43
|
+
],
|
|
44
|
+
defaultVariants: {
|
|
45
|
+
variant: "default",
|
|
46
|
+
size: "md",
|
|
47
|
+
padded: false,
|
|
48
|
+
divided: false,
|
|
49
|
+
},
|
|
50
|
+
});
|
|
51
|
+
function DescriptionList({ className, variant = "default", size = "md", layout = "stacked", padded, divided = false, ref, ...props }) {
|
|
52
|
+
const resolvedPadded = padded ?? (variant === "card" || variant === "muted");
|
|
53
|
+
return (_jsx("dl", { ref: ref, "data-slot": "description-list", "data-layout": layout, "data-variant": variant ?? "default", className: cn(descriptionListVariants({
|
|
54
|
+
variant,
|
|
55
|
+
size,
|
|
56
|
+
padded: resolvedPadded,
|
|
57
|
+
divided,
|
|
58
|
+
}), className), ...props }));
|
|
59
|
+
}
|
|
60
|
+
DescriptionList.displayName = "DescriptionList";
|
|
61
|
+
const descriptionItemVariants = cva("", {
|
|
62
|
+
variants: {
|
|
63
|
+
layout: {
|
|
64
|
+
stacked: "flex flex-col gap-1 py-2",
|
|
65
|
+
inline: "flex flex-row items-baseline justify-between gap-4 py-2",
|
|
66
|
+
grid: "grid grid-cols-3 gap-4 py-2",
|
|
67
|
+
responsive: "flex flex-col gap-1 py-2 sm:grid sm:grid-cols-3 sm:gap-4",
|
|
68
|
+
},
|
|
69
|
+
},
|
|
70
|
+
defaultVariants: {
|
|
71
|
+
layout: "stacked",
|
|
72
|
+
},
|
|
73
|
+
});
|
|
74
|
+
function DescriptionItem({ className, layout, ref, ...props }) {
|
|
75
|
+
return (_jsx("div", { ref: ref, "data-slot": "description-item", className: cn(descriptionItemVariants({ layout }), className), ...props }));
|
|
76
|
+
}
|
|
77
|
+
DescriptionItem.displayName = "DescriptionItem";
|
|
78
|
+
function DescriptionTerm({ className, ref, ...props }) {
|
|
79
|
+
return (_jsx("dt", { ref: ref, "data-slot": "description-term", className: cn("font-medium text-muted-foreground leading-snug", className), ...props }));
|
|
80
|
+
}
|
|
81
|
+
DescriptionTerm.displayName = "DescriptionTerm";
|
|
82
|
+
function DescriptionDetails({ className, loading = false, children, ref, ...props }) {
|
|
83
|
+
return (_jsx("dd", { ref: ref, "data-slot": "description-details", className: cn("text-foreground leading-snug sm:col-span-2", className), ...props, children: loading ? (_jsx(Skeleton, { "data-slot": "description-details-skeleton", className: "h-4 w-32" })) : (children) }));
|
|
84
|
+
}
|
|
85
|
+
DescriptionDetails.displayName = "DescriptionDetails";
|
|
86
|
+
export { DescriptionList, DescriptionItem, DescriptionTerm, DescriptionDetails, descriptionListVariants, descriptionItemVariants, };
|
|
87
|
+
//# sourceMappingURL=description-list.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"description-list.js","sourceRoot":"","sources":["../../../../src/components/ui/description-list/description-list.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { DescriptionList, DescriptionItem, DescriptionTerm, DescriptionDetails, descriptionListVariants, descriptionItemVariants, descriptionListLayoutIds, descriptionListSizeIds, descriptionListVariantIds, } from "./description-list";
|
|
2
|
+
export type { DescriptionListProps, DescriptionItemProps, DescriptionTermProps, DescriptionDetailsProps, DescriptionListLayoutId, DescriptionListSizeId, DescriptionListVariantId, } from "./description-list";
|
|
3
|
+
export { DescriptionList as default } from "./description-list";
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { DescriptionList, DescriptionItem, DescriptionTerm, DescriptionDetails, descriptionListVariants, descriptionItemVariants, descriptionListLayoutIds, descriptionListSizeIds, descriptionListVariantIds, } from "./description-list";
|
|
2
|
+
export { DescriptionList as default } from "./description-list";
|
|
3
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/ui/description-list/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EACf,eAAe,EACf,eAAe,EACf,kBAAkB,EAClB,uBAAuB,EACvB,uBAAuB,EACvB,wBAAwB,EACxB,sBAAsB,EACtB,yBAAyB,GAC1B,MAAM,oBAAoB,CAAC;AAW5B,OAAO,EAAE,eAAe,IAAI,OAAO,EAAE,MAAM,oBAAoB,CAAC"}
|
|
@@ -78,6 +78,8 @@ export * from "./skeleton";
|
|
|
78
78
|
export type * from "./skeleton";
|
|
79
79
|
export * from "./key-value-with-skeleton";
|
|
80
80
|
export type * from "./key-value-with-skeleton";
|
|
81
|
+
export * from "./description-list";
|
|
82
|
+
export type * from "./description-list";
|
|
81
83
|
export * from "./status-blinker";
|
|
82
84
|
export type * from "./status-blinker";
|
|
83
85
|
export * from "./context-menu";
|
|
@@ -38,6 +38,7 @@ export * from "./hover-card";
|
|
|
38
38
|
export * from "./radio-group";
|
|
39
39
|
export * from "./skeleton";
|
|
40
40
|
export * from "./key-value-with-skeleton";
|
|
41
|
+
export * from "./description-list";
|
|
41
42
|
export * from "./status-blinker";
|
|
42
43
|
export * from "./context-menu";
|
|
43
44
|
export * from "./inline-menu";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/ui/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/ui/index.ts"],"names":[],"mappings":"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"}
|