@schemavaults/ui 0.63.0 → 0.64.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,43 @@
1
+ import { type HTMLAttributes, type ReactElement, type ReactNode, type Ref } from "react";
2
+ import { type VariantProps } from "class-variance-authority";
3
+ export declare const blockquoteVariantIds: readonly ["default", "accent", "primary", "success", "warning", "danger", "muted"];
4
+ export type BlockquoteVariantId = (typeof blockquoteVariantIds)[number];
5
+ export declare const blockquoteEmphasisIds: readonly ["border", "card", "ghost", "pull"];
6
+ export type BlockquoteEmphasisId = (typeof blockquoteEmphasisIds)[number];
7
+ export declare const blockquoteSizeIds: readonly ["sm", "default", "lg"];
8
+ export type BlockquoteSizeId = (typeof blockquoteSizeIds)[number];
9
+ export declare const blockquoteVariants: (props?: ({
10
+ variant?: "default" | "warning" | "primary" | "accent" | "success" | "danger" | "muted" | null | undefined;
11
+ emphasis?: "border" | "ghost" | "card" | "pull" | null | undefined;
12
+ size?: "sm" | "default" | "lg" | null | undefined;
13
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
14
+ export interface BlockquoteProps extends Omit<HTMLAttributes<HTMLQuoteElement>, "cite">, VariantProps<typeof blockquoteVariants> {
15
+ /** Optional author / attribution text rendered below the quote */
16
+ author?: ReactNode;
17
+ /** Optional source / role / work title rendered after the author */
18
+ source?: ReactNode;
19
+ /** Optional URL — passed through as the native HTML `cite` attribute on <blockquote> */
20
+ cite?: string;
21
+ /** Optional icon override. Pass `null` to hide the decorative quote glyph. */
22
+ icon?: ReactNode | null;
23
+ ref?: Ref<HTMLQuoteElement>;
24
+ }
25
+ declare function Blockquote({ className, variant, emphasis, size, author, source, cite, icon, children, ref, ...props }: BlockquoteProps): ReactElement;
26
+ declare namespace Blockquote {
27
+ var displayName: string;
28
+ }
29
+ export interface BlockquoteFooterProps extends HTMLAttributes<HTMLElement> {
30
+ ref?: Ref<HTMLElement>;
31
+ }
32
+ declare function BlockquoteFooter({ className, children, ref, ...props }: BlockquoteFooterProps): ReactElement;
33
+ declare namespace BlockquoteFooter {
34
+ var displayName: string;
35
+ }
36
+ export interface BlockquoteCiteProps extends HTMLAttributes<HTMLElement> {
37
+ ref?: Ref<HTMLElement>;
38
+ }
39
+ declare function BlockquoteCite({ className, children, ref, ...props }: BlockquoteCiteProps): ReactElement;
40
+ declare namespace BlockquoteCite {
41
+ var displayName: string;
42
+ }
43
+ export { Blockquote, BlockquoteFooter, BlockquoteCite };
@@ -0,0 +1,70 @@
1
+ "use client";
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ import { cva } from "class-variance-authority";
4
+ import { Quote } from "lucide-react";
5
+ import { cn } from "../../../lib/utils";
6
+ export const blockquoteVariantIds = [
7
+ "default",
8
+ "accent",
9
+ "primary",
10
+ "success",
11
+ "warning",
12
+ "danger",
13
+ "muted",
14
+ ];
15
+ export const blockquoteEmphasisIds = [
16
+ "border",
17
+ "card",
18
+ "ghost",
19
+ "pull",
20
+ ];
21
+ export const blockquoteSizeIds = [
22
+ "sm",
23
+ "default",
24
+ "lg",
25
+ ];
26
+ export const blockquoteVariants = cva("relative text-foreground/90", {
27
+ variants: {
28
+ variant: {
29
+ default: "[--quote-color:hsl(var(--foreground))] [--quote-tint:hsl(var(--muted))]",
30
+ accent: "[--quote-color:hsl(var(--accent-foreground))] [--quote-tint:hsl(var(--accent))]",
31
+ primary: "[--quote-color:hsl(var(--primary))] [--quote-tint:hsl(var(--primary)/0.08)]",
32
+ success: "[--quote-color:hsl(142_71%_45%)] [--quote-tint:hsl(142_71%_45%/0.08)]",
33
+ warning: "[--quote-color:hsl(var(--warning))] [--quote-tint:hsl(var(--warning)/0.10)]",
34
+ danger: "[--quote-color:hsl(var(--destructive))] [--quote-tint:hsl(var(--destructive)/0.10)]",
35
+ muted: "[--quote-color:hsl(var(--muted-foreground))] [--quote-tint:hsl(var(--muted))]",
36
+ },
37
+ emphasis: {
38
+ border: "border-l-4 border-l-[var(--quote-color)] pl-4 py-1 italic",
39
+ card: "rounded-md border border-[var(--quote-color)]/25 bg-[var(--quote-tint)] p-4 italic",
40
+ ghost: "px-4 italic",
41
+ pull: "border-y border-[var(--quote-color)]/25 px-2 py-4 text-center font-serif not-italic",
42
+ },
43
+ size: {
44
+ sm: "text-sm leading-relaxed",
45
+ default: "text-base leading-relaxed",
46
+ lg: "text-xl leading-relaxed",
47
+ },
48
+ },
49
+ defaultVariants: {
50
+ variant: "default",
51
+ emphasis: "border",
52
+ size: "default",
53
+ },
54
+ });
55
+ function Blockquote({ className, variant = "default", emphasis = "border", size = "default", author, source, cite, icon, children, ref, ...props }) {
56
+ const resolvedIcon = icon === null ? null : icon ?? _jsx(Quote, { "aria-hidden": true, className: "size-4" });
57
+ const hasAttribution = author !== undefined || source !== undefined;
58
+ return (_jsxs("blockquote", { ref: ref, cite: cite, "data-slot": "blockquote", "data-variant": variant, "data-emphasis": emphasis, className: cn(blockquoteVariants({ variant, emphasis, size }), className), ...props, children: [resolvedIcon !== null && (_jsx("span", { "aria-hidden": true, "data-slot": "blockquote-icon", className: "mr-1.5 inline-flex items-center align-middle text-[var(--quote-color)]", children: resolvedIcon })), _jsx("span", { "data-slot": "blockquote-content", children: children }), hasAttribution && (_jsxs(BlockquoteFooter, { children: [author !== undefined && (_jsx("span", { "data-slot": "blockquote-author", className: "font-medium text-foreground", children: author })), author !== undefined && source !== undefined && (_jsx("span", { "aria-hidden": true, className: "text-muted-foreground/60", children: "\u00B7" })), source !== undefined && (_jsx(BlockquoteCite, { children: source }))] }))] }));
59
+ }
60
+ Blockquote.displayName = "Blockquote";
61
+ function BlockquoteFooter({ className, children, ref, ...props }) {
62
+ return (_jsx("footer", { ref: ref, "data-slot": "blockquote-footer", className: cn("mt-3 flex flex-wrap items-baseline gap-x-2 gap-y-1 text-sm not-italic text-muted-foreground", "before:mr-1 before:content-['—']", className), ...props, children: children }));
63
+ }
64
+ BlockquoteFooter.displayName = "BlockquoteFooter";
65
+ function BlockquoteCite({ className, children, ref, ...props }) {
66
+ return (_jsx("cite", { ref: ref, "data-slot": "blockquote-cite", className: cn("text-muted-foreground [font-style:normal]", className), ...props, children: children }));
67
+ }
68
+ BlockquoteCite.displayName = "BlockquoteCite";
69
+ export { Blockquote, BlockquoteFooter, BlockquoteCite };
70
+ //# sourceMappingURL=blockquote.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"blockquote.js","sourceRoot":"","sources":["../../../../src/components/ui/blockquote/blockquote.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export * from "./blockquote";
2
+ export type * from "./blockquote";
@@ -0,0 +1,2 @@
1
+ export * from "./blockquote";
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/ui/blockquote/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC"}
@@ -2,7 +2,7 @@ import { type VariantProps } from "class-variance-authority";
2
2
  import { type ComponentProps, type MouseEvent, type ReactNode } from "react";
3
3
  import { chipSizeIds, chipVariantIds, type ChipSize, type ChipVariant } from "./chip-variants";
4
4
  declare const chipVariants: (props?: ({
5
- variant?: "default" | "warning" | "destructive" | "primary" | "outline" | "secondary" | "success" | null | undefined;
5
+ variant?: "default" | "warning" | "destructive" | "primary" | "outline" | "success" | "secondary" | null | undefined;
6
6
  size?: "sm" | "default" | "lg" | null | undefined;
7
7
  disabled?: boolean | null | undefined;
8
8
  } & import("class-variance-authority/types").ClassProp) | undefined) => string;
@@ -8,6 +8,8 @@ export * from "./alert";
8
8
  export type * from "./alert";
9
9
  export * from "./callout";
10
10
  export type * from "./callout";
11
+ export * from "./blockquote";
12
+ export type * from "./blockquote";
11
13
  export * from "./badge";
12
14
  export type * from "./badge";
13
15
  export * from "./background-blur";
@@ -3,6 +3,7 @@ export * from "./agent-chat-messages";
3
3
  export * from "./accordion";
4
4
  export * from "./alert";
5
5
  export * from "./callout";
6
+ export * from "./blockquote";
6
7
  export * from "./badge";
7
8
  export * from "./background-blur";
8
9
  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,uBAAuB,CAAC;AAGtC,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,gBAAgB,CAAC;AAG/B,cAAc,WAAW,CAAC;AAG1B,cAAc,WAAW,CAAC;AAG1B,cAAc,YAAY,CAAC;AAG3B,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,mBAAmB,CAAC;AAGlC,cAAc,SAAS,CAAC;AAGxB,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,eAAe,CAAC;AAG9B,cAAc,qBAAqB,CAAC;AAGpC,cAAc,WAAW,CAAC;AAG1B,cAAc,UAAU,CAAC;AAGzB,cAAc,QAAQ,CAAC;AAGvB,cAAc,cAAc,CAAC;AAG7B,cAAc,iBAAiB,CAAC;AAGhC,cAAc,aAAa,CAAC;AAG5B,cAAc,gBAAgB,CAAC;AAG/B,cAAc,gBAAgB,CAAC;AAG/B,cAAc,oBAAoB,CAAC;AAGnC,cAAc,aAAa,CAAC;AAG5B,cAAc,aAAa,CAAC;AAG5B,cAAc,qBAAqB,CAAC;AAGpC,cAAc,kBAAkB,CAAC;AAGjC,cAAc,aAAa,CAAC;AAG5B,cAAc,YAAY,CAAC;AAG3B,cAAc,aAAa,CAAC;AAG5B,cAAc,0BAA0B,CAAC;AAGzC,cAAc,qBAAqB,CAAC;AAGpC,cAAc,YAAY,CAAC;AAG3B,cAAc,eAAe,CAAC;AAG9B,cAAc,qBAAqB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/ui/index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schemavaults/ui",
3
- "version": "0.63.0",
3
+ "version": "0.64.0",
4
4
  "private": false,
5
5
  "license": "UNLICENSED",
6
6
  "description": "React.js UI components for SchemaVaults frontend applications",