@borisj74/bv-ds 0.1.0 → 0.1.2
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 +194 -52
- package/dist/index.d.cts +58 -3
- package/dist/index.d.ts +58 -3
- package/dist/index.js +194 -54
- package/package.json +1 -1
- package/src/components/Button/Button.tsx +42 -22
- package/src/components/ButtonDestructive/ButtonDestructive.tsx +3 -3
- package/src/components/Modal/Modal.tsx +111 -0
- package/src/components/Modal/index.ts +2 -0
- package/src/components/ModalHeader/ModalHeader.tsx +4 -1
- package/src/components/NavAccountCard/NavAccountCard.tsx +41 -4
- package/src/components/NavAccountCard/index.ts +5 -1
- package/src/components/SidebarNavigation/SidebarNavigation.tsx +1 -1
- package/src/components/SlideoutMenu/SlideoutMenu.tsx +86 -0
- package/src/components/SlideoutMenu/index.ts +2 -0
- package/src/index.ts +2 -0
- package/tailwind-preset.js +223 -210
package/dist/index.cjs
CHANGED
|
@@ -3843,7 +3843,7 @@ var require_factoryWithTypeCheckers = __commonJS({
|
|
|
3843
3843
|
function emptyFunctionThatReturnsNull() {
|
|
3844
3844
|
return null;
|
|
3845
3845
|
}
|
|
3846
|
-
module.exports = function(
|
|
3846
|
+
module.exports = function(isValidElement12, throwOnDirectAccess) {
|
|
3847
3847
|
var ITERATOR_SYMBOL = typeof Symbol === "function" && Symbol.iterator;
|
|
3848
3848
|
var FAUX_ITERATOR_SYMBOL = "@@iterator";
|
|
3849
3849
|
function getIteratorFn(maybeIterable) {
|
|
@@ -3971,7 +3971,7 @@ var require_factoryWithTypeCheckers = __commonJS({
|
|
|
3971
3971
|
function createElementTypeChecker() {
|
|
3972
3972
|
function validate(props, propName, componentName, location, propFullName) {
|
|
3973
3973
|
var propValue = props[propName];
|
|
3974
|
-
if (!
|
|
3974
|
+
if (!isValidElement12(propValue)) {
|
|
3975
3975
|
var propType = getPropType(propValue);
|
|
3976
3976
|
return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + propType + "` supplied to `" + componentName + "`, expected a single ReactElement."));
|
|
3977
3977
|
}
|
|
@@ -4159,7 +4159,7 @@ var require_factoryWithTypeCheckers = __commonJS({
|
|
|
4159
4159
|
if (Array.isArray(propValue)) {
|
|
4160
4160
|
return propValue.every(isNode);
|
|
4161
4161
|
}
|
|
4162
|
-
if (propValue === null ||
|
|
4162
|
+
if (propValue === null || isValidElement12(propValue)) {
|
|
4163
4163
|
return true;
|
|
4164
4164
|
}
|
|
4165
4165
|
var iteratorFn = getIteratorFn(propValue);
|
|
@@ -5093,18 +5093,18 @@ function AdvancedFilterBar({
|
|
|
5093
5093
|
] });
|
|
5094
5094
|
}
|
|
5095
5095
|
var hierarchyClasses = {
|
|
5096
|
-
Primary: "bg-brand-solid text-white border-2 border-white/[0.12] hover:bg-bg-brand-solid-hover",
|
|
5097
|
-
Secondary: "bg-bg-primary text-text-secondary border border-border-primary",
|
|
5098
|
-
Tertiary: "bg-transparent text-text-tertiary border-0",
|
|
5099
|
-
"Link color": "bg-transparent text-text-brand-secondary border-0 p-0",
|
|
5100
|
-
"Link gray": "bg-transparent text-text-tertiary border-0 p-0"
|
|
5096
|
+
Primary: "bg-bg-brand-solid text-text-white border-2 border-white/[0.12] shadow-skeuomorphic hover:bg-bg-brand-solid-hover",
|
|
5097
|
+
Secondary: "bg-bg-primary text-text-secondary border border-border-border-primary shadow-skeuomorphic hover:bg-bg-primary-hover",
|
|
5098
|
+
Tertiary: "bg-transparent text-text-tertiary border-0 hover:bg-bg-secondary",
|
|
5099
|
+
"Link color": "bg-transparent text-text-brand-secondary border-0 p-0 hover:text-text-brand-secondary-hover",
|
|
5100
|
+
"Link gray": "bg-transparent text-text-tertiary border-0 p-0 hover:text-text-tertiary-hover"
|
|
5101
5101
|
};
|
|
5102
5102
|
var sizeClasses = {
|
|
5103
|
-
xs: "px-[10px] py-sm text-xs",
|
|
5104
|
-
sm: "px-lg py-md text-xs",
|
|
5105
|
-
md: "px-[14px] py-[10px] text-sm",
|
|
5106
|
-
lg: "px-xl py-[10px] text-md",
|
|
5107
|
-
xl: "px-[18px] py-lg text-md"
|
|
5103
|
+
xs: "px-[10px] py-sm gap-xs text-xs font-semibold",
|
|
5104
|
+
sm: "px-lg py-md gap-xs text-xs font-semibold",
|
|
5105
|
+
md: "px-[14px] py-[10px] gap-xs text-sm font-semibold",
|
|
5106
|
+
lg: "px-xl py-[10px] gap-sm text-md font-semibold",
|
|
5107
|
+
xl: "px-[18px] py-lg gap-sm text-md font-semibold"
|
|
5108
5108
|
};
|
|
5109
5109
|
function Button({
|
|
5110
5110
|
hierarchy = "Primary",
|
|
@@ -5119,8 +5119,10 @@ function Button({
|
|
|
5119
5119
|
"button",
|
|
5120
5120
|
{
|
|
5121
5121
|
className: clsx_default(
|
|
5122
|
-
"
|
|
5123
|
-
"
|
|
5122
|
+
"inline-flex items-center justify-center font-body rounded-md",
|
|
5123
|
+
"cursor-pointer transition-colors",
|
|
5124
|
+
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-border-brand focus-visible:ring-offset-2",
|
|
5125
|
+
"disabled:opacity-50 disabled:cursor-not-allowed disabled:shadow-none",
|
|
5124
5126
|
hierarchyClasses[hierarchy],
|
|
5125
5127
|
sizeClasses[size],
|
|
5126
5128
|
className
|
|
@@ -5128,7 +5130,7 @@ function Button({
|
|
|
5128
5130
|
disabled: disabled || loading,
|
|
5129
5131
|
"aria-disabled": disabled || loading,
|
|
5130
5132
|
...rest,
|
|
5131
|
-
children: loading ? "Loading\u2026" : children
|
|
5133
|
+
children: loading ? /* @__PURE__ */ jsxRuntime.jsx("span", { className: "opacity-70", children: "Loading\u2026" }) : children
|
|
5132
5134
|
}
|
|
5133
5135
|
);
|
|
5134
5136
|
}
|
|
@@ -5979,8 +5981,8 @@ function ButtonCloseX({
|
|
|
5979
5981
|
);
|
|
5980
5982
|
}
|
|
5981
5983
|
var hierarchyClasses2 = {
|
|
5982
|
-
Primary: "bg-error-solid text-white border-2 border-white/[0.12] shadow-skeuomorphic hover:bg-error-solid-hover",
|
|
5983
|
-
Secondary: "bg-bg-primary text-text-error-primary border border-border-error-subtle shadow-skeuomorphic hover:bg-bg-error-primary",
|
|
5984
|
+
Primary: "bg-bg-error-solid text-text-white border-2 border-white/[0.12] shadow-skeuomorphic hover:bg-bg-error-solid-hover",
|
|
5985
|
+
Secondary: "bg-bg-primary text-text-error-primary border border-border-border-error-subtle shadow-skeuomorphic hover:bg-bg-error-primary",
|
|
5984
5986
|
Tertiary: "bg-transparent text-text-error-primary border-0 hover:bg-bg-error-primary",
|
|
5985
5987
|
Link: "bg-transparent text-text-error-primary border-0 p-0 hover:text-text-error-primary"
|
|
5986
5988
|
};
|
|
@@ -6005,7 +6007,7 @@ function ButtonDestructive({
|
|
|
6005
6007
|
{
|
|
6006
6008
|
className: clsx_default(
|
|
6007
6009
|
"font-body font-semibold rounded-md cursor-pointer transition-colors",
|
|
6008
|
-
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-border-error focus-visible:ring-offset-2 focus-visible:ring-offset-bg-primary",
|
|
6010
|
+
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-border-border-error focus-visible:ring-offset-2 focus-visible:ring-offset-bg-bg-primary",
|
|
6009
6011
|
"disabled:opacity-50 disabled:cursor-not-allowed",
|
|
6010
6012
|
hierarchyClasses2[hierarchy],
|
|
6011
6013
|
hierarchy === "Link" ? "" : sizeClasses4[size],
|
|
@@ -31418,33 +31420,6 @@ function MetricItem({
|
|
|
31418
31420
|
}
|
|
31419
31421
|
);
|
|
31420
31422
|
}
|
|
31421
|
-
function ModalActions({
|
|
31422
|
-
type = "horizontal-fill",
|
|
31423
|
-
divider = true,
|
|
31424
|
-
leading,
|
|
31425
|
-
children,
|
|
31426
|
-
className,
|
|
31427
|
-
...rest
|
|
31428
|
-
}) {
|
|
31429
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx_default("flex w-full flex-col", className), ...rest, children: [
|
|
31430
|
-
divider && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-4xl border-t border-border-secondary" }),
|
|
31431
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31432
|
-
"div",
|
|
31433
|
-
{
|
|
31434
|
-
className: clsx_default(
|
|
31435
|
-
"flex px-3xl pb-3xl pt-3xl",
|
|
31436
|
-
type === "horizontal-fill" && "gap-lg [&>*]:flex-1",
|
|
31437
|
-
type === "vertical-fill" && "flex-col gap-lg [&>*]:w-full",
|
|
31438
|
-
type === "right-aligned" && "items-center gap-lg"
|
|
31439
|
-
),
|
|
31440
|
-
children: type === "right-aligned" ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
31441
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-1 items-center gap-lg", children: leading }),
|
|
31442
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center gap-lg", children })
|
|
31443
|
-
] }) : children
|
|
31444
|
-
}
|
|
31445
|
-
)
|
|
31446
|
-
] });
|
|
31447
|
-
}
|
|
31448
31423
|
var FeaturedIcon = ({ children }) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex size-10 shrink-0 items-center justify-center rounded-md border border-border-primary text-fg-secondary shadow-xs", children });
|
|
31449
31424
|
var XClose2 = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { viewBox: "0 0 20 20", fill: "none", className: "size-5", "aria-hidden": true, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15 5 5 15M5 5l10 10", stroke: "currentColor", strokeWidth: "1.67", strokeLinecap: "round", strokeLinejoin: "round" }) });
|
|
31450
31425
|
function ModalHeader({
|
|
@@ -31454,6 +31429,7 @@ function ModalHeader({
|
|
|
31454
31429
|
type = "left",
|
|
31455
31430
|
divider = true,
|
|
31456
31431
|
onClose,
|
|
31432
|
+
titleId,
|
|
31457
31433
|
className,
|
|
31458
31434
|
...rest
|
|
31459
31435
|
}) {
|
|
@@ -31488,7 +31464,7 @@ function ModalHeader({
|
|
|
31488
31464
|
isCenter && "items-center text-center"
|
|
31489
31465
|
),
|
|
31490
31466
|
children: [
|
|
31491
|
-
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "w-full text-md font-semibold text-text-primary", children: title }),
|
|
31467
|
+
/* @__PURE__ */ jsxRuntime.jsx("p", { id: titleId, className: "w-full text-md font-semibold text-text-primary", children: title }),
|
|
31492
31468
|
description && /* @__PURE__ */ jsxRuntime.jsx("p", { className: "w-full text-sm text-text-tertiary", children: description })
|
|
31493
31469
|
]
|
|
31494
31470
|
}
|
|
@@ -31511,6 +31487,99 @@ function ModalHeader({
|
|
|
31511
31487
|
}
|
|
31512
31488
|
);
|
|
31513
31489
|
}
|
|
31490
|
+
var sizeMaxWidth = {
|
|
31491
|
+
sm: "max-w-[400px]",
|
|
31492
|
+
md: "max-w-[560px]",
|
|
31493
|
+
lg: "max-w-[720px]",
|
|
31494
|
+
xl: "max-w-[960px]"
|
|
31495
|
+
};
|
|
31496
|
+
function Modal({
|
|
31497
|
+
open,
|
|
31498
|
+
onClose,
|
|
31499
|
+
size = "md",
|
|
31500
|
+
children,
|
|
31501
|
+
className,
|
|
31502
|
+
...rest
|
|
31503
|
+
}) {
|
|
31504
|
+
const panelRef = React28.useRef(null);
|
|
31505
|
+
const previousFocusRef = React28.useRef(null);
|
|
31506
|
+
const titleId = React28.useId();
|
|
31507
|
+
React28.useEffect(() => {
|
|
31508
|
+
if (!open) return;
|
|
31509
|
+
previousFocusRef.current = document.activeElement;
|
|
31510
|
+
panelRef.current?.focus();
|
|
31511
|
+
const handleKeyDown = (e) => {
|
|
31512
|
+
if (e.key === "Escape") onClose();
|
|
31513
|
+
};
|
|
31514
|
+
document.addEventListener("keydown", handleKeyDown);
|
|
31515
|
+
return () => {
|
|
31516
|
+
document.removeEventListener("keydown", handleKeyDown);
|
|
31517
|
+
previousFocusRef.current?.focus();
|
|
31518
|
+
};
|
|
31519
|
+
}, [open, onClose]);
|
|
31520
|
+
if (!open) return null;
|
|
31521
|
+
const handlePanelClick = (e) => e.stopPropagation();
|
|
31522
|
+
let hasLabelledHeader = false;
|
|
31523
|
+
const labelledChildren = React28.Children.map(children, (child) => {
|
|
31524
|
+
if (React28.isValidElement(child) && child.type === ModalHeader) {
|
|
31525
|
+
hasLabelledHeader = true;
|
|
31526
|
+
return React28.cloneElement(child, { titleId });
|
|
31527
|
+
}
|
|
31528
|
+
return child;
|
|
31529
|
+
});
|
|
31530
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
31531
|
+
"div",
|
|
31532
|
+
{
|
|
31533
|
+
onClick: onClose,
|
|
31534
|
+
className: "fixed inset-0 z-50 flex items-center justify-center bg-bg-overlay/70 backdrop-blur-sm",
|
|
31535
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
31536
|
+
"div",
|
|
31537
|
+
{
|
|
31538
|
+
ref: panelRef,
|
|
31539
|
+
role: "dialog",
|
|
31540
|
+
"aria-modal": "true",
|
|
31541
|
+
"aria-labelledby": hasLabelledHeader ? titleId : void 0,
|
|
31542
|
+
tabIndex: -1,
|
|
31543
|
+
onClick: handlePanelClick,
|
|
31544
|
+
className: clsx_default(
|
|
31545
|
+
"mx-4 flex w-full flex-col overflow-hidden rounded-2xl bg-bg-primary shadow-xl outline-none sm:mx-0",
|
|
31546
|
+
sizeMaxWidth[size],
|
|
31547
|
+
className
|
|
31548
|
+
),
|
|
31549
|
+
...rest,
|
|
31550
|
+
children: labelledChildren
|
|
31551
|
+
}
|
|
31552
|
+
)
|
|
31553
|
+
}
|
|
31554
|
+
);
|
|
31555
|
+
}
|
|
31556
|
+
function ModalActions({
|
|
31557
|
+
type = "horizontal-fill",
|
|
31558
|
+
divider = true,
|
|
31559
|
+
leading,
|
|
31560
|
+
children,
|
|
31561
|
+
className,
|
|
31562
|
+
...rest
|
|
31563
|
+
}) {
|
|
31564
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx_default("flex w-full flex-col", className), ...rest, children: [
|
|
31565
|
+
divider && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-4xl border-t border-border-secondary" }),
|
|
31566
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31567
|
+
"div",
|
|
31568
|
+
{
|
|
31569
|
+
className: clsx_default(
|
|
31570
|
+
"flex px-3xl pb-3xl pt-3xl",
|
|
31571
|
+
type === "horizontal-fill" && "gap-lg [&>*]:flex-1",
|
|
31572
|
+
type === "vertical-fill" && "flex-col gap-lg [&>*]:w-full",
|
|
31573
|
+
type === "right-aligned" && "items-center gap-lg"
|
|
31574
|
+
),
|
|
31575
|
+
children: type === "right-aligned" ? /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
31576
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-1 items-center gap-lg", children: leading }),
|
|
31577
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center gap-lg", children })
|
|
31578
|
+
] }) : children
|
|
31579
|
+
}
|
|
31580
|
+
)
|
|
31581
|
+
] });
|
|
31582
|
+
}
|
|
31514
31583
|
function CheckboxBox({ selected, big }) {
|
|
31515
31584
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
31516
31585
|
"span",
|
|
@@ -31702,6 +31771,18 @@ var LogOut = () => /* @__PURE__ */ jsxRuntime.jsx("svg", { viewBox: "0 0 16 16",
|
|
|
31702
31771
|
strokeLinejoin: "round"
|
|
31703
31772
|
}
|
|
31704
31773
|
) });
|
|
31774
|
+
var LayeredAvatar = ({ src, online }) => /* @__PURE__ */ jsxRuntime.jsxs("span", { className: "relative inline-flex size-10 shrink-0 rounded-full border-[0.75px] border-border-secondary-alt bg-bg-primary p-[1px] shadow-xs", children: [
|
|
31775
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "flex size-full overflow-hidden rounded-full border-[0.5px] border-[rgba(0,0,0,0.16)]", children: /* @__PURE__ */ jsxRuntime.jsx("img", { src, alt: "", className: "size-full rounded-full object-cover" }) }),
|
|
31776
|
+
online !== void 0 && /* @__PURE__ */ jsxRuntime.jsx(
|
|
31777
|
+
"span",
|
|
31778
|
+
{
|
|
31779
|
+
className: clsx_default(
|
|
31780
|
+
"absolute bottom-[-2px] right-[-2px] size-[14px] rounded-full border-[1.5px] border-bg-primary",
|
|
31781
|
+
online ? "bg-fg-success-secondary" : "bg-utility-neutral-300"
|
|
31782
|
+
)
|
|
31783
|
+
}
|
|
31784
|
+
)
|
|
31785
|
+
] });
|
|
31705
31786
|
var AvatarLabel = ({ avatar, name, email }) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex min-w-0 flex-1 items-center gap-md", children: [
|
|
31706
31787
|
avatar && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "shrink-0", children: avatar }),
|
|
31707
31788
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex min-w-0 flex-col text-left", children: [
|
|
@@ -31712,7 +31793,10 @@ var AvatarLabel = ({ avatar, name, email }) => /* @__PURE__ */ jsxRuntime.jsxs("
|
|
|
31712
31793
|
function NavAccountCard({
|
|
31713
31794
|
variant = "card",
|
|
31714
31795
|
open = false,
|
|
31796
|
+
breakpoint = "desktop",
|
|
31715
31797
|
avatar,
|
|
31798
|
+
src,
|
|
31799
|
+
online,
|
|
31716
31800
|
name,
|
|
31717
31801
|
email,
|
|
31718
31802
|
onToggle,
|
|
@@ -31721,17 +31805,20 @@ function NavAccountCard({
|
|
|
31721
31805
|
className,
|
|
31722
31806
|
...rest
|
|
31723
31807
|
}) {
|
|
31808
|
+
const widthClass = breakpoint === "mobile" ? "w-[256px]" : "w-[280px]";
|
|
31809
|
+
const avatarNode = avatar ?? (src !== void 0 ? /* @__PURE__ */ jsxRuntime.jsx(LayeredAvatar, { src, online }) : void 0);
|
|
31724
31810
|
if (variant === "simple") {
|
|
31725
31811
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
31726
31812
|
"div",
|
|
31727
31813
|
{
|
|
31728
31814
|
className: clsx_default(
|
|
31729
|
-
"relative flex
|
|
31815
|
+
"relative flex items-start gap-xl border-t border-border-secondary px-md pt-2xl",
|
|
31816
|
+
widthClass,
|
|
31730
31817
|
className
|
|
31731
31818
|
),
|
|
31732
31819
|
...rest,
|
|
31733
31820
|
children: [
|
|
31734
|
-
/* @__PURE__ */ jsxRuntime.jsx(AvatarLabel, { avatar, name, email }),
|
|
31821
|
+
/* @__PURE__ */ jsxRuntime.jsx(AvatarLabel, { avatar: avatarNode, name, email }),
|
|
31735
31822
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31736
31823
|
"button",
|
|
31737
31824
|
{
|
|
@@ -31746,7 +31833,7 @@ function NavAccountCard({
|
|
|
31746
31833
|
}
|
|
31747
31834
|
);
|
|
31748
31835
|
}
|
|
31749
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx_default("relative
|
|
31836
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx_default("relative", widthClass, className), ...rest, children: [
|
|
31750
31837
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
31751
31838
|
"button",
|
|
31752
31839
|
{
|
|
@@ -31754,7 +31841,7 @@ function NavAccountCard({
|
|
|
31754
31841
|
onClick: onToggle,
|
|
31755
31842
|
className: "relative flex w-full items-start gap-xl rounded-xl border border-border-secondary bg-bg-primary-alt p-lg text-left shadow-xs",
|
|
31756
31843
|
children: [
|
|
31757
|
-
/* @__PURE__ */ jsxRuntime.jsx(AvatarLabel, { avatar, name, email }),
|
|
31844
|
+
/* @__PURE__ */ jsxRuntime.jsx(AvatarLabel, { avatar: avatarNode, name, email }),
|
|
31758
31845
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
31759
31846
|
"span",
|
|
31760
31847
|
{
|
|
@@ -32870,7 +32957,7 @@ function SidebarNavigation({
|
|
|
32870
32957
|
}
|
|
32871
32958
|
);
|
|
32872
32959
|
return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
32873
|
-
/* @__PURE__ */ jsxRuntime.jsx("aside", { className: "hidden h-full md:
|
|
32960
|
+
/* @__PURE__ */ jsxRuntime.jsx("aside", { className: "hidden h-full md:flex", children: rail }),
|
|
32874
32961
|
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "md:hidden", children: [
|
|
32875
32962
|
/* @__PURE__ */ jsxRuntime.jsx(NavMenuButton, { opened: isOpen, onClick: () => setOpen(!isOpen) }),
|
|
32876
32963
|
isOpen && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "fixed inset-0 z-50 flex", children: [
|
|
@@ -32924,6 +33011,59 @@ function SlideOutMenuHeader({
|
|
|
32924
33011
|
}
|
|
32925
33012
|
);
|
|
32926
33013
|
}
|
|
33014
|
+
var sizeWidth = {
|
|
33015
|
+
sm: "sm:w-[360px]",
|
|
33016
|
+
md: "sm:w-[480px]",
|
|
33017
|
+
lg: "sm:w-[600px]"
|
|
33018
|
+
};
|
|
33019
|
+
function SlideoutMenu({
|
|
33020
|
+
open,
|
|
33021
|
+
onClose,
|
|
33022
|
+
side = "right",
|
|
33023
|
+
size = "md",
|
|
33024
|
+
children,
|
|
33025
|
+
className,
|
|
33026
|
+
...rest
|
|
33027
|
+
}) {
|
|
33028
|
+
React28.useEffect(() => {
|
|
33029
|
+
if (!open) return;
|
|
33030
|
+
const handleKeyDown = (e) => {
|
|
33031
|
+
if (e.key === "Escape") onClose();
|
|
33032
|
+
};
|
|
33033
|
+
document.addEventListener("keydown", handleKeyDown);
|
|
33034
|
+
return () => document.removeEventListener("keydown", handleKeyDown);
|
|
33035
|
+
}, [open, onClose]);
|
|
33036
|
+
const handlePanelClick = (e) => e.stopPropagation();
|
|
33037
|
+
const closedTransform = side === "right" ? "translate-x-full" : "-translate-x-full";
|
|
33038
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
33039
|
+
"div",
|
|
33040
|
+
{
|
|
33041
|
+
onClick: onClose,
|
|
33042
|
+
"aria-hidden": !open,
|
|
33043
|
+
className: clsx_default(
|
|
33044
|
+
"fixed inset-0 z-50 bg-bg-overlay/70 backdrop-blur-sm transition-opacity duration-300",
|
|
33045
|
+
open ? "opacity-100" : "pointer-events-none opacity-0"
|
|
33046
|
+
),
|
|
33047
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
33048
|
+
"div",
|
|
33049
|
+
{
|
|
33050
|
+
role: "dialog",
|
|
33051
|
+
"aria-modal": "true",
|
|
33052
|
+
onClick: handlePanelClick,
|
|
33053
|
+
className: clsx_default(
|
|
33054
|
+
"fixed bottom-0 top-0 flex w-full flex-col bg-bg-primary shadow-xl transition-transform duration-300 ease-in-out",
|
|
33055
|
+
side === "right" ? "right-0" : "left-0",
|
|
33056
|
+
sizeWidth[size],
|
|
33057
|
+
open ? "translate-x-0" : closedTransform,
|
|
33058
|
+
className
|
|
33059
|
+
),
|
|
33060
|
+
...rest,
|
|
33061
|
+
children
|
|
33062
|
+
}
|
|
33063
|
+
)
|
|
33064
|
+
}
|
|
33065
|
+
);
|
|
33066
|
+
}
|
|
32927
33067
|
var clampStep = (v, min3, max3, step) => {
|
|
32928
33068
|
const snapped = Math.round((v - min3) / step) * step + min3;
|
|
32929
33069
|
return Math.min(max3, Math.max(min3, snapped));
|
|
@@ -33821,6 +33961,7 @@ exports.MessageActionPanel = MessageActionPanel;
|
|
|
33821
33961
|
exports.MessageReaction = MessageReaction;
|
|
33822
33962
|
exports.MessageStatusIcon = MessageStatusIcon;
|
|
33823
33963
|
exports.MetricItem = MetricItem;
|
|
33964
|
+
exports.Modal = Modal;
|
|
33824
33965
|
exports.ModalActions = ModalActions;
|
|
33825
33966
|
exports.ModalHeader = ModalHeader;
|
|
33826
33967
|
exports.ModernBadge = ModernBadge;
|
|
@@ -33856,6 +33997,7 @@ exports.Select = Select;
|
|
|
33856
33997
|
exports.SelectMenuItem = SelectMenuItem;
|
|
33857
33998
|
exports.SidebarNavigation = SidebarNavigation;
|
|
33858
33999
|
exports.SlideOutMenuHeader = SlideOutMenuHeader;
|
|
34000
|
+
exports.SlideoutMenu = SlideoutMenu;
|
|
33859
34001
|
exports.Slider = Slider;
|
|
33860
34002
|
exports.SocialButton = SocialButton;
|
|
33861
34003
|
exports.StatusIcon = StatusIcon;
|
package/dist/index.d.cts
CHANGED
|
@@ -1589,6 +1589,28 @@ interface MetricItemProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
1589
1589
|
*/
|
|
1590
1590
|
declare function MetricItem({ label, value, change, changeText, icon, chart, action, onMenuClick, className, ...rest }: MetricItemProps): react.JSX.Element;
|
|
1591
1591
|
|
|
1592
|
+
type ModalSize = "sm" | "md" | "lg" | "xl";
|
|
1593
|
+
interface ModalProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
|
|
1594
|
+
/** Controls visibility — renders nothing when false. */
|
|
1595
|
+
open: boolean;
|
|
1596
|
+
/** Fired on backdrop click-outside, Escape, or the header's x-close. */
|
|
1597
|
+
onClose: () => void;
|
|
1598
|
+
/** Panel max-width: sm=400 / md=560 / lg=720 / xl=960 px. Full width on mobile. */
|
|
1599
|
+
size?: ModalSize;
|
|
1600
|
+
/** Modal contents — compose `ModalHeader`, a body, and `ModalActions` here. */
|
|
1601
|
+
children: ReactNode;
|
|
1602
|
+
}
|
|
1603
|
+
/**
|
|
1604
|
+
* Modal shell — fixed backdrop + centred panel. Layout/overlay only: it does NOT
|
|
1605
|
+
* render a header or footer, those are composed as children (`ModalHeader` /
|
|
1606
|
+
* `ModalActions`). Backdrop click-outside and Escape both call `onClose`; clicks
|
|
1607
|
+
* inside the panel are stopped from bubbling. On open, focus moves into the panel
|
|
1608
|
+
* and is restored to the previously-focused element on close. If a direct
|
|
1609
|
+
* `ModalHeader` child is present its title is wired to `aria-labelledby`.
|
|
1610
|
+
* Renders `null` while `open` is false.
|
|
1611
|
+
*/
|
|
1612
|
+
declare function Modal({ open, onClose, size, children, className, ...rest }: ModalProps): react.JSX.Element | null;
|
|
1613
|
+
|
|
1592
1614
|
type ModalActionsType = "horizontal-fill" | "vertical-fill" | "right-aligned";
|
|
1593
1615
|
interface ModalActionsProps extends HTMLAttributes<HTMLDivElement> {
|
|
1594
1616
|
/**
|
|
@@ -1628,13 +1650,15 @@ interface ModalHeaderProps extends Omit<HTMLAttributes<HTMLDivElement>, "title">
|
|
|
1628
1650
|
divider?: boolean;
|
|
1629
1651
|
/** Renders an x-close button top-right when provided. */
|
|
1630
1652
|
onClose?: () => void;
|
|
1653
|
+
/** id placed on the title element so a parent `Modal` can wire `aria-labelledby`. */
|
|
1654
|
+
titleId?: string;
|
|
1631
1655
|
}
|
|
1632
1656
|
/**
|
|
1633
1657
|
* Modal header — featured-icon badge + title + supporting text, with an optional
|
|
1634
1658
|
* x-close button and bottom divider. `type` controls alignment (left / centred /
|
|
1635
1659
|
* icon-beside-text). The `icon` is a slot; consumer supplies the glyph.
|
|
1636
1660
|
*/
|
|
1637
|
-
declare function ModalHeader({ title, description, icon, type, divider, onClose, className, ...rest }: ModalHeaderProps): react.JSX.Element;
|
|
1661
|
+
declare function ModalHeader({ title, description, icon, type, divider, onClose, titleId, className, ...rest }: ModalHeaderProps): react.JSX.Element;
|
|
1638
1662
|
|
|
1639
1663
|
interface MultiSelectOption {
|
|
1640
1664
|
value: string;
|
|
@@ -1665,12 +1689,20 @@ interface MultiSelectProps {
|
|
|
1665
1689
|
declare function MultiSelect({ options, value, onChange, open, onToggle, label, hint, placeholder, searchable, disabled, invalid, className, }: MultiSelectProps): react.JSX.Element;
|
|
1666
1690
|
|
|
1667
1691
|
type NavAccountCardVariant = "simple" | "card";
|
|
1692
|
+
type NavAccountCardBreakpoint = "desktop" | "mobile";
|
|
1668
1693
|
interface NavAccountCardProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
|
|
1669
1694
|
/** `simple` = inline row + sign-out button · `card` = boxed trigger that opens a menu. */
|
|
1670
1695
|
variant?: NavAccountCardVariant;
|
|
1671
1696
|
/** card only — whether the dropdown menu is shown. */
|
|
1672
1697
|
open?: boolean;
|
|
1698
|
+
/** Width: `desktop` = 280px · `mobile` = 256px. */
|
|
1699
|
+
breakpoint?: NavAccountCardBreakpoint;
|
|
1700
|
+
/** Custom avatar node — takes precedence over the built-in `src` treatment. */
|
|
1673
1701
|
avatar?: ReactNode;
|
|
1702
|
+
/** Image URL for the built-in layered avatar (used when `avatar` is not supplied). */
|
|
1703
|
+
src?: string;
|
|
1704
|
+
/** Status dot on the built-in avatar — `true` online (green) · `false` offline (gray) · omit for none. */
|
|
1705
|
+
online?: boolean;
|
|
1674
1706
|
name?: ReactNode;
|
|
1675
1707
|
email?: ReactNode;
|
|
1676
1708
|
/** card only — toggles the dropdown (fires on trigger click). */
|
|
@@ -1694,7 +1726,7 @@ interface NavAccountCardProps extends Omit<HTMLAttributes<HTMLDivElement>, "titl
|
|
|
1694
1726
|
* simplification (see figma-map). Width defaults to 280px; override via
|
|
1695
1727
|
* `className` for mobile (256px).
|
|
1696
1728
|
*/
|
|
1697
|
-
declare function NavAccountCard({ variant, open, avatar, name, email, onToggle, onSignOut, menu, className, ...rest }: NavAccountCardProps): react.JSX.Element;
|
|
1729
|
+
declare function NavAccountCard({ variant, open, breakpoint, avatar, src, online, name, email, onToggle, onSignOut, menu, className, ...rest }: NavAccountCardProps): react.JSX.Element;
|
|
1698
1730
|
|
|
1699
1731
|
type NavAccountCardMenuItemType = "menu-item" | "account";
|
|
1700
1732
|
interface NavAccountCardMenuItemProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "name" | "type"> {
|
|
@@ -2297,6 +2329,29 @@ interface SlideOutMenuHeaderProps extends Omit<HTMLAttributes<HTMLDivElement>, "
|
|
|
2297
2329
|
*/
|
|
2298
2330
|
declare function SlideOutMenuHeader({ icon, title, supportingText, tabs, onClose, className, ...rest }: SlideOutMenuHeaderProps): react.JSX.Element;
|
|
2299
2331
|
|
|
2332
|
+
type SlideoutMenuSide = "right" | "left";
|
|
2333
|
+
type SlideoutMenuSize = "sm" | "md" | "lg";
|
|
2334
|
+
interface SlideoutMenuProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
|
|
2335
|
+
/** Controls visibility. The panel stays mounted to animate the slide in/out. */
|
|
2336
|
+
open: boolean;
|
|
2337
|
+
/** Fired on backdrop click-outside, Escape, or the header's x-close. */
|
|
2338
|
+
onClose: () => void;
|
|
2339
|
+
/** Edge the panel docks to and slides in from. */
|
|
2340
|
+
side?: SlideoutMenuSide;
|
|
2341
|
+
/** Panel width: sm=360 / md=480 / lg=600 px. Full width on mobile. */
|
|
2342
|
+
size?: SlideoutMenuSize;
|
|
2343
|
+
/** Drawer contents — compose `SlideOutMenuHeader`, a body, and a footer here. */
|
|
2344
|
+
children: ReactNode;
|
|
2345
|
+
}
|
|
2346
|
+
/**
|
|
2347
|
+
* Slide-out / drawer shell — fixed backdrop + edge-docked panel that slides in
|
|
2348
|
+
* from `side` via a `translate-x` transition. Layout/overlay only: the header is
|
|
2349
|
+
* composed as a child (`SlideOutMenuHeader`), not reimplemented. Backdrop
|
|
2350
|
+
* click-outside and Escape both call `onClose`. The panel stays mounted (toggled
|
|
2351
|
+
* via transform + the backdrop's pointer-events) so both enter and exit animate.
|
|
2352
|
+
*/
|
|
2353
|
+
declare function SlideoutMenu({ open, onClose, side, size, children, className, ...rest }: SlideoutMenuProps): react.JSX.Element;
|
|
2354
|
+
|
|
2300
2355
|
type SliderLabel = "none" | "bottom" | "topFloating";
|
|
2301
2356
|
interface SliderProps {
|
|
2302
2357
|
min?: number;
|
|
@@ -2712,4 +2767,4 @@ declare namespace index {
|
|
|
2712
2767
|
export { index_BoxIllustration as BoxIllustration, index_CloudIllustration as CloudIllustration, index_CreditCardIllustration as CreditCardIllustration, index_DocumentsIllustration as DocumentsIllustration };
|
|
2713
2768
|
}
|
|
2714
2769
|
|
|
2715
|
-
export { ActivityFeed, type ActivityFeedDivider, type ActivityFeedProps, ActivityGauge, type ActivityGaugeLegend, type ActivityGaugeProps, type ActivityGaugeSeries, type ActivityGaugeSize, AdvancedFilterBar, type AdvancedFilterBarProps, Alert, type AlertAction, type AlertColor, type AlertProps, type AlertSize, Avatar, AvatarAddButton, type AvatarAddButtonProps, type AvatarAddButtonSize, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, type AvatarGroupSize, AvatarLabelGroup, type AvatarLabelGroupProps, type AvatarLabelGroupSize, AvatarProfilePhoto, type AvatarProfilePhotoProps, type AvatarProfilePhotoSize, type AvatarProps, type AvatarSize, BadgeCloseX, type BadgeCloseXProps, type BadgeCloseXShape, type BadgeColor, type BadgeCommonProps, BadgeGroup, type BadgeGroupBadgePosition, type BadgeGroupProps, type BadgeGroupSize, type BadgeGroupType, type BadgeSize, BreadcrumbButtonBase, type BreadcrumbButtonBaseProps, type BreadcrumbButtonType, Breadcrumbs, type BreadcrumbsDivider, type BreadcrumbsProps, Button, ButtonCloseX, type ButtonCloseXProps, type ButtonCloseXSize, ButtonDestructive, type ButtonDestructiveHierarchy, type ButtonDestructiveProps, type ButtonDestructiveSize, ButtonGroup, type ButtonGroupProps, ButtonGroupSegment, type ButtonGroupSegmentProps, type ButtonGroupSegmentSize, type ButtonProps, ButtonUtility, type ButtonUtilityProps, type ButtonUtilitySize, type ButtonUtilityVariant, CalendarCell, CalendarCellDayWeekView, type CalendarCellDayWeekViewProps, type CalendarCellProps, CalendarColumnHeader, type CalendarColumnHeaderOrientation, type CalendarColumnHeaderProps, CalendarDateIcon, type CalendarDateIconProps, CalendarEvent, type CalendarEventColor, CalendarEventDayWeekView, type CalendarEventDayWeekViewProps, type CalendarEventProps, CalendarHeader, type CalendarHeaderProps, CalendarRowLabel, type CalendarRowLabelProps, CalendarTimemarker, type CalendarTimemarkerAlign, type CalendarTimemarkerProps, type CalendarView, CalendarViewDropdown, type CalendarViewDropdownProps, type CalendarViewOption, CardHeader, type CardHeaderProps, CarouselArrow, type CarouselArrowDirection, type CarouselArrowProps, type CarouselArrowSize, CarouselImage, type CarouselImageProps, Change, type ChangeProps, type ChangeTrend, type ChangeType, ChartLegend, type ChartLegendItem, type ChartLegendPosition, type ChartLegendProps, ChartMarker, type ChartMarkerLine, type ChartMarkerProps, ChartMini, type ChartMiniDatum, type ChartMiniProps, type ChartMiniTrend, type ChartSeries, type ChartStyle, ChartTooltip, type ChartTooltipPayloadItem, type ChartTooltipProps, type CheckControlSize, Checkbox, type CheckboxProps, CodeSnippet, type CodeSnippetProps, CodeSnippetTabs, type CodeSnippetTabsProps, ColorBadge, type ColorBadgeProps, CommandBar, CommandBarFooter, type CommandBarFooterHint, type CommandBarFooterProps, CommandBarMenuSection, type CommandBarMenuSectionProps, CommandBarNavigationIcon, type CommandBarNavigationIconProps, type CommandBarProps, CommandDropdownMenuItem, type CommandDropdownMenuItemProps, CommandInput, type CommandInputProps, CommandShortcut, type CommandShortcutProps, ContentDivider, type ContentDividerProps, type ContentDividerStyle, type ContentDividerType, ContentFeatureText, type ContentFeatureTextProps, type ContentFeatureTextSize, ContentHeading, type ContentHeadingProps, type ContentHeadingSize, ContentParagraph, type ContentParagraphProps, type ContentParagraphSize, ContentQuote, type ContentQuoteAlign, type ContentQuoteProps, type ContentQuoteSize, ContentRule, type ContentRuleProps, type ContentRuleSize, ContextMenu, type ContextMenuProps, type ContextMenuState, DatePickerCell, type DatePickerCellProps, type DatePickerCellType, DatePickerListItem, type DatePickerListItemProps, DatePickerMenu, type DatePickerMenuProps, DropdownAccountListItem, type DropdownAccountListItemProps, DropdownMenuFooter, type DropdownMenuFooterProps, type DropdownMenuFooterType, DropdownMenuHeader, type DropdownMenuHeaderProps, type DropdownMenuHeaderType, DropdownMenuItemInsetIcon, type DropdownMenuItemInsetIconProps, type DropdownMenuItemInsetIconType, DropdownMenuListItem, type DropdownMenuListItemProps, EmptyState, type EmptyStateProps, type EmptyStateSize, FeedItemBase, type FeedItemBaseProps, type FeedItemSize, FileUpload, FileUploadBase, type FileUploadBaseProps, FileUploadItemBase, type FileUploadItemBaseProps, type FileUploadItemIconType, type FileUploadItemStatus, type FileUploadItemType, type FileUploadProps, FilterBar, type FilterBarProps, FilterTabs, type FilterTabsProps, FiltersDropdownMenu, type FiltersDropdownMenuProps, FiltersSlideoutMenu, type FiltersSlideoutMenuProps, type HeaderNavItem, HeaderNavigation, type HeaderNavigationProps, type HeaderNavigationType, HelpIcon, type HelpIconProps, InputField, type InputFieldProps, type InputFieldSize, type InputFieldType, LeadingInputField, type LeadingInputFieldProps, LineAndBarChart, type LineAndBarChartProps, LinkMessage, type LinkMessageProps, type LinkMessageType, LoadingIndicator, type LoadingIndicatorProps, type LoadingIndicatorSize, type LoadingIndicatorStyle, MediaMessage, type MediaMessageProps, type MediaMessageType, MegaInputFieldBase, type MegaInputFieldBaseProps, type MegaInputFieldBaseSize, Message, MessageAction, MessageActionButton, type MessageActionButtonProps, MessageActionPanel, type MessageActionPanelProps, type MessageActionProps, type MessageActionType, type MessageBubbleTone, type MessageProps, MessageReaction, type MessageReactionProps, type MessageStatus, MessageStatusIcon, type MessageStatusIconProps, type MessageType, MetricItem, type MetricItemProps, ModalActions, type ModalActionsProps, type ModalActionsType, ModalHeader, type ModalHeaderProps, type ModalHeaderType, ModernBadge, type ModernBadgeProps, MultiSelect, type MultiSelectOption, type MultiSelectProps, NavAccountCard, NavAccountCardMenuItem, type NavAccountCardMenuItemProps, type NavAccountCardMenuItemType, type NavAccountCardProps, type NavAccountCardVariant, NavButton, type NavButtonProps, NavFeaturedCard, type NavFeaturedCardProps, NavItemBase, type NavItemBaseProps, NavItemDropdownBase, type NavItemDropdownBaseProps, NavMenuButton, type NavMenuButtonProps, Notification, type NotificationProps, type NotificationVariant, NumberInput, type NumberInputLayout, type NumberInputProps, PageHeader, type PageHeaderProps, type PageHeaderStyle, Pagination, PaginationButtonGroupBase, type PaginationButtonGroupBaseProps, type PaginationButtonGroupType, PaginationCards, type PaginationCardsProps, type PaginationCardsVariant, PaginationDotGroup, type PaginationDotGroupProps, PaginationDotIndicator, type PaginationDotIndicatorProps, type PaginationDotSize, type PaginationDotVariant, PaginationNumberBase, type PaginationNumberBaseProps, type PaginationNumberShape, type PaginationProps, type PaginationType, PieChart, type PieChartProps, type PieChartSize, type PieSlice, PillBadge, type PillBadgeProps, ProgressBar, type ProgressBarLabel, type ProgressBarProps, ProgressCircle, type ProgressCircleProps, type ProgressCircleShape, type ProgressCircleSize, RadarChart, type RadarChartProps, type RadarLegendPosition, Radio, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupItemSize, type RadioGroupItemType, type RadioGroupProps, type RadioProps, SectionFooter, type SectionFooterProps, type SectionFooterType, SectionHeader, type SectionHeaderProps, SectionLabel, type SectionLabelProps, type SectionLabelSize, Select, SelectMenuItem, type SelectMenuItemProps, type SelectMenuItemSize, type SelectProps, type SelectSize, type SelectType, SidebarNavigation, type SidebarNavigationProps, type SidebarNavigationType, SlideOutMenuHeader, type SlideOutMenuHeaderProps, Slider, type SliderLabel, type SliderProps, type SocialBrand, SocialButton, type SocialButtonProps, type SocialButtonSize, type SocialButtonTheme, StatusIcon, type StatusIconProps, type StatusIconType, StepBase, type StepBaseProps, StepIconBase, type StepIconBaseProps, type StepIconSize, type StepIconType, type StepOrientation, type StepStatus, TabButtonBase, type TabButtonBaseProps, type TabButtonSize, type TabButtonType, type TabItem, TableCell, type TableCellProps, type TableCellSize, TableHeaderCell, type TableHeaderCellProps, type TableHeaderCellSize, TableHeaderLabel, type TableHeaderLabelArrow, type TableHeaderLabelProps, Tabs, type TabsOrientation, type TabsProps, Tag, type TagProps, type TagSize, TagsInputField, type TagsInputFieldProps, type TagsInputVariant, TextEditorToolbar, TextEditorToolbarDivider, type TextEditorToolbarProps, TextEditorTooltip, type TextEditorTooltipProps, TextareaInputField, type TextareaInputFieldProps, Toggle, type ToggleProps, type ToggleSize, type ToggleType, Tooltip, type TooltipArrow, type TooltipProps, TrailingInputField, type TrailingInputFieldProps, type TreeNode, TreeView, TreeViewConnector, type TreeViewConnectorProps, type TreeViewConnectorSize, type TreeViewConnectorType, TreeViewItem, type TreeViewItemProps, type TreeViewItemSize, type TreeViewProps, type UseContextMenuReturn, type VerificationCodeDigits, VerificationCodeInput, type VerificationCodeInputProps, type VerificationCodeSize, index as illustrations, useContextMenu };
|
|
2770
|
+
export { ActivityFeed, type ActivityFeedDivider, type ActivityFeedProps, ActivityGauge, type ActivityGaugeLegend, type ActivityGaugeProps, type ActivityGaugeSeries, type ActivityGaugeSize, AdvancedFilterBar, type AdvancedFilterBarProps, Alert, type AlertAction, type AlertColor, type AlertProps, type AlertSize, Avatar, AvatarAddButton, type AvatarAddButtonProps, type AvatarAddButtonSize, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, type AvatarGroupSize, AvatarLabelGroup, type AvatarLabelGroupProps, type AvatarLabelGroupSize, AvatarProfilePhoto, type AvatarProfilePhotoProps, type AvatarProfilePhotoSize, type AvatarProps, type AvatarSize, BadgeCloseX, type BadgeCloseXProps, type BadgeCloseXShape, type BadgeColor, type BadgeCommonProps, BadgeGroup, type BadgeGroupBadgePosition, type BadgeGroupProps, type BadgeGroupSize, type BadgeGroupType, type BadgeSize, BreadcrumbButtonBase, type BreadcrumbButtonBaseProps, type BreadcrumbButtonType, Breadcrumbs, type BreadcrumbsDivider, type BreadcrumbsProps, Button, ButtonCloseX, type ButtonCloseXProps, type ButtonCloseXSize, ButtonDestructive, type ButtonDestructiveHierarchy, type ButtonDestructiveProps, type ButtonDestructiveSize, ButtonGroup, type ButtonGroupProps, ButtonGroupSegment, type ButtonGroupSegmentProps, type ButtonGroupSegmentSize, type ButtonProps, ButtonUtility, type ButtonUtilityProps, type ButtonUtilitySize, type ButtonUtilityVariant, CalendarCell, CalendarCellDayWeekView, type CalendarCellDayWeekViewProps, type CalendarCellProps, CalendarColumnHeader, type CalendarColumnHeaderOrientation, type CalendarColumnHeaderProps, CalendarDateIcon, type CalendarDateIconProps, CalendarEvent, type CalendarEventColor, CalendarEventDayWeekView, type CalendarEventDayWeekViewProps, type CalendarEventProps, CalendarHeader, type CalendarHeaderProps, CalendarRowLabel, type CalendarRowLabelProps, CalendarTimemarker, type CalendarTimemarkerAlign, type CalendarTimemarkerProps, type CalendarView, CalendarViewDropdown, type CalendarViewDropdownProps, type CalendarViewOption, CardHeader, type CardHeaderProps, CarouselArrow, type CarouselArrowDirection, type CarouselArrowProps, type CarouselArrowSize, CarouselImage, type CarouselImageProps, Change, type ChangeProps, type ChangeTrend, type ChangeType, ChartLegend, type ChartLegendItem, type ChartLegendPosition, type ChartLegendProps, ChartMarker, type ChartMarkerLine, type ChartMarkerProps, ChartMini, type ChartMiniDatum, type ChartMiniProps, type ChartMiniTrend, type ChartSeries, type ChartStyle, ChartTooltip, type ChartTooltipPayloadItem, type ChartTooltipProps, type CheckControlSize, Checkbox, type CheckboxProps, CodeSnippet, type CodeSnippetProps, CodeSnippetTabs, type CodeSnippetTabsProps, ColorBadge, type ColorBadgeProps, CommandBar, CommandBarFooter, type CommandBarFooterHint, type CommandBarFooterProps, CommandBarMenuSection, type CommandBarMenuSectionProps, CommandBarNavigationIcon, type CommandBarNavigationIconProps, type CommandBarProps, CommandDropdownMenuItem, type CommandDropdownMenuItemProps, CommandInput, type CommandInputProps, CommandShortcut, type CommandShortcutProps, ContentDivider, type ContentDividerProps, type ContentDividerStyle, type ContentDividerType, ContentFeatureText, type ContentFeatureTextProps, type ContentFeatureTextSize, ContentHeading, type ContentHeadingProps, type ContentHeadingSize, ContentParagraph, type ContentParagraphProps, type ContentParagraphSize, ContentQuote, type ContentQuoteAlign, type ContentQuoteProps, type ContentQuoteSize, ContentRule, type ContentRuleProps, type ContentRuleSize, ContextMenu, type ContextMenuProps, type ContextMenuState, DatePickerCell, type DatePickerCellProps, type DatePickerCellType, DatePickerListItem, type DatePickerListItemProps, DatePickerMenu, type DatePickerMenuProps, DropdownAccountListItem, type DropdownAccountListItemProps, DropdownMenuFooter, type DropdownMenuFooterProps, type DropdownMenuFooterType, DropdownMenuHeader, type DropdownMenuHeaderProps, type DropdownMenuHeaderType, DropdownMenuItemInsetIcon, type DropdownMenuItemInsetIconProps, type DropdownMenuItemInsetIconType, DropdownMenuListItem, type DropdownMenuListItemProps, EmptyState, type EmptyStateProps, type EmptyStateSize, FeedItemBase, type FeedItemBaseProps, type FeedItemSize, FileUpload, FileUploadBase, type FileUploadBaseProps, FileUploadItemBase, type FileUploadItemBaseProps, type FileUploadItemIconType, type FileUploadItemStatus, type FileUploadItemType, type FileUploadProps, FilterBar, type FilterBarProps, FilterTabs, type FilterTabsProps, FiltersDropdownMenu, type FiltersDropdownMenuProps, FiltersSlideoutMenu, type FiltersSlideoutMenuProps, type HeaderNavItem, HeaderNavigation, type HeaderNavigationProps, type HeaderNavigationType, HelpIcon, type HelpIconProps, InputField, type InputFieldProps, type InputFieldSize, type InputFieldType, LeadingInputField, type LeadingInputFieldProps, LineAndBarChart, type LineAndBarChartProps, LinkMessage, type LinkMessageProps, type LinkMessageType, LoadingIndicator, type LoadingIndicatorProps, type LoadingIndicatorSize, type LoadingIndicatorStyle, MediaMessage, type MediaMessageProps, type MediaMessageType, MegaInputFieldBase, type MegaInputFieldBaseProps, type MegaInputFieldBaseSize, Message, MessageAction, MessageActionButton, type MessageActionButtonProps, MessageActionPanel, type MessageActionPanelProps, type MessageActionProps, type MessageActionType, type MessageBubbleTone, type MessageProps, MessageReaction, type MessageReactionProps, type MessageStatus, MessageStatusIcon, type MessageStatusIconProps, type MessageType, MetricItem, type MetricItemProps, Modal, ModalActions, type ModalActionsProps, type ModalActionsType, ModalHeader, type ModalHeaderProps, type ModalHeaderType, type ModalProps, type ModalSize, ModernBadge, type ModernBadgeProps, MultiSelect, type MultiSelectOption, type MultiSelectProps, NavAccountCard, type NavAccountCardBreakpoint, NavAccountCardMenuItem, type NavAccountCardMenuItemProps, type NavAccountCardMenuItemType, type NavAccountCardProps, type NavAccountCardVariant, NavButton, type NavButtonProps, NavFeaturedCard, type NavFeaturedCardProps, NavItemBase, type NavItemBaseProps, NavItemDropdownBase, type NavItemDropdownBaseProps, NavMenuButton, type NavMenuButtonProps, Notification, type NotificationProps, type NotificationVariant, NumberInput, type NumberInputLayout, type NumberInputProps, PageHeader, type PageHeaderProps, type PageHeaderStyle, Pagination, PaginationButtonGroupBase, type PaginationButtonGroupBaseProps, type PaginationButtonGroupType, PaginationCards, type PaginationCardsProps, type PaginationCardsVariant, PaginationDotGroup, type PaginationDotGroupProps, PaginationDotIndicator, type PaginationDotIndicatorProps, type PaginationDotSize, type PaginationDotVariant, PaginationNumberBase, type PaginationNumberBaseProps, type PaginationNumberShape, type PaginationProps, type PaginationType, PieChart, type PieChartProps, type PieChartSize, type PieSlice, PillBadge, type PillBadgeProps, ProgressBar, type ProgressBarLabel, type ProgressBarProps, ProgressCircle, type ProgressCircleProps, type ProgressCircleShape, type ProgressCircleSize, RadarChart, type RadarChartProps, type RadarLegendPosition, Radio, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupItemSize, type RadioGroupItemType, type RadioGroupProps, type RadioProps, SectionFooter, type SectionFooterProps, type SectionFooterType, SectionHeader, type SectionHeaderProps, SectionLabel, type SectionLabelProps, type SectionLabelSize, Select, SelectMenuItem, type SelectMenuItemProps, type SelectMenuItemSize, type SelectProps, type SelectSize, type SelectType, SidebarNavigation, type SidebarNavigationProps, type SidebarNavigationType, SlideOutMenuHeader, type SlideOutMenuHeaderProps, SlideoutMenu, type SlideoutMenuProps, type SlideoutMenuSide, type SlideoutMenuSize, Slider, type SliderLabel, type SliderProps, type SocialBrand, SocialButton, type SocialButtonProps, type SocialButtonSize, type SocialButtonTheme, StatusIcon, type StatusIconProps, type StatusIconType, StepBase, type StepBaseProps, StepIconBase, type StepIconBaseProps, type StepIconSize, type StepIconType, type StepOrientation, type StepStatus, TabButtonBase, type TabButtonBaseProps, type TabButtonSize, type TabButtonType, type TabItem, TableCell, type TableCellProps, type TableCellSize, TableHeaderCell, type TableHeaderCellProps, type TableHeaderCellSize, TableHeaderLabel, type TableHeaderLabelArrow, type TableHeaderLabelProps, Tabs, type TabsOrientation, type TabsProps, Tag, type TagProps, type TagSize, TagsInputField, type TagsInputFieldProps, type TagsInputVariant, TextEditorToolbar, TextEditorToolbarDivider, type TextEditorToolbarProps, TextEditorTooltip, type TextEditorTooltipProps, TextareaInputField, type TextareaInputFieldProps, Toggle, type ToggleProps, type ToggleSize, type ToggleType, Tooltip, type TooltipArrow, type TooltipProps, TrailingInputField, type TrailingInputFieldProps, type TreeNode, TreeView, TreeViewConnector, type TreeViewConnectorProps, type TreeViewConnectorSize, type TreeViewConnectorType, TreeViewItem, type TreeViewItemProps, type TreeViewItemSize, type TreeViewProps, type UseContextMenuReturn, type VerificationCodeDigits, VerificationCodeInput, type VerificationCodeInputProps, type VerificationCodeSize, index as illustrations, useContextMenu };
|