@raydenui/ui 0.9.4 → 0.9.5
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/README.md +11 -0
- package/dist/index.cjs +274 -23
- package/dist/index.d.cts +56 -3
- package/dist/index.d.ts +56 -3
- package/dist/index.js +270 -24
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -92,6 +92,17 @@ function App() {
|
|
|
92
92
|
- [create-rayden-app](https://www.npmjs.com/package/create-rayden-app) — CLI scaffolding with 6 templates
|
|
93
93
|
- [@raydenui/ai](https://www.npmjs.com/package/@raydenui/ai) — MCP server for AI-assisted development
|
|
94
94
|
|
|
95
|
+
## Contributors
|
|
96
|
+
|
|
97
|
+
<!-- ALL-CONTRIBUTORS-LIST:START -->
|
|
98
|
+
<table>
|
|
99
|
+
<tr>
|
|
100
|
+
<td align="center"><a href="https://github.com/playbookTV"><img src="https://github.com/playbookTV.png" width="100px;" alt=""/><br /><sub><b>Leslie Isah</b></sub></a></td>
|
|
101
|
+
<td align="center"><a href="https://github.com/ZyhvarZeGreat"><img src="https://github.com/ZyhvarZeGreat.png" width="100px;" alt=""/><br /><sub><b>Bolude Daniel</b></sub></a></td>
|
|
102
|
+
</tr>
|
|
103
|
+
</table>
|
|
104
|
+
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
105
|
+
|
|
95
106
|
## License
|
|
96
107
|
|
|
97
108
|
MIT
|
package/dist/index.cjs
CHANGED
|
@@ -6797,7 +6797,13 @@ function DayCell({ day, state, fullDate, onClick }) {
|
|
|
6797
6797
|
"aria-pressed": state === "selected" || state === "start-range" || state === "end-range" ? true : void 0,
|
|
6798
6798
|
children: [
|
|
6799
6799
|
day,
|
|
6800
|
-
state === "today" && /* @__PURE__ */ jsxRuntime.jsx(
|
|
6800
|
+
state === "today" && /* @__PURE__ */ jsxRuntime.jsx(
|
|
6801
|
+
"span",
|
|
6802
|
+
{
|
|
6803
|
+
className: "absolute bottom-[5px] left-1/2 -translate-x-1/2 size-1 rounded-full bg-primary-400",
|
|
6804
|
+
"aria-hidden": "true"
|
|
6805
|
+
}
|
|
6806
|
+
)
|
|
6801
6807
|
]
|
|
6802
6808
|
}
|
|
6803
6809
|
);
|
|
@@ -6853,7 +6859,15 @@ function MonthGrid({
|
|
|
6853
6859
|
if (rows.length === 6 && rows[5].every((c) => c.state === "disabled")) {
|
|
6854
6860
|
rows.pop();
|
|
6855
6861
|
}
|
|
6856
|
-
const fullDayNames = [
|
|
6862
|
+
const fullDayNames = [
|
|
6863
|
+
"Monday",
|
|
6864
|
+
"Tuesday",
|
|
6865
|
+
"Wednesday",
|
|
6866
|
+
"Thursday",
|
|
6867
|
+
"Friday",
|
|
6868
|
+
"Saturday",
|
|
6869
|
+
"Sunday"
|
|
6870
|
+
];
|
|
6857
6871
|
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col", role: "grid", "aria-label": "Calendar", children: [
|
|
6858
6872
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex h-10 items-center", role: "row", children: DAY_LABELS.map((label, i) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
6859
6873
|
"div",
|
|
@@ -7647,6 +7661,194 @@ function Badge({
|
|
|
7647
7661
|
}
|
|
7648
7662
|
);
|
|
7649
7663
|
}
|
|
7664
|
+
var CardContext = react.createContext(null);
|
|
7665
|
+
function useCardContext() {
|
|
7666
|
+
const ctx = react.useContext(CardContext);
|
|
7667
|
+
return ctx ?? { size: "md" };
|
|
7668
|
+
}
|
|
7669
|
+
var variantStyles = {
|
|
7670
|
+
default: "border border-grey-200 bg-white dark:bg-grey-50",
|
|
7671
|
+
outlined: "border-2 border-grey-300 bg-transparent",
|
|
7672
|
+
elevated: "border border-grey-100 bg-white dark:bg-grey-50 shadow-soft-md",
|
|
7673
|
+
ghost: "border-none bg-transparent"
|
|
7674
|
+
};
|
|
7675
|
+
var sizeStyles2 = {
|
|
7676
|
+
sm: {
|
|
7677
|
+
header: "px-4 py-3",
|
|
7678
|
+
body: "px-4 py-3",
|
|
7679
|
+
footer: "px-4 py-3"
|
|
7680
|
+
},
|
|
7681
|
+
md: {
|
|
7682
|
+
header: "px-5 py-4",
|
|
7683
|
+
body: "px-5 py-4",
|
|
7684
|
+
footer: "px-5 py-4"
|
|
7685
|
+
},
|
|
7686
|
+
lg: {
|
|
7687
|
+
header: "px-6 py-5",
|
|
7688
|
+
body: "px-6 py-5",
|
|
7689
|
+
footer: "px-6 py-5"
|
|
7690
|
+
}
|
|
7691
|
+
};
|
|
7692
|
+
var roundedStyles = {
|
|
7693
|
+
sm: "rounded-lg",
|
|
7694
|
+
md: "rounded-[10px]",
|
|
7695
|
+
lg: "rounded-xl",
|
|
7696
|
+
xl: "rounded-2xl",
|
|
7697
|
+
full: "rounded-3xl"
|
|
7698
|
+
};
|
|
7699
|
+
var shadowStyles = {
|
|
7700
|
+
none: "",
|
|
7701
|
+
sm: "shadow-soft-xxs",
|
|
7702
|
+
md: "shadow-soft-xs",
|
|
7703
|
+
lg: "shadow-soft-sm"
|
|
7704
|
+
};
|
|
7705
|
+
var footerAlignStyles = {
|
|
7706
|
+
left: "justify-start",
|
|
7707
|
+
center: "justify-center",
|
|
7708
|
+
right: "justify-end",
|
|
7709
|
+
between: "justify-between"
|
|
7710
|
+
};
|
|
7711
|
+
var aspectRatioStyles = {
|
|
7712
|
+
auto: "",
|
|
7713
|
+
video: "aspect-video",
|
|
7714
|
+
square: "aspect-square",
|
|
7715
|
+
portrait: "aspect-[3/4]"
|
|
7716
|
+
};
|
|
7717
|
+
var Card = react.forwardRef(
|
|
7718
|
+
({
|
|
7719
|
+
variant = "default",
|
|
7720
|
+
size = "md",
|
|
7721
|
+
rounded = "lg",
|
|
7722
|
+
shadow = "sm",
|
|
7723
|
+
hoverable = false,
|
|
7724
|
+
className,
|
|
7725
|
+
children,
|
|
7726
|
+
...rest
|
|
7727
|
+
}, ref) => {
|
|
7728
|
+
return /* @__PURE__ */ jsxRuntime.jsx(CardContext.Provider, { value: { size }, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
7729
|
+
"div",
|
|
7730
|
+
{
|
|
7731
|
+
ref,
|
|
7732
|
+
className: cn(
|
|
7733
|
+
"flex flex-col overflow-hidden",
|
|
7734
|
+
variantStyles[variant],
|
|
7735
|
+
roundedStyles[rounded],
|
|
7736
|
+
variant !== "elevated" && shadowStyles[shadow],
|
|
7737
|
+
hoverable && "transition-shadow duration-200 hover:shadow-soft-md",
|
|
7738
|
+
className
|
|
7739
|
+
),
|
|
7740
|
+
...rest,
|
|
7741
|
+
children
|
|
7742
|
+
}
|
|
7743
|
+
) });
|
|
7744
|
+
}
|
|
7745
|
+
);
|
|
7746
|
+
Card.displayName = "Card";
|
|
7747
|
+
var CardHeader = react.forwardRef(
|
|
7748
|
+
({ title, subtitle, actions, bordered = false, className, children, ...rest }, ref) => {
|
|
7749
|
+
const { size } = useCardContext();
|
|
7750
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
7751
|
+
"div",
|
|
7752
|
+
{
|
|
7753
|
+
ref,
|
|
7754
|
+
className: cn(
|
|
7755
|
+
"flex items-start justify-between gap-4",
|
|
7756
|
+
sizeStyles2[size].header,
|
|
7757
|
+
bordered && "border-b border-grey-200",
|
|
7758
|
+
className
|
|
7759
|
+
),
|
|
7760
|
+
...rest,
|
|
7761
|
+
children: [
|
|
7762
|
+
(title || subtitle || children) && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex min-w-0 flex-1 flex-col", children: [
|
|
7763
|
+
title && /* @__PURE__ */ jsxRuntime.jsx("h3", { className: "text-lg font-semibold leading-[1.45] text-grey-900", children: title }),
|
|
7764
|
+
subtitle && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-sm leading-[1.45] text-grey-500", children: subtitle }),
|
|
7765
|
+
children
|
|
7766
|
+
] }),
|
|
7767
|
+
actions && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex shrink-0 items-center gap-2", children: actions })
|
|
7768
|
+
]
|
|
7769
|
+
}
|
|
7770
|
+
);
|
|
7771
|
+
}
|
|
7772
|
+
);
|
|
7773
|
+
CardHeader.displayName = "CardHeader";
|
|
7774
|
+
var CardBody = react.forwardRef(
|
|
7775
|
+
({ noPadding = false, className, children, ...rest }, ref) => {
|
|
7776
|
+
const { size } = useCardContext();
|
|
7777
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
7778
|
+
"div",
|
|
7779
|
+
{
|
|
7780
|
+
ref,
|
|
7781
|
+
className: cn("flex-1", !noPadding && sizeStyles2[size].body, className),
|
|
7782
|
+
...rest,
|
|
7783
|
+
children
|
|
7784
|
+
}
|
|
7785
|
+
);
|
|
7786
|
+
}
|
|
7787
|
+
);
|
|
7788
|
+
CardBody.displayName = "CardBody";
|
|
7789
|
+
var CardFooter = react.forwardRef(
|
|
7790
|
+
({ align = "right", bordered = false, className, children, ...rest }, ref) => {
|
|
7791
|
+
const { size } = useCardContext();
|
|
7792
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
7793
|
+
"div",
|
|
7794
|
+
{
|
|
7795
|
+
ref,
|
|
7796
|
+
className: cn(
|
|
7797
|
+
"flex items-center gap-3",
|
|
7798
|
+
sizeStyles2[size].footer,
|
|
7799
|
+
footerAlignStyles[align],
|
|
7800
|
+
bordered && "border-t border-grey-200",
|
|
7801
|
+
className
|
|
7802
|
+
),
|
|
7803
|
+
...rest,
|
|
7804
|
+
children
|
|
7805
|
+
}
|
|
7806
|
+
);
|
|
7807
|
+
}
|
|
7808
|
+
);
|
|
7809
|
+
CardFooter.displayName = "CardFooter";
|
|
7810
|
+
var CardImage = react.forwardRef(
|
|
7811
|
+
({
|
|
7812
|
+
position = "top",
|
|
7813
|
+
aspectRatio = "auto",
|
|
7814
|
+
objectFit = "cover",
|
|
7815
|
+
alt,
|
|
7816
|
+
className,
|
|
7817
|
+
...rest
|
|
7818
|
+
}, ref) => {
|
|
7819
|
+
const objectFitClasses = {
|
|
7820
|
+
cover: "object-cover",
|
|
7821
|
+
contain: "object-contain",
|
|
7822
|
+
fill: "object-fill"
|
|
7823
|
+
};
|
|
7824
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
7825
|
+
"div",
|
|
7826
|
+
{
|
|
7827
|
+
className: cn(
|
|
7828
|
+
"w-full overflow-hidden",
|
|
7829
|
+
position === "top" && "first:rounded-t-[inherit]",
|
|
7830
|
+
position === "bottom" && "last:rounded-b-[inherit]",
|
|
7831
|
+
position === "full" && "first:rounded-t-[inherit] last:rounded-b-[inherit]"
|
|
7832
|
+
),
|
|
7833
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
7834
|
+
"img",
|
|
7835
|
+
{
|
|
7836
|
+
ref,
|
|
7837
|
+
alt,
|
|
7838
|
+
className: cn(
|
|
7839
|
+
"w-full",
|
|
7840
|
+
aspectRatioStyles[aspectRatio],
|
|
7841
|
+
objectFitClasses[objectFit],
|
|
7842
|
+
className
|
|
7843
|
+
),
|
|
7844
|
+
...rest
|
|
7845
|
+
}
|
|
7846
|
+
)
|
|
7847
|
+
}
|
|
7848
|
+
);
|
|
7849
|
+
}
|
|
7850
|
+
);
|
|
7851
|
+
CardImage.displayName = "CardImage";
|
|
7650
7852
|
var stateStyles = {
|
|
7651
7853
|
information: {
|
|
7652
7854
|
border: "bg-secondary-500",
|
|
@@ -8892,7 +9094,30 @@ function Variation6({ label, value, icon, trendBadge, description, cta }) {
|
|
|
8892
9094
|
cta && /* @__PURE__ */ jsxRuntime.jsx(CtaFooter, { cta, centered: true })
|
|
8893
9095
|
] });
|
|
8894
9096
|
}
|
|
8895
|
-
function MetricsCard({
|
|
9097
|
+
function MetricsCard({
|
|
9098
|
+
variation = "2",
|
|
9099
|
+
className,
|
|
9100
|
+
// Destructure component-specific props to prevent them from being spread to DOM
|
|
9101
|
+
label,
|
|
9102
|
+
value,
|
|
9103
|
+
icon,
|
|
9104
|
+
trendBadge,
|
|
9105
|
+
statusBadge,
|
|
9106
|
+
description,
|
|
9107
|
+
secondaryText,
|
|
9108
|
+
cta,
|
|
9109
|
+
...rest
|
|
9110
|
+
}) {
|
|
9111
|
+
const componentProps = {
|
|
9112
|
+
label,
|
|
9113
|
+
value,
|
|
9114
|
+
icon,
|
|
9115
|
+
trendBadge,
|
|
9116
|
+
statusBadge,
|
|
9117
|
+
description,
|
|
9118
|
+
secondaryText,
|
|
9119
|
+
cta
|
|
9120
|
+
};
|
|
8896
9121
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
8897
9122
|
"div",
|
|
8898
9123
|
{
|
|
@@ -8900,14 +9125,14 @@ function MetricsCard({ variation = "2", className, ...props }) {
|
|
|
8900
9125
|
"flex flex-col overflow-clip rounded-xl border border-grey-200 bg-white dark:bg-grey-50 shadow-soft-xxs",
|
|
8901
9126
|
className
|
|
8902
9127
|
),
|
|
8903
|
-
...
|
|
9128
|
+
...rest,
|
|
8904
9129
|
children: [
|
|
8905
|
-
variation === "1" && /* @__PURE__ */ jsxRuntime.jsx(Variation1, { ...
|
|
8906
|
-
variation === "2" && /* @__PURE__ */ jsxRuntime.jsx(Variation2, { ...
|
|
8907
|
-
variation === "3" && /* @__PURE__ */ jsxRuntime.jsx(Variation3, { ...
|
|
8908
|
-
variation === "4" && /* @__PURE__ */ jsxRuntime.jsx(Variation4, { ...
|
|
8909
|
-
variation === "5" && /* @__PURE__ */ jsxRuntime.jsx(Variation5, { ...
|
|
8910
|
-
variation === "6" && /* @__PURE__ */ jsxRuntime.jsx(Variation6, { ...
|
|
9130
|
+
variation === "1" && /* @__PURE__ */ jsxRuntime.jsx(Variation1, { ...componentProps }),
|
|
9131
|
+
variation === "2" && /* @__PURE__ */ jsxRuntime.jsx(Variation2, { ...componentProps }),
|
|
9132
|
+
variation === "3" && /* @__PURE__ */ jsxRuntime.jsx(Variation3, { ...componentProps }),
|
|
9133
|
+
variation === "4" && /* @__PURE__ */ jsxRuntime.jsx(Variation4, { ...componentProps }),
|
|
9134
|
+
variation === "5" && /* @__PURE__ */ jsxRuntime.jsx(Variation5, { ...componentProps }),
|
|
9135
|
+
variation === "6" && /* @__PURE__ */ jsxRuntime.jsx(Variation6, { ...componentProps })
|
|
8911
9136
|
]
|
|
8912
9137
|
}
|
|
8913
9138
|
);
|
|
@@ -9071,19 +9296,34 @@ var FileUploadDropZone = react.forwardRef(
|
|
|
9071
9296
|
] }),
|
|
9072
9297
|
/* @__PURE__ */ jsxRuntime.jsx(Button, { variant: "primary", size: "sm", onClick: handleBrowse, children: "Browse Files" })
|
|
9073
9298
|
] }),
|
|
9074
|
-
state === "uploading" && uploadingFile && /* @__PURE__ */ jsxRuntime.jsxs(
|
|
9075
|
-
|
|
9076
|
-
|
|
9077
|
-
|
|
9078
|
-
|
|
9079
|
-
|
|
9080
|
-
|
|
9081
|
-
|
|
9299
|
+
state === "uploading" && uploadingFile && /* @__PURE__ */ jsxRuntime.jsxs(
|
|
9300
|
+
"div",
|
|
9301
|
+
{
|
|
9302
|
+
className: "flex w-full flex-col items-center gap-4",
|
|
9303
|
+
"aria-live": "polite",
|
|
9304
|
+
"aria-atomic": "true",
|
|
9305
|
+
children: [
|
|
9306
|
+
/* @__PURE__ */ jsxRuntime.jsx(FileTypeIcon, { type: getFileType(uploadingFile.name), "aria-hidden": "true" }),
|
|
9307
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex w-full max-w-xs flex-col gap-2", children: [
|
|
9308
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-between", children: [
|
|
9309
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-body-sm font-medium text-grey-700 truncate", children: uploadingFile.name }),
|
|
9310
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
9311
|
+
"span",
|
|
9312
|
+
{
|
|
9313
|
+
className: "text-body-xs font-medium text-grey-500 ml-2 shrink-0",
|
|
9314
|
+
"aria-label": `Upload progress: ${Math.round(uploadingFile.progress)} percent`,
|
|
9315
|
+
children: [
|
|
9316
|
+
Math.round(uploadingFile.progress),
|
|
9317
|
+
"%"
|
|
9318
|
+
]
|
|
9319
|
+
}
|
|
9320
|
+
)
|
|
9321
|
+
] }),
|
|
9322
|
+
/* @__PURE__ */ jsxRuntime.jsx(ProgressBar, { value: uploadingFile.progress, size: "sm", showPercentage: false })
|
|
9082
9323
|
] })
|
|
9083
|
-
]
|
|
9084
|
-
|
|
9085
|
-
|
|
9086
|
-
] }),
|
|
9324
|
+
]
|
|
9325
|
+
}
|
|
9326
|
+
),
|
|
9087
9327
|
state === "success" && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col items-center gap-4", role: "status", children: [
|
|
9088
9328
|
/* @__PURE__ */ jsxRuntime.jsx(UploadStateIcon, { state: "success", size: 56, "aria-hidden": "true" }),
|
|
9089
9329
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col items-center gap-1", children: /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-body-sm font-semibold text-grey-800", children: "Document Uploaded Successfully" }) }),
|
|
@@ -14363,7 +14603,13 @@ var ActivityItem = react.forwardRef(
|
|
|
14363
14603
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-1 w-full", children: [
|
|
14364
14604
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center justify-between w-full", children: [
|
|
14365
14605
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-1 items-start gap-1 min-w-0", children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-body-sm leading-5 text-grey-600", children: text }) }),
|
|
14366
|
-
unread && /* @__PURE__ */ jsxRuntime.jsx(
|
|
14606
|
+
unread && /* @__PURE__ */ jsxRuntime.jsx(
|
|
14607
|
+
"span",
|
|
14608
|
+
{
|
|
14609
|
+
className: "shrink-0 size-2 rounded-full bg-[#04802E] border-[1.5px] border-white",
|
|
14610
|
+
"aria-hidden": "true"
|
|
14611
|
+
}
|
|
14612
|
+
),
|
|
14367
14613
|
unread && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "sr-only", children: "Unread" })
|
|
14368
14614
|
] }),
|
|
14369
14615
|
(date || time || link || badge) && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-start gap-1 w-full", children: [
|
|
@@ -14722,6 +14968,11 @@ exports.Breadcrumb = Breadcrumb;
|
|
|
14722
14968
|
exports.Button = Button;
|
|
14723
14969
|
exports.ButtonGroup = ButtonGroup;
|
|
14724
14970
|
exports.ButtonGroupItem = ButtonGroupItem;
|
|
14971
|
+
exports.Card = Card;
|
|
14972
|
+
exports.CardBody = CardBody;
|
|
14973
|
+
exports.CardFooter = CardFooter;
|
|
14974
|
+
exports.CardHeader = CardHeader;
|
|
14975
|
+
exports.CardImage = CardImage;
|
|
14725
14976
|
exports.Checkbox = Checkbox;
|
|
14726
14977
|
exports.Chip = Chip;
|
|
14727
14978
|
exports.Counter = Counter;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { SVGAttributes, HTMLAttributes, ReactNode, ButtonHTMLAttributes, InputHTMLAttributes, TdHTMLAttributes, ThHTMLAttributes } from 'react';
|
|
2
|
+
import { SVGAttributes, HTMLAttributes, ReactNode, ButtonHTMLAttributes, InputHTMLAttributes, ImgHTMLAttributes, TdHTMLAttributes, ThHTMLAttributes } from 'react';
|
|
3
3
|
import { IconVariant, IconName, IconRecord } from './icons.cjs';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import { ChartData, ChartOptions } from 'chart.js';
|
|
@@ -329,6 +329,59 @@ interface BadgeProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
329
329
|
}
|
|
330
330
|
declare function Badge({ color, type, size, leadingIcon, trailingIcon, className, children, ...rest }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
331
331
|
|
|
332
|
+
type CardVariant = "default" | "outlined" | "elevated" | "ghost";
|
|
333
|
+
type CardSize = "sm" | "md" | "lg";
|
|
334
|
+
type CardRounded = "sm" | "md" | "lg" | "xl" | "full";
|
|
335
|
+
type CardShadow = "none" | "sm" | "md" | "lg";
|
|
336
|
+
type CardImagePosition = "top" | "bottom" | "full";
|
|
337
|
+
interface CardProps extends HTMLAttributes<HTMLDivElement> {
|
|
338
|
+
/** Visual style variant */
|
|
339
|
+
variant?: CardVariant;
|
|
340
|
+
/** Padding scale for sub-components */
|
|
341
|
+
size?: CardSize;
|
|
342
|
+
/** Corner radius */
|
|
343
|
+
rounded?: CardRounded;
|
|
344
|
+
/** Shadow intensity */
|
|
345
|
+
shadow?: CardShadow;
|
|
346
|
+
/** Enable hover shadow effect */
|
|
347
|
+
hoverable?: boolean;
|
|
348
|
+
}
|
|
349
|
+
interface CardHeaderProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
|
|
350
|
+
/** Header title */
|
|
351
|
+
title?: ReactNode;
|
|
352
|
+
/** Header subtitle */
|
|
353
|
+
subtitle?: ReactNode;
|
|
354
|
+
/** Actions slot (right side) */
|
|
355
|
+
actions?: ReactNode;
|
|
356
|
+
/** Show bottom border */
|
|
357
|
+
bordered?: boolean;
|
|
358
|
+
}
|
|
359
|
+
interface CardBodyProps extends HTMLAttributes<HTMLDivElement> {
|
|
360
|
+
/** Remove default padding */
|
|
361
|
+
noPadding?: boolean;
|
|
362
|
+
}
|
|
363
|
+
interface CardFooterProps extends HTMLAttributes<HTMLDivElement> {
|
|
364
|
+
/** Footer content alignment */
|
|
365
|
+
align?: "left" | "center" | "right" | "between";
|
|
366
|
+
/** Show top border */
|
|
367
|
+
bordered?: boolean;
|
|
368
|
+
}
|
|
369
|
+
interface CardImageProps extends ImgHTMLAttributes<HTMLImageElement> {
|
|
370
|
+
/** Image position relative to card content */
|
|
371
|
+
position?: CardImagePosition;
|
|
372
|
+
/** Aspect ratio */
|
|
373
|
+
aspectRatio?: "auto" | "video" | "square" | "portrait";
|
|
374
|
+
/** Object fit behavior */
|
|
375
|
+
objectFit?: "cover" | "contain" | "fill";
|
|
376
|
+
/** Alt text (required for accessibility) */
|
|
377
|
+
alt: string;
|
|
378
|
+
}
|
|
379
|
+
declare const Card: react.ForwardRefExoticComponent<CardProps & react.RefAttributes<HTMLDivElement>>;
|
|
380
|
+
declare const CardHeader: react.ForwardRefExoticComponent<CardHeaderProps & react.RefAttributes<HTMLDivElement>>;
|
|
381
|
+
declare const CardBody: react.ForwardRefExoticComponent<CardBodyProps & react.RefAttributes<HTMLDivElement>>;
|
|
382
|
+
declare const CardFooter: react.ForwardRefExoticComponent<CardFooterProps & react.RefAttributes<HTMLDivElement>>;
|
|
383
|
+
declare const CardImage: react.ForwardRefExoticComponent<CardImageProps & react.RefAttributes<HTMLImageElement>>;
|
|
384
|
+
|
|
332
385
|
type AlertVariant = "toast" | "banner";
|
|
333
386
|
type AlertState = "information" | "success" | "warning" | "error";
|
|
334
387
|
interface AlertAction {
|
|
@@ -525,7 +578,7 @@ interface MetricsCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
525
578
|
/** Call-to-action link */
|
|
526
579
|
cta?: MetricsCardCta;
|
|
527
580
|
}
|
|
528
|
-
declare function MetricsCard({ variation, className, ...
|
|
581
|
+
declare function MetricsCard({ variation, className, label, value, icon, trendBadge, statusBadge, description, secondaryText, cta, ...rest }: MetricsCardProps): react_jsx_runtime.JSX.Element;
|
|
529
582
|
|
|
530
583
|
type FileUploadItemStatus = "pending" | "uploading" | "complete" | "error";
|
|
531
584
|
interface FileUploadFileData {
|
|
@@ -1152,4 +1205,4 @@ declare function useRaydenRadio<TFieldValues extends FieldValues = FieldValues,
|
|
|
1152
1205
|
value: string;
|
|
1153
1206
|
}): UseRaydenRadioReturn<TName>;
|
|
1154
1207
|
|
|
1155
|
-
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, ActivityContent, type ActivityContentAction, type ActivityContentAttachment, type ActivityContentProps, type ActivityContentStyle, type ActivityContentVariant, ActivityItem, type ActivityItemLink, type ActivityItemProps, Alert, type AlertAction, type AlertProps, type AlertState, type AlertVariant, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarGroupSize, type AvatarProps, type AvatarSize, type AvatarStatus, type AvatarType, Badge, type BadgeColor, type BadgeProps, type BadgeSize, type BadgeType, Banner, type BannerEmphasis, type BannerProps, type BannerSize, type BannerStatus, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, type BreadcrumbSeparator, Button, type ButtonAppearance, ButtonGroup, ButtonGroupItem, type ButtonGroupItemProps, type ButtonGroupProps, type ButtonProps, type ButtonSize, type ButtonVariant, type ChartType, Checkbox, type CheckboxProps, Chip, type ChipProps, Counter, type CounterProps, type CounterShape, type CounterSize, DatePicker, type DatePickerMode, type DatePickerProps, Divider, type DividerProps, type DividerVariant, type DropZoneState, DropdownMenu, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, EmptyStateIllustration, type EmptyStateIllustrationProps, FileUpload, FileUploadDropZone, type FileUploadDropZoneProps, type FileUploadFileData, FileUploadItem, type FileUploadItemProps, type FileUploadItemStatus, type FileUploadProps, Icon, IconName, type IconProps, type IconSize, IconVariant, type IllustrationName, Input, type InputProps, type InputSize, LinearStepper, type LinearStepperProps, MetricsCard, type MetricsCardCta, type MetricsCardProps, type MetricsCardStatusBadge, type MetricsCardTrend, type MetricsCardTrendBadge, type MetricsCardVariation, Modal, type ModalProps, type ModalSize, NumberCounter, type NumberCounterColor, type NumberCounterProps, type NumberCounterSize, Pagination, type PaginationProps, ProgressBar, type ProgressBarProps, type ProgressBarSize, type ProgressBarType, ProgressCircle, type ProgressCircleProps, type ProgressCircleSize, type ProgressCircleStyle, Radio, type RadioProps, RangeSlider, type RangeSliderProps, RaydenChart, type RaydenChartProps, type ResolvedTheme, SegmentedStepper, type SegmentedStepperProps, Select, SelectOption, type SelectOptionProps, type SelectProps, SidebarMenu, type SidebarMenuContextValue, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, SidebarMenuSection, type SidebarMenuSectionProps, SidebarMenuSub, SidebarMenuSubItem, type SidebarMenuSubItemProps, type SidebarMenuSubProps, type SidebarMenuTheme, Slider, type SliderProps, type SliderSize, type SortDirection, Spinner, type SpinnerLabelPosition, type SpinnerProps, type SpinnerSize, type SpinnerStyle, type SpinnerType, type StepIndicator, type StepItem, type StepStatus, Stepper, type StepperOrientation, type StepperProps, Tab, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsOrientation, type TabsProps, type TabsSize, type TabsVariant, type Theme, ThemeProvider, type ThemeProviderProps, Toggle, type ToggleProps, Tooltip, type TooltipAction, type TooltipPosition, type TooltipProps, type TooltipTheme, type UseRaydenCheckboxReturn, type UseRaydenFormControlOptions, type UseRaydenInputOptions, type UseRaydenInputReturn, type UseRaydenRadioReturn, type UseRaydenSelectOptions, type UseRaydenSelectReturn, chartColors, chartFont, cn, createGradientFill, hexToRgba, illustrationNames, useRaydenCheckbox, useRaydenInput, useRaydenRadio, useRaydenSelect, useRaydenToggle, useResolvedTheme, useTheme };
|
|
1208
|
+
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, ActivityContent, type ActivityContentAction, type ActivityContentAttachment, type ActivityContentProps, type ActivityContentStyle, type ActivityContentVariant, ActivityItem, type ActivityItemLink, type ActivityItemProps, Alert, type AlertAction, type AlertProps, type AlertState, type AlertVariant, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarGroupSize, type AvatarProps, type AvatarSize, type AvatarStatus, type AvatarType, Badge, type BadgeColor, type BadgeProps, type BadgeSize, type BadgeType, Banner, type BannerEmphasis, type BannerProps, type BannerSize, type BannerStatus, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, type BreadcrumbSeparator, Button, type ButtonAppearance, ButtonGroup, ButtonGroupItem, type ButtonGroupItemProps, type ButtonGroupProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, CardBody, type CardBodyProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardImage, type CardImagePosition, type CardImageProps, type CardProps, type CardRounded, type CardShadow, type CardSize, type CardVariant, type ChartType, Checkbox, type CheckboxProps, Chip, type ChipProps, Counter, type CounterProps, type CounterShape, type CounterSize, DatePicker, type DatePickerMode, type DatePickerProps, Divider, type DividerProps, type DividerVariant, type DropZoneState, DropdownMenu, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, EmptyStateIllustration, type EmptyStateIllustrationProps, FileUpload, FileUploadDropZone, type FileUploadDropZoneProps, type FileUploadFileData, FileUploadItem, type FileUploadItemProps, type FileUploadItemStatus, type FileUploadProps, Icon, IconName, type IconProps, type IconSize, IconVariant, type IllustrationName, Input, type InputProps, type InputSize, LinearStepper, type LinearStepperProps, MetricsCard, type MetricsCardCta, type MetricsCardProps, type MetricsCardStatusBadge, type MetricsCardTrend, type MetricsCardTrendBadge, type MetricsCardVariation, Modal, type ModalProps, type ModalSize, NumberCounter, type NumberCounterColor, type NumberCounterProps, type NumberCounterSize, Pagination, type PaginationProps, ProgressBar, type ProgressBarProps, type ProgressBarSize, type ProgressBarType, ProgressCircle, type ProgressCircleProps, type ProgressCircleSize, type ProgressCircleStyle, Radio, type RadioProps, RangeSlider, type RangeSliderProps, RaydenChart, type RaydenChartProps, type ResolvedTheme, SegmentedStepper, type SegmentedStepperProps, Select, SelectOption, type SelectOptionProps, type SelectProps, SidebarMenu, type SidebarMenuContextValue, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, SidebarMenuSection, type SidebarMenuSectionProps, SidebarMenuSub, SidebarMenuSubItem, type SidebarMenuSubItemProps, type SidebarMenuSubProps, type SidebarMenuTheme, Slider, type SliderProps, type SliderSize, type SortDirection, Spinner, type SpinnerLabelPosition, type SpinnerProps, type SpinnerSize, type SpinnerStyle, type SpinnerType, type StepIndicator, type StepItem, type StepStatus, Stepper, type StepperOrientation, type StepperProps, Tab, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsOrientation, type TabsProps, type TabsSize, type TabsVariant, type Theme, ThemeProvider, type ThemeProviderProps, Toggle, type ToggleProps, Tooltip, type TooltipAction, type TooltipPosition, type TooltipProps, type TooltipTheme, type UseRaydenCheckboxReturn, type UseRaydenFormControlOptions, type UseRaydenInputOptions, type UseRaydenInputReturn, type UseRaydenRadioReturn, type UseRaydenSelectOptions, type UseRaydenSelectReturn, chartColors, chartFont, cn, createGradientFill, hexToRgba, illustrationNames, useRaydenCheckbox, useRaydenInput, useRaydenRadio, useRaydenSelect, useRaydenToggle, useResolvedTheme, useTheme };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { SVGAttributes, HTMLAttributes, ReactNode, ButtonHTMLAttributes, InputHTMLAttributes, TdHTMLAttributes, ThHTMLAttributes } from 'react';
|
|
2
|
+
import { SVGAttributes, HTMLAttributes, ReactNode, ButtonHTMLAttributes, InputHTMLAttributes, ImgHTMLAttributes, TdHTMLAttributes, ThHTMLAttributes } from 'react';
|
|
3
3
|
import { IconVariant, IconName, IconRecord } from './icons.js';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import { ChartData, ChartOptions } from 'chart.js';
|
|
@@ -329,6 +329,59 @@ interface BadgeProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
329
329
|
}
|
|
330
330
|
declare function Badge({ color, type, size, leadingIcon, trailingIcon, className, children, ...rest }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
331
331
|
|
|
332
|
+
type CardVariant = "default" | "outlined" | "elevated" | "ghost";
|
|
333
|
+
type CardSize = "sm" | "md" | "lg";
|
|
334
|
+
type CardRounded = "sm" | "md" | "lg" | "xl" | "full";
|
|
335
|
+
type CardShadow = "none" | "sm" | "md" | "lg";
|
|
336
|
+
type CardImagePosition = "top" | "bottom" | "full";
|
|
337
|
+
interface CardProps extends HTMLAttributes<HTMLDivElement> {
|
|
338
|
+
/** Visual style variant */
|
|
339
|
+
variant?: CardVariant;
|
|
340
|
+
/** Padding scale for sub-components */
|
|
341
|
+
size?: CardSize;
|
|
342
|
+
/** Corner radius */
|
|
343
|
+
rounded?: CardRounded;
|
|
344
|
+
/** Shadow intensity */
|
|
345
|
+
shadow?: CardShadow;
|
|
346
|
+
/** Enable hover shadow effect */
|
|
347
|
+
hoverable?: boolean;
|
|
348
|
+
}
|
|
349
|
+
interface CardHeaderProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
|
|
350
|
+
/** Header title */
|
|
351
|
+
title?: ReactNode;
|
|
352
|
+
/** Header subtitle */
|
|
353
|
+
subtitle?: ReactNode;
|
|
354
|
+
/** Actions slot (right side) */
|
|
355
|
+
actions?: ReactNode;
|
|
356
|
+
/** Show bottom border */
|
|
357
|
+
bordered?: boolean;
|
|
358
|
+
}
|
|
359
|
+
interface CardBodyProps extends HTMLAttributes<HTMLDivElement> {
|
|
360
|
+
/** Remove default padding */
|
|
361
|
+
noPadding?: boolean;
|
|
362
|
+
}
|
|
363
|
+
interface CardFooterProps extends HTMLAttributes<HTMLDivElement> {
|
|
364
|
+
/** Footer content alignment */
|
|
365
|
+
align?: "left" | "center" | "right" | "between";
|
|
366
|
+
/** Show top border */
|
|
367
|
+
bordered?: boolean;
|
|
368
|
+
}
|
|
369
|
+
interface CardImageProps extends ImgHTMLAttributes<HTMLImageElement> {
|
|
370
|
+
/** Image position relative to card content */
|
|
371
|
+
position?: CardImagePosition;
|
|
372
|
+
/** Aspect ratio */
|
|
373
|
+
aspectRatio?: "auto" | "video" | "square" | "portrait";
|
|
374
|
+
/** Object fit behavior */
|
|
375
|
+
objectFit?: "cover" | "contain" | "fill";
|
|
376
|
+
/** Alt text (required for accessibility) */
|
|
377
|
+
alt: string;
|
|
378
|
+
}
|
|
379
|
+
declare const Card: react.ForwardRefExoticComponent<CardProps & react.RefAttributes<HTMLDivElement>>;
|
|
380
|
+
declare const CardHeader: react.ForwardRefExoticComponent<CardHeaderProps & react.RefAttributes<HTMLDivElement>>;
|
|
381
|
+
declare const CardBody: react.ForwardRefExoticComponent<CardBodyProps & react.RefAttributes<HTMLDivElement>>;
|
|
382
|
+
declare const CardFooter: react.ForwardRefExoticComponent<CardFooterProps & react.RefAttributes<HTMLDivElement>>;
|
|
383
|
+
declare const CardImage: react.ForwardRefExoticComponent<CardImageProps & react.RefAttributes<HTMLImageElement>>;
|
|
384
|
+
|
|
332
385
|
type AlertVariant = "toast" | "banner";
|
|
333
386
|
type AlertState = "information" | "success" | "warning" | "error";
|
|
334
387
|
interface AlertAction {
|
|
@@ -525,7 +578,7 @@ interface MetricsCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
525
578
|
/** Call-to-action link */
|
|
526
579
|
cta?: MetricsCardCta;
|
|
527
580
|
}
|
|
528
|
-
declare function MetricsCard({ variation, className, ...
|
|
581
|
+
declare function MetricsCard({ variation, className, label, value, icon, trendBadge, statusBadge, description, secondaryText, cta, ...rest }: MetricsCardProps): react_jsx_runtime.JSX.Element;
|
|
529
582
|
|
|
530
583
|
type FileUploadItemStatus = "pending" | "uploading" | "complete" | "error";
|
|
531
584
|
interface FileUploadFileData {
|
|
@@ -1152,4 +1205,4 @@ declare function useRaydenRadio<TFieldValues extends FieldValues = FieldValues,
|
|
|
1152
1205
|
value: string;
|
|
1153
1206
|
}): UseRaydenRadioReturn<TName>;
|
|
1154
1207
|
|
|
1155
|
-
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, ActivityContent, type ActivityContentAction, type ActivityContentAttachment, type ActivityContentProps, type ActivityContentStyle, type ActivityContentVariant, ActivityItem, type ActivityItemLink, type ActivityItemProps, Alert, type AlertAction, type AlertProps, type AlertState, type AlertVariant, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarGroupSize, type AvatarProps, type AvatarSize, type AvatarStatus, type AvatarType, Badge, type BadgeColor, type BadgeProps, type BadgeSize, type BadgeType, Banner, type BannerEmphasis, type BannerProps, type BannerSize, type BannerStatus, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, type BreadcrumbSeparator, Button, type ButtonAppearance, ButtonGroup, ButtonGroupItem, type ButtonGroupItemProps, type ButtonGroupProps, type ButtonProps, type ButtonSize, type ButtonVariant, type ChartType, Checkbox, type CheckboxProps, Chip, type ChipProps, Counter, type CounterProps, type CounterShape, type CounterSize, DatePicker, type DatePickerMode, type DatePickerProps, Divider, type DividerProps, type DividerVariant, type DropZoneState, DropdownMenu, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, EmptyStateIllustration, type EmptyStateIllustrationProps, FileUpload, FileUploadDropZone, type FileUploadDropZoneProps, type FileUploadFileData, FileUploadItem, type FileUploadItemProps, type FileUploadItemStatus, type FileUploadProps, Icon, IconName, type IconProps, type IconSize, IconVariant, type IllustrationName, Input, type InputProps, type InputSize, LinearStepper, type LinearStepperProps, MetricsCard, type MetricsCardCta, type MetricsCardProps, type MetricsCardStatusBadge, type MetricsCardTrend, type MetricsCardTrendBadge, type MetricsCardVariation, Modal, type ModalProps, type ModalSize, NumberCounter, type NumberCounterColor, type NumberCounterProps, type NumberCounterSize, Pagination, type PaginationProps, ProgressBar, type ProgressBarProps, type ProgressBarSize, type ProgressBarType, ProgressCircle, type ProgressCircleProps, type ProgressCircleSize, type ProgressCircleStyle, Radio, type RadioProps, RangeSlider, type RangeSliderProps, RaydenChart, type RaydenChartProps, type ResolvedTheme, SegmentedStepper, type SegmentedStepperProps, Select, SelectOption, type SelectOptionProps, type SelectProps, SidebarMenu, type SidebarMenuContextValue, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, SidebarMenuSection, type SidebarMenuSectionProps, SidebarMenuSub, SidebarMenuSubItem, type SidebarMenuSubItemProps, type SidebarMenuSubProps, type SidebarMenuTheme, Slider, type SliderProps, type SliderSize, type SortDirection, Spinner, type SpinnerLabelPosition, type SpinnerProps, type SpinnerSize, type SpinnerStyle, type SpinnerType, type StepIndicator, type StepItem, type StepStatus, Stepper, type StepperOrientation, type StepperProps, Tab, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsOrientation, type TabsProps, type TabsSize, type TabsVariant, type Theme, ThemeProvider, type ThemeProviderProps, Toggle, type ToggleProps, Tooltip, type TooltipAction, type TooltipPosition, type TooltipProps, type TooltipTheme, type UseRaydenCheckboxReturn, type UseRaydenFormControlOptions, type UseRaydenInputOptions, type UseRaydenInputReturn, type UseRaydenRadioReturn, type UseRaydenSelectOptions, type UseRaydenSelectReturn, chartColors, chartFont, cn, createGradientFill, hexToRgba, illustrationNames, useRaydenCheckbox, useRaydenInput, useRaydenRadio, useRaydenSelect, useRaydenToggle, useResolvedTheme, useTheme };
|
|
1208
|
+
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, ActivityContent, type ActivityContentAction, type ActivityContentAttachment, type ActivityContentProps, type ActivityContentStyle, type ActivityContentVariant, ActivityItem, type ActivityItemLink, type ActivityItemProps, Alert, type AlertAction, type AlertProps, type AlertState, type AlertVariant, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarGroupSize, type AvatarProps, type AvatarSize, type AvatarStatus, type AvatarType, Badge, type BadgeColor, type BadgeProps, type BadgeSize, type BadgeType, Banner, type BannerEmphasis, type BannerProps, type BannerSize, type BannerStatus, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, type BreadcrumbSeparator, Button, type ButtonAppearance, ButtonGroup, ButtonGroupItem, type ButtonGroupItemProps, type ButtonGroupProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, CardBody, type CardBodyProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardImage, type CardImagePosition, type CardImageProps, type CardProps, type CardRounded, type CardShadow, type CardSize, type CardVariant, type ChartType, Checkbox, type CheckboxProps, Chip, type ChipProps, Counter, type CounterProps, type CounterShape, type CounterSize, DatePicker, type DatePickerMode, type DatePickerProps, Divider, type DividerProps, type DividerVariant, type DropZoneState, DropdownMenu, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, EmptyStateIllustration, type EmptyStateIllustrationProps, FileUpload, FileUploadDropZone, type FileUploadDropZoneProps, type FileUploadFileData, FileUploadItem, type FileUploadItemProps, type FileUploadItemStatus, type FileUploadProps, Icon, IconName, type IconProps, type IconSize, IconVariant, type IllustrationName, Input, type InputProps, type InputSize, LinearStepper, type LinearStepperProps, MetricsCard, type MetricsCardCta, type MetricsCardProps, type MetricsCardStatusBadge, type MetricsCardTrend, type MetricsCardTrendBadge, type MetricsCardVariation, Modal, type ModalProps, type ModalSize, NumberCounter, type NumberCounterColor, type NumberCounterProps, type NumberCounterSize, Pagination, type PaginationProps, ProgressBar, type ProgressBarProps, type ProgressBarSize, type ProgressBarType, ProgressCircle, type ProgressCircleProps, type ProgressCircleSize, type ProgressCircleStyle, Radio, type RadioProps, RangeSlider, type RangeSliderProps, RaydenChart, type RaydenChartProps, type ResolvedTheme, SegmentedStepper, type SegmentedStepperProps, Select, SelectOption, type SelectOptionProps, type SelectProps, SidebarMenu, type SidebarMenuContextValue, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, SidebarMenuSection, type SidebarMenuSectionProps, SidebarMenuSub, SidebarMenuSubItem, type SidebarMenuSubItemProps, type SidebarMenuSubProps, type SidebarMenuTheme, Slider, type SliderProps, type SliderSize, type SortDirection, Spinner, type SpinnerLabelPosition, type SpinnerProps, type SpinnerSize, type SpinnerStyle, type SpinnerType, type StepIndicator, type StepItem, type StepStatus, Stepper, type StepperOrientation, type StepperProps, Tab, type TabProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsOrientation, type TabsProps, type TabsSize, type TabsVariant, type Theme, ThemeProvider, type ThemeProviderProps, Toggle, type ToggleProps, Tooltip, type TooltipAction, type TooltipPosition, type TooltipProps, type TooltipTheme, type UseRaydenCheckboxReturn, type UseRaydenFormControlOptions, type UseRaydenInputOptions, type UseRaydenInputReturn, type UseRaydenRadioReturn, type UseRaydenSelectOptions, type UseRaydenSelectReturn, chartColors, chartFont, cn, createGradientFill, hexToRgba, illustrationNames, useRaydenCheckbox, useRaydenInput, useRaydenRadio, useRaydenSelect, useRaydenToggle, useResolvedTheme, useTheme };
|