@cfx-dev/ui-components 4.2.7 → 4.2.8
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/assets/all_css.css +1 -0
- package/dist/assets/css/BurgerMenu.css +1 -0
- package/dist/components/BurgerMenu/BurgerMenu.d.ts +15 -0
- package/dist/components/BurgerMenu/BurgerMenu.js +138 -0
- package/dist/components/BurgerMenu/BurgerMenuShowcase.d.ts +5 -0
- package/dist/components/BurgerMenu/BurgerMenuShowcase.js +53 -0
- package/dist/components/BurgerMenu/index.d.ts +1 -0
- package/dist/components/BurgerMenu/index.js +4 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +136 -134
- package/package.json +1 -1
package/dist/assets/all_css.css
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.cfxui__BurgerMenu__burgerButton__cc9ab{width:calc(var(--quant) * 3.25);height:calc(var(--quant) * 3.25);cursor:pointer}.cfxui__BurgerMenu__burgerContainerOpen__ed7ab{background:rgba(var(--color-bg-light),1);height:var(--height)}.cfxui__BurgerMenu__burgerLine__886ad,.cfxui__BurgerMenu__burgerLineOpen__af602{width:100%;height:calc(var(--quant) * .3);background-color:rgba(var(--color-primary),1);border-radius:var(--border-radius-xsmall)}.cfxui__BurgerMenu__burgerLine__886ad,.cfxui__BurgerMenu__burgerLineOpen__af602{transition:all .25s ease,outline-offset 0s,outline 0s}.cfxui__BurgerMenu__burgerLineOpen__af602:nth-child(1){transform:rotate(45deg) translate(5px,5px)}.cfxui__BurgerMenu__burgerLineOpen__af602:nth-child(1){transition:all .25s ease,outline-offset 0s,outline 0s}.cfxui__BurgerMenu__burgerLineOpen__af602:nth-child(2){opacity:0}.cfxui__BurgerMenu__burgerLineOpen__af602:nth-child(2){transition:all .25s ease,outline-offset 0s,outline 0s}.cfxui__BurgerMenu__burgerLineOpen__af602:nth-child(3){transform:rotate(-45deg) translate(7px,-7px)}.cfxui__BurgerMenu__burgerLineOpen__af602:nth-child(3){transition:all .25s ease,outline-offset 0s,outline 0s}.cfxui__BurgerMenu__subItemContainer__0d64a{background-color:rgba(var(--color-secondary),.25);max-height:0;overflow:hidden}.cfxui__BurgerMenu__subItemContainer__0d64a{transition:all .25s ease,outline-offset 0s,outline 0s}.cfxui__BurgerMenu__subItemContainerOpen__5491d{max-height:var(--height)}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
interface MenuItem {
|
|
4
|
+
label: string;
|
|
5
|
+
highlighted?: boolean;
|
|
6
|
+
id: string;
|
|
7
|
+
className?: string;
|
|
8
|
+
submenu?: MenuItem[];
|
|
9
|
+
}
|
|
10
|
+
interface BurgerMenuProps {
|
|
11
|
+
items: MenuItem[];
|
|
12
|
+
onItemClick: (item: string) => void;
|
|
13
|
+
}
|
|
14
|
+
export declare function BurgerMenu({ items, onItemClick, }: BurgerMenuProps): React.ReactElement;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import { jsxs as a, jsx as n } from "react/jsx-runtime";
|
|
2
|
+
import { useState as f, useCallback as l } from "react";
|
|
3
|
+
import { Icon as O } from "../Icon/Icon.js";
|
|
4
|
+
import { Interactive as c } from "../Interactive/Interactive.js";
|
|
5
|
+
import { Flex as u } from "../Layout/Flex/Flex.js";
|
|
6
|
+
import { Text as x } from "../Text/Text.js";
|
|
7
|
+
import "../ui.js";
|
|
8
|
+
import { clsx as t } from "../../utils/clsx.js";
|
|
9
|
+
const y = "cfxui__BurgerMenu__burgerButton__cc9ab", L = "cfxui__BurgerMenu__burgerContainerOpen__ed7ab", B = "cfxui__BurgerMenu__burgerLine__886ad", k = "cfxui__BurgerMenu__burgerLineOpen__af602", w = "cfxui__BurgerMenu__subItemContainer__0d64a", I = "cfxui__BurgerMenu__subItemContainerOpen__5491d", r = {
|
|
10
|
+
burgerButton: y,
|
|
11
|
+
burgerContainerOpen: L,
|
|
12
|
+
burgerLine: B,
|
|
13
|
+
burgerLineOpen: k,
|
|
14
|
+
subItemContainer: w,
|
|
15
|
+
subItemContainerOpen: I
|
|
16
|
+
};
|
|
17
|
+
function K({
|
|
18
|
+
items: h,
|
|
19
|
+
onItemClick: b
|
|
20
|
+
}) {
|
|
21
|
+
const [i, g] = f(!1), [d, C] = f({}), p = l(() => {
|
|
22
|
+
g((e) => !e);
|
|
23
|
+
}, []), s = l((e) => {
|
|
24
|
+
b(e), g(!1);
|
|
25
|
+
}, [b]), _ = l((e) => {
|
|
26
|
+
C((o) => ({
|
|
27
|
+
...o,
|
|
28
|
+
[e]: !o[e]
|
|
29
|
+
}));
|
|
30
|
+
}, []);
|
|
31
|
+
return /* @__PURE__ */ a(
|
|
32
|
+
u,
|
|
33
|
+
{
|
|
34
|
+
className: t({ [r.burgerContainerOpen]: i }),
|
|
35
|
+
direction: "column",
|
|
36
|
+
children: [
|
|
37
|
+
/* @__PURE__ */ n(u, { justifyContent: "flex-end", children: /* @__PURE__ */ n(
|
|
38
|
+
c,
|
|
39
|
+
{
|
|
40
|
+
showPointer: !0,
|
|
41
|
+
"aria-label": "Toggle menu",
|
|
42
|
+
role: "button",
|
|
43
|
+
onClick: p,
|
|
44
|
+
onKeyDown: (e) => {
|
|
45
|
+
(e.key === "Enter" || e.key === " ") && p();
|
|
46
|
+
},
|
|
47
|
+
children: /* @__PURE__ */ a(
|
|
48
|
+
u,
|
|
49
|
+
{
|
|
50
|
+
justifyContent: "space-around",
|
|
51
|
+
direction: "column",
|
|
52
|
+
className: r.burgerButton,
|
|
53
|
+
children: [
|
|
54
|
+
/* @__PURE__ */ n(
|
|
55
|
+
"span",
|
|
56
|
+
{
|
|
57
|
+
className: t(i ? r.burgerLineOpen : r.burgerLine)
|
|
58
|
+
}
|
|
59
|
+
),
|
|
60
|
+
/* @__PURE__ */ n(
|
|
61
|
+
"span",
|
|
62
|
+
{
|
|
63
|
+
className: t(i ? r.burgerLineOpen : r.burgerLine)
|
|
64
|
+
}
|
|
65
|
+
),
|
|
66
|
+
/* @__PURE__ */ n(
|
|
67
|
+
"span",
|
|
68
|
+
{
|
|
69
|
+
className: t(i ? r.burgerLineOpen : r.burgerLine)
|
|
70
|
+
}
|
|
71
|
+
)
|
|
72
|
+
]
|
|
73
|
+
}
|
|
74
|
+
)
|
|
75
|
+
}
|
|
76
|
+
) }),
|
|
77
|
+
i && /* @__PURE__ */ n(u, { direction: "column", className: r.menu, children: h.map((e) => /* @__PURE__ */ a("div", { children: [
|
|
78
|
+
/* @__PURE__ */ n(
|
|
79
|
+
c,
|
|
80
|
+
{
|
|
81
|
+
showPointer: !0,
|
|
82
|
+
"aria-label": "Toggle item",
|
|
83
|
+
role: "button",
|
|
84
|
+
onClick: () => {
|
|
85
|
+
e.submenu ? _(e.id) : s(e.id);
|
|
86
|
+
},
|
|
87
|
+
onKeyDown: (o) => {
|
|
88
|
+
(o.key === "Enter" || o.key === " ") && (e.submenu ? _(e.id) : s(e.id));
|
|
89
|
+
},
|
|
90
|
+
children: /* @__PURE__ */ a(u, { p: 2, justifyContent: "space-between", children: [
|
|
91
|
+
/* @__PURE__ */ n(
|
|
92
|
+
x,
|
|
93
|
+
{
|
|
94
|
+
size: "xsmall",
|
|
95
|
+
weight: e.highlighted ? "bold" : "normal",
|
|
96
|
+
children: e.label
|
|
97
|
+
}
|
|
98
|
+
),
|
|
99
|
+
e.submenu && /* @__PURE__ */ n(
|
|
100
|
+
O,
|
|
101
|
+
{
|
|
102
|
+
name: d[e.id] ? "UpChevron" : "DownChevron"
|
|
103
|
+
}
|
|
104
|
+
)
|
|
105
|
+
] })
|
|
106
|
+
}
|
|
107
|
+
),
|
|
108
|
+
e.submenu && /* @__PURE__ */ n(
|
|
109
|
+
u,
|
|
110
|
+
{
|
|
111
|
+
className: t(r.subItemContainer, {
|
|
112
|
+
[r.subItemContainerOpen]: d[e.id]
|
|
113
|
+
}),
|
|
114
|
+
direction: "column",
|
|
115
|
+
children: e.submenu.map((o) => /* @__PURE__ */ n(
|
|
116
|
+
c,
|
|
117
|
+
{
|
|
118
|
+
showPointer: !0,
|
|
119
|
+
"aria-label": "Toggle sub item",
|
|
120
|
+
role: "button",
|
|
121
|
+
onClick: () => s(o.id),
|
|
122
|
+
onKeyDown: (m) => {
|
|
123
|
+
(m.key === "Enter" || m.key === " ") && s(o.id);
|
|
124
|
+
},
|
|
125
|
+
children: /* @__PURE__ */ n(u, { p: 2, children: o.label })
|
|
126
|
+
},
|
|
127
|
+
o.id
|
|
128
|
+
))
|
|
129
|
+
}
|
|
130
|
+
)
|
|
131
|
+
] }, e.id)) })
|
|
132
|
+
]
|
|
133
|
+
}
|
|
134
|
+
);
|
|
135
|
+
}
|
|
136
|
+
export {
|
|
137
|
+
K as BurgerMenu
|
|
138
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { jsx as e, jsxs as l } from "react/jsx-runtime";
|
|
2
|
+
import i from "react";
|
|
3
|
+
import { Flex as r } from "../Layout/Flex/Flex.js";
|
|
4
|
+
import { Text as o } from "../Text/Text.js";
|
|
5
|
+
import "../ui.js";
|
|
6
|
+
import { BurgerMenu as n } from "./BurgerMenu.js";
|
|
7
|
+
const a = [
|
|
8
|
+
{
|
|
9
|
+
id: "1",
|
|
10
|
+
label: "Account",
|
|
11
|
+
highlighted: !0
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
id: "2",
|
|
15
|
+
label: "Dashboard"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
id: "3",
|
|
19
|
+
label: "Servers",
|
|
20
|
+
submenu: [
|
|
21
|
+
{
|
|
22
|
+
id: "3-1",
|
|
23
|
+
label: "Server Keys"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
id: "3-2",
|
|
27
|
+
label: "Server Hosting"
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
id: "4",
|
|
33
|
+
label: "Settings"
|
|
34
|
+
}
|
|
35
|
+
], m = (t) => {
|
|
36
|
+
console.log(`Item clicked: ${t}`);
|
|
37
|
+
};
|
|
38
|
+
function c() {
|
|
39
|
+
return /* @__PURE__ */ e(r, { gap: "large", vertical: !0, pb: 20, children: /* @__PURE__ */ l(r, { gap: "normal", vertical: !0, children: [
|
|
40
|
+
/* @__PURE__ */ e(o, { children: "Burger Menu" }),
|
|
41
|
+
/* @__PURE__ */ e("div", { children: /* @__PURE__ */ e(
|
|
42
|
+
n,
|
|
43
|
+
{
|
|
44
|
+
items: a,
|
|
45
|
+
onItemClick: m
|
|
46
|
+
}
|
|
47
|
+
) })
|
|
48
|
+
] }) });
|
|
49
|
+
}
|
|
50
|
+
const b = i.memo(c);
|
|
51
|
+
export {
|
|
52
|
+
b as default
|
|
53
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { BurgerMenu } from './BurgerMenu';
|
package/dist/main.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export { Accordion, AccordionTrigger, AccordionHeader, AccordionItem, AccordionC
|
|
|
18
18
|
export { ClipboardButton } from './components/ClipboardButton';
|
|
19
19
|
export { Checkbox } from './components/Checkbox';
|
|
20
20
|
export { Button } from './components/Button/Button';
|
|
21
|
+
export { BurgerMenu } from './components/BurgerMenu/BurgerMenu';
|
|
21
22
|
export { LinkButton } from './components/Button/LinkButton';
|
|
22
23
|
export { Link, ButtonLink, getLinkClassName, } from './components/Link';
|
|
23
24
|
export { ButtonBar } from './components/Button/ButtonBar';
|
package/dist/main.js
CHANGED
|
@@ -3,7 +3,7 @@ import { clsx as f } from "./utils/clsx.js";
|
|
|
3
3
|
import { getValue as x } from "./utils/getValue.js";
|
|
4
4
|
import { usePopoverController as l } from "./utils/hooks/usePopoverController.js";
|
|
5
5
|
import { useInstance as i } from "./utils/hooks/useInstance.js";
|
|
6
|
-
import { useDynamicRef as
|
|
6
|
+
import { useDynamicRef as s } from "./utils/hooks/useDynamicRef.js";
|
|
7
7
|
import { useGlobalKeyboardEvent as d } from "./utils/hooks/useGlobalKeyboardEvent.js";
|
|
8
8
|
import { useKeyboardClose as T } from "./utils/hooks/useKeyboardClose.js";
|
|
9
9
|
import { useWindowResize as g } from "./utils/hooks/useWindowResize.js";
|
|
@@ -12,150 +12,152 @@ import { CLIPBOARD_TITLE_APPEARANCE as k, useClipboardComponent as y } from "./u
|
|
|
12
12
|
import { identity as b, invoke as A, noop as O, returnFalse as P, returnTrue as D } from "./utils/functional.js";
|
|
13
13
|
import { Linkify as _, defaultLinkReplacer as h, defaultLinkReplacerx as v, isExternalUrl as F, linkify as U, linkifyx as N, matchLinkNodes as w, matchLinks as z } from "./utils/links.js";
|
|
14
14
|
import { clamp as V, clamp01 as G } from "./utils/math.js";
|
|
15
|
-
import { isFalseString as
|
|
15
|
+
import { isFalseString as Y, isTrueString as H, normalizeSlashes as W, replaceRange as j, splitByIndices as q, unicodeCharAt as J } from "./utils/string.js";
|
|
16
16
|
import { debounce as X, throttle as Z } from "./utils/execution.js";
|
|
17
17
|
import { getColor as oo } from "./utils/color.js";
|
|
18
18
|
import { default as eo } from "./components/IconButton/IconButton.js";
|
|
19
19
|
import { Accordion as po, AccordionContent as fo, AccordionHeader as mo, AccordionItem as xo, AccordionTrigger as ao } from "./components/Accordion/Accordion.js";
|
|
20
20
|
import { default as no } from "./components/ClipboardButton/ClipboardButton.js";
|
|
21
|
-
import { default as
|
|
21
|
+
import { default as uo } from "./components/Checkbox/Checkbox.js";
|
|
22
22
|
import { Button as co } from "./components/Button/Button.js";
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import { default as Co } from "./components/Link/
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import { I as qo } from "./
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import { default as pr } from "./components/
|
|
43
|
-
import { default as mr } from "./components/Input/
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
23
|
+
import { BurgerMenu as To } from "./components/BurgerMenu/BurgerMenu.js";
|
|
24
|
+
import { LinkButton as go } from "./components/Button/LinkButton.js";
|
|
25
|
+
import { default as So, getLinkClassName as Co } from "./components/Link/Link.js";
|
|
26
|
+
import { default as yo } from "./components/Link/ButtonLink.js";
|
|
27
|
+
import { ButtonBar as bo } from "./components/Button/ButtonBar.js";
|
|
28
|
+
import { Avatar as Oo } from "./components/Avatar/Avatar.js";
|
|
29
|
+
import { BACKDROP_OUTLET_ID as Do, BackdropPortal as Eo } from "./components/BackdropPortal/BackdropPortal.js";
|
|
30
|
+
import { Badge as ho } from "./components/Badge/Badge.js";
|
|
31
|
+
import { ControlBox as Fo } from "./components/ControlBox/ControlBox.js";
|
|
32
|
+
import { CountryFlag as No } from "./components/CountryFlag/CountryFlag.js";
|
|
33
|
+
import { Decorate as zo } from "./components/Decorate/Decorate.js";
|
|
34
|
+
import { Dot as Vo } from "./components/Dot/Dot.js";
|
|
35
|
+
import { FLYOUT_OUTLET_ID as Mo, Flyout as Yo } from "./components/Flyout/Flyout.js";
|
|
36
|
+
import { Logos as Wo } from "./components/Logos/index.js";
|
|
37
|
+
import { I as qo } from "./cfxIcons-BNd1WgpX.js";
|
|
38
|
+
import { I as Qo } from "./cfxIconsBig-BLJjMT-Y.js";
|
|
39
|
+
import { Icon as Zo } from "./components/Icon/Icon.js";
|
|
40
|
+
import { IconBig as or } from "./components/IconBig/IconBig.js";
|
|
41
|
+
import { Indicator as er } from "./components/Indicator/Indicator.js";
|
|
42
|
+
import { default as pr } from "./components/InfoPanel/InfoPanel.js";
|
|
43
|
+
import { default as mr } from "./components/Input/Input.js";
|
|
44
|
+
import { default as ar } from "./components/Input/RichInput.js";
|
|
45
|
+
import { Interactive as nr } from "./components/Interactive/Interactive.js";
|
|
46
|
+
import { Island as ur } from "./components/Island/Island.js";
|
|
47
|
+
import { Box as cr } from "./components/Layout/Box/Box.js";
|
|
48
|
+
import { Center as Ir } from "./components/Layout/Center/Center.js";
|
|
49
|
+
import { Flex as Lr } from "./components/Layout/Flex/Flex.js";
|
|
50
|
+
import { FlexRestricter as Br } from "./components/Layout/Flex/FlexRestricter.js";
|
|
51
|
+
import { Pad as Cr } from "./components/Layout/Pad/Pad.js";
|
|
52
|
+
import { Page as yr } from "./components/Layout/Page/Page.js";
|
|
53
|
+
import { R as br } from "./Rail-DcVowhML.js";
|
|
54
|
+
import { Scrollable as Or } from "./components/Layout/Scrollable/Scrollable.js";
|
|
55
|
+
import { VirtualScrollable as Dr } from "./components/Layout/Scrollable/VirtualScrollable.js";
|
|
56
|
+
import { Loaf as _r } from "./components/Loaf/Loaf.js";
|
|
57
|
+
import { Modal as vr } from "./components/Modal/Modal.js";
|
|
58
|
+
import { NavList as Ur } from "./components/NavList/NavList.js";
|
|
59
|
+
import { OVERLAY_OUTLET_ID as wr, Overlay as zr } from "./components/Overlay/Overlay.js";
|
|
60
|
+
import { Popover as Vr } from "./components/Popover/Popover.js";
|
|
61
|
+
import { PremiumBadge as Mr } from "./components/PremiumBadge/PremiumBadge.js";
|
|
62
|
+
import { Prose as Hr } from "./components/Prose/Prose.js";
|
|
63
|
+
import { Radio as jr } from "./components/Radio/Radio.js";
|
|
64
|
+
import { Select as Jr } from "./components/Select/Select.js";
|
|
65
|
+
import { DropdownSelect as Xr } from "./components/DropdownSelect/DropdownSelect.js";
|
|
66
|
+
import { Separator as $r } from "./components/Separator/Separator.js";
|
|
67
|
+
import { Shroud as re } from "./components/Shroud/Shroud.js";
|
|
68
|
+
import { Slider as te } from "./components/Slider/Slider.js";
|
|
69
|
+
import { Spacer as fe } from "./components/Spacer/Spacer.js";
|
|
70
|
+
import { Style as xe, useContextualStyle as ae } from "./components/Style/Style.js";
|
|
71
|
+
import { default as ne } from "./components/Switch/Switch.js";
|
|
72
|
+
import { ToggleGroup as ue } from "./components/ToggleGroup/ToggleGroup.js";
|
|
73
|
+
import { Tabular as ce } from "./components/Tabular/Tabular.js";
|
|
74
|
+
import { Table as Ie, TableIconButton as Te } from "./components/Table/Table.js";
|
|
75
|
+
import { Text as ge, TextBlock as Be, getTextOpacity as Se } from "./components/Text/Text.js";
|
|
76
|
+
import { ui as ke } from "./components/ui.js";
|
|
77
|
+
import { Textarea as Re } from "./components/Textarea/Textarea.js";
|
|
78
|
+
import { TITLE_OUTLET_ID as Ae, Title as Oe } from "./components/Title/Title.js";
|
|
79
|
+
import { default as De } from "./components/InputDropzone/InputDropzone.js";
|
|
79
80
|
import "./components/InputDropzone/ItemPreview.js";
|
|
80
|
-
import { default as
|
|
81
|
-
import { OnScreenSensor as
|
|
82
|
-
import { Symbols as
|
|
81
|
+
import { default as _e } from "./components/Skeleton/Skeleton.js";
|
|
82
|
+
import { OnScreenSensor as ve } from "./components/OnScreenSensor.js";
|
|
83
|
+
import { Symbols as Ue } from "./components/Symbols.js";
|
|
83
84
|
export {
|
|
84
85
|
po as Accordion,
|
|
85
86
|
fo as AccordionContent,
|
|
86
87
|
mo as AccordionHeader,
|
|
87
88
|
xo as AccordionItem,
|
|
88
89
|
ao as AccordionTrigger,
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
90
|
+
Oo as Avatar,
|
|
91
|
+
Do as BACKDROP_OUTLET_ID,
|
|
92
|
+
Eo as BackdropPortal,
|
|
93
|
+
ho as Badge,
|
|
94
|
+
cr as Box,
|
|
95
|
+
To as BurgerMenu,
|
|
94
96
|
co as Button,
|
|
95
|
-
|
|
96
|
-
|
|
97
|
+
bo as ButtonBar,
|
|
98
|
+
yo as ButtonLink,
|
|
97
99
|
k as CLIPBOARD_TITLE_APPEARANCE,
|
|
98
|
-
|
|
99
|
-
|
|
100
|
+
Ir as Center,
|
|
101
|
+
uo as Checkbox,
|
|
100
102
|
no as ClipboardButton,
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
103
|
+
Fo as ControlBox,
|
|
104
|
+
No as CountryFlag,
|
|
105
|
+
zo as Decorate,
|
|
106
|
+
Vo as Dot,
|
|
107
|
+
Xr as DropdownSelect,
|
|
108
|
+
Mo as FLYOUT_OUTLET_ID,
|
|
109
|
+
Lr as Flex,
|
|
110
|
+
Br as FlexRestricter,
|
|
111
|
+
Yo as Flyout,
|
|
112
|
+
Zo as Icon,
|
|
113
|
+
or as IconBig,
|
|
112
114
|
eo as IconButton,
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
115
|
+
qo as Icons,
|
|
116
|
+
Qo as IconsBig,
|
|
117
|
+
er as Indicator,
|
|
118
|
+
pr as InfoPanel,
|
|
119
|
+
mr as Input,
|
|
120
|
+
De as InputDropzone,
|
|
121
|
+
nr as Interactive,
|
|
122
|
+
ur as Island,
|
|
123
|
+
So as Link,
|
|
124
|
+
go as LinkButton,
|
|
123
125
|
_ as Linkify,
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
126
|
+
_r as Loaf,
|
|
127
|
+
Wo as Logos,
|
|
128
|
+
vr as Modal,
|
|
129
|
+
Ur as NavList,
|
|
130
|
+
wr as OVERLAY_OUTLET_ID,
|
|
131
|
+
ve as OnScreenSensor,
|
|
132
|
+
zr as Overlay,
|
|
133
|
+
Cr as Pad,
|
|
134
|
+
yr as Page,
|
|
135
|
+
Vr as Popover,
|
|
136
|
+
Mr as PremiumBadge,
|
|
137
|
+
Hr as Prose,
|
|
138
|
+
jr as Radio,
|
|
139
|
+
br as Rail,
|
|
140
|
+
ar as RichInput,
|
|
141
|
+
Or as Scrollable,
|
|
142
|
+
Jr as Select,
|
|
143
|
+
$r as Separator,
|
|
144
|
+
re as Shroud,
|
|
145
|
+
_e as Skeleton,
|
|
146
|
+
te as Slider,
|
|
147
|
+
fe as Spacer,
|
|
148
|
+
xe as Style,
|
|
149
|
+
ne as Switch,
|
|
150
|
+
Ue as Symbols,
|
|
151
|
+
Ae as TITLE_OUTLET_ID,
|
|
152
|
+
Ie as Table,
|
|
153
|
+
Te as TableIconButton,
|
|
154
|
+
ce as Tabular,
|
|
155
|
+
ge as Text,
|
|
156
|
+
Be as TextBlock,
|
|
157
|
+
Re as Textarea,
|
|
158
|
+
Oe as Title,
|
|
159
|
+
ue as ToggleGroup,
|
|
160
|
+
Dr as VirtualScrollable,
|
|
159
161
|
V as clamp,
|
|
160
162
|
G as clamp01,
|
|
161
163
|
f as clsx,
|
|
@@ -163,14 +165,14 @@ export {
|
|
|
163
165
|
h as defaultLinkReplacer,
|
|
164
166
|
v as defaultLinkReplacerx,
|
|
165
167
|
oo as getColor,
|
|
166
|
-
|
|
167
|
-
|
|
168
|
+
Co as getLinkClassName,
|
|
169
|
+
Se as getTextOpacity,
|
|
168
170
|
x as getValue,
|
|
169
171
|
b as identity,
|
|
170
172
|
A as invoke,
|
|
171
173
|
F as isExternalUrl,
|
|
172
|
-
|
|
173
|
-
|
|
174
|
+
Y as isFalseString,
|
|
175
|
+
H as isTrueString,
|
|
174
176
|
U as linkify,
|
|
175
177
|
N as linkifyx,
|
|
176
178
|
w as matchLinkNodes,
|
|
@@ -183,11 +185,11 @@ export {
|
|
|
183
185
|
D as returnTrue,
|
|
184
186
|
q as splitByIndices,
|
|
185
187
|
Z as throttle,
|
|
186
|
-
|
|
188
|
+
ke as ui,
|
|
187
189
|
J as unicodeCharAt,
|
|
188
190
|
y as useClipboardComponent,
|
|
189
|
-
|
|
190
|
-
|
|
191
|
+
ae as useContextualStyle,
|
|
192
|
+
s as useDynamicRef,
|
|
191
193
|
d as useGlobalKeyboardEvent,
|
|
192
194
|
i as useInstance,
|
|
193
195
|
T as useKeyboardClose,
|