@popgrids/ui 0.0.36 → 0.0.38
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/index.cjs +84 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +85 -4
- package/dist/index.js.map +1 -1
- package/dist/input-status.cjs +97 -0
- package/dist/input-status.cjs.map +1 -0
- package/dist/input-status.d.cts +30 -0
- package/dist/input-status.d.ts +30 -0
- package/dist/input-status.js +95 -0
- package/dist/input-status.js.map +1 -0
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/tag.cjs +2 -2
- package/dist/tag.cjs.map +1 -1
- package/dist/tag.js +2 -2
- package/dist/tag.js.map +1 -1
- package/package.json +11 -1
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var button = require('@base-ui/react/button');
|
|
4
|
+
var icons = require('@untitledui/icons');
|
|
5
|
+
var classVarianceAuthority = require('class-variance-authority');
|
|
6
|
+
var clsx = require('clsx');
|
|
7
|
+
var tailwindMerge = require('tailwind-merge');
|
|
8
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
9
|
+
|
|
10
|
+
function cn(...inputs) {
|
|
11
|
+
return tailwindMerge.twMerge(clsx.clsx(inputs));
|
|
12
|
+
}
|
|
13
|
+
var inputStatusVariants = classVarianceAuthority.cva(
|
|
14
|
+
"inline-flex h-10 min-w-[54px] cursor-pointer items-stretch rounded-sm border-0 bg-transparent p-0 outline-none transition-colors focus-visible:ring-[3px] focus-visible:ring-ring/60 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0",
|
|
15
|
+
{
|
|
16
|
+
variants: {
|
|
17
|
+
theme: {
|
|
18
|
+
approve: "text-success-700 dark:text-success-200",
|
|
19
|
+
publish: "text-success-700 dark:text-success-200",
|
|
20
|
+
feedback: "text-success-700 dark:text-success-200",
|
|
21
|
+
flagged: "text-warning-700 dark:text-warning-200",
|
|
22
|
+
review: "text-warning-700 dark:text-warning-200",
|
|
23
|
+
delete: "text-error-600 dark:text-error-300",
|
|
24
|
+
blocked: "text-error-600 dark:text-error-300",
|
|
25
|
+
reject: "text-error-600 dark:text-error-300"
|
|
26
|
+
},
|
|
27
|
+
variant: {
|
|
28
|
+
community: "",
|
|
29
|
+
content: ""
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
defaultVariants: {
|
|
33
|
+
theme: "approve",
|
|
34
|
+
variant: "community"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
);
|
|
38
|
+
var inputStatusInnerVariants = classVarianceAuthority.cva(
|
|
39
|
+
"flex flex-1 items-center gap-0.5 overflow-hidden rounded-sm py-2.5 pr-1.5 pl-[10px]",
|
|
40
|
+
{
|
|
41
|
+
variants: {
|
|
42
|
+
theme: {
|
|
43
|
+
approve: "bg-success-100 dark:bg-success-200/16",
|
|
44
|
+
publish: "bg-success-100 dark:bg-success-200/16",
|
|
45
|
+
feedback: "bg-success-100 dark:bg-success-200/16",
|
|
46
|
+
flagged: "bg-warning-100 dark:bg-warning-200/16",
|
|
47
|
+
review: "bg-warning-100 dark:bg-warning-200/16",
|
|
48
|
+
delete: "bg-error-100 dark:bg-error-300/16",
|
|
49
|
+
blocked: "bg-error-100 dark:bg-error-300/16",
|
|
50
|
+
reject: "bg-error-100 dark:bg-error-300/16"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
defaultVariants: {
|
|
54
|
+
theme: "approve"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
);
|
|
58
|
+
var STATUS_ICON = {
|
|
59
|
+
flagged: icons.Hourglass03,
|
|
60
|
+
review: icons.Hourglass03,
|
|
61
|
+
approve: icons.ThumbsUp,
|
|
62
|
+
publish: icons.CheckCircle,
|
|
63
|
+
feedback: icons.MessageAlertSquare,
|
|
64
|
+
delete: icons.ThumbsDown,
|
|
65
|
+
blocked: icons.SlashCircle01,
|
|
66
|
+
reject: icons.ThumbsDown
|
|
67
|
+
};
|
|
68
|
+
function InputStatus({
|
|
69
|
+
className,
|
|
70
|
+
theme = "approve",
|
|
71
|
+
variant = "community",
|
|
72
|
+
open = false,
|
|
73
|
+
"aria-expanded": ariaExpanded,
|
|
74
|
+
type = "button",
|
|
75
|
+
...props
|
|
76
|
+
}) {
|
|
77
|
+
const Icon = STATUS_ICON[theme];
|
|
78
|
+
const expanded = ariaExpanded !== void 0 ? ariaExpanded : open;
|
|
79
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
80
|
+
button.Button,
|
|
81
|
+
{
|
|
82
|
+
"data-slot": "input-status",
|
|
83
|
+
type,
|
|
84
|
+
"aria-expanded": expanded,
|
|
85
|
+
className: cn(inputStatusVariants({ theme, variant }), className),
|
|
86
|
+
...props,
|
|
87
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("span", { className: inputStatusInnerVariants({ theme }), children: [
|
|
88
|
+
/* @__PURE__ */ jsxRuntime.jsx(Icon, { className: "size-5", "aria-hidden": true }),
|
|
89
|
+
open ? /* @__PURE__ */ jsxRuntime.jsx(icons.ChevronUp, { className: "size-4", "aria-hidden": true }) : /* @__PURE__ */ jsxRuntime.jsx(icons.ChevronDown, { className: "size-4", "aria-hidden": true })
|
|
90
|
+
] })
|
|
91
|
+
}
|
|
92
|
+
);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
exports.InputStatus = InputStatus;
|
|
96
|
+
//# sourceMappingURL=input-status.cjs.map
|
|
97
|
+
//# sourceMappingURL=input-status.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/lib/utils.ts","../src/components/input-status/input-status.tsx"],"names":["twMerge","clsx","cva","Hourglass03","ThumbsUp","CheckCircle","MessageAlertSquare","ThumbsDown","SlashCircle01","jsx","ButtonPrimitive","ChevronUp","ChevronDown"],"mappings":";;;;;;;;;AAGO,SAAS,MAAM,MAAA,EAAsB;AAC1C,EAAA,OAAOA,qBAAA,CAAQC,SAAA,CAAK,MAAM,CAAC,CAAA;AAC7B;ACcA,IAAM,mBAAA,GAAsBC,0BAAA;AAAA,EAC1B,oRAAA;AAAA,EACA;AAAA,IACE,QAAA,EAAU;AAAA,MACR,KAAA,EAAO;AAAA,QACL,OAAA,EAAS,wCAAA;AAAA,QACT,OAAA,EAAS,wCAAA;AAAA,QACT,QAAA,EAAU,wCAAA;AAAA,QACV,OAAA,EAAS,wCAAA;AAAA,QACT,MAAA,EAAQ,wCAAA;AAAA,QACR,MAAA,EAAQ,oCAAA;AAAA,QACR,OAAA,EAAS,oCAAA;AAAA,QACT,MAAA,EAAQ;AAAA,OACV;AAAA,MACA,OAAA,EAAS;AAAA,QACP,SAAA,EAAW,EAAA;AAAA,QACX,OAAA,EAAS;AAAA;AACX,KACF;AAAA,IACA,eAAA,EAAiB;AAAA,MACf,KAAA,EAAO,SAAA;AAAA,MACP,OAAA,EAAS;AAAA;AACX;AAEJ,CAAA;AAEA,IAAM,wBAAA,GAA2BA,0BAAA;AAAA,EAC/B,qFAAA;AAAA,EACA;AAAA,IACE,QAAA,EAAU;AAAA,MACR,KAAA,EAAO;AAAA,QACL,OAAA,EAAS,uCAAA;AAAA,QACT,OAAA,EAAS,uCAAA;AAAA,QACT,QAAA,EAAU,uCAAA;AAAA,QACV,OAAA,EAAS,uCAAA;AAAA,QACT,MAAA,EAAQ,uCAAA;AAAA,QACR,MAAA,EAAQ,mCAAA;AAAA,QACR,OAAA,EAAS,mCAAA;AAAA,QACT,MAAA,EAAQ;AAAA;AACV,KACF;AAAA,IACA,eAAA,EAAiB;AAAA,MACf,KAAA,EAAO;AAAA;AACT;AAEJ,CAAA;AAEA,IAAM,WAAA,GAAqF;AAAA,EACzF,OAAA,EAASC,iBAAA;AAAA,EACT,MAAA,EAAQA,iBAAA;AAAA,EACR,OAAA,EAASC,cAAA;AAAA,EACT,OAAA,EAASC,iBAAA;AAAA,EACT,QAAA,EAAUC,wBAAA;AAAA,EACV,MAAA,EAAQC,gBAAA;AAAA,EACR,OAAA,EAASC,mBAAA;AAAA,EACT,MAAA,EAAQD;AACV,CAAA;AAEO,SAAS,WAAA,CAAY;AAAA,EAC1B,SAAA;AAAA,EACA,KAAA,GAAQ,SAAA;AAAA,EACR,OAAA,GAAU,WAAA;AAAA,EACV,IAAA,GAAO,KAAA;AAAA,EACP,eAAA,EAAiB,YAAA;AAAA,EACjB,IAAA,GAAO,QAAA;AAAA,EACP,GAAG;AACL,CAAA,EAAqB;AACnB,EAAA,MAAM,IAAA,GAAO,YAAY,KAAK,CAAA;AAC9B,EAAA,MAAM,QAAA,GAAW,YAAA,KAAiB,MAAA,GAAY,YAAA,GAAe,IAAA;AAE7D,EAAA,uBACEE,cAAA;AAAA,IAACC,aAAA;AAAA,IAAA;AAAA,MACC,WAAA,EAAU,cAAA;AAAA,MACV,IAAA;AAAA,MACA,eAAA,EAAe,QAAA;AAAA,MACf,SAAA,EAAW,GAAG,mBAAA,CAAoB,EAAE,OAAO,OAAA,EAAS,GAAG,SAAS,CAAA;AAAA,MAC/D,GAAG,KAAA;AAAA,MAEJ,0CAAC,MAAA,EAAA,EAAK,SAAA,EAAW,yBAAyB,EAAE,KAAA,EAAO,CAAA,EACjD,QAAA,EAAA;AAAA,wBAAAD,cAAA,CAAC,IAAA,EAAA,EAAK,SAAA,EAAU,QAAA,EAAS,aAAA,EAAW,IAAA,EAAC,CAAA;AAAA,QACpC,IAAA,mBAAOA,cAAA,CAACE,eAAA,EAAA,EAAU,SAAA,EAAU,QAAA,EAAS,aAAA,EAAW,IAAA,EAAC,CAAA,mBAAKF,cAAA,CAACG,iBAAA,EAAA,EAAY,SAAA,EAAU,QAAA,EAAS,eAAW,IAAA,EAAC;AAAA,OAAA,EACrG;AAAA;AAAA,GACF;AAEJ","file":"input-status.cjs","sourcesContent":["import { clsx, type ClassValue } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n\nexport function cn(...inputs: ClassValue[]) {\n return twMerge(clsx(inputs));\n}\n","\"use client\";\n\nimport { Button as ButtonPrimitive } from \"@base-ui/react/button\";\nimport {\n CheckCircle,\n ChevronDown,\n ChevronUp,\n Hourglass03,\n MessageAlertSquare,\n SlashCircle01,\n ThumbsDown,\n ThumbsUp,\n} from \"@untitledui/icons\";\nimport { cva } from \"class-variance-authority\";\nimport type * as React from \"react\";\n\nimport { cn } from \"../../lib/utils\";\nimport type { InputStatusProps, InputStatusTheme } from \"./types\";\n\nconst inputStatusVariants = cva(\n \"inline-flex h-10 min-w-[54px] cursor-pointer items-stretch rounded-sm border-0 bg-transparent p-0 outline-none transition-colors focus-visible:ring-[3px] focus-visible:ring-ring/60 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0\",\n {\n variants: {\n theme: {\n approve: \"text-success-700 dark:text-success-200\",\n publish: \"text-success-700 dark:text-success-200\",\n feedback: \"text-success-700 dark:text-success-200\",\n flagged: \"text-warning-700 dark:text-warning-200\",\n review: \"text-warning-700 dark:text-warning-200\",\n delete: \"text-error-600 dark:text-error-300\",\n blocked: \"text-error-600 dark:text-error-300\",\n reject: \"text-error-600 dark:text-error-300\",\n },\n variant: {\n community: \"\",\n content: \"\",\n },\n },\n defaultVariants: {\n theme: \"approve\",\n variant: \"community\",\n },\n },\n);\n\nconst inputStatusInnerVariants = cva(\n \"flex flex-1 items-center gap-0.5 overflow-hidden rounded-sm py-2.5 pr-1.5 pl-[10px]\",\n {\n variants: {\n theme: {\n approve: \"bg-success-100 dark:bg-success-200/16\",\n publish: \"bg-success-100 dark:bg-success-200/16\",\n feedback: \"bg-success-100 dark:bg-success-200/16\",\n flagged: \"bg-warning-100 dark:bg-warning-200/16\",\n review: \"bg-warning-100 dark:bg-warning-200/16\",\n delete: \"bg-error-100 dark:bg-error-300/16\",\n blocked: \"bg-error-100 dark:bg-error-300/16\",\n reject: \"bg-error-100 dark:bg-error-300/16\",\n },\n },\n defaultVariants: {\n theme: \"approve\",\n },\n },\n);\n\nconst STATUS_ICON: Record<InputStatusTheme, React.ComponentType<{ className?: string }>> = {\n flagged: Hourglass03,\n review: Hourglass03,\n approve: ThumbsUp,\n publish: CheckCircle,\n feedback: MessageAlertSquare,\n delete: ThumbsDown,\n blocked: SlashCircle01,\n reject: ThumbsDown,\n};\n\nexport function InputStatus({\n className,\n theme = \"approve\",\n variant = \"community\",\n open = false,\n \"aria-expanded\": ariaExpanded,\n type = \"button\",\n ...props\n}: InputStatusProps) {\n const Icon = STATUS_ICON[theme];\n const expanded = ariaExpanded !== undefined ? ariaExpanded : open;\n\n return (\n <ButtonPrimitive\n data-slot=\"input-status\"\n type={type}\n aria-expanded={expanded}\n className={cn(inputStatusVariants({ theme, variant }), className)}\n {...props}\n >\n <span className={inputStatusInnerVariants({ theme })}>\n <Icon className=\"size-5\" aria-hidden />\n {open ? <ChevronUp className=\"size-4\" aria-hidden /> : <ChevronDown className=\"size-4\" aria-hidden />}\n </span>\n </ButtonPrimitive>\n );\n}\n"]}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { Button } from '@base-ui/react/button';
|
|
3
|
+
|
|
4
|
+
type BaseUIButtonProps = Omit<Button.Props, "className" | "children">;
|
|
5
|
+
|
|
6
|
+
type InputStatusTheme =
|
|
7
|
+
| "approve"
|
|
8
|
+
| "publish"
|
|
9
|
+
| "feedback"
|
|
10
|
+
| "flagged"
|
|
11
|
+
| "review"
|
|
12
|
+
| "delete"
|
|
13
|
+
| "blocked"
|
|
14
|
+
| "reject";
|
|
15
|
+
|
|
16
|
+
type InputStatusVariant = "community" | "content";
|
|
17
|
+
|
|
18
|
+
interface InputStatusProps extends BaseUIButtonProps {
|
|
19
|
+
/** Semantic status; drives colors and leading icon. */
|
|
20
|
+
theme?: InputStatusTheme;
|
|
21
|
+
/** Figma variant: community vs content contexts. */
|
|
22
|
+
variant?: InputStatusVariant;
|
|
23
|
+
/** When true, shows an upward chevron (e.g. expanded). */
|
|
24
|
+
open?: boolean;
|
|
25
|
+
className?: string;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
declare function InputStatus({ className, theme, variant, open, "aria-expanded": ariaExpanded, type, ...props }: InputStatusProps): react_jsx_runtime.JSX.Element;
|
|
29
|
+
|
|
30
|
+
export { InputStatus, type InputStatusProps, type InputStatusTheme, type InputStatusVariant };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { Button } from '@base-ui/react/button';
|
|
3
|
+
|
|
4
|
+
type BaseUIButtonProps = Omit<Button.Props, "className" | "children">;
|
|
5
|
+
|
|
6
|
+
type InputStatusTheme =
|
|
7
|
+
| "approve"
|
|
8
|
+
| "publish"
|
|
9
|
+
| "feedback"
|
|
10
|
+
| "flagged"
|
|
11
|
+
| "review"
|
|
12
|
+
| "delete"
|
|
13
|
+
| "blocked"
|
|
14
|
+
| "reject";
|
|
15
|
+
|
|
16
|
+
type InputStatusVariant = "community" | "content";
|
|
17
|
+
|
|
18
|
+
interface InputStatusProps extends BaseUIButtonProps {
|
|
19
|
+
/** Semantic status; drives colors and leading icon. */
|
|
20
|
+
theme?: InputStatusTheme;
|
|
21
|
+
/** Figma variant: community vs content contexts. */
|
|
22
|
+
variant?: InputStatusVariant;
|
|
23
|
+
/** When true, shows an upward chevron (e.g. expanded). */
|
|
24
|
+
open?: boolean;
|
|
25
|
+
className?: string;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
declare function InputStatus({ className, theme, variant, open, "aria-expanded": ariaExpanded, type, ...props }: InputStatusProps): react_jsx_runtime.JSX.Element;
|
|
29
|
+
|
|
30
|
+
export { InputStatus, type InputStatusProps, type InputStatusTheme, type InputStatusVariant };
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { Button } from '@base-ui/react/button';
|
|
2
|
+
import { ThumbsDown, SlashCircle01, MessageAlertSquare, CheckCircle, ThumbsUp, Hourglass03, ChevronUp, ChevronDown } from '@untitledui/icons';
|
|
3
|
+
import { cva } from 'class-variance-authority';
|
|
4
|
+
import { clsx } from 'clsx';
|
|
5
|
+
import { twMerge } from 'tailwind-merge';
|
|
6
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
7
|
+
|
|
8
|
+
function cn(...inputs) {
|
|
9
|
+
return twMerge(clsx(inputs));
|
|
10
|
+
}
|
|
11
|
+
var inputStatusVariants = cva(
|
|
12
|
+
"inline-flex h-10 min-w-[54px] cursor-pointer items-stretch rounded-sm border-0 bg-transparent p-0 outline-none transition-colors focus-visible:ring-[3px] focus-visible:ring-ring/60 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0",
|
|
13
|
+
{
|
|
14
|
+
variants: {
|
|
15
|
+
theme: {
|
|
16
|
+
approve: "text-success-700 dark:text-success-200",
|
|
17
|
+
publish: "text-success-700 dark:text-success-200",
|
|
18
|
+
feedback: "text-success-700 dark:text-success-200",
|
|
19
|
+
flagged: "text-warning-700 dark:text-warning-200",
|
|
20
|
+
review: "text-warning-700 dark:text-warning-200",
|
|
21
|
+
delete: "text-error-600 dark:text-error-300",
|
|
22
|
+
blocked: "text-error-600 dark:text-error-300",
|
|
23
|
+
reject: "text-error-600 dark:text-error-300"
|
|
24
|
+
},
|
|
25
|
+
variant: {
|
|
26
|
+
community: "",
|
|
27
|
+
content: ""
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
defaultVariants: {
|
|
31
|
+
theme: "approve",
|
|
32
|
+
variant: "community"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
);
|
|
36
|
+
var inputStatusInnerVariants = cva(
|
|
37
|
+
"flex flex-1 items-center gap-0.5 overflow-hidden rounded-sm py-2.5 pr-1.5 pl-[10px]",
|
|
38
|
+
{
|
|
39
|
+
variants: {
|
|
40
|
+
theme: {
|
|
41
|
+
approve: "bg-success-100 dark:bg-success-200/16",
|
|
42
|
+
publish: "bg-success-100 dark:bg-success-200/16",
|
|
43
|
+
feedback: "bg-success-100 dark:bg-success-200/16",
|
|
44
|
+
flagged: "bg-warning-100 dark:bg-warning-200/16",
|
|
45
|
+
review: "bg-warning-100 dark:bg-warning-200/16",
|
|
46
|
+
delete: "bg-error-100 dark:bg-error-300/16",
|
|
47
|
+
blocked: "bg-error-100 dark:bg-error-300/16",
|
|
48
|
+
reject: "bg-error-100 dark:bg-error-300/16"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
defaultVariants: {
|
|
52
|
+
theme: "approve"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
);
|
|
56
|
+
var STATUS_ICON = {
|
|
57
|
+
flagged: Hourglass03,
|
|
58
|
+
review: Hourglass03,
|
|
59
|
+
approve: ThumbsUp,
|
|
60
|
+
publish: CheckCircle,
|
|
61
|
+
feedback: MessageAlertSquare,
|
|
62
|
+
delete: ThumbsDown,
|
|
63
|
+
blocked: SlashCircle01,
|
|
64
|
+
reject: ThumbsDown
|
|
65
|
+
};
|
|
66
|
+
function InputStatus({
|
|
67
|
+
className,
|
|
68
|
+
theme = "approve",
|
|
69
|
+
variant = "community",
|
|
70
|
+
open = false,
|
|
71
|
+
"aria-expanded": ariaExpanded,
|
|
72
|
+
type = "button",
|
|
73
|
+
...props
|
|
74
|
+
}) {
|
|
75
|
+
const Icon = STATUS_ICON[theme];
|
|
76
|
+
const expanded = ariaExpanded !== void 0 ? ariaExpanded : open;
|
|
77
|
+
return /* @__PURE__ */ jsx(
|
|
78
|
+
Button,
|
|
79
|
+
{
|
|
80
|
+
"data-slot": "input-status",
|
|
81
|
+
type,
|
|
82
|
+
"aria-expanded": expanded,
|
|
83
|
+
className: cn(inputStatusVariants({ theme, variant }), className),
|
|
84
|
+
...props,
|
|
85
|
+
children: /* @__PURE__ */ jsxs("span", { className: inputStatusInnerVariants({ theme }), children: [
|
|
86
|
+
/* @__PURE__ */ jsx(Icon, { className: "size-5", "aria-hidden": true }),
|
|
87
|
+
open ? /* @__PURE__ */ jsx(ChevronUp, { className: "size-4", "aria-hidden": true }) : /* @__PURE__ */ jsx(ChevronDown, { className: "size-4", "aria-hidden": true })
|
|
88
|
+
] })
|
|
89
|
+
}
|
|
90
|
+
);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export { InputStatus };
|
|
94
|
+
//# sourceMappingURL=input-status.js.map
|
|
95
|
+
//# sourceMappingURL=input-status.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/lib/utils.ts","../src/components/input-status/input-status.tsx"],"names":["ButtonPrimitive"],"mappings":";;;;;;;AAGO,SAAS,MAAM,MAAA,EAAsB;AAC1C,EAAA,OAAO,OAAA,CAAQ,IAAA,CAAK,MAAM,CAAC,CAAA;AAC7B;ACcA,IAAM,mBAAA,GAAsB,GAAA;AAAA,EAC1B,oRAAA;AAAA,EACA;AAAA,IACE,QAAA,EAAU;AAAA,MACR,KAAA,EAAO;AAAA,QACL,OAAA,EAAS,wCAAA;AAAA,QACT,OAAA,EAAS,wCAAA;AAAA,QACT,QAAA,EAAU,wCAAA;AAAA,QACV,OAAA,EAAS,wCAAA;AAAA,QACT,MAAA,EAAQ,wCAAA;AAAA,QACR,MAAA,EAAQ,oCAAA;AAAA,QACR,OAAA,EAAS,oCAAA;AAAA,QACT,MAAA,EAAQ;AAAA,OACV;AAAA,MACA,OAAA,EAAS;AAAA,QACP,SAAA,EAAW,EAAA;AAAA,QACX,OAAA,EAAS;AAAA;AACX,KACF;AAAA,IACA,eAAA,EAAiB;AAAA,MACf,KAAA,EAAO,SAAA;AAAA,MACP,OAAA,EAAS;AAAA;AACX;AAEJ,CAAA;AAEA,IAAM,wBAAA,GAA2B,GAAA;AAAA,EAC/B,qFAAA;AAAA,EACA;AAAA,IACE,QAAA,EAAU;AAAA,MACR,KAAA,EAAO;AAAA,QACL,OAAA,EAAS,uCAAA;AAAA,QACT,OAAA,EAAS,uCAAA;AAAA,QACT,QAAA,EAAU,uCAAA;AAAA,QACV,OAAA,EAAS,uCAAA;AAAA,QACT,MAAA,EAAQ,uCAAA;AAAA,QACR,MAAA,EAAQ,mCAAA;AAAA,QACR,OAAA,EAAS,mCAAA;AAAA,QACT,MAAA,EAAQ;AAAA;AACV,KACF;AAAA,IACA,eAAA,EAAiB;AAAA,MACf,KAAA,EAAO;AAAA;AACT;AAEJ,CAAA;AAEA,IAAM,WAAA,GAAqF;AAAA,EACzF,OAAA,EAAS,WAAA;AAAA,EACT,MAAA,EAAQ,WAAA;AAAA,EACR,OAAA,EAAS,QAAA;AAAA,EACT,OAAA,EAAS,WAAA;AAAA,EACT,QAAA,EAAU,kBAAA;AAAA,EACV,MAAA,EAAQ,UAAA;AAAA,EACR,OAAA,EAAS,aAAA;AAAA,EACT,MAAA,EAAQ;AACV,CAAA;AAEO,SAAS,WAAA,CAAY;AAAA,EAC1B,SAAA;AAAA,EACA,KAAA,GAAQ,SAAA;AAAA,EACR,OAAA,GAAU,WAAA;AAAA,EACV,IAAA,GAAO,KAAA;AAAA,EACP,eAAA,EAAiB,YAAA;AAAA,EACjB,IAAA,GAAO,QAAA;AAAA,EACP,GAAG;AACL,CAAA,EAAqB;AACnB,EAAA,MAAM,IAAA,GAAO,YAAY,KAAK,CAAA;AAC9B,EAAA,MAAM,QAAA,GAAW,YAAA,KAAiB,MAAA,GAAY,YAAA,GAAe,IAAA;AAE7D,EAAA,uBACE,GAAA;AAAA,IAACA,MAAA;AAAA,IAAA;AAAA,MACC,WAAA,EAAU,cAAA;AAAA,MACV,IAAA;AAAA,MACA,eAAA,EAAe,QAAA;AAAA,MACf,SAAA,EAAW,GAAG,mBAAA,CAAoB,EAAE,OAAO,OAAA,EAAS,GAAG,SAAS,CAAA;AAAA,MAC/D,GAAG,KAAA;AAAA,MAEJ,+BAAC,MAAA,EAAA,EAAK,SAAA,EAAW,yBAAyB,EAAE,KAAA,EAAO,CAAA,EACjD,QAAA,EAAA;AAAA,wBAAA,GAAA,CAAC,IAAA,EAAA,EAAK,SAAA,EAAU,QAAA,EAAS,aAAA,EAAW,IAAA,EAAC,CAAA;AAAA,QACpC,IAAA,mBAAO,GAAA,CAAC,SAAA,EAAA,EAAU,SAAA,EAAU,QAAA,EAAS,aAAA,EAAW,IAAA,EAAC,CAAA,mBAAK,GAAA,CAAC,WAAA,EAAA,EAAY,SAAA,EAAU,QAAA,EAAS,eAAW,IAAA,EAAC;AAAA,OAAA,EACrG;AAAA;AAAA,GACF;AAEJ","file":"input-status.js","sourcesContent":["import { clsx, type ClassValue } from \"clsx\";\nimport { twMerge } from \"tailwind-merge\";\n\nexport function cn(...inputs: ClassValue[]) {\n return twMerge(clsx(inputs));\n}\n","\"use client\";\n\nimport { Button as ButtonPrimitive } from \"@base-ui/react/button\";\nimport {\n CheckCircle,\n ChevronDown,\n ChevronUp,\n Hourglass03,\n MessageAlertSquare,\n SlashCircle01,\n ThumbsDown,\n ThumbsUp,\n} from \"@untitledui/icons\";\nimport { cva } from \"class-variance-authority\";\nimport type * as React from \"react\";\n\nimport { cn } from \"../../lib/utils\";\nimport type { InputStatusProps, InputStatusTheme } from \"./types\";\n\nconst inputStatusVariants = cva(\n \"inline-flex h-10 min-w-[54px] cursor-pointer items-stretch rounded-sm border-0 bg-transparent p-0 outline-none transition-colors focus-visible:ring-[3px] focus-visible:ring-ring/60 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0\",\n {\n variants: {\n theme: {\n approve: \"text-success-700 dark:text-success-200\",\n publish: \"text-success-700 dark:text-success-200\",\n feedback: \"text-success-700 dark:text-success-200\",\n flagged: \"text-warning-700 dark:text-warning-200\",\n review: \"text-warning-700 dark:text-warning-200\",\n delete: \"text-error-600 dark:text-error-300\",\n blocked: \"text-error-600 dark:text-error-300\",\n reject: \"text-error-600 dark:text-error-300\",\n },\n variant: {\n community: \"\",\n content: \"\",\n },\n },\n defaultVariants: {\n theme: \"approve\",\n variant: \"community\",\n },\n },\n);\n\nconst inputStatusInnerVariants = cva(\n \"flex flex-1 items-center gap-0.5 overflow-hidden rounded-sm py-2.5 pr-1.5 pl-[10px]\",\n {\n variants: {\n theme: {\n approve: \"bg-success-100 dark:bg-success-200/16\",\n publish: \"bg-success-100 dark:bg-success-200/16\",\n feedback: \"bg-success-100 dark:bg-success-200/16\",\n flagged: \"bg-warning-100 dark:bg-warning-200/16\",\n review: \"bg-warning-100 dark:bg-warning-200/16\",\n delete: \"bg-error-100 dark:bg-error-300/16\",\n blocked: \"bg-error-100 dark:bg-error-300/16\",\n reject: \"bg-error-100 dark:bg-error-300/16\",\n },\n },\n defaultVariants: {\n theme: \"approve\",\n },\n },\n);\n\nconst STATUS_ICON: Record<InputStatusTheme, React.ComponentType<{ className?: string }>> = {\n flagged: Hourglass03,\n review: Hourglass03,\n approve: ThumbsUp,\n publish: CheckCircle,\n feedback: MessageAlertSquare,\n delete: ThumbsDown,\n blocked: SlashCircle01,\n reject: ThumbsDown,\n};\n\nexport function InputStatus({\n className,\n theme = \"approve\",\n variant = \"community\",\n open = false,\n \"aria-expanded\": ariaExpanded,\n type = \"button\",\n ...props\n}: InputStatusProps) {\n const Icon = STATUS_ICON[theme];\n const expanded = ariaExpanded !== undefined ? ariaExpanded : open;\n\n return (\n <ButtonPrimitive\n data-slot=\"input-status\"\n type={type}\n aria-expanded={expanded}\n className={cn(inputStatusVariants({ theme, variant }), className)}\n {...props}\n >\n <span className={inputStatusInnerVariants({ theme })}>\n <Icon className=\"size-5\" aria-hidden />\n {open ? <ChevronUp className=\"size-4\" aria-hidden /> : <ChevronDown className=\"size-4\" aria-hidden />}\n </span>\n </ButtonPrimitive>\n );\n}\n"]}
|
package/dist/metafile-cjs.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/lib/utils.ts":{"bytes":169,"imports":[{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true}],"format":"esm"},"src/components/notification-badge/notification-badge.tsx":{"bytes":2127,"imports":[{"path":"@base-ui/react/merge-props","kind":"import-statement","external":true},{"path":"@base-ui/react/use-render","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/notification-badge/index.ts":{"bytes":113,"imports":[{"path":"src/components/notification-badge/notification-badge.tsx","kind":"import-statement","original":"./notification-badge"}],"format":"esm"},"src/components/avatar/avatar.tsx":{"bytes":5495,"imports":[{"path":"@base-ui/react/avatar","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"src/components/notification-badge/index.ts","kind":"import-statement","original":"../notification-badge"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/avatar/index.ts":{"bytes":305,"imports":[{"path":"src/components/avatar/avatar.tsx","kind":"import-statement","original":"./avatar"}],"format":"esm"},"src/components/banner-notification/banner-notification.tsx":{"bytes":1167,"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/banner-notification/index.ts":{"bytes":175,"imports":[{"path":"src/components/banner-notification/banner-notification.tsx","kind":"import-statement","original":"./banner-notification"}],"format":"esm"},"src/components/loader/loader.tsx":{"bytes":3696,"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/loader/index.ts":{"bytes":93,"imports":[{"path":"src/components/loader/loader.tsx","kind":"import-statement","original":"./loader"}],"format":"esm"},"src/components/button/button.tsx":{"bytes":10512,"imports":[{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"src/components/loader/index.ts","kind":"import-statement","original":"../loader"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/button/index.ts":{"bytes":79,"imports":[{"path":"src/components/button/button.tsx","kind":"import-statement","original":"./button"}],"format":"esm"},"src/components/button-link/button-link.tsx":{"bytes":3282,"imports":[{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/button-link/index.ts":{"bytes":107,"imports":[{"path":"src/components/button-link/button-link.tsx","kind":"import-statement","original":"./button-link"}],"format":"esm"},"src/components/content-block/content-block.tsx":{"bytes":1009,"imports":[{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/content-block/index.ts":{"bytes":98,"imports":[{"path":"src/components/content-block/content-block.tsx","kind":"import-statement","original":"./content-block"}],"format":"esm"},"src/components/checkbox/checkbox.tsx":{"bytes":1411,"imports":[{"path":"@base-ui/react/checkbox","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/checkbox/index.ts":{"bytes":85,"imports":[{"path":"src/components/checkbox/checkbox.tsx","kind":"import-statement","original":"./checkbox"}],"format":"esm"},"src/components/default-header/default-header.tsx":{"bytes":2135,"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/default-header/index.ts":{"bytes":101,"imports":[{"path":"src/components/default-header/default-header.tsx","kind":"import-statement","original":"./default-header"}],"format":"esm"},"src/components/dialog/dialog.tsx":{"bytes":8353,"imports":[{"path":"@base-ui/react/dialog","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"src/components/button/index.ts","kind":"import-statement","original":"../button"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/dialog/index.ts":{"bytes":305,"imports":[{"path":"src/components/dialog/dialog.tsx","kind":"import-statement","original":"./dialog"}],"format":"esm"},"src/components/dropdown-menu/dropdown-menu.tsx":{"bytes":8783,"imports":[{"path":"@base-ui/react/menu","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/dropdown-menu/index.ts":{"bytes":847,"imports":[{"path":"src/components/dropdown-menu/dropdown-menu.tsx","kind":"import-statement","original":"./dropdown-menu"}],"format":"esm"},"src/components/footer/footer.tsx":{"bytes":10073,"imports":[{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/footer/index.ts":{"bytes":79,"imports":[{"path":"src/components/footer/footer.tsx","kind":"import-statement","original":"./footer"}],"format":"esm"},"src/components/input/input.tsx":{"bytes":1048,"imports":[{"path":"@base-ui/react/input","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/input/index.ts":{"bytes":76,"imports":[{"path":"src/components/input/input.tsx","kind":"import-statement","original":"./input"}],"format":"esm"},"src/components/textarea/textarea.tsx":{"bytes":762,"imports":[{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/textarea/index.ts":{"bytes":85,"imports":[{"path":"src/components/textarea/textarea.tsx","kind":"import-statement","original":"./textarea"}],"format":"esm"},"src/components/input-group/input-group.tsx":{"bytes":5626,"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"src/components/input/index.ts","kind":"import-statement","original":"../input"},{"path":"src/components/textarea/index.ts","kind":"import-statement","original":"../textarea"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/input-group/index.ts":{"bytes":367,"imports":[{"path":"src/components/input-group/input-group.tsx","kind":"import-statement","original":"./input-group"}],"format":"esm"},"src/components/label/label.tsx":{"bytes":760,"imports":[{"path":"@base-ui/react/merge-props","kind":"import-statement","external":true},{"path":"@base-ui/react/use-render","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"}],"format":"esm"},"src/components/label/index.ts":{"bytes":76,"imports":[{"path":"src/components/label/label.tsx","kind":"import-statement","original":"./label"}],"format":"esm"},"src/components/logo/logo.tsx":{"bytes":29567,"imports":[{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/logo/index.ts":{"bytes":97,"imports":[{"path":"src/components/logo/logo.tsx","kind":"import-statement","original":"./logo"}],"format":"esm"},"src/components/section-flourish/section-flourish.tsx":{"bytes":130,"imports":[{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/section-flourish/index.ts":{"bytes":54,"imports":[{"path":"src/components/section-flourish/section-flourish.tsx","kind":"import-statement","original":"./section-flourish"}],"format":"esm"},"src/components/tooltip/tooltip.tsx":{"bytes":2875,"imports":[{"path":"@base-ui/react/tooltip","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/section-header/section-header.tsx":{"bytes":2481,"imports":[{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"src/components/tooltip/tooltip.tsx","kind":"import-statement","original":"../tooltip/tooltip"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/section-header/index.ts":{"bytes":101,"imports":[{"path":"src/components/section-header/section-header.tsx","kind":"import-statement","original":"./section-header"}],"format":"esm"},"src/components/tag/tag.tsx":{"bytes":4134,"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/tag/index.ts":{"bytes":85,"imports":[{"path":"src/components/tag/tag.tsx","kind":"import-statement","original":"./tag"}],"format":"esm"},"src/components/template-header/template-header.tsx":{"bytes":681,"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/template-header/index.ts":{"bytes":104,"imports":[{"path":"src/components/template-header/template-header.tsx","kind":"import-statement","original":"./template-header"}],"format":"esm"},"src/components/tooltip/index.ts":{"bytes":115,"imports":[{"path":"src/components/tooltip/tooltip.tsx","kind":"import-statement","original":"./tooltip"}],"format":"esm"},"src/index.ts":{"bytes":3224,"imports":[{"path":"src/components/avatar/index.ts","kind":"import-statement","original":"./components/avatar"},{"path":"src/components/banner-notification/index.ts","kind":"import-statement","original":"./components/banner-notification"},{"path":"src/components/button/index.ts","kind":"import-statement","original":"./components/button"},{"path":"src/components/button-link/index.ts","kind":"import-statement","original":"./components/button-link"},{"path":"src/components/content-block/index.ts","kind":"import-statement","original":"./components/content-block"},{"path":"src/components/checkbox/index.ts","kind":"import-statement","original":"./components/checkbox"},{"path":"src/components/default-header/index.ts","kind":"import-statement","original":"./components/default-header"},{"path":"src/components/dialog/index.ts","kind":"import-statement","original":"./components/dialog"},{"path":"src/components/dropdown-menu/index.ts","kind":"import-statement","original":"./components/dropdown-menu"},{"path":"src/components/footer/index.ts","kind":"import-statement","original":"./components/footer"},{"path":"src/components/input/index.ts","kind":"import-statement","original":"./components/input"},{"path":"src/components/input-group/index.ts","kind":"import-statement","original":"./components/input-group"},{"path":"src/components/label/index.ts","kind":"import-statement","original":"./components/label"},{"path":"src/components/loader/index.ts","kind":"import-statement","original":"./components/loader"},{"path":"src/components/logo/index.ts","kind":"import-statement","original":"./components/logo"},{"path":"src/components/notification-badge/index.ts","kind":"import-statement","original":"./components/notification-badge"},{"path":"src/components/section-flourish/index.ts","kind":"import-statement","original":"./components/section-flourish"},{"path":"src/components/section-header/index.ts","kind":"import-statement","original":"./components/section-header"},{"path":"src/components/tag/index.ts","kind":"import-statement","original":"./components/tag"},{"path":"src/components/textarea/index.ts","kind":"import-statement","original":"./components/textarea"},{"path":"src/components/template-header/index.ts","kind":"import-statement","original":"./components/template-header"},{"path":"src/components/tooltip/index.ts","kind":"import-statement","original":"./components/tooltip"}],"format":"esm"}},"outputs":{"dist/index.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":145081},"dist/index.cjs":{"imports":[{"path":"@base-ui/react/avatar","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"@base-ui/react/merge-props","kind":"import-statement","external":true},{"path":"@base-ui/react/use-render","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@base-ui/react/checkbox","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@base-ui/react/dialog","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@base-ui/react/menu","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@base-ui/react/input","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@base-ui/react/merge-props","kind":"import-statement","external":true},{"path":"@base-ui/react/use-render","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"@base-ui/react/tooltip","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Avatar","AvatarBadge","AvatarFallback","AvatarGroup","AvatarGroupCount","AvatarImage","BannerNotification","Button","ButtonLink","Checkbox","ContentBlock","DefaultHeader","Dialog","DialogBody","DialogClose","DialogContent","DialogDescription","DialogFooter","DialogHeader","DialogOverlay","DialogPortal","DialogTitle","DialogTrigger","DialogViewport","DropdownMenu","DropdownMenuCheckboxItem","DropdownMenuContent","DropdownMenuGroup","DropdownMenuItem","DropdownMenuLabel","DropdownMenuPortal","DropdownMenuRadioGroup","DropdownMenuRadioItem","DropdownMenuSeparator","DropdownMenuShortcut","DropdownMenuSub","DropdownMenuSubContent","DropdownMenuSubTrigger","DropdownMenuTrigger","Footer","Input","InputGroup","InputGroupAddon","InputGroupButton","InputGroupInput","InputGroupText","InputGroupTextarea","Label","Loader","Logo","NotificationBadge","SectionFlourish","SectionHeader","Tag","TemplateHeader","Textarea","Tooltip","TooltipArrow","TooltipContent","TooltipProvider","TooltipTrigger"],"entryPoint":"src/index.ts","inputs":{"src/components/avatar/avatar.tsx":{"bytesInOutput":4843},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/notification-badge/notification-badge.tsx":{"bytesInOutput":1895},"src/components/notification-badge/index.ts":{"bytesInOutput":0},"src/components/avatar/index.ts":{"bytesInOutput":0},"src/index.ts":{"bytesInOutput":0},"src/components/banner-notification/banner-notification.tsx":{"bytesInOutput":1101},"src/components/banner-notification/index.ts":{"bytesInOutput":0},"src/components/button/button.tsx":{"bytesInOutput":9938},"src/components/loader/loader.tsx":{"bytesInOutput":3932},"src/components/loader/index.ts":{"bytesInOutput":0},"src/components/button/index.ts":{"bytesInOutput":0},"src/components/button-link/button-link.tsx":{"bytesInOutput":3064},"src/components/button-link/index.ts":{"bytesInOutput":0},"src/components/content-block/content-block.tsx":{"bytesInOutput":1003},"src/components/content-block/index.ts":{"bytesInOutput":0},"src/components/checkbox/checkbox.tsx":{"bytesInOutput":1387},"src/components/checkbox/index.ts":{"bytesInOutput":0},"src/components/default-header/default-header.tsx":{"bytesInOutput":2235},"src/components/default-header/index.ts":{"bytesInOutput":0},"src/components/dialog/dialog.tsx":{"bytesInOutput":7091},"src/components/dialog/index.ts":{"bytesInOutput":0},"src/components/dropdown-menu/dropdown-menu.tsx":{"bytesInOutput":8188},"src/components/dropdown-menu/index.ts":{"bytesInOutput":0},"src/components/footer/footer.tsx":{"bytesInOutput":10552},"src/components/footer/index.ts":{"bytesInOutput":0},"src/components/input/input.tsx":{"bytesInOutput":990},"src/components/input/index.ts":{"bytesInOutput":0},"src/components/input-group/input-group.tsx":{"bytesInOutput":5310},"src/components/textarea/textarea.tsx":{"bytesInOutput":719},"src/components/textarea/index.ts":{"bytesInOutput":0},"src/components/input-group/index.ts":{"bytesInOutput":0},"src/components/label/label.tsx":{"bytesInOutput":624},"src/components/label/index.ts":{"bytesInOutput":0},"src/components/logo/logo.tsx":{"bytesInOutput":29371},"src/components/logo/index.ts":{"bytesInOutput":0},"src/components/section-flourish/section-flourish.tsx":{"bytesInOutput":205},"src/components/section-flourish/index.ts":{"bytesInOutput":0},"src/components/section-header/section-header.tsx":{"bytesInOutput":2345},"src/components/tooltip/tooltip.tsx":{"bytesInOutput":2809},"src/components/section-header/index.ts":{"bytesInOutput":0},"src/components/tag/tag.tsx":{"bytesInOutput":3918},"src/components/tag/index.ts":{"bytesInOutput":0},"src/components/template-header/template-header.tsx":{"bytesInOutput":664},"src/components/template-header/index.ts":{"bytesInOutput":0},"src/components/tooltip/index.ts":{"bytesInOutput":0}},"bytes":104566},"dist/avatar.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":11910},"dist/avatar.cjs":{"imports":[{"path":"@base-ui/react/avatar","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"@base-ui/react/merge-props","kind":"import-statement","external":true},{"path":"@base-ui/react/use-render","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Avatar","AvatarBadge","AvatarFallback","AvatarGroup","AvatarGroupCount","AvatarImage"],"entryPoint":"src/components/avatar/index.ts","inputs":{"src/components/avatar/avatar.tsx":{"bytesInOutput":4843},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/notification-badge/notification-badge.tsx":{"bytesInOutput":1895},"src/components/notification-badge/index.ts":{"bytesInOutput":0},"src/components/avatar/index.ts":{"bytesInOutput":0}},"bytes":7142},"dist/banner-notification.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2307},"dist/banner-notification.cjs":{"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["BannerNotification"],"entryPoint":"src/components/banner-notification/index.ts","inputs":{"src/components/banner-notification/banner-notification.tsx":{"bytesInOutput":1082},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/banner-notification/index.ts":{"bytesInOutput":0}},"bytes":1391},"dist/button.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":21807},"dist/button.cjs":{"imports":[{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Button"],"entryPoint":"src/components/button/index.ts","inputs":{"src/components/button/button.tsx":{"bytesInOutput":9938},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/loader/loader.tsx":{"bytesInOutput":3894},"src/components/loader/index.ts":{"bytesInOutput":0},"src/components/button/index.ts":{"bytesInOutput":0}},"bytes":14114},"dist/button-link.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":5343},"dist/button-link.cjs":{"imports":[{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["ButtonLink"],"entryPoint":"src/components/button-link/index.ts","inputs":{"src/components/button-link/button-link.tsx":{"bytesInOutput":3016},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/button-link/index.ts":{"bytesInOutput":0}},"bytes":3300},"dist/checkbox.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2220},"dist/checkbox.cjs":{"imports":[{"path":"@base-ui/react/checkbox","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Checkbox"],"entryPoint":"src/components/checkbox/index.ts","inputs":{"src/components/checkbox/checkbox.tsx":{"bytesInOutput":1376},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/checkbox/index.ts":{"bytesInOutput":0}},"bytes":1631},"dist/content-block.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1885},"dist/content-block.cjs":{"imports":[{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["ContentBlock"],"entryPoint":"src/components/content-block/index.ts","inputs":{"src/lib/utils.ts":{"bytesInOutput":130},"src/components/content-block/content-block.tsx":{"bytesInOutput":979},"src/components/content-block/index.ts":{"bytesInOutput":0}},"bytes":1207},"dist/default-header.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":3473},"dist/default-header.cjs":{"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["DefaultHeader"],"entryPoint":"src/components/default-header/index.ts","inputs":{"src/components/default-header/default-header.tsx":{"bytesInOutput":2201},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/default-header/index.ts":{"bytesInOutput":0}},"bytes":2485},"dist/dialog.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":33207},"dist/dialog.cjs":{"imports":[{"path":"@base-ui/react/dialog","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Dialog","DialogBody","DialogClose","DialogContent","DialogDescription","DialogFooter","DialogHeader","DialogOverlay","DialogPortal","DialogTitle","DialogTrigger","DialogViewport"],"entryPoint":"src/components/dialog/index.ts","inputs":{"src/components/dialog/dialog.tsx":{"bytesInOutput":7071},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/button/button.tsx":{"bytesInOutput":9938},"src/components/loader/loader.tsx":{"bytesInOutput":3894},"src/components/loader/index.ts":{"bytesInOutput":0},"src/components/button/index.ts":{"bytesInOutput":0},"src/components/dialog/index.ts":{"bytesInOutput":0}},"bytes":21470},"dist/dropdown-menu.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":12667},"dist/dropdown-menu.cjs":{"imports":[{"path":"@base-ui/react/menu","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["DropdownMenu","DropdownMenuCheckboxItem","DropdownMenuContent","DropdownMenuGroup","DropdownMenuItem","DropdownMenuLabel","DropdownMenuPortal","DropdownMenuRadioGroup","DropdownMenuRadioItem","DropdownMenuSeparator","DropdownMenuShortcut","DropdownMenuSub","DropdownMenuSubContent","DropdownMenuSubTrigger","DropdownMenuTrigger"],"entryPoint":"src/components/dropdown-menu/index.ts","inputs":{"src/components/dropdown-menu/dropdown-menu.tsx":{"bytesInOutput":8113},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/dropdown-menu/index.ts":{"bytesInOutput":0}},"bytes":8736},"dist/footer.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":11323},"dist/footer.cjs":{"imports":[{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Footer"],"entryPoint":"src/components/footer/index.ts","inputs":{"src/components/footer/footer.tsx":{"bytesInOutput":10510},"src/components/footer/index.ts":{"bytesInOutput":0}},"bytes":10567},"dist/input.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1744},"dist/input.cjs":{"imports":[{"path":"@base-ui/react/input","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Input"],"entryPoint":"src/components/input/index.ts","inputs":{"src/components/input/input.tsx":{"bytesInOutput":979},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/input/index.ts":{"bytesInOutput":0}},"bytes":1219},"dist/input-group.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":10627},"dist/input-group.cjs":{"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"@base-ui/react/input","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["InputGroup","InputGroupAddon","InputGroupButton","InputGroupInput","InputGroupText","InputGroupTextarea"],"entryPoint":"src/components/input-group/index.ts","inputs":{"src/components/input-group/input-group.tsx":{"bytesInOutput":5291},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/input/input.tsx":{"bytesInOutput":979},"src/components/input/index.ts":{"bytesInOutput":0},"src/components/textarea/textarea.tsx":{"bytesInOutput":717},"src/components/textarea/index.ts":{"bytesInOutput":0},"src/components/input-group/index.ts":{"bytesInOutput":0}},"bytes":7430},"dist/label.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1501},"dist/label.cjs":{"imports":[{"path":"@base-ui/react/merge-props","kind":"import-statement","external":true},{"path":"@base-ui/react/use-render","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true}],"exports":["Label"],"entryPoint":"src/components/label/index.ts","inputs":{"src/components/label/label.tsx":{"bytesInOutput":593},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/label/index.ts":{"bytesInOutput":0}},"bytes":833},"dist/loader.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":5973},"dist/loader.cjs":{"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Loader"],"entryPoint":"src/components/loader/index.ts","inputs":{"src/components/loader/loader.tsx":{"bytesInOutput":3894},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/loader/index.ts":{"bytesInOutput":0}},"bytes":4154},"dist/logo.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":35233},"dist/logo.cjs":{"imports":[{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Logo"],"entryPoint":"src/components/logo/index.ts","inputs":{"src/lib/utils.ts":{"bytesInOutput":130},"src/components/logo/logo.tsx":{"bytesInOutput":29278},"src/components/logo/index.ts":{"bytesInOutput":0}},"bytes":29480},"dist/notification-badge.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":3511},"dist/notification-badge.cjs":{"imports":[{"path":"@base-ui/react/merge-props","kind":"import-statement","external":true},{"path":"@base-ui/react/use-render","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["NotificationBadge"],"entryPoint":"src/components/notification-badge/index.ts","inputs":{"src/components/notification-badge/notification-badge.tsx":{"bytesInOutput":1895},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/notification-badge/index.ts":{"bytesInOutput":0}},"bytes":2199},"dist/section-flourish.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":348},"dist/section-flourish.cjs":{"imports":[{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["SectionFlourish"],"entryPoint":"src/components/section-flourish/index.ts","inputs":{"src/components/section-flourish/section-flourish.tsx":{"bytesInOutput":194},"src/components/section-flourish/index.ts":{"bytesInOutput":0}},"bytes":280},"dist/section-header.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":8396},"dist/section-header.cjs":{"imports":[{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"@base-ui/react/tooltip","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["SectionHeader"],"entryPoint":"src/components/section-header/index.ts","inputs":{"src/components/section-header/section-header.tsx":{"bytesInOutput":2304},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/tooltip/tooltip.tsx":{"bytesInOutput":2603},"src/components/section-header/index.ts":{"bytesInOutput":0}},"bytes":5230},"dist/tag.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":6658},"dist/tag.cjs":{"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Tag"],"entryPoint":"src/components/tag/index.ts","inputs":{"src/components/tag/tag.tsx":{"bytesInOutput":3864},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/tag/index.ts":{"bytesInOutput":0}},"bytes":4109},"dist/template-header.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1402},"dist/template-header.cjs":{"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["TemplateHeader"],"entryPoint":"src/components/template-header/index.ts","inputs":{"src/components/template-header/template-header.tsx":{"bytesInOutput":640},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/template-header/index.ts":{"bytesInOutput":0}},"bytes":929},"dist/textarea.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1390},"dist/textarea.cjs":{"imports":[{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Textarea"],"entryPoint":"src/components/textarea/index.ts","inputs":{"src/lib/utils.ts":{"bytesInOutput":130},"src/components/textarea/textarea.tsx":{"bytesInOutput":708},"src/components/textarea/index.ts":{"bytesInOutput":0}},"bytes":922},"dist/tooltip.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":4523},"dist/tooltip.cjs":{"imports":[{"path":"@base-ui/react/tooltip","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Tooltip","TooltipArrow","TooltipContent","TooltipProvider","TooltipTrigger"],"entryPoint":"src/components/tooltip/index.ts","inputs":{"src/components/tooltip/tooltip.tsx":{"bytesInOutput":2768},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/tooltip/index.ts":{"bytesInOutput":0}},"bytes":3104}}}
|
|
1
|
+
{"inputs":{"src/lib/utils.ts":{"bytes":169,"imports":[{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true}],"format":"esm"},"src/components/notification-badge/notification-badge.tsx":{"bytes":2127,"imports":[{"path":"@base-ui/react/merge-props","kind":"import-statement","external":true},{"path":"@base-ui/react/use-render","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/notification-badge/index.ts":{"bytes":113,"imports":[{"path":"src/components/notification-badge/notification-badge.tsx","kind":"import-statement","original":"./notification-badge"}],"format":"esm"},"src/components/avatar/avatar.tsx":{"bytes":5495,"imports":[{"path":"@base-ui/react/avatar","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"src/components/notification-badge/index.ts","kind":"import-statement","original":"../notification-badge"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/avatar/index.ts":{"bytes":305,"imports":[{"path":"src/components/avatar/avatar.tsx","kind":"import-statement","original":"./avatar"}],"format":"esm"},"src/components/banner-notification/banner-notification.tsx":{"bytes":1167,"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/banner-notification/index.ts":{"bytes":175,"imports":[{"path":"src/components/banner-notification/banner-notification.tsx","kind":"import-statement","original":"./banner-notification"}],"format":"esm"},"src/components/loader/loader.tsx":{"bytes":3696,"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/loader/index.ts":{"bytes":93,"imports":[{"path":"src/components/loader/loader.tsx","kind":"import-statement","original":"./loader"}],"format":"esm"},"src/components/button/button.tsx":{"bytes":10512,"imports":[{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"src/components/loader/index.ts","kind":"import-statement","original":"../loader"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/button/index.ts":{"bytes":79,"imports":[{"path":"src/components/button/button.tsx","kind":"import-statement","original":"./button"}],"format":"esm"},"src/components/button-link/button-link.tsx":{"bytes":3282,"imports":[{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/button-link/index.ts":{"bytes":107,"imports":[{"path":"src/components/button-link/button-link.tsx","kind":"import-statement","original":"./button-link"}],"format":"esm"},"src/components/content-block/content-block.tsx":{"bytes":1009,"imports":[{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/content-block/index.ts":{"bytes":98,"imports":[{"path":"src/components/content-block/content-block.tsx","kind":"import-statement","original":"./content-block"}],"format":"esm"},"src/components/checkbox/checkbox.tsx":{"bytes":1411,"imports":[{"path":"@base-ui/react/checkbox","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/checkbox/index.ts":{"bytes":85,"imports":[{"path":"src/components/checkbox/checkbox.tsx","kind":"import-statement","original":"./checkbox"}],"format":"esm"},"src/components/default-header/default-header.tsx":{"bytes":2135,"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/default-header/index.ts":{"bytes":101,"imports":[{"path":"src/components/default-header/default-header.tsx","kind":"import-statement","original":"./default-header"}],"format":"esm"},"src/components/dialog/dialog.tsx":{"bytes":8353,"imports":[{"path":"@base-ui/react/dialog","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"src/components/button/index.ts","kind":"import-statement","original":"../button"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/dialog/index.ts":{"bytes":305,"imports":[{"path":"src/components/dialog/dialog.tsx","kind":"import-statement","original":"./dialog"}],"format":"esm"},"src/components/dropdown-menu/dropdown-menu.tsx":{"bytes":8783,"imports":[{"path":"@base-ui/react/menu","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/dropdown-menu/index.ts":{"bytes":847,"imports":[{"path":"src/components/dropdown-menu/dropdown-menu.tsx","kind":"import-statement","original":"./dropdown-menu"}],"format":"esm"},"src/components/footer/footer.tsx":{"bytes":10073,"imports":[{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/footer/index.ts":{"bytes":79,"imports":[{"path":"src/components/footer/footer.tsx","kind":"import-statement","original":"./footer"}],"format":"esm"},"src/components/input/input.tsx":{"bytes":1048,"imports":[{"path":"@base-ui/react/input","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/input/index.ts":{"bytes":76,"imports":[{"path":"src/components/input/input.tsx","kind":"import-statement","original":"./input"}],"format":"esm"},"src/components/textarea/textarea.tsx":{"bytes":762,"imports":[{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/textarea/index.ts":{"bytes":85,"imports":[{"path":"src/components/textarea/textarea.tsx","kind":"import-statement","original":"./textarea"}],"format":"esm"},"src/components/input-group/input-group.tsx":{"bytes":5626,"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"src/components/input/index.ts","kind":"import-statement","original":"../input"},{"path":"src/components/textarea/index.ts","kind":"import-statement","original":"../textarea"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/input-group/index.ts":{"bytes":367,"imports":[{"path":"src/components/input-group/input-group.tsx","kind":"import-statement","original":"./input-group"}],"format":"esm"},"src/components/input-status/input-status.tsx":{"bytes":3167,"imports":[{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/input-status/index.ts":{"bytes":155,"imports":[{"path":"src/components/input-status/input-status.tsx","kind":"import-statement","original":"./input-status"}],"format":"esm"},"src/components/label/label.tsx":{"bytes":760,"imports":[{"path":"@base-ui/react/merge-props","kind":"import-statement","external":true},{"path":"@base-ui/react/use-render","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"}],"format":"esm"},"src/components/label/index.ts":{"bytes":76,"imports":[{"path":"src/components/label/label.tsx","kind":"import-statement","original":"./label"}],"format":"esm"},"src/components/logo/logo.tsx":{"bytes":29567,"imports":[{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/logo/index.ts":{"bytes":97,"imports":[{"path":"src/components/logo/logo.tsx","kind":"import-statement","original":"./logo"}],"format":"esm"},"src/components/section-flourish/section-flourish.tsx":{"bytes":130,"imports":[{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/section-flourish/index.ts":{"bytes":54,"imports":[{"path":"src/components/section-flourish/section-flourish.tsx","kind":"import-statement","original":"./section-flourish"}],"format":"esm"},"src/components/tooltip/tooltip.tsx":{"bytes":2875,"imports":[{"path":"@base-ui/react/tooltip","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/section-header/section-header.tsx":{"bytes":2481,"imports":[{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"src/components/tooltip/tooltip.tsx","kind":"import-statement","original":"../tooltip/tooltip"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/section-header/index.ts":{"bytes":101,"imports":[{"path":"src/components/section-header/section-header.tsx","kind":"import-statement","original":"./section-header"}],"format":"esm"},"src/components/tag/tag.tsx":{"bytes":4274,"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/tag/index.ts":{"bytes":85,"imports":[{"path":"src/components/tag/tag.tsx","kind":"import-statement","original":"./tag"}],"format":"esm"},"src/components/template-header/template-header.tsx":{"bytes":681,"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"src/lib/utils.ts","kind":"import-statement","original":"../../lib/utils"},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"format":"esm"},"src/components/template-header/index.ts":{"bytes":104,"imports":[{"path":"src/components/template-header/template-header.tsx","kind":"import-statement","original":"./template-header"}],"format":"esm"},"src/components/tooltip/index.ts":{"bytes":115,"imports":[{"path":"src/components/tooltip/tooltip.tsx","kind":"import-statement","original":"./tooltip"}],"format":"esm"},"src/index.ts":{"bytes":3393,"imports":[{"path":"src/components/avatar/index.ts","kind":"import-statement","original":"./components/avatar"},{"path":"src/components/banner-notification/index.ts","kind":"import-statement","original":"./components/banner-notification"},{"path":"src/components/button/index.ts","kind":"import-statement","original":"./components/button"},{"path":"src/components/button-link/index.ts","kind":"import-statement","original":"./components/button-link"},{"path":"src/components/content-block/index.ts","kind":"import-statement","original":"./components/content-block"},{"path":"src/components/checkbox/index.ts","kind":"import-statement","original":"./components/checkbox"},{"path":"src/components/default-header/index.ts","kind":"import-statement","original":"./components/default-header"},{"path":"src/components/dialog/index.ts","kind":"import-statement","original":"./components/dialog"},{"path":"src/components/dropdown-menu/index.ts","kind":"import-statement","original":"./components/dropdown-menu"},{"path":"src/components/footer/index.ts","kind":"import-statement","original":"./components/footer"},{"path":"src/components/input/index.ts","kind":"import-statement","original":"./components/input"},{"path":"src/components/input-group/index.ts","kind":"import-statement","original":"./components/input-group"},{"path":"src/components/input-status/index.ts","kind":"import-statement","original":"./components/input-status"},{"path":"src/components/label/index.ts","kind":"import-statement","original":"./components/label"},{"path":"src/components/loader/index.ts","kind":"import-statement","original":"./components/loader"},{"path":"src/components/logo/index.ts","kind":"import-statement","original":"./components/logo"},{"path":"src/components/notification-badge/index.ts","kind":"import-statement","original":"./components/notification-badge"},{"path":"src/components/section-flourish/index.ts","kind":"import-statement","original":"./components/section-flourish"},{"path":"src/components/section-header/index.ts","kind":"import-statement","original":"./components/section-header"},{"path":"src/components/tag/index.ts","kind":"import-statement","original":"./components/tag"},{"path":"src/components/textarea/index.ts","kind":"import-statement","original":"./components/textarea"},{"path":"src/components/template-header/index.ts","kind":"import-statement","original":"./components/template-header"},{"path":"src/components/tooltip/index.ts","kind":"import-statement","original":"./components/tooltip"}],"format":"esm"}},"outputs":{"dist/index.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":150181},"dist/index.cjs":{"imports":[{"path":"@base-ui/react/avatar","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"@base-ui/react/merge-props","kind":"import-statement","external":true},{"path":"@base-ui/react/use-render","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@base-ui/react/checkbox","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@base-ui/react/dialog","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@base-ui/react/menu","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@base-ui/react/input","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@base-ui/react/merge-props","kind":"import-statement","external":true},{"path":"@base-ui/react/use-render","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"@base-ui/react/tooltip","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Avatar","AvatarBadge","AvatarFallback","AvatarGroup","AvatarGroupCount","AvatarImage","BannerNotification","Button","ButtonLink","Checkbox","ContentBlock","DefaultHeader","Dialog","DialogBody","DialogClose","DialogContent","DialogDescription","DialogFooter","DialogHeader","DialogOverlay","DialogPortal","DialogTitle","DialogTrigger","DialogViewport","DropdownMenu","DropdownMenuCheckboxItem","DropdownMenuContent","DropdownMenuGroup","DropdownMenuItem","DropdownMenuLabel","DropdownMenuPortal","DropdownMenuRadioGroup","DropdownMenuRadioItem","DropdownMenuSeparator","DropdownMenuShortcut","DropdownMenuSub","DropdownMenuSubContent","DropdownMenuSubTrigger","DropdownMenuTrigger","Footer","Input","InputGroup","InputGroupAddon","InputGroupButton","InputGroupInput","InputGroupText","InputGroupTextarea","InputStatus","Label","Loader","Logo","NotificationBadge","SectionFlourish","SectionHeader","Tag","TemplateHeader","Textarea","Tooltip","TooltipArrow","TooltipContent","TooltipProvider","TooltipTrigger"],"entryPoint":"src/index.ts","inputs":{"src/components/avatar/avatar.tsx":{"bytesInOutput":4843},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/notification-badge/notification-badge.tsx":{"bytesInOutput":1895},"src/components/notification-badge/index.ts":{"bytesInOutput":0},"src/components/avatar/index.ts":{"bytesInOutput":0},"src/index.ts":{"bytesInOutput":0},"src/components/banner-notification/banner-notification.tsx":{"bytesInOutput":1101},"src/components/banner-notification/index.ts":{"bytesInOutput":0},"src/components/button/button.tsx":{"bytesInOutput":9938},"src/components/loader/loader.tsx":{"bytesInOutput":3932},"src/components/loader/index.ts":{"bytesInOutput":0},"src/components/button/index.ts":{"bytesInOutput":0},"src/components/button-link/button-link.tsx":{"bytesInOutput":3064},"src/components/button-link/index.ts":{"bytesInOutput":0},"src/components/content-block/content-block.tsx":{"bytesInOutput":1003},"src/components/content-block/index.ts":{"bytesInOutput":0},"src/components/checkbox/checkbox.tsx":{"bytesInOutput":1387},"src/components/checkbox/index.ts":{"bytesInOutput":0},"src/components/default-header/default-header.tsx":{"bytesInOutput":2235},"src/components/default-header/index.ts":{"bytesInOutput":0},"src/components/dialog/dialog.tsx":{"bytesInOutput":7091},"src/components/dialog/index.ts":{"bytesInOutput":0},"src/components/dropdown-menu/dropdown-menu.tsx":{"bytesInOutput":8188},"src/components/dropdown-menu/index.ts":{"bytesInOutput":0},"src/components/footer/footer.tsx":{"bytesInOutput":10552},"src/components/footer/index.ts":{"bytesInOutput":0},"src/components/input/input.tsx":{"bytesInOutput":990},"src/components/input/index.ts":{"bytesInOutput":0},"src/components/input-group/input-group.tsx":{"bytesInOutput":5310},"src/components/textarea/textarea.tsx":{"bytesInOutput":719},"src/components/textarea/index.ts":{"bytesInOutput":0},"src/components/input-group/index.ts":{"bytesInOutput":0},"src/components/input-status/input-status.tsx":{"bytesInOutput":3113},"src/components/input-status/index.ts":{"bytesInOutput":0},"src/components/label/label.tsx":{"bytesInOutput":624},"src/components/label/index.ts":{"bytesInOutput":0},"src/components/logo/logo.tsx":{"bytesInOutput":29371},"src/components/logo/index.ts":{"bytesInOutput":0},"src/components/section-flourish/section-flourish.tsx":{"bytesInOutput":205},"src/components/section-flourish/index.ts":{"bytesInOutput":0},"src/components/section-header/section-header.tsx":{"bytesInOutput":2345},"src/components/tooltip/tooltip.tsx":{"bytesInOutput":2809},"src/components/section-header/index.ts":{"bytesInOutput":0},"src/components/tag/tag.tsx":{"bytesInOutput":4060},"src/components/tag/index.ts":{"bytesInOutput":0},"src/components/template-header/template-header.tsx":{"bytesInOutput":664},"src/components/template-header/index.ts":{"bytesInOutput":0},"src/components/tooltip/index.ts":{"bytesInOutput":0}},"bytes":107885},"dist/avatar.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":11910},"dist/avatar.cjs":{"imports":[{"path":"@base-ui/react/avatar","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"@base-ui/react/merge-props","kind":"import-statement","external":true},{"path":"@base-ui/react/use-render","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Avatar","AvatarBadge","AvatarFallback","AvatarGroup","AvatarGroupCount","AvatarImage"],"entryPoint":"src/components/avatar/index.ts","inputs":{"src/components/avatar/avatar.tsx":{"bytesInOutput":4843},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/notification-badge/notification-badge.tsx":{"bytesInOutput":1895},"src/components/notification-badge/index.ts":{"bytesInOutput":0},"src/components/avatar/index.ts":{"bytesInOutput":0}},"bytes":7142},"dist/banner-notification.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2307},"dist/banner-notification.cjs":{"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["BannerNotification"],"entryPoint":"src/components/banner-notification/index.ts","inputs":{"src/components/banner-notification/banner-notification.tsx":{"bytesInOutput":1082},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/banner-notification/index.ts":{"bytesInOutput":0}},"bytes":1391},"dist/button.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":21807},"dist/button.cjs":{"imports":[{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Button"],"entryPoint":"src/components/button/index.ts","inputs":{"src/components/button/button.tsx":{"bytesInOutput":9938},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/loader/loader.tsx":{"bytesInOutput":3894},"src/components/loader/index.ts":{"bytesInOutput":0},"src/components/button/index.ts":{"bytesInOutput":0}},"bytes":14114},"dist/button-link.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":5343},"dist/button-link.cjs":{"imports":[{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["ButtonLink"],"entryPoint":"src/components/button-link/index.ts","inputs":{"src/components/button-link/button-link.tsx":{"bytesInOutput":3016},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/button-link/index.ts":{"bytesInOutput":0}},"bytes":3300},"dist/checkbox.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":2220},"dist/checkbox.cjs":{"imports":[{"path":"@base-ui/react/checkbox","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Checkbox"],"entryPoint":"src/components/checkbox/index.ts","inputs":{"src/components/checkbox/checkbox.tsx":{"bytesInOutput":1376},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/checkbox/index.ts":{"bytesInOutput":0}},"bytes":1631},"dist/content-block.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1885},"dist/content-block.cjs":{"imports":[{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["ContentBlock"],"entryPoint":"src/components/content-block/index.ts","inputs":{"src/lib/utils.ts":{"bytesInOutput":130},"src/components/content-block/content-block.tsx":{"bytesInOutput":979},"src/components/content-block/index.ts":{"bytesInOutput":0}},"bytes":1207},"dist/default-header.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":3473},"dist/default-header.cjs":{"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["DefaultHeader"],"entryPoint":"src/components/default-header/index.ts","inputs":{"src/components/default-header/default-header.tsx":{"bytesInOutput":2201},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/default-header/index.ts":{"bytesInOutput":0}},"bytes":2485},"dist/dialog.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":33207},"dist/dialog.cjs":{"imports":[{"path":"@base-ui/react/dialog","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Dialog","DialogBody","DialogClose","DialogContent","DialogDescription","DialogFooter","DialogHeader","DialogOverlay","DialogPortal","DialogTitle","DialogTrigger","DialogViewport"],"entryPoint":"src/components/dialog/index.ts","inputs":{"src/components/dialog/dialog.tsx":{"bytesInOutput":7071},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/button/button.tsx":{"bytesInOutput":9938},"src/components/loader/loader.tsx":{"bytesInOutput":3894},"src/components/loader/index.ts":{"bytesInOutput":0},"src/components/button/index.ts":{"bytesInOutput":0},"src/components/dialog/index.ts":{"bytesInOutput":0}},"bytes":21470},"dist/dropdown-menu.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":12667},"dist/dropdown-menu.cjs":{"imports":[{"path":"@base-ui/react/menu","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["DropdownMenu","DropdownMenuCheckboxItem","DropdownMenuContent","DropdownMenuGroup","DropdownMenuItem","DropdownMenuLabel","DropdownMenuPortal","DropdownMenuRadioGroup","DropdownMenuRadioItem","DropdownMenuSeparator","DropdownMenuShortcut","DropdownMenuSub","DropdownMenuSubContent","DropdownMenuSubTrigger","DropdownMenuTrigger"],"entryPoint":"src/components/dropdown-menu/index.ts","inputs":{"src/components/dropdown-menu/dropdown-menu.tsx":{"bytesInOutput":8113},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/dropdown-menu/index.ts":{"bytesInOutput":0}},"bytes":8736},"dist/footer.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":11323},"dist/footer.cjs":{"imports":[{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Footer"],"entryPoint":"src/components/footer/index.ts","inputs":{"src/components/footer/footer.tsx":{"bytesInOutput":10510},"src/components/footer/index.ts":{"bytesInOutput":0}},"bytes":10567},"dist/input.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1744},"dist/input.cjs":{"imports":[{"path":"@base-ui/react/input","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Input"],"entryPoint":"src/components/input/index.ts","inputs":{"src/components/input/input.tsx":{"bytesInOutput":979},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/input/index.ts":{"bytesInOutput":0}},"bytes":1219},"dist/input-group.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":10627},"dist/input-group.cjs":{"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"@base-ui/react/input","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["InputGroup","InputGroupAddon","InputGroupButton","InputGroupInput","InputGroupText","InputGroupTextarea"],"entryPoint":"src/components/input-group/index.ts","inputs":{"src/components/input-group/input-group.tsx":{"bytesInOutput":5291},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/input/input.tsx":{"bytesInOutput":979},"src/components/input/index.ts":{"bytesInOutput":0},"src/components/textarea/textarea.tsx":{"bytesInOutput":717},"src/components/textarea/index.ts":{"bytesInOutput":0},"src/components/input-group/index.ts":{"bytesInOutput":0}},"bytes":7430},"dist/input-status.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":5221},"dist/input-status.cjs":{"imports":[{"path":"@base-ui/react/button","kind":"import-statement","external":true},{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["InputStatus"],"entryPoint":"src/components/input-status/index.ts","inputs":{"src/components/input-status/input-status.tsx":{"bytesInOutput":3072},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/input-status/index.ts":{"bytesInOutput":0}},"bytes":3361},"dist/label.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1501},"dist/label.cjs":{"imports":[{"path":"@base-ui/react/merge-props","kind":"import-statement","external":true},{"path":"@base-ui/react/use-render","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true}],"exports":["Label"],"entryPoint":"src/components/label/index.ts","inputs":{"src/components/label/label.tsx":{"bytesInOutput":593},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/label/index.ts":{"bytesInOutput":0}},"bytes":833},"dist/loader.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":5973},"dist/loader.cjs":{"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Loader"],"entryPoint":"src/components/loader/index.ts","inputs":{"src/components/loader/loader.tsx":{"bytesInOutput":3894},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/loader/index.ts":{"bytesInOutput":0}},"bytes":4154},"dist/logo.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":35233},"dist/logo.cjs":{"imports":[{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Logo"],"entryPoint":"src/components/logo/index.ts","inputs":{"src/lib/utils.ts":{"bytesInOutput":130},"src/components/logo/logo.tsx":{"bytesInOutput":29278},"src/components/logo/index.ts":{"bytesInOutput":0}},"bytes":29480},"dist/notification-badge.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":3511},"dist/notification-badge.cjs":{"imports":[{"path":"@base-ui/react/merge-props","kind":"import-statement","external":true},{"path":"@base-ui/react/use-render","kind":"import-statement","external":true},{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["NotificationBadge"],"entryPoint":"src/components/notification-badge/index.ts","inputs":{"src/components/notification-badge/notification-badge.tsx":{"bytesInOutput":1895},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/notification-badge/index.ts":{"bytesInOutput":0}},"bytes":2199},"dist/section-flourish.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":348},"dist/section-flourish.cjs":{"imports":[{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["SectionFlourish"],"entryPoint":"src/components/section-flourish/index.ts","inputs":{"src/components/section-flourish/section-flourish.tsx":{"bytesInOutput":194},"src/components/section-flourish/index.ts":{"bytesInOutput":0}},"bytes":280},"dist/section-header.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":8396},"dist/section-header.cjs":{"imports":[{"path":"@untitledui/icons","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"@base-ui/react/tooltip","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["SectionHeader"],"entryPoint":"src/components/section-header/index.ts","inputs":{"src/components/section-header/section-header.tsx":{"bytesInOutput":2304},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/tooltip/tooltip.tsx":{"bytesInOutput":2603},"src/components/section-header/index.ts":{"bytesInOutput":0}},"bytes":5230},"dist/tag.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":6798},"dist/tag.cjs":{"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Tag"],"entryPoint":"src/components/tag/index.ts","inputs":{"src/components/tag/tag.tsx":{"bytesInOutput":4004},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/tag/index.ts":{"bytesInOutput":0}},"bytes":4249},"dist/template-header.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1402},"dist/template-header.cjs":{"imports":[{"path":"class-variance-authority","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["TemplateHeader"],"entryPoint":"src/components/template-header/index.ts","inputs":{"src/components/template-header/template-header.tsx":{"bytesInOutput":640},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/template-header/index.ts":{"bytesInOutput":0}},"bytes":929},"dist/textarea.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":1390},"dist/textarea.cjs":{"imports":[{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Textarea"],"entryPoint":"src/components/textarea/index.ts","inputs":{"src/lib/utils.ts":{"bytesInOutput":130},"src/components/textarea/textarea.tsx":{"bytesInOutput":708},"src/components/textarea/index.ts":{"bytesInOutput":0}},"bytes":922},"dist/tooltip.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":4523},"dist/tooltip.cjs":{"imports":[{"path":"@base-ui/react/tooltip","kind":"import-statement","external":true},{"path":"clsx","kind":"import-statement","external":true},{"path":"tailwind-merge","kind":"import-statement","external":true},{"path":"react/jsx-runtime","kind":"import-statement","external":true}],"exports":["Tooltip","TooltipArrow","TooltipContent","TooltipProvider","TooltipTrigger"],"entryPoint":"src/components/tooltip/index.ts","inputs":{"src/components/tooltip/tooltip.tsx":{"bytesInOutput":2768},"src/lib/utils.ts":{"bytesInOutput":130},"src/components/tooltip/index.ts":{"bytesInOutput":0}},"bytes":3104}}}
|