@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.
@@ -3,6 +3,7 @@
3
3
  @import "./css/Avatar.css";
4
4
  @import "./css/Badge.css";
5
5
  @import "./css/Box.css";
6
+ @import "./css/BurgerMenu.css";
6
7
  @import "./css/Button.css";
7
8
  @import "./css/ButtonBar.css";
8
9
  @import "./css/Center.css";
@@ -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,5 @@
1
+ import { default as React } from 'react';
2
+
3
+ declare function BurgerMenuShowcase(): import("react/jsx-runtime").JSX.Element;
4
+ declare const _default: React.MemoExoticComponent<typeof BurgerMenuShowcase>;
5
+ export default _default;
@@ -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';
@@ -0,0 +1,4 @@
1
+ import { BurgerMenu as o } from "./BurgerMenu.js";
2
+ export {
3
+ o as BurgerMenu
4
+ };
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 u } from "./utils/hooks/useDynamicRef.js";
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 H, isTrueString as M, normalizeSlashes as W, replaceRange as j, splitByIndices as q, unicodeCharAt as J } from "./utils/string.js";
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 so } from "./components/Checkbox/Checkbox.js";
21
+ import { default as uo } from "./components/Checkbox/Checkbox.js";
22
22
  import { Button as co } from "./components/Button/Button.js";
23
- import { LinkButton as To } from "./components/Button/LinkButton.js";
24
- import { default as go, getLinkClassName as Bo } from "./components/Link/Link.js";
25
- import { default as Co } from "./components/Link/ButtonLink.js";
26
- import { ButtonBar as yo } from "./components/Button/ButtonBar.js";
27
- import { Avatar as bo } from "./components/Avatar/Avatar.js";
28
- import { BACKDROP_OUTLET_ID as Oo, BackdropPortal as Po } from "./components/BackdropPortal/BackdropPortal.js";
29
- import { Badge as Eo } from "./components/Badge/Badge.js";
30
- import { ControlBox as ho } from "./components/ControlBox/ControlBox.js";
31
- import { CountryFlag as Fo } from "./components/CountryFlag/CountryFlag.js";
32
- import { Decorate as No } from "./components/Decorate/Decorate.js";
33
- import { Dot as zo } from "./components/Dot/Dot.js";
34
- import { FLYOUT_OUTLET_ID as Vo, Flyout as Go } from "./components/Flyout/Flyout.js";
35
- import { Logos as Ho } from "./components/Logos/index.js";
36
- import { I as Wo } from "./cfxIcons-BNd1WgpX.js";
37
- import { I as qo } from "./cfxIconsBig-BLJjMT-Y.js";
38
- import { Icon as Qo } from "./components/Icon/Icon.js";
39
- import { IconBig as Zo } from "./components/IconBig/IconBig.js";
40
- import { Indicator as or } from "./components/Indicator/Indicator.js";
41
- import { default as er } from "./components/InfoPanel/InfoPanel.js";
42
- import { default as pr } from "./components/Input/Input.js";
43
- import { default as mr } from "./components/Input/RichInput.js";
44
- import { Interactive as ar } from "./components/Interactive/Interactive.js";
45
- import { Island as nr } from "./components/Island/Island.js";
46
- import { Box as sr } from "./components/Layout/Box/Box.js";
47
- import { Center as cr } from "./components/Layout/Center/Center.js";
48
- import { Flex as Ir } from "./components/Layout/Flex/Flex.js";
49
- import { FlexRestricter as Lr } from "./components/Layout/Flex/FlexRestricter.js";
50
- import { Pad as Br } from "./components/Layout/Pad/Pad.js";
51
- import { Page as Cr } from "./components/Layout/Page/Page.js";
52
- import { R as yr } from "./Rail-DcVowhML.js";
53
- import { Scrollable as br } from "./components/Layout/Scrollable/Scrollable.js";
54
- import { VirtualScrollable as Or } from "./components/Layout/Scrollable/VirtualScrollable.js";
55
- import { Loaf as Dr } from "./components/Loaf/Loaf.js";
56
- import { Modal as _r } from "./components/Modal/Modal.js";
57
- import { NavList as vr } from "./components/NavList/NavList.js";
58
- import { OVERLAY_OUTLET_ID as Ur, Overlay as Nr } from "./components/Overlay/Overlay.js";
59
- import { Popover as zr } from "./components/Popover/Popover.js";
60
- import { PremiumBadge as Vr } from "./components/PremiumBadge/PremiumBadge.js";
61
- import { Prose as Yr } from "./components/Prose/Prose.js";
62
- import { Radio as Mr } from "./components/Radio/Radio.js";
63
- import { Select as jr } from "./components/Select/Select.js";
64
- import { DropdownSelect as Jr } from "./components/DropdownSelect/DropdownSelect.js";
65
- import { Separator as Xr } from "./components/Separator/Separator.js";
66
- import { Shroud as $r } from "./components/Shroud/Shroud.js";
67
- import { Slider as re } from "./components/Slider/Slider.js";
68
- import { Spacer as te } from "./components/Spacer/Spacer.js";
69
- import { Style as fe, useContextualStyle as me } from "./components/Style/Style.js";
70
- import { default as ae } from "./components/Switch/Switch.js";
71
- import { ToggleGroup as ne } from "./components/ToggleGroup/ToggleGroup.js";
72
- import { Tabular as se } from "./components/Tabular/Tabular.js";
73
- import { Table as ce, TableIconButton as de } from "./components/Table/Table.js";
74
- import { Text as Te, TextBlock as Le, getTextOpacity as ge } from "./components/Text/Text.js";
75
- import { ui as Se } from "./components/ui.js";
76
- import { Textarea as ke } from "./components/Textarea/Textarea.js";
77
- import { TITLE_OUTLET_ID as Re, Title as be } from "./components/Title/Title.js";
78
- import { default as Oe } from "./components/InputDropzone/InputDropzone.js";
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 De } from "./components/Skeleton/Skeleton.js";
81
- import { OnScreenSensor as _e } from "./components/OnScreenSensor.js";
82
- import { Symbols as ve } from "./components/Symbols.js";
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
- bo as Avatar,
90
- Oo as BACKDROP_OUTLET_ID,
91
- Po as BackdropPortal,
92
- Eo as Badge,
93
- sr as Box,
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
- yo as ButtonBar,
96
- Co as ButtonLink,
97
+ bo as ButtonBar,
98
+ yo as ButtonLink,
97
99
  k as CLIPBOARD_TITLE_APPEARANCE,
98
- cr as Center,
99
- so as Checkbox,
100
+ Ir as Center,
101
+ uo as Checkbox,
100
102
  no as ClipboardButton,
101
- ho as ControlBox,
102
- Fo as CountryFlag,
103
- No as Decorate,
104
- zo as Dot,
105
- Jr as DropdownSelect,
106
- Vo as FLYOUT_OUTLET_ID,
107
- Ir as Flex,
108
- Lr as FlexRestricter,
109
- Go as Flyout,
110
- Qo as Icon,
111
- Zo as IconBig,
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
- Wo as Icons,
114
- qo as IconsBig,
115
- or as Indicator,
116
- er as InfoPanel,
117
- pr as Input,
118
- Oe as InputDropzone,
119
- ar as Interactive,
120
- nr as Island,
121
- go as Link,
122
- To as LinkButton,
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
- Dr as Loaf,
125
- Ho as Logos,
126
- _r as Modal,
127
- vr as NavList,
128
- Ur as OVERLAY_OUTLET_ID,
129
- _e as OnScreenSensor,
130
- Nr as Overlay,
131
- Br as Pad,
132
- Cr as Page,
133
- zr as Popover,
134
- Vr as PremiumBadge,
135
- Yr as Prose,
136
- Mr as Radio,
137
- yr as Rail,
138
- mr as RichInput,
139
- br as Scrollable,
140
- jr as Select,
141
- Xr as Separator,
142
- $r as Shroud,
143
- De as Skeleton,
144
- re as Slider,
145
- te as Spacer,
146
- fe as Style,
147
- ae as Switch,
148
- ve as Symbols,
149
- Re as TITLE_OUTLET_ID,
150
- ce as Table,
151
- de as TableIconButton,
152
- se as Tabular,
153
- Te as Text,
154
- Le as TextBlock,
155
- ke as Textarea,
156
- be as Title,
157
- ne as ToggleGroup,
158
- Or as VirtualScrollable,
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
- Bo as getLinkClassName,
167
- ge as getTextOpacity,
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
- H as isFalseString,
173
- M as isTrueString,
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
- Se as ui,
188
+ ke as ui,
187
189
  J as unicodeCharAt,
188
190
  y as useClipboardComponent,
189
- me as useContextualStyle,
190
- u as useDynamicRef,
191
+ ae as useContextualStyle,
192
+ s as useDynamicRef,
191
193
  d as useGlobalKeyboardEvent,
192
194
  i as useInstance,
193
195
  T as useKeyboardClose,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cfx-dev/ui-components",
3
3
  "private": false,
4
- "version": "4.2.7",
4
+ "version": "4.2.8",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "main": "dist/main.js",