@schemavaults/ui 0.73.0 → 0.74.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/http-method-badge/http-method-badge-variants.d.ts +6 -0
- package/dist/components/ui/http-method-badge/http-method-badge-variants.js +22 -0
- package/dist/components/ui/http-method-badge/http-method-badge-variants.js.map +1 -0
- package/dist/components/ui/http-method-badge/http-method-badge.d.ts +37 -0
- package/dist/components/ui/http-method-badge/http-method-badge.js +95 -0
- package/dist/components/ui/http-method-badge/http-method-badge.js.map +1 -0
- package/dist/components/ui/http-method-badge/index.d.ts +4 -0
- package/dist/components/ui/http-method-badge/index.js +3 -0
- package/dist/components/ui/http-method-badge/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,6 @@
|
|
|
1
|
+
export declare const httpMethodIds: readonly ["GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS", "HEAD", "TRACE", "CONNECT"];
|
|
2
|
+
export type HttpMethod = (typeof httpMethodIds)[number];
|
|
3
|
+
export declare const httpMethodBadgeAppearanceIds: readonly ["solid", "soft", "outline"];
|
|
4
|
+
export type HttpMethodBadgeAppearance = (typeof httpMethodBadgeAppearanceIds)[number];
|
|
5
|
+
export declare const httpMethodBadgeSizeIds: readonly ["sm", "md", "lg"];
|
|
6
|
+
export type HttpMethodBadgeSize = (typeof httpMethodBadgeSizeIds)[number];
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export const httpMethodIds = [
|
|
2
|
+
"GET",
|
|
3
|
+
"POST",
|
|
4
|
+
"PUT",
|
|
5
|
+
"PATCH",
|
|
6
|
+
"DELETE",
|
|
7
|
+
"OPTIONS",
|
|
8
|
+
"HEAD",
|
|
9
|
+
"TRACE",
|
|
10
|
+
"CONNECT",
|
|
11
|
+
];
|
|
12
|
+
export const httpMethodBadgeAppearanceIds = [
|
|
13
|
+
"solid",
|
|
14
|
+
"soft",
|
|
15
|
+
"outline",
|
|
16
|
+
];
|
|
17
|
+
export const httpMethodBadgeSizeIds = [
|
|
18
|
+
"sm",
|
|
19
|
+
"md",
|
|
20
|
+
"lg",
|
|
21
|
+
];
|
|
22
|
+
//# sourceMappingURL=http-method-badge-variants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"http-method-badge-variants.js","sourceRoot":"","sources":["../../../../src/components/ui/http-method-badge/http-method-badge-variants.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,KAAK;IACL,MAAM;IACN,KAAK;IACL,OAAO;IACP,QAAQ;IACR,SAAS;IACT,MAAM;IACN,OAAO;IACP,SAAS;CAC2B,CAAC;AAGvC,MAAM,CAAC,MAAM,4BAA4B,GAAG;IAC1C,OAAO;IACP,MAAM;IACN,SAAS;CAC2B,CAAC;AAIvC,MAAM,CAAC,MAAM,sBAAsB,GAAG;IACpC,IAAI;IACJ,IAAI;IACJ,IAAI;CACgC,CAAC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { type VariantProps } from "class-variance-authority";
|
|
2
|
+
import type { ComponentProps, ReactElement, Ref } from "react";
|
|
3
|
+
import { httpMethodBadgeAppearanceIds, httpMethodBadgeSizeIds, httpMethodIds, type HttpMethod, type HttpMethodBadgeAppearance, type HttpMethodBadgeSize } from "./http-method-badge-variants";
|
|
4
|
+
/**
|
|
5
|
+
* Color palette per HTTP method. Each method maps to its own semantic colour
|
|
6
|
+
* across the three appearance modes (solid / soft / outline). Theme tokens
|
|
7
|
+
* (`primary`, `destructive`, `warning`, `muted`) are preferred where the
|
|
8
|
+
* semantics line up; the remaining methods use Tailwind colour primitives so
|
|
9
|
+
* they still adapt to light/dark mode.
|
|
10
|
+
*/
|
|
11
|
+
declare const httpMethodColors: Record<HttpMethod, Record<HttpMethodBadgeAppearance, string>>;
|
|
12
|
+
declare const httpMethodBadgeVariants: (props?: ({
|
|
13
|
+
size?: "sm" | "lg" | "md" | null | undefined;
|
|
14
|
+
width?: "auto" | "fixed" | null | undefined;
|
|
15
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
16
|
+
type CvaRootProps = VariantProps<typeof httpMethodBadgeVariants>;
|
|
17
|
+
export interface HttpMethodBadgeProps extends Omit<ComponentProps<"span">, "children">, Omit<CvaRootProps, "width"> {
|
|
18
|
+
/** HTTP method to render. Case-insensitive — always rendered upper-case. */
|
|
19
|
+
method: HttpMethod | Lowercase<HttpMethod>;
|
|
20
|
+
/** Colour intensity. `soft` (default) is best for dense lists; `solid` for emphasis. */
|
|
21
|
+
appearance?: HttpMethodBadgeAppearance;
|
|
22
|
+
/**
|
|
23
|
+
* When `fixed`, the badge takes a constant width so methods stack neatly
|
|
24
|
+
* in endpoint lists. Defaults to `auto`.
|
|
25
|
+
*/
|
|
26
|
+
width?: "auto" | "fixed";
|
|
27
|
+
/** Override the label rendered inside the badge. Defaults to the method name. */
|
|
28
|
+
label?: string;
|
|
29
|
+
ref?: Ref<HTMLSpanElement>;
|
|
30
|
+
}
|
|
31
|
+
declare function HttpMethodBadge({ className, method, appearance, size, width, label, ref, ...props }: HttpMethodBadgeProps): ReactElement;
|
|
32
|
+
declare namespace HttpMethodBadge {
|
|
33
|
+
var displayName: string;
|
|
34
|
+
}
|
|
35
|
+
export { HttpMethodBadge, httpMethodBadgeVariants, httpMethodColors, httpMethodIds, httpMethodBadgeAppearanceIds, httpMethodBadgeSizeIds, };
|
|
36
|
+
export type { HttpMethod, HttpMethodBadgeAppearance, HttpMethodBadgeSize };
|
|
37
|
+
export default HttpMethodBadge;
|
|
@@ -0,0 +1,95 @@
|
|
|
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 { httpMethodBadgeAppearanceIds, httpMethodBadgeSizeIds, httpMethodIds, } from "./http-method-badge-variants";
|
|
6
|
+
/**
|
|
7
|
+
* Color palette per HTTP method. Each method maps to its own semantic colour
|
|
8
|
+
* across the three appearance modes (solid / soft / outline). Theme tokens
|
|
9
|
+
* (`primary`, `destructive`, `warning`, `muted`) are preferred where the
|
|
10
|
+
* semantics line up; the remaining methods use Tailwind colour primitives so
|
|
11
|
+
* they still adapt to light/dark mode.
|
|
12
|
+
*/
|
|
13
|
+
const httpMethodColors = {
|
|
14
|
+
GET: {
|
|
15
|
+
solid: "bg-sky-600 text-white border-sky-600 dark:bg-sky-500 dark:border-sky-500",
|
|
16
|
+
soft: "bg-sky-500/15 text-sky-700 border-sky-500/30 dark:text-sky-300 dark:bg-sky-500/20",
|
|
17
|
+
outline: "bg-transparent text-sky-700 border-sky-500/50 dark:text-sky-300 dark:border-sky-400/60",
|
|
18
|
+
},
|
|
19
|
+
POST: {
|
|
20
|
+
solid: "bg-emerald-600 text-white border-emerald-600 dark:bg-emerald-500 dark:border-emerald-500",
|
|
21
|
+
soft: "bg-emerald-500/15 text-emerald-700 border-emerald-500/30 dark:text-emerald-300 dark:bg-emerald-500/20",
|
|
22
|
+
outline: "bg-transparent text-emerald-700 border-emerald-500/50 dark:text-emerald-300 dark:border-emerald-400/60",
|
|
23
|
+
},
|
|
24
|
+
PUT: {
|
|
25
|
+
solid: "bg-warning text-warning-foreground border-warning",
|
|
26
|
+
soft: "bg-warning/15 text-warning-foreground border-warning/40 dark:bg-warning/20",
|
|
27
|
+
outline: "bg-transparent text-warning-foreground border-warning/50 dark:border-warning/70",
|
|
28
|
+
},
|
|
29
|
+
PATCH: {
|
|
30
|
+
solid: "bg-violet-600 text-white border-violet-600 dark:bg-violet-500 dark:border-violet-500",
|
|
31
|
+
soft: "bg-violet-500/15 text-violet-700 border-violet-500/30 dark:text-violet-300 dark:bg-violet-500/20",
|
|
32
|
+
outline: "bg-transparent text-violet-700 border-violet-500/50 dark:text-violet-300 dark:border-violet-400/60",
|
|
33
|
+
},
|
|
34
|
+
DELETE: {
|
|
35
|
+
solid: "bg-destructive text-white border-destructive",
|
|
36
|
+
soft: "bg-destructive/15 text-destructive border-destructive/30",
|
|
37
|
+
outline: "bg-transparent text-destructive border-destructive/50 dark:border-destructive/70",
|
|
38
|
+
},
|
|
39
|
+
OPTIONS: {
|
|
40
|
+
solid: "bg-foreground text-background border-foreground",
|
|
41
|
+
soft: "bg-muted text-muted-foreground border-border",
|
|
42
|
+
outline: "bg-transparent text-muted-foreground border-border",
|
|
43
|
+
},
|
|
44
|
+
HEAD: {
|
|
45
|
+
solid: "bg-slate-600 text-white border-slate-600 dark:bg-slate-500 dark:border-slate-500",
|
|
46
|
+
soft: "bg-slate-500/15 text-slate-700 border-slate-500/30 dark:text-slate-300 dark:bg-slate-500/20",
|
|
47
|
+
outline: "bg-transparent text-slate-700 border-slate-500/50 dark:text-slate-300 dark:border-slate-400/60",
|
|
48
|
+
},
|
|
49
|
+
TRACE: {
|
|
50
|
+
solid: "bg-zinc-600 text-white border-zinc-600 dark:bg-zinc-500 dark:border-zinc-500",
|
|
51
|
+
soft: "bg-zinc-500/15 text-zinc-700 border-zinc-500/30 dark:text-zinc-300 dark:bg-zinc-500/20",
|
|
52
|
+
outline: "bg-transparent text-zinc-700 border-zinc-500/50 dark:text-zinc-300 dark:border-zinc-400/60",
|
|
53
|
+
},
|
|
54
|
+
CONNECT: {
|
|
55
|
+
solid: "bg-stone-600 text-white border-stone-600 dark:bg-stone-500 dark:border-stone-500",
|
|
56
|
+
soft: "bg-stone-500/15 text-stone-700 border-stone-500/30 dark:text-stone-300 dark:bg-stone-500/20",
|
|
57
|
+
outline: "bg-transparent text-stone-700 border-stone-500/50 dark:text-stone-300 dark:border-stone-400/60",
|
|
58
|
+
},
|
|
59
|
+
};
|
|
60
|
+
const httpMethodBadgeVariants = cva("inline-flex items-center justify-center rounded-md border font-mono font-semibold uppercase tracking-wide whitespace-nowrap select-none align-middle transition-colors", {
|
|
61
|
+
variants: {
|
|
62
|
+
size: {
|
|
63
|
+
sm: "h-5 px-1.5 text-[10px] leading-none",
|
|
64
|
+
md: "h-6 px-2 text-xs leading-none",
|
|
65
|
+
lg: "h-7 px-2.5 text-sm leading-none",
|
|
66
|
+
},
|
|
67
|
+
width: {
|
|
68
|
+
auto: "",
|
|
69
|
+
// Fixed width keeps badges vertically aligned in endpoint lists. The
|
|
70
|
+
// widest method we render is "OPTIONS" / "CONNECT" (7 chars).
|
|
71
|
+
fixed: "",
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
compoundVariants: [
|
|
75
|
+
{ size: "sm", width: "fixed", className: "w-[3.75rem]" },
|
|
76
|
+
{ size: "md", width: "fixed", className: "w-[4.25rem]" },
|
|
77
|
+
{ size: "lg", width: "fixed", className: "w-[5rem]" },
|
|
78
|
+
],
|
|
79
|
+
defaultVariants: {
|
|
80
|
+
size: "md",
|
|
81
|
+
width: "auto",
|
|
82
|
+
},
|
|
83
|
+
});
|
|
84
|
+
function normalizeMethod(method) {
|
|
85
|
+
return method.toUpperCase();
|
|
86
|
+
}
|
|
87
|
+
function HttpMethodBadge({ className, method, appearance = "soft", size, width = "auto", label, ref, ...props }) {
|
|
88
|
+
const normalized = normalizeMethod(method);
|
|
89
|
+
const palette = httpMethodColors[normalized];
|
|
90
|
+
return (_jsx("span", { ref: ref, "data-slot": "http-method-badge", "data-method": normalized, "data-appearance": appearance, className: cn(httpMethodBadgeVariants({ size, width }), palette[appearance], className), ...props, children: label ?? normalized }));
|
|
91
|
+
}
|
|
92
|
+
HttpMethodBadge.displayName = "HttpMethodBadge";
|
|
93
|
+
export { HttpMethodBadge, httpMethodBadgeVariants, httpMethodColors, httpMethodIds, httpMethodBadgeAppearanceIds, httpMethodBadgeSizeIds, };
|
|
94
|
+
export default HttpMethodBadge;
|
|
95
|
+
//# sourceMappingURL=http-method-badge.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"http-method-badge.js","sourceRoot":"","sources":["../../../../src/components/ui/http-method-badge/http-method-badge.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { HttpMethodBadge, HttpMethodBadge as default, httpMethodBadgeVariants, httpMethodColors, } from "./http-method-badge";
|
|
2
|
+
export type { HttpMethodBadgeProps } from "./http-method-badge";
|
|
3
|
+
export { httpMethodIds, httpMethodBadgeAppearanceIds, httpMethodBadgeSizeIds, } from "./http-method-badge-variants";
|
|
4
|
+
export type { HttpMethod, HttpMethodBadgeAppearance, HttpMethodBadgeSize, } from "./http-method-badge-variants";
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { HttpMethodBadge, HttpMethodBadge as default, httpMethodBadgeVariants, httpMethodColors, } from "./http-method-badge";
|
|
2
|
+
export { httpMethodIds, httpMethodBadgeAppearanceIds, httpMethodBadgeSizeIds, } from "./http-method-badge-variants";
|
|
3
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/ui/http-method-badge/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EACf,eAAe,IAAI,OAAO,EAC1B,uBAAuB,EACvB,gBAAgB,GACjB,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EACL,aAAa,EACb,4BAA4B,EAC5B,sBAAsB,GACvB,MAAM,8BAA8B,CAAC"}
|
|
@@ -196,5 +196,7 @@ export * from "./time-picker";
|
|
|
196
196
|
export type * from "./time-picker";
|
|
197
197
|
export * from "./mark";
|
|
198
198
|
export type * from "./mark";
|
|
199
|
+
export * from "./http-method-badge";
|
|
200
|
+
export type * from "./http-method-badge";
|
|
199
201
|
export * from "./browser-frame";
|
|
200
202
|
export type * from "./browser-frame";
|
|
@@ -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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"}
|