@schemavaults/ui 0.33.0 → 0.34.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.
@@ -0,0 +1,38 @@
1
+ import { type HTMLAttributes, type ReactElement, type ReactNode, type Ref } from "react";
2
+ import { type VariantProps } from "class-variance-authority";
3
+ export declare const calloutIntentIds: readonly ["note", "tip", "important", "warning", "caution"];
4
+ export type CalloutIntentId = (typeof calloutIntentIds)[number];
5
+ export declare const calloutAppearanceIds: readonly ["accent-bar", "subtle"];
6
+ export type CalloutAppearanceId = (typeof calloutAppearanceIds)[number];
7
+ declare const calloutVariants: (props?: ({
8
+ intent?: "note" | "warning" | "tip" | "important" | "caution" | null | undefined;
9
+ appearance?: "accent-bar" | "subtle" | null | undefined;
10
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
11
+ export interface CalloutProps extends Omit<HTMLAttributes<HTMLDivElement>, "title">, VariantProps<typeof calloutVariants> {
12
+ /** Override the default icon for the intent. Pass `null` to hide. */
13
+ icon?: ReactNode | null;
14
+ /** Optional title; falls back to a default label for the intent. */
15
+ title?: ReactNode;
16
+ /** Render the title row even when no `title` is supplied. Defaults to true. */
17
+ showTitle?: boolean;
18
+ ref?: Ref<HTMLDivElement>;
19
+ }
20
+ declare function Callout({ className, intent, appearance, icon, title, showTitle, children, ref, ...props }: CalloutProps): ReactElement;
21
+ declare namespace Callout {
22
+ var displayName: string;
23
+ }
24
+ export interface CalloutTitleProps extends HTMLAttributes<HTMLHeadingElement> {
25
+ ref?: Ref<HTMLHeadingElement>;
26
+ }
27
+ declare function CalloutTitle({ className, ref, children, ...props }: CalloutTitleProps): ReactElement;
28
+ declare namespace CalloutTitle {
29
+ var displayName: string;
30
+ }
31
+ export interface CalloutDescriptionProps extends HTMLAttributes<HTMLDivElement> {
32
+ ref?: Ref<HTMLDivElement>;
33
+ }
34
+ declare function CalloutDescription({ className, ref, ...props }: CalloutDescriptionProps): ReactElement;
35
+ declare namespace CalloutDescription {
36
+ var displayName: string;
37
+ }
38
+ export { Callout, CalloutTitle, CalloutDescription, calloutVariants };
@@ -0,0 +1,66 @@
1
+ "use client";
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ import { cva } from "class-variance-authority";
4
+ import { Info, Lightbulb, AlertTriangle, AlertOctagon, MessageSquareWarning, } from "lucide-react";
5
+ import { cn } from "../../../lib/utils";
6
+ export const calloutIntentIds = [
7
+ "note",
8
+ "tip",
9
+ "important",
10
+ "warning",
11
+ "caution",
12
+ ];
13
+ export const calloutAppearanceIds = [
14
+ "accent-bar",
15
+ "subtle",
16
+ ];
17
+ const calloutVariants = cva("relative w-full text-sm text-foreground [&_a]:underline [&_a]:underline-offset-2", {
18
+ variants: {
19
+ intent: {
20
+ note: "[--callout-color:hsl(217_91%_60%)] [--callout-tint:hsl(217_91%_60%/0.08)]",
21
+ tip: "[--callout-color:hsl(142_71%_45%)] [--callout-tint:hsl(142_71%_45%/0.08)]",
22
+ important: "[--callout-color:hsl(258_90%_66%)] [--callout-tint:hsl(258_90%_66%/0.08)]",
23
+ warning: "[--callout-color:hsl(var(--warning))] [--callout-tint:hsl(var(--warning)/0.10)]",
24
+ caution: "[--callout-color:hsl(var(--destructive))] [--callout-tint:hsl(var(--destructive)/0.10)]",
25
+ },
26
+ appearance: {
27
+ "accent-bar": "rounded-md border-l-4 border-l-[var(--callout-color)] bg-[var(--callout-tint)] py-3 pl-4 pr-4",
28
+ subtle: "rounded-md border border-[var(--callout-color)]/30 bg-[var(--callout-tint)] p-4",
29
+ },
30
+ },
31
+ defaultVariants: {
32
+ intent: "note",
33
+ appearance: "accent-bar",
34
+ },
35
+ });
36
+ const defaultIcons = {
37
+ note: _jsx(Info, { "aria-hidden": true, className: "size-4" }),
38
+ tip: _jsx(Lightbulb, { "aria-hidden": true, className: "size-4" }),
39
+ important: _jsx(MessageSquareWarning, { "aria-hidden": true, className: "size-4" }),
40
+ warning: _jsx(AlertTriangle, { "aria-hidden": true, className: "size-4" }),
41
+ caution: _jsx(AlertOctagon, { "aria-hidden": true, className: "size-4" }),
42
+ };
43
+ const defaultLabels = {
44
+ note: "Note",
45
+ tip: "Tip",
46
+ important: "Important",
47
+ warning: "Warning",
48
+ caution: "Caution",
49
+ };
50
+ function Callout({ className, intent = "note", appearance = "accent-bar", icon, title, showTitle = true, children, ref, ...props }) {
51
+ const resolvedIntent = intent ?? "note";
52
+ const resolvedIcon = icon === null ? null : icon ?? defaultIcons[resolvedIntent];
53
+ const resolvedTitle = title ?? defaultLabels[resolvedIntent];
54
+ return (_jsxs("div", { ref: ref, role: "note", "data-slot": "callout", "data-intent": resolvedIntent, "data-appearance": appearance ?? "accent-bar", className: cn(calloutVariants({ intent, appearance }), className), ...props, children: [showTitle && (_jsxs("div", { className: "mb-1 flex items-center gap-2 text-[var(--callout-color)]", children: [resolvedIcon, _jsx("span", { className: "text-sm font-semibold leading-none", children: resolvedTitle })] })), children !== undefined && (_jsxs("div", { "data-slot": "callout-content", className: cn("text-sm leading-relaxed text-foreground/90", showTitle ? "" : "flex items-start gap-2"), children: [!showTitle && resolvedIcon !== null && (_jsx("span", { className: "mt-0.5 shrink-0 text-[var(--callout-color)]", children: resolvedIcon })), _jsx("div", { className: "min-w-0 flex-1", children: children })] }))] }));
55
+ }
56
+ Callout.displayName = "Callout";
57
+ function CalloutTitle({ className, ref, children, ...props }) {
58
+ return (_jsx("h5", { ref: ref, "data-slot": "callout-title", className: cn("mb-1 text-sm font-semibold leading-none tracking-tight text-[var(--callout-color)]", className), ...props, children: children }));
59
+ }
60
+ CalloutTitle.displayName = "CalloutTitle";
61
+ function CalloutDescription({ className, ref, ...props }) {
62
+ return (_jsx("div", { ref: ref, "data-slot": "callout-description", className: cn("text-sm leading-relaxed text-foreground/90 [&_p]:leading-relaxed", className), ...props }));
63
+ }
64
+ CalloutDescription.displayName = "CalloutDescription";
65
+ export { Callout, CalloutTitle, CalloutDescription, calloutVariants };
66
+ //# sourceMappingURL=callout.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"callout.js","sourceRoot":"","sources":["../../../../src/components/ui/callout/callout.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ export { Callout, CalloutTitle, CalloutDescription, calloutVariants, calloutIntentIds, calloutAppearanceIds, } from "./callout";
2
+ export type { CalloutProps, CalloutTitleProps, CalloutDescriptionProps, CalloutIntentId, CalloutAppearanceId, } from "./callout";
3
+ export { Callout as default } from "./callout";
@@ -0,0 +1,3 @@
1
+ export { Callout, CalloutTitle, CalloutDescription, calloutVariants, calloutIntentIds, calloutAppearanceIds, } from "./callout";
2
+ export { Callout as default } from "./callout";
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/ui/callout/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,OAAO,EACP,YAAY,EACZ,kBAAkB,EAClB,eAAe,EACf,gBAAgB,EAChB,oBAAoB,GACrB,MAAM,WAAW,CAAC;AASnB,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC"}
@@ -2,7 +2,7 @@ import { type VariantProps } from "class-variance-authority";
2
2
  import { type HTMLAttributes, type ReactElement, type ReactNode, type Ref } from "react";
3
3
  import { type CodeBlockSize, type CodeBlockVariant, codeBlockSizeIds, codeBlockVariantIds } from "./code-block-variants";
4
4
  declare const codeBlockVariants: (props?: ({
5
- variant?: "default" | "terminal" | "subtle" | "contrast" | null | undefined;
5
+ variant?: "default" | "subtle" | "terminal" | "contrast" | null | undefined;
6
6
  size?: "sm" | "lg" | "md" | null | undefined;
7
7
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
8
8
  export interface CodeBlockProps extends Omit<HTMLAttributes<HTMLDivElement>, "children" | "title">, VariantProps<typeof codeBlockVariants> {
@@ -2,7 +2,7 @@ import { type VariantProps } from "class-variance-authority";
2
2
  import { type ButtonHTMLAttributes, type ReactElement, type ReactNode, type Ref } from "react";
3
3
  import { type CopyButtonSize, type CopyButtonVariant, copyButtonSizeIds, copyButtonVariantIds } from "./copy-button-variants";
4
4
  declare const copyButtonVariants: (props?: ({
5
- variant?: "default" | "ghost" | "outline" | "brand" | "subtle" | null | undefined;
5
+ variant?: "default" | "ghost" | "subtle" | "outline" | "brand" | null | undefined;
6
6
  size?: "sm" | "lg" | "md" | "icon-sm" | "icon-md" | "icon-lg" | null | undefined;
7
7
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
8
8
  export interface CopyButtonProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "children" | "onCopy">, VariantProps<typeof copyButtonVariants> {
@@ -4,6 +4,8 @@ export * from "./accordion";
4
4
  export type * from "./accordion";
5
5
  export * from "./alert";
6
6
  export type * from "./alert";
7
+ export * from "./callout";
8
+ export type * from "./callout";
7
9
  export * from "./badge";
8
10
  export type * from "./badge";
9
11
  export * from "./background-blur";
@@ -1,6 +1,7 @@
1
1
  export * from "./avatar";
2
2
  export * from "./accordion";
3
3
  export * from "./alert";
4
+ export * from "./callout";
4
5
  export * from "./badge";
5
6
  export * from "./background-blur";
6
7
  export * from "./themed-page-background";
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/ui/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AAGzB,cAAc,aAAa,CAAC;AAG5B,cAAc,SAAS,CAAC;AAGxB,cAAc,SAAS,CAAC;AAGxB,cAAc,mBAAmB,CAAC;AAGlC,cAAc,0BAA0B,CAAC;AAGzC,cAAc,UAAU,CAAC;AAGzB,cAAc,SAAS,CAAC;AAGxB,cAAc,kBAAkB,CAAC;AAGjC,cAAc,aAAa,CAAC;AAG5B,cAAc,kCAAkC,CAAC;AAGjD,cAAc,cAAc,CAAC;AAG7B,cAAc,SAAS,CAAC;AAGxB,cAAc,SAAS,CAAC;AAExB,cAAc,WAAW,CAAC;AAG1B,cAAc,YAAY,CAAC;AAG3B,cAAc,QAAQ,CAAC;AAGvB,cAAc,QAAQ,CAAC;AAGvB,cAAc,aAAa,CAAC;AAG5B,cAAc,iBAAiB,CAAC;AAGhC,cAAc,WAAW,CAAC;AAG1B,cAAc,mBAAmB,CAAC;AAGlC,cAAc,UAAU,CAAC;AAGzB,cAAc,WAAW,CAAC;AAG1B,cAAc,WAAW,CAAC;AAG1B,cAAc,SAAS,CAAC;AAGxB,cAAc,aAAa,CAAC;AAG5B,cAAc,YAAY,CAAC;AAG3B,cAAc,YAAY,CAAC;AAG3B,cAAc,cAAc,CAAC;AAG7B,cAAc,eAAe,CAAC;AAG9B,cAAc,YAAY,CAAC;AAG3B,cAAc,2BAA2B,CAAC;AAG1C,cAAc,kBAAkB,CAAC;AAGjC,cAAc,gBAAgB,CAAC;AAG/B,cAAc,eAAe,CAAC;AAG9B,cAAc,WAAW,CAAC;AAG1B,cAAc,gBAAgB,CAAC;AAG/B,cAAc,cAAc,CAAC;AAG7B,cAAc,SAAS,CAAC;AAGxB,cAAc,UAAU,CAAC;AAGzB,cAAc,eAAe,CAAC;AAG9B,cAAc,qBAAqB,CAAC;AAGpC,cAAc,oBAAoB,CAAC;AAGnC,cAAc,mBAAmB,CAAC;AAGlC,cAAc,QAAQ,CAAC;AAGvB,cAAc,QAAQ,CAAC;AAGvB,cAAc,UAAU,CAAC;AAGzB,cAAc,UAAU,CAAC;AAGzB,cAAc,gBAAgB,CAAC;AAG/B,cAAc,qBAAqB,CAAC;AAGpC,cAAc,cAAc,CAAC;AAG7B,cAAc,cAAc,CAAC;AAG7B,cAAc,OAAO,CAAC;AAGtB,cAAc,eAAe,CAAC;AAG9B,cAAc,WAAW,CAAC;AAG1B,cAAc,UAAU,CAAC;AAGzB,cAAc,eAAe,CAAC;AAG9B,cAAc,aAAa,CAAC;AAG5B,cAAc,YAAY,CAAC;AAG3B,cAAc,UAAU,CAAC;AAGzB,cAAc,gBAAgB,CAAC;AAG/B,cAAc,cAAc,CAAC;AAG7B,cAAc,qBAAqB,CAAC;AAGpC,cAAc,WAAW,CAAC;AAG1B,cAAc,UAAU,CAAC;AAGzB,cAAc,QAAQ,CAAC;AAGvB,cAAc,iBAAiB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/ui/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AAGzB,cAAc,aAAa,CAAC;AAG5B,cAAc,SAAS,CAAC;AAGxB,cAAc,WAAW,CAAC;AAG1B,cAAc,SAAS,CAAC;AAGxB,cAAc,mBAAmB,CAAC;AAGlC,cAAc,0BAA0B,CAAC;AAGzC,cAAc,UAAU,CAAC;AAGzB,cAAc,SAAS,CAAC;AAGxB,cAAc,kBAAkB,CAAC;AAGjC,cAAc,aAAa,CAAC;AAG5B,cAAc,kCAAkC,CAAC;AAGjD,cAAc,cAAc,CAAC;AAG7B,cAAc,SAAS,CAAC;AAGxB,cAAc,SAAS,CAAC;AAExB,cAAc,WAAW,CAAC;AAG1B,cAAc,YAAY,CAAC;AAG3B,cAAc,QAAQ,CAAC;AAGvB,cAAc,QAAQ,CAAC;AAGvB,cAAc,aAAa,CAAC;AAG5B,cAAc,iBAAiB,CAAC;AAGhC,cAAc,WAAW,CAAC;AAG1B,cAAc,mBAAmB,CAAC;AAGlC,cAAc,UAAU,CAAC;AAGzB,cAAc,WAAW,CAAC;AAG1B,cAAc,WAAW,CAAC;AAG1B,cAAc,SAAS,CAAC;AAGxB,cAAc,aAAa,CAAC;AAG5B,cAAc,YAAY,CAAC;AAG3B,cAAc,YAAY,CAAC;AAG3B,cAAc,cAAc,CAAC;AAG7B,cAAc,eAAe,CAAC;AAG9B,cAAc,YAAY,CAAC;AAG3B,cAAc,2BAA2B,CAAC;AAG1C,cAAc,kBAAkB,CAAC;AAGjC,cAAc,gBAAgB,CAAC;AAG/B,cAAc,eAAe,CAAC;AAG9B,cAAc,WAAW,CAAC;AAG1B,cAAc,gBAAgB,CAAC;AAG/B,cAAc,cAAc,CAAC;AAG7B,cAAc,SAAS,CAAC;AAGxB,cAAc,UAAU,CAAC;AAGzB,cAAc,eAAe,CAAC;AAG9B,cAAc,qBAAqB,CAAC;AAGpC,cAAc,oBAAoB,CAAC;AAGnC,cAAc,mBAAmB,CAAC;AAGlC,cAAc,QAAQ,CAAC;AAGvB,cAAc,QAAQ,CAAC;AAGvB,cAAc,UAAU,CAAC;AAGzB,cAAc,UAAU,CAAC;AAGzB,cAAc,gBAAgB,CAAC;AAG/B,cAAc,qBAAqB,CAAC;AAGpC,cAAc,cAAc,CAAC;AAG7B,cAAc,cAAc,CAAC;AAG7B,cAAc,OAAO,CAAC;AAGtB,cAAc,eAAe,CAAC;AAG9B,cAAc,WAAW,CAAC;AAG1B,cAAc,UAAU,CAAC;AAGzB,cAAc,eAAe,CAAC;AAG9B,cAAc,aAAa,CAAC;AAG5B,cAAc,YAAY,CAAC;AAG3B,cAAc,UAAU,CAAC;AAGzB,cAAc,gBAAgB,CAAC;AAG/B,cAAc,cAAc,CAAC;AAG7B,cAAc,qBAAqB,CAAC;AAGpC,cAAc,WAAW,CAAC;AAG1B,cAAc,UAAU,CAAC;AAGzB,cAAc,QAAQ,CAAC;AAGvB,cAAc,iBAAiB,CAAC"}
@@ -2,7 +2,7 @@ import { type VariantProps } from "class-variance-authority";
2
2
  import type { HTMLAttributes, ReactElement, ReactNode, Ref } from "react";
3
3
  import { type KbdSize, type KbdVariant, kbdSizeIds, kbdVariantIds } from "./kbd-variants";
4
4
  declare const kbdVariants: (props?: ({
5
- variant?: "default" | "outline" | "solid" | "subtle" | null | undefined;
5
+ variant?: "default" | "subtle" | "outline" | "solid" | null | undefined;
6
6
  size?: "sm" | "lg" | "md" | null | undefined;
7
7
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
8
8
  export interface KbdProps extends HTMLAttributes<HTMLElement>, VariantProps<typeof kbdVariants> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schemavaults/ui",
3
- "version": "0.33.0",
3
+ "version": "0.34.0",
4
4
  "private": false,
5
5
  "license": "UNLICENSED",
6
6
  "description": "React.js UI components for SchemaVaults frontend applications",