@cfx-dev/ui-components 2.1.23 → 2.1.24
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/Button.css +1 -1
- package/dist/assets/Link.css +1 -0
- package/dist/assets/Modal.css +1 -1
- package/dist/assets/Text.css +1 -1
- package/dist/assets/global.css +1 -1
- package/dist/components/Button/Button.js +78 -77
- package/dist/components/Button/ButtonShowcase.js +46 -33
- package/dist/components/Link/ButtonLink.d.ts +9 -0
- package/dist/components/Link/ButtonLink.js +26 -0
- package/dist/components/Link/Link.d.ts +13 -0
- package/dist/components/Link/Link.js +35 -0
- package/dist/components/Link/LinkShowcase.d.ts +5 -0
- package/dist/components/Link/LinkShowcase.js +62 -0
- package/dist/components/Link/index.d.ts +3 -0
- package/dist/components/Link/index.js +7 -0
- package/dist/components/Modal/Modal.js +34 -34
- package/dist/components/Table/Table.d.ts +2 -1
- package/dist/components/Table/Table.js +72 -71
- package/dist/components/Text/Text.js +5 -5
- package/dist/main.d.ts +3 -0
- package/dist/main.js +137 -132
- package/dist/styles-scss/global.scss +16 -8
- package/dist/styles-scss/tokens.scss +7 -0
- package/package.json +1 -1
|
@@ -27,6 +27,7 @@ export interface TableProps {
|
|
|
27
27
|
sortBy?: string;
|
|
28
28
|
sortOrder?: 'asc' | 'desc';
|
|
29
29
|
onSortChange?: (sortBy: string, sortOrder: 'asc' | 'desc') => void;
|
|
30
|
+
className?: string;
|
|
30
31
|
}
|
|
31
|
-
export declare function Table({ headers, data, includeRadio, loading, onSelectChange, dataContainer, selectedRow: outerSelectedRow, sortBy: outerSortBy, sortOrder: outerSortOrder, onSortChange, }: TableProps): import("react/jsx-runtime").JSX.Element;
|
|
32
|
+
export declare function Table({ headers, data, includeRadio, loading, onSelectChange, dataContainer, selectedRow: outerSelectedRow, sortBy: outerSortBy, sortOrder: outerSortOrder, onSortChange, className, }: TableProps): import("react/jsx-runtime").JSX.Element;
|
|
32
33
|
export {};
|
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
import { jsx as t, jsxs as C } from "react/jsx-runtime";
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import { Text as
|
|
6
|
-
import { clsx as
|
|
7
|
-
import '../../assets/Table.css';const
|
|
8
|
-
tableIcon:
|
|
9
|
-
iconButton:
|
|
10
|
-
root:
|
|
11
|
-
radio:
|
|
12
|
-
radioContent:
|
|
13
|
-
pointer:
|
|
14
|
-
selectedRow:
|
|
15
|
-
headerText:
|
|
16
|
-
headerContent:
|
|
17
|
-
hidden:
|
|
2
|
+
import s, { useState as k } from "react";
|
|
3
|
+
import y from "../Checkbox/Checkbox.js";
|
|
4
|
+
import I from "../IconButton/IconButton.js";
|
|
5
|
+
import { Text as $ } from "../Text/Text.js";
|
|
6
|
+
import { clsx as f } from "../../utils/clsx.js";
|
|
7
|
+
import '../../assets/Table.css';const S = "_tableIcon_jm0lw_1", z = "_iconButton_jm0lw_1", A = "_root_jm0lw_21", E = "_radio_jm0lw_38", O = "_radioContent_jm0lw_42", g = "_pointer_jm0lw_49", F = "_selectedRow_jm0lw_52", H = "_headerText_jm0lw_56", V = "_headerContent_jm0lw_65", q = "_hidden_jm0lw_84", o = {
|
|
8
|
+
tableIcon: S,
|
|
9
|
+
iconButton: z,
|
|
10
|
+
root: A,
|
|
11
|
+
radio: E,
|
|
12
|
+
radioContent: O,
|
|
13
|
+
pointer: g,
|
|
14
|
+
selectedRow: F,
|
|
15
|
+
headerText: H,
|
|
16
|
+
headerContent: V,
|
|
17
|
+
hidden: q
|
|
18
18
|
};
|
|
19
|
-
function
|
|
19
|
+
function D(r) {
|
|
20
20
|
const {
|
|
21
21
|
className: e,
|
|
22
22
|
color: n = "inherit"
|
|
23
|
-
} = r, i =
|
|
24
|
-
return /* @__PURE__ */ t(
|
|
23
|
+
} = r, i = f(o.tableIcon, o.iconButton, e);
|
|
24
|
+
return /* @__PURE__ */ t(I, { ...r, className: i, color: n });
|
|
25
25
|
}
|
|
26
|
-
function
|
|
26
|
+
function G(r) {
|
|
27
27
|
const {
|
|
28
28
|
item: e,
|
|
29
29
|
onSortClick: n
|
|
30
|
-
} = r, i =
|
|
30
|
+
} = r, i = s.useCallback(() => {
|
|
31
31
|
n && n(e.sortKey || e.text);
|
|
32
|
-
}, [e.sortKey, e.text, n]),
|
|
32
|
+
}, [e.sortKey, e.text, n]), a = f(o.headerContent, {
|
|
33
33
|
[o.sortable]: e.sortable,
|
|
34
34
|
[o.empty]: !e.text
|
|
35
35
|
});
|
|
@@ -38,9 +38,9 @@ function D(r) {
|
|
|
38
38
|
{
|
|
39
39
|
className: e.sortable ? o.pointer : void 0,
|
|
40
40
|
onClick: e.sortable ? i : void 0,
|
|
41
|
-
children: /* @__PURE__ */ C("div", { className:
|
|
41
|
+
children: /* @__PURE__ */ C("div", { className: a, children: [
|
|
42
42
|
/* @__PURE__ */ t(
|
|
43
|
-
|
|
43
|
+
$,
|
|
44
44
|
{
|
|
45
45
|
className: o.headerText,
|
|
46
46
|
color: "secondary",
|
|
@@ -52,7 +52,7 @@ function D(r) {
|
|
|
52
52
|
}
|
|
53
53
|
),
|
|
54
54
|
!!e.sortable && /* @__PURE__ */ t(
|
|
55
|
-
|
|
55
|
+
D,
|
|
56
56
|
{
|
|
57
57
|
name: "Sort",
|
|
58
58
|
onClick: i
|
|
@@ -62,106 +62,107 @@ function D(r) {
|
|
|
62
62
|
}
|
|
63
63
|
);
|
|
64
64
|
}
|
|
65
|
-
function
|
|
65
|
+
function J(r) {
|
|
66
66
|
const {
|
|
67
67
|
index: e,
|
|
68
68
|
includeRadio: n = !1,
|
|
69
69
|
loading: i,
|
|
70
|
-
selectedRow:
|
|
71
|
-
item:
|
|
70
|
+
selectedRow: a,
|
|
71
|
+
item: p,
|
|
72
72
|
dataContainer: _,
|
|
73
73
|
onSelectChange: d
|
|
74
|
-
} = r, u =
|
|
74
|
+
} = r, u = s.useCallback((c) => {
|
|
75
75
|
d(
|
|
76
|
-
|
|
76
|
+
c ? e : null
|
|
77
77
|
);
|
|
78
|
-
}, [d, e]), b =
|
|
78
|
+
}, [d, e]), b = s.useCallback(() => {
|
|
79
79
|
d(e);
|
|
80
|
-
}, [d, e]),
|
|
81
|
-
[o.selectedRow]:
|
|
80
|
+
}, [d, e]), x = f({
|
|
81
|
+
[o.selectedRow]: a === e,
|
|
82
82
|
[o.pointer]: n
|
|
83
83
|
});
|
|
84
84
|
return /* @__PURE__ */ C(
|
|
85
85
|
"tr",
|
|
86
86
|
{
|
|
87
|
-
className:
|
|
87
|
+
className: x,
|
|
88
88
|
onClick: n ? b : void 0,
|
|
89
89
|
children: [
|
|
90
|
-
n && /* @__PURE__ */ t("td", { className:
|
|
91
|
-
|
|
90
|
+
n && /* @__PURE__ */ t("td", { className: f(o.radio, { [o.hidden]: i }), children: /* @__PURE__ */ t("div", { className: o.radioContent, children: /* @__PURE__ */ t(
|
|
91
|
+
y,
|
|
92
92
|
{
|
|
93
93
|
size: "small",
|
|
94
94
|
onCheckedChange: u,
|
|
95
95
|
"aria-label": `${e}`,
|
|
96
|
-
checked:
|
|
96
|
+
checked: a === e
|
|
97
97
|
}
|
|
98
98
|
) }) }),
|
|
99
|
-
|
|
99
|
+
p.map((c, w) => {
|
|
100
100
|
let h;
|
|
101
|
-
return
|
|
101
|
+
return s.isValidElement(c) ? h = c : _ ? h = s.createElement(_, { item: c }) : h = String(c), /* @__PURE__ */ t("td", { children: h }, `item-${w}`);
|
|
102
102
|
})
|
|
103
103
|
]
|
|
104
104
|
},
|
|
105
105
|
`row-${e}`
|
|
106
106
|
);
|
|
107
107
|
}
|
|
108
|
-
function
|
|
108
|
+
function W({
|
|
109
109
|
headers: r = [],
|
|
110
110
|
data: e = [],
|
|
111
111
|
includeRadio: n = !1,
|
|
112
112
|
loading: i = !1,
|
|
113
|
-
onSelectChange:
|
|
114
|
-
dataContainer:
|
|
113
|
+
onSelectChange: a,
|
|
114
|
+
dataContainer: p,
|
|
115
115
|
selectedRow: _ = null,
|
|
116
116
|
sortBy: d,
|
|
117
117
|
sortOrder: u = "asc",
|
|
118
|
-
onSortChange: b
|
|
118
|
+
onSortChange: b,
|
|
119
|
+
className: x
|
|
119
120
|
}) {
|
|
120
|
-
const [
|
|
121
|
-
const
|
|
122
|
-
|
|
123
|
-
}, [b,
|
|
124
|
-
(
|
|
125
|
-
const m =
|
|
126
|
-
|
|
121
|
+
const [c, w] = k(_), [h, j] = k(d), [N, R] = k(u), B = s.useCallback((l) => {
|
|
122
|
+
const T = h === l && N === "asc" ? "desc" : "asc";
|
|
123
|
+
j(l), R(T), b == null || b(l, T);
|
|
124
|
+
}, [b, h, N]), v = s.useCallback(
|
|
125
|
+
(l) => {
|
|
126
|
+
const m = l === c ? null : l;
|
|
127
|
+
w(m), a == null || a(m);
|
|
127
128
|
},
|
|
128
|
-
[
|
|
129
|
+
[a, c]
|
|
129
130
|
);
|
|
130
|
-
return
|
|
131
|
-
|
|
132
|
-
}, [_]),
|
|
133
|
-
|
|
134
|
-
}, [d]),
|
|
135
|
-
|
|
136
|
-
}, [u]), /* @__PURE__ */ t("div", { className: o.root, children: /* @__PURE__ */ C("table", { children: [
|
|
131
|
+
return s.useEffect(() => {
|
|
132
|
+
w(_);
|
|
133
|
+
}, [_]), s.useEffect(() => {
|
|
134
|
+
j(d);
|
|
135
|
+
}, [d]), s.useEffect(() => {
|
|
136
|
+
R(u);
|
|
137
|
+
}, [u]), /* @__PURE__ */ t("div", { className: f(o.root, x), children: /* @__PURE__ */ C("table", { children: [
|
|
137
138
|
/* @__PURE__ */ t("thead", { children: /* @__PURE__ */ C("tr", { children: [
|
|
138
139
|
n && /* @__PURE__ */ t("th", { "aria-label": "Select Row" }),
|
|
139
|
-
r.map((
|
|
140
|
-
|
|
140
|
+
r.map((l, m) => /* @__PURE__ */ t(
|
|
141
|
+
G,
|
|
141
142
|
{
|
|
142
|
-
item:
|
|
143
|
-
onSortClick:
|
|
143
|
+
item: l,
|
|
144
|
+
onSortClick: B
|
|
144
145
|
},
|
|
145
146
|
`header-${m}`
|
|
146
147
|
))
|
|
147
148
|
] }) }),
|
|
148
|
-
/* @__PURE__ */ t("tbody", { children: e.map((
|
|
149
|
-
|
|
149
|
+
/* @__PURE__ */ t("tbody", { children: e.map((l, m) => /* @__PURE__ */ t(
|
|
150
|
+
J,
|
|
150
151
|
{
|
|
151
152
|
index: m,
|
|
152
|
-
item:
|
|
153
|
+
item: l,
|
|
153
154
|
includeRadio: n,
|
|
154
155
|
loading: i,
|
|
155
|
-
selectedRow:
|
|
156
|
-
onSelectChange:
|
|
157
|
-
dataContainer:
|
|
156
|
+
selectedRow: c,
|
|
157
|
+
onSelectChange: v,
|
|
158
|
+
dataContainer: p
|
|
158
159
|
},
|
|
159
160
|
`row-${m}`
|
|
160
161
|
)) })
|
|
161
162
|
] }) });
|
|
162
163
|
}
|
|
163
164
|
export {
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
165
|
+
W as Table,
|
|
166
|
+
G as TableHeaderItem,
|
|
167
|
+
D as TableIconButton
|
|
167
168
|
};
|
|
@@ -3,7 +3,7 @@ import l from "react";
|
|
|
3
3
|
import { ui as C } from "../ui.js";
|
|
4
4
|
import { clsx as w } from "../../utils/clsx.js";
|
|
5
5
|
import { getColor as A } from "../../utils/color.js";
|
|
6
|
-
import '../../assets/Text.css';const O = "
|
|
6
|
+
import '../../assets/Text.css';const O = "_root_14isi_1", R = "_centered_14isi_4", S = "_underlined_14isi_7", $ = "_truncated_14isi_10", E = "_typographic_14isi_18", N = "_block_14isi_28", o = {
|
|
7
7
|
root: O,
|
|
8
8
|
centered: R,
|
|
9
9
|
underlined: S,
|
|
@@ -40,9 +40,9 @@ import '../../assets/Text.css';const O = "_root_e9tvt_1", R = "_centered_e9tvt_1
|
|
|
40
40
|
userSelectable: u = !1,
|
|
41
41
|
underlined: y = !1,
|
|
42
42
|
children: g,
|
|
43
|
-
className:
|
|
44
|
-
} = t,
|
|
45
|
-
[o.block]:
|
|
43
|
+
className: x
|
|
44
|
+
} = t, T = n === "div", v = w(o.root, x, {
|
|
45
|
+
[o.block]: T,
|
|
46
46
|
[o.centered]: d,
|
|
47
47
|
[o.truncated]: m,
|
|
48
48
|
[o.underlined]: y,
|
|
@@ -60,7 +60,7 @@ import '../../assets/Text.css';const O = "_root_e9tvt_1", R = "_centered_e9tvt_1
|
|
|
60
60
|
letterSpacing: `var(--letter-spacing-${p})`,
|
|
61
61
|
fontWeight: `var(--font-weight-${f})`
|
|
62
62
|
};
|
|
63
|
-
return h && (i.textTransform = "uppercase"), /* @__PURE__ */ s(n, { ref: e, dir: "auto", className:
|
|
63
|
+
return h && (i.textTransform = "uppercase"), /* @__PURE__ */ s(n, { ref: e, dir: "auto", className: v, style: i, children: g });
|
|
64
64
|
}), G = l.forwardRef(function(t, e) {
|
|
65
65
|
return /* @__PURE__ */ s(F, { ref: e, ...t, as: "div" });
|
|
66
66
|
});
|
package/dist/main.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export { ClipboardButton } from './components/ClipboardButton';
|
|
|
19
19
|
export { Checkbox } from './components/Checkbox';
|
|
20
20
|
export { Button } from './components/Button/Button';
|
|
21
21
|
export { LinkButton } from './components/Button/LinkButton';
|
|
22
|
+
export { Link, ButtonLink, getLinkClassName, } from './components/Link';
|
|
22
23
|
export { ButtonBar } from './components/Button/ButtonBar';
|
|
23
24
|
export { Avatar } from './components/Avatar';
|
|
24
25
|
export { BackdropPortal, BACKDROP_OUTLET_ID } from './components/BackdropPortal/BackdropPortal';
|
|
@@ -66,6 +67,8 @@ export { Textarea } from './components/Textarea/Textarea';
|
|
|
66
67
|
export { Title, TITLE_OUTLET_ID } from './components/Title/Title';
|
|
67
68
|
export { InputDropzone } from './components/InputDropzone';
|
|
68
69
|
export { Skeleton } from './components/Skeleton';
|
|
70
|
+
export type { FlexProps } from './components/Layout/Flex/Flex';
|
|
71
|
+
export type { LinkProps, LinkBaseProps } from './components/Link';
|
|
69
72
|
export type { ButtonProps, ButtonTheme } from './components/Button/Button';
|
|
70
73
|
export type { TitleProps, FixedOn } from './components/Title/Title';
|
|
71
74
|
export type { IconButtonProps } from './components/IconButton';
|
package/dist/main.js
CHANGED
|
@@ -1,153 +1,157 @@
|
|
|
1
1
|
import { mergeRefs as t } from "./utils/mergeRefs.js";
|
|
2
2
|
import { clsx as f } from "./utils/clsx.js";
|
|
3
|
-
import { getValue as
|
|
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
6
|
import { useDynamicRef as u } 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
|
-
import { useWindowResize as
|
|
9
|
+
import { useWindowResize as g } from "./utils/hooks/useWindowResize.js";
|
|
10
10
|
import { useOutlet as C } from "./utils/hooks/useOutlet.js";
|
|
11
|
-
import { CLIPBOARD_TITLE_APPEARANCE as
|
|
12
|
-
import { identity as
|
|
13
|
-
import { Linkify as _, defaultLinkReplacer as h, defaultLinkReplacerx as v, isExternalUrl as F, linkify as U, linkifyx as
|
|
11
|
+
import { CLIPBOARD_TITLE_APPEARANCE as S, useClipboardComponent as y } from "./utils/hooks/useClipboardComponent.js";
|
|
12
|
+
import { identity as b, invoke as A, noop as O, returnFalse as P, returnTrue as E } from "./utils/functional.js";
|
|
13
|
+
import { Linkify as _, defaultLinkReplacer as h, defaultLinkReplacerx as v, isExternalUrl as F, linkify as U, linkifyx as N, matchLinkNodes as z, matchLinks as K } from "./utils/links.js";
|
|
14
14
|
import { clamp as w, clamp01 as G } from "./utils/math.js";
|
|
15
15
|
import { isFalseString as H, isTrueString as M, 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
|
-
import { Accordion as po, AccordionContent as fo, AccordionHeader as
|
|
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
21
|
import { default as so } from "./components/Checkbox/Checkbox.js";
|
|
22
22
|
import { Button as co } from "./components/Button/Button.js";
|
|
23
23
|
import { LinkButton as To } from "./components/Button/LinkButton.js";
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import { default as
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
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 {
|
|
24
|
+
import { default as go, getLinkClassName as Bo } from "./components/Link/Link.js";
|
|
25
|
+
import { default as ko } 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 Do } 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 Ko } from "./components/Dot/Dot.js";
|
|
34
|
+
import { FLYOUT_OUTLET_ID as wo, 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-BlbKR-zU.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 kr } from "./components/Layout/Page/Page.js";
|
|
52
|
+
import { R as yr } from "./Rail-nVRissv6.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 Er } 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 Kr } from "./components/Popover/Popover.js";
|
|
60
|
+
import { PremiumBadge as wr } 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 { Separator as Jr } from "./components/Separator/Separator.js";
|
|
65
|
+
import { Shroud as Xr } from "./components/Shroud/Shroud.js";
|
|
66
|
+
import { Spacer as $r } from "./components/Spacer/Spacer.js";
|
|
67
|
+
import { Style as re, useContextualStyle as ee } from "./components/Style/Style.js";
|
|
68
|
+
import { default as pe } from "./components/Switch/Switch.js";
|
|
69
|
+
import { ToggleGroup as me } from "./components/ToggleGroup/ToggleGroup.js";
|
|
70
|
+
import { Tabular as ae } from "./components/Tabular/Tabular.js";
|
|
71
|
+
import { Table as ne, TableIconButton as ie } from "./components/Table/Table.js";
|
|
72
|
+
import { Text as ue, TextBlock as ce, getTextOpacity as de } from "./components/Text/Text.js";
|
|
73
|
+
import { Textarea as Te } from "./components/Textarea/Textarea.js";
|
|
74
|
+
import { TITLE_OUTLET_ID as ge, Title as Be } from "./components/Title/Title.js";
|
|
75
|
+
import { default as ke } from "./components/InputDropzone/InputDropzone.js";
|
|
74
76
|
import "./components/InputDropzone/ItemPreview.js";
|
|
75
|
-
import { default as
|
|
76
|
-
import { OnScreenSensor as
|
|
77
|
-
import { ui as
|
|
78
|
-
import { Symbols as
|
|
77
|
+
import { default as ye } from "./components/Skeleton/Skeleton.js";
|
|
78
|
+
import { OnScreenSensor as be } from "./components/OnScreenSensor.js";
|
|
79
|
+
import { ui as Oe } from "./components/ui.js";
|
|
80
|
+
import { Symbols as Ee } from "./components/Symbols.js";
|
|
79
81
|
export {
|
|
80
82
|
po as Accordion,
|
|
81
83
|
fo as AccordionContent,
|
|
82
|
-
|
|
83
|
-
|
|
84
|
+
mo as AccordionHeader,
|
|
85
|
+
xo as AccordionItem,
|
|
84
86
|
ao as AccordionTrigger,
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
87
|
+
bo as Avatar,
|
|
88
|
+
Oo as BACKDROP_OUTLET_ID,
|
|
89
|
+
Po as BackdropPortal,
|
|
90
|
+
Do as Badge,
|
|
91
|
+
sr as Box,
|
|
90
92
|
co as Button,
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
93
|
+
yo as ButtonBar,
|
|
94
|
+
ko as ButtonLink,
|
|
95
|
+
S as CLIPBOARD_TITLE_APPEARANCE,
|
|
96
|
+
cr as Center,
|
|
94
97
|
so as Checkbox,
|
|
95
98
|
no as ClipboardButton,
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
99
|
+
ho as ControlBox,
|
|
100
|
+
Fo as CountryFlag,
|
|
101
|
+
No as Decorate,
|
|
102
|
+
Ko as Dot,
|
|
103
|
+
wo as FLYOUT_OUTLET_ID,
|
|
104
|
+
Ir as Flex,
|
|
105
|
+
Lr as FlexRestricter,
|
|
106
|
+
Go as Flyout,
|
|
107
|
+
Qo as Icon,
|
|
108
|
+
Zo as IconBig,
|
|
106
109
|
eo as IconButton,
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
110
|
+
Wo as Icons,
|
|
111
|
+
qo as IconsBig,
|
|
112
|
+
or as Indicator,
|
|
113
|
+
er as InfoPanel,
|
|
114
|
+
pr as Input,
|
|
115
|
+
ke as InputDropzone,
|
|
116
|
+
ar as Interactive,
|
|
117
|
+
nr as Island,
|
|
118
|
+
go as Link,
|
|
115
119
|
To as LinkButton,
|
|
116
120
|
_ as Linkify,
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
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
|
-
|
|
121
|
+
Er as Loaf,
|
|
122
|
+
Ho as Logos,
|
|
123
|
+
_r as Modal,
|
|
124
|
+
vr as NavList,
|
|
125
|
+
Ur as OVERLAY_OUTLET_ID,
|
|
126
|
+
be as OnScreenSensor,
|
|
127
|
+
Nr as Overlay,
|
|
128
|
+
Br as Pad,
|
|
129
|
+
kr as Page,
|
|
130
|
+
Kr as Popover,
|
|
131
|
+
wr as PremiumBadge,
|
|
132
|
+
Yr as Prose,
|
|
133
|
+
Mr as Radio,
|
|
134
|
+
yr as Rail,
|
|
135
|
+
mr as RichInput,
|
|
136
|
+
br as Scrollable,
|
|
137
|
+
jr as Select,
|
|
138
|
+
Jr as Separator,
|
|
139
|
+
Xr as Shroud,
|
|
140
|
+
ye as Skeleton,
|
|
141
|
+
$r as Spacer,
|
|
142
|
+
re as Style,
|
|
143
|
+
pe as Switch,
|
|
144
|
+
Ee as Symbols,
|
|
145
|
+
ge as TITLE_OUTLET_ID,
|
|
146
|
+
ne as Table,
|
|
147
|
+
ie as TableIconButton,
|
|
148
|
+
ae as Tabular,
|
|
149
|
+
ue as Text,
|
|
150
|
+
ce as TextBlock,
|
|
151
|
+
Te as Textarea,
|
|
152
|
+
Be as Title,
|
|
153
|
+
me as ToggleGroup,
|
|
154
|
+
Or as VirtualScrollable,
|
|
151
155
|
w as clamp,
|
|
152
156
|
G as clamp01,
|
|
153
157
|
f as clsx,
|
|
@@ -155,17 +159,18 @@ export {
|
|
|
155
159
|
h as defaultLinkReplacer,
|
|
156
160
|
v as defaultLinkReplacerx,
|
|
157
161
|
oo as getColor,
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
162
|
+
Bo as getLinkClassName,
|
|
163
|
+
de as getTextOpacity,
|
|
164
|
+
x as getValue,
|
|
165
|
+
b as identity,
|
|
161
166
|
A as invoke,
|
|
162
167
|
F as isExternalUrl,
|
|
163
168
|
H as isFalseString,
|
|
164
169
|
M as isTrueString,
|
|
165
170
|
U as linkify,
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
171
|
+
N as linkifyx,
|
|
172
|
+
z as matchLinkNodes,
|
|
173
|
+
K as matchLinks,
|
|
169
174
|
t as mergeRefs,
|
|
170
175
|
O as noop,
|
|
171
176
|
W as normalizeSlashes,
|
|
@@ -174,15 +179,15 @@ export {
|
|
|
174
179
|
E as returnTrue,
|
|
175
180
|
q as splitByIndices,
|
|
176
181
|
Z as throttle,
|
|
177
|
-
|
|
182
|
+
Oe as ui,
|
|
178
183
|
J as unicodeCharAt,
|
|
179
|
-
|
|
180
|
-
|
|
184
|
+
y as useClipboardComponent,
|
|
185
|
+
ee as useContextualStyle,
|
|
181
186
|
u as useDynamicRef,
|
|
182
187
|
d as useGlobalKeyboardEvent,
|
|
183
188
|
i as useInstance,
|
|
184
189
|
T as useKeyboardClose,
|
|
185
190
|
C as useOutlet,
|
|
186
191
|
l as usePopoverController,
|
|
187
|
-
|
|
192
|
+
g as useWindowResize
|
|
188
193
|
};
|