tgui-core 1.1.23 → 1.2.0
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/Section.module-qhQWhlUX.js +18 -0
- package/dist/assets/ImageButton.css +5 -0
- package/dist/assets/Section.css +1 -1
- package/dist/components/Box.d.ts +2 -0
- package/dist/components/Button.d.ts +2 -0
- package/dist/components/Button.js +178 -175
- package/dist/components/Collapsible.d.ts +2 -0
- package/dist/components/Collapsible.js +24 -16
- package/dist/components/DraggableControl.js +4 -6
- package/dist/components/ImageButton.d.ts +61 -0
- package/dist/components/ImageButton.js +218 -0
- package/dist/components/Input.js +47 -41
- package/dist/components/NoticeBox.d.ts +4 -1
- package/dist/components/NoticeBox.js +31 -30
- package/dist/components/NumberInput.js +99 -99
- package/dist/components/Section.d.ts +27 -34
- package/dist/components/Section.js +67 -60
- package/dist/components/Slider.d.ts +2 -0
- package/dist/components/StyleableSection.js +1 -1
- package/dist/components/Tabs.d.ts +1 -0
- package/dist/components/Tabs.js +69 -64
- package/dist/components/TextArea.d.ts +2 -0
- package/dist/components/TextArea.js +36 -36
- package/dist/components/TimeDisplay.js +8 -8
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +60 -58
- package/package.json +1 -1
- package/dist/Section.module-CLVHJ4yA.js +0 -15
package/dist/components/Tabs.js
CHANGED
|
@@ -1,89 +1,94 @@
|
|
|
1
|
-
import { jsx as o, jsxs as
|
|
2
|
-
import { classes as
|
|
3
|
-
import { computeBoxClassName as
|
|
4
|
-
import { Icon as
|
|
5
|
-
import '../assets/Tabs.css';const
|
|
6
|
-
tabs:
|
|
7
|
-
fill:
|
|
8
|
-
vertical:
|
|
9
|
-
horizontal:
|
|
10
|
-
tabs__tab:
|
|
11
|
-
fluid:
|
|
12
|
-
tab:
|
|
13
|
-
selected:
|
|
14
|
-
tab__text:
|
|
15
|
-
tab__left:
|
|
16
|
-
tab__right:
|
|
17
|
-
color__black:
|
|
18
|
-
color__white:
|
|
19
|
-
color__red:
|
|
20
|
-
color__orange:
|
|
21
|
-
color__yellow:
|
|
22
|
-
color__olive:
|
|
23
|
-
color__green:
|
|
24
|
-
color__teal:
|
|
25
|
-
color__blue:
|
|
26
|
-
color__violet:
|
|
27
|
-
color__purple:
|
|
28
|
-
color__pink:
|
|
29
|
-
color__brown:
|
|
30
|
-
color__grey:
|
|
1
|
+
import { jsx as o, jsxs as u } from "react/jsx-runtime";
|
|
2
|
+
import { classes as g, canRender as d } from "../common/react.js";
|
|
3
|
+
import { computeBoxClassName as f, computeBoxProps as m } from "./Box.js";
|
|
4
|
+
import { Icon as k } from "./Icon.js";
|
|
5
|
+
import '../assets/Tabs.css';const w = "_tabs_9h380_13", x = "_fill_9h380_20", y = "_vertical_9h380_35", N = "_horizontal_9h380_40", z = "_tabs__tab_9h380_48", C = "_fluid_9h380_52", S = "_tab_9h380_13", T = "_selected_9h380_66", j = "_tab__text_9h380_75", B = "_tab__left_9h380_80", I = "_tab__right_9h380_86", P = "_color__black_9h380_113", R = "_color__white_9h380_125", q = "_color__red_9h380_137", A = "_color__orange_9h380_149", D = "_color__yellow_9h380_161", E = "_color__olive_9h380_173", F = "_color__green_9h380_185", G = "_color__teal_9h380_197", H = "_color__blue_9h380_209", J = "_color__violet_9h380_221", K = "_color__purple_9h380_233", L = "_color__pink_9h380_245", M = "_color__brown_9h380_257", O = "_color__grey_9h380_269", Q = "_color__good_9h380_293", U = "_color__average_9h380_305", V = "_color__bad_9h380_317", W = "_color__label_9h380_329", _ = {
|
|
6
|
+
tabs: w,
|
|
7
|
+
fill: x,
|
|
8
|
+
vertical: y,
|
|
9
|
+
horizontal: N,
|
|
10
|
+
tabs__tab: z,
|
|
11
|
+
fluid: C,
|
|
12
|
+
tab: S,
|
|
13
|
+
selected: T,
|
|
14
|
+
tab__text: j,
|
|
15
|
+
tab__left: B,
|
|
16
|
+
tab__right: I,
|
|
17
|
+
color__black: P,
|
|
18
|
+
color__white: R,
|
|
19
|
+
color__red: q,
|
|
20
|
+
color__orange: A,
|
|
21
|
+
color__yellow: D,
|
|
22
|
+
color__olive: E,
|
|
23
|
+
color__green: F,
|
|
24
|
+
color__teal: G,
|
|
25
|
+
color__blue: H,
|
|
26
|
+
color__violet: J,
|
|
27
|
+
color__purple: K,
|
|
28
|
+
color__pink: L,
|
|
29
|
+
color__brown: M,
|
|
30
|
+
color__grey: O,
|
|
31
31
|
"color__light-grey": "_color__light-grey_9h380_281",
|
|
32
|
-
color__good:
|
|
33
|
-
color__average:
|
|
34
|
-
color__bad:
|
|
35
|
-
color__label:
|
|
32
|
+
color__good: Q,
|
|
33
|
+
color__average: U,
|
|
34
|
+
color__bad: V,
|
|
35
|
+
color__label: W
|
|
36
36
|
};
|
|
37
|
-
function
|
|
38
|
-
const { className:
|
|
37
|
+
function X(t) {
|
|
38
|
+
const { className: r, vertical: e, fill: a, fluid: c, children: s, ...l } = t;
|
|
39
39
|
return /* @__PURE__ */ o(
|
|
40
40
|
"div",
|
|
41
41
|
{
|
|
42
|
-
className:
|
|
42
|
+
className: g([
|
|
43
43
|
_.tabs,
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
e ? _.vertical : _.horizontal,
|
|
45
|
+
a && _.fill,
|
|
46
46
|
c && _.fluid,
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
r,
|
|
48
|
+
f(l)
|
|
49
49
|
]),
|
|
50
|
-
...
|
|
51
|
-
children:
|
|
50
|
+
...m(l),
|
|
51
|
+
children: s
|
|
52
52
|
}
|
|
53
53
|
);
|
|
54
54
|
}
|
|
55
|
-
function
|
|
55
|
+
function Y(t) {
|
|
56
56
|
const {
|
|
57
|
-
className:
|
|
58
|
-
selected:
|
|
59
|
-
color:
|
|
57
|
+
className: r,
|
|
58
|
+
selected: e,
|
|
59
|
+
color: a,
|
|
60
60
|
icon: c,
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
61
|
+
iconSpin: s,
|
|
62
|
+
leftSlot: l,
|
|
63
|
+
rightSlot: n,
|
|
64
|
+
children: v,
|
|
65
|
+
onClick: i,
|
|
66
|
+
...h
|
|
67
|
+
} = t, p = (b) => {
|
|
68
|
+
i && (i(b), b.target.blur());
|
|
69
|
+
};
|
|
70
|
+
return /* @__PURE__ */ u(
|
|
67
71
|
"div",
|
|
68
72
|
{
|
|
69
|
-
className:
|
|
73
|
+
className: g([
|
|
70
74
|
_.tab,
|
|
71
75
|
_.tabs__tab,
|
|
72
|
-
_["color__" +
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
+
_["color__" + a],
|
|
77
|
+
e && _.selected,
|
|
78
|
+
r,
|
|
79
|
+
f(h)
|
|
76
80
|
]),
|
|
77
|
-
|
|
81
|
+
onClick: p,
|
|
82
|
+
...m(h),
|
|
78
83
|
children: [
|
|
79
|
-
|
|
80
|
-
/* @__PURE__ */ o("div", { className: _.tab__text, children:
|
|
81
|
-
|
|
84
|
+
d(l) && /* @__PURE__ */ o("div", { className: _.tab__left, children: l }) || !!c && /* @__PURE__ */ o("div", { className: _.tab__left, children: /* @__PURE__ */ o(k, { name: c, spin: s }) }),
|
|
85
|
+
/* @__PURE__ */ o("div", { className: _.tab__text, children: v }),
|
|
86
|
+
d(n) && /* @__PURE__ */ o("div", { className: _.tab__right, children: n })
|
|
82
87
|
]
|
|
83
88
|
}
|
|
84
89
|
);
|
|
85
90
|
}
|
|
86
|
-
|
|
91
|
+
X.Tab = Y;
|
|
87
92
|
export {
|
|
88
|
-
|
|
93
|
+
X as Tabs
|
|
89
94
|
};
|
|
@@ -24,6 +24,7 @@ export declare const TextArea: import('react').ForwardRefExoticComponent<Partial
|
|
|
24
24
|
as: string;
|
|
25
25
|
children: import('react').ReactNode;
|
|
26
26
|
className: string | import('../common/react').BooleanLike;
|
|
27
|
+
id: string;
|
|
27
28
|
style: import('react').CSSProperties;
|
|
28
29
|
}> & Partial<Record<"bold" | "italic" | "nowrap" | "fillPositionedParent" | "inline" | "preserveWhitespace", boolean>> & Partial<Record<"fontWeight" | "textAlign" | "bottom" | "fontFamily" | "fontSize" | "height" | "left" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflow" | "overflowX" | "overflowY" | "position" | "right" | "top" | "verticalAlign" | "width" | "color" | "backgroundColor" | "align" | "lineHeight" | "m" | "mb" | "ml" | "mr" | "mt" | "mx" | "my" | "p" | "pb" | "pl" | "pr" | "pt" | "px" | "py" | "textColor", string | import('../common/react').BooleanLike>> & Partial<{
|
|
29
30
|
onClick: import('react').MouseEventHandler<HTMLDivElement>;
|
|
@@ -32,6 +33,7 @@ export declare const TextArea: import('react').ForwardRefExoticComponent<Partial
|
|
|
32
33
|
onKeyDown: import('react').KeyboardEventHandler<HTMLDivElement>;
|
|
33
34
|
onKeyUp: import('react').KeyboardEventHandler<HTMLDivElement>;
|
|
34
35
|
onMouseDown: import('react').MouseEventHandler<HTMLDivElement>;
|
|
36
|
+
onMouseLeave: import('react').MouseEventHandler<HTMLDivElement>;
|
|
35
37
|
onMouseMove: import('react').MouseEventHandler<HTMLDivElement>;
|
|
36
38
|
onMouseOver: import('react').MouseEventHandler<HTMLDivElement>;
|
|
37
39
|
onMouseUp: import('react').MouseEventHandler<HTMLDivElement>;
|
|
@@ -1,74 +1,74 @@
|
|
|
1
1
|
import { jsxs as I, jsx as f } from "react/jsx-runtime";
|
|
2
|
-
import { forwardRef as Y, useRef as C, useState as H, useImperativeHandle as L, useEffect as
|
|
3
|
-
import { KEY as
|
|
4
|
-
import { classes as
|
|
5
|
-
import { Box as
|
|
2
|
+
import { forwardRef as Y, useRef as C, useState as H, useImperativeHandle as L, useEffect as _ } from "react";
|
|
3
|
+
import { KEY as g, isEscape as P } from "../common/keys.js";
|
|
4
|
+
import { classes as p } from "../common/react.js";
|
|
5
|
+
import { Box as U } from "./Box.js";
|
|
6
6
|
import { toInputValue as T } from "./Input.js";
|
|
7
|
-
import '../assets/TextArea.css';const
|
|
8
|
-
textArea:
|
|
9
|
-
fluid:
|
|
10
|
-
noborder:
|
|
11
|
-
inner:
|
|
12
|
-
scrollable:
|
|
13
|
-
custom:
|
|
14
|
-
nowrap:
|
|
15
|
-
wrapper:
|
|
16
|
-
},
|
|
7
|
+
import '../assets/TextArea.css';const $ = "_textArea_1bert_20", q = "_fluid_1bert_33", z = "_noborder_1bert_39", G = "_inner_1bert_43", J = "_scrollable_1bert_43", M = "_custom_1bert_78", O = "_nowrap_1bert_83", Q = "_wrapper_1bert_89", e = {
|
|
8
|
+
textArea: $,
|
|
9
|
+
fluid: q,
|
|
10
|
+
noborder: z,
|
|
11
|
+
inner: G,
|
|
12
|
+
scrollable: J,
|
|
13
|
+
custom: M,
|
|
14
|
+
nowrap: O,
|
|
15
|
+
wrapper: Q
|
|
16
|
+
}, tr = Y(
|
|
17
17
|
(x, w) => {
|
|
18
18
|
const {
|
|
19
|
-
autoFocus:
|
|
20
|
-
autoSelect:
|
|
19
|
+
autoFocus: d,
|
|
20
|
+
autoSelect: s,
|
|
21
21
|
displayedValue: a,
|
|
22
22
|
dontUseTabForIndent: y,
|
|
23
23
|
maxLength: h,
|
|
24
24
|
noborder: A,
|
|
25
|
-
onChange:
|
|
25
|
+
onChange: l,
|
|
26
26
|
onEnter: n,
|
|
27
27
|
onEscape: u,
|
|
28
28
|
onInput: c,
|
|
29
29
|
placeholder: N,
|
|
30
30
|
scrollbar: S,
|
|
31
|
-
selfClear:
|
|
31
|
+
selfClear: m,
|
|
32
32
|
value: i,
|
|
33
33
|
...E
|
|
34
34
|
} = x, { className: K, fluid: k, nowrap: D, ...R } = E, t = C(null), [V, j] = H(0);
|
|
35
35
|
function B(r) {
|
|
36
|
-
if (r.key ===
|
|
36
|
+
if (r.key === g.Enter) {
|
|
37
37
|
if (r.shiftKey) {
|
|
38
38
|
r.currentTarget.focus();
|
|
39
39
|
return;
|
|
40
40
|
}
|
|
41
|
-
n == null || n(r, r.currentTarget.value),
|
|
41
|
+
n == null || n(r, r.currentTarget.value), m && (r.currentTarget.value = ""), r.currentTarget.blur();
|
|
42
42
|
return;
|
|
43
43
|
}
|
|
44
|
-
if (r.key
|
|
45
|
-
u == null || u(r),
|
|
44
|
+
if (P(r.key)) {
|
|
45
|
+
u == null || u(r), m ? r.currentTarget.value = "" : (r.currentTarget.value = T(i), r.currentTarget.blur());
|
|
46
46
|
return;
|
|
47
47
|
}
|
|
48
|
-
if (!y && r.key ===
|
|
48
|
+
if (!y && r.key === g.Tab) {
|
|
49
49
|
r.preventDefault();
|
|
50
|
-
const { value: o, selectionStart:
|
|
51
|
-
r.currentTarget.value = o.substring(0,
|
|
50
|
+
const { value: o, selectionStart: b, selectionEnd: F } = r.currentTarget;
|
|
51
|
+
r.currentTarget.value = o.substring(0, b) + " " + o.substring(F), r.currentTarget.selectionEnd = b + 1;
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
return L(
|
|
55
55
|
w,
|
|
56
56
|
() => t.current
|
|
57
|
-
),
|
|
58
|
-
if (!
|
|
57
|
+
), _(() => {
|
|
58
|
+
if (!d && !s) return;
|
|
59
59
|
const r = t.current;
|
|
60
|
-
r && (
|
|
61
|
-
r.focus(),
|
|
60
|
+
r && (d || s) && setTimeout(() => {
|
|
61
|
+
r.focus(), s && r.select();
|
|
62
62
|
}, 1);
|
|
63
|
-
}, []),
|
|
63
|
+
}, []), _(() => {
|
|
64
64
|
const r = t.current;
|
|
65
65
|
if (!r) return;
|
|
66
66
|
const o = T(i);
|
|
67
67
|
r.value !== o && (r.value = o);
|
|
68
68
|
}, [i]), /* @__PURE__ */ I(
|
|
69
|
-
|
|
69
|
+
U,
|
|
70
70
|
{
|
|
71
|
-
className:
|
|
71
|
+
className: p([
|
|
72
72
|
e.textArea,
|
|
73
73
|
k && e.fluid,
|
|
74
74
|
A && e.noborder,
|
|
@@ -79,7 +79,7 @@ import '../assets/TextArea.css';const U = "_textArea_1bert_20", $ = "_fluid_1ber
|
|
|
79
79
|
!!a && /* @__PURE__ */ f("div", { className: e.wrapper, children: /* @__PURE__ */ f(
|
|
80
80
|
"div",
|
|
81
81
|
{
|
|
82
|
-
className:
|
|
82
|
+
className: p([e.inner, e.custom]),
|
|
83
83
|
style: {
|
|
84
84
|
transform: `translateY(-${V}px)`
|
|
85
85
|
},
|
|
@@ -89,13 +89,13 @@ import '../assets/TextArea.css';const U = "_textArea_1bert_20", $ = "_fluid_1ber
|
|
|
89
89
|
/* @__PURE__ */ f(
|
|
90
90
|
"textarea",
|
|
91
91
|
{
|
|
92
|
-
className:
|
|
92
|
+
className: p([
|
|
93
93
|
e.inner,
|
|
94
94
|
S && e.scrollable,
|
|
95
95
|
D && e.nowrap
|
|
96
96
|
]),
|
|
97
97
|
maxLength: h,
|
|
98
|
-
onBlur: (r) =>
|
|
98
|
+
onBlur: (r) => l == null ? void 0 : l(r, r.target.value),
|
|
99
99
|
onChange: (r) => c == null ? void 0 : c(r, r.target.value),
|
|
100
100
|
onKeyDown: B,
|
|
101
101
|
onScroll: () => {
|
|
@@ -114,5 +114,5 @@ import '../assets/TextArea.css';const U = "_textArea_1bert_20", $ = "_fluid_1ber
|
|
|
114
114
|
}
|
|
115
115
|
);
|
|
116
116
|
export {
|
|
117
|
-
|
|
117
|
+
tr as TextArea
|
|
118
118
|
};
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import { useState as
|
|
1
|
+
import { useState as f, useRef as d, useEffect as m } from "react";
|
|
2
2
|
import { formatTime as v } from "../common/format.js";
|
|
3
3
|
const u = (t) => typeof t == "number" && Number.isFinite(t) && !Number.isNaN(t);
|
|
4
4
|
function b(t) {
|
|
5
5
|
const {
|
|
6
6
|
value: e = 0,
|
|
7
7
|
auto: r = void 0,
|
|
8
|
-
format:
|
|
9
|
-
} = t, [
|
|
8
|
+
format: i = void 0
|
|
9
|
+
} = t, [o, a] = f(
|
|
10
10
|
() => u(e) ? e : 0
|
|
11
|
-
), [s,
|
|
11
|
+
), [s, l] = f(
|
|
12
12
|
u(e) ? e : void 0
|
|
13
13
|
), n = d(null);
|
|
14
|
-
return
|
|
14
|
+
return m(() => (r !== void 0 && (n.current = setInterval(() => {
|
|
15
15
|
const c = r === "up" ? 10 : -10;
|
|
16
16
|
a((p) => Math.max(0, p + c));
|
|
17
17
|
}, 1e3)), () => {
|
|
18
18
|
n.current && clearInterval(n.current);
|
|
19
|
-
}), [r]),
|
|
20
|
-
e !== s && (
|
|
21
|
-
}, [e, s]), u(e) ?
|
|
19
|
+
}), [r]), m(() => {
|
|
20
|
+
e !== s && (l(e), a(e));
|
|
21
|
+
}, [e, s]), u(e) ? i ? i(o) : v(o) : e || null;
|
|
22
22
|
}
|
|
23
23
|
export {
|
|
24
24
|
b as TimeDisplay
|
|
@@ -18,6 +18,7 @@ export { FitText } from './FitText';
|
|
|
18
18
|
export { Flex } from './Flex';
|
|
19
19
|
export { Icon } from './Icon';
|
|
20
20
|
export { Image } from './Image';
|
|
21
|
+
export { ImageButton } from './ImageButton';
|
|
21
22
|
export { InfinitePlane } from './InfinitePlane';
|
|
22
23
|
export { Input } from './Input';
|
|
23
24
|
export { KeyListener } from './KeyListener';
|
package/dist/components/index.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { AnimatedNumber as e } from "./AnimatedNumber.js";
|
|
2
|
-
import { Autofocus as
|
|
2
|
+
import { Autofocus as m } from "./Autofocus.js";
|
|
3
3
|
import { Blink as x } from "./Blink.js";
|
|
4
4
|
import { BlockQuote as i } from "./BlockQuote.js";
|
|
5
|
-
import { Box as
|
|
5
|
+
import { Box as l } from "./Box.js";
|
|
6
6
|
import { Button as u } from "./Button.js";
|
|
7
7
|
import { ByondUi as c } from "./ByondUi.js";
|
|
8
8
|
import { Chart as b } from "./Chart.js";
|
|
9
|
-
import { Collapsible as
|
|
10
|
-
import { ColorBox as
|
|
9
|
+
import { Collapsible as I } from "./Collapsible.js";
|
|
10
|
+
import { ColorBox as D } from "./ColorBox.js";
|
|
11
11
|
import { Dialog as C } from "./Dialog.js";
|
|
12
12
|
import { Dimmer as L } from "./Dimmer.js";
|
|
13
13
|
import { Divider as y } from "./Divider.js";
|
|
@@ -18,42 +18,43 @@ import { FitText as h } from "./FitText.js";
|
|
|
18
18
|
import { Flex as w } from "./Flex.js";
|
|
19
19
|
import { Icon as O } from "./Icon.js";
|
|
20
20
|
import { Image as U } from "./Image.js";
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
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 {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
21
|
+
import { ImageButton as j } from "./ImageButton.js";
|
|
22
|
+
import { InfinitePlane as z } from "./InfinitePlane.js";
|
|
23
|
+
import { Input as H } from "./Input.js";
|
|
24
|
+
import { KeyListener as W } from "./KeyListener.js";
|
|
25
|
+
import { Knob as Y } from "./Knob.js";
|
|
26
|
+
import { LabeledControls as _ } from "./LabeledControls.js";
|
|
27
|
+
import { LabeledList as oo } from "./LabeledList.js";
|
|
28
|
+
import { MenuBar as eo } from "./MenuBar.js";
|
|
29
|
+
import { Modal as mo } from "./Modal.js";
|
|
30
|
+
import { NoticeBox as xo } from "./NoticeBox.js";
|
|
31
|
+
import { NumberInput as io } from "./NumberInput.js";
|
|
32
|
+
import { Popper as lo } from "./Popper.js";
|
|
33
|
+
import { ProgressBar as uo } from "./ProgressBar.js";
|
|
34
|
+
import { RestrictedInput as co } from "./RestrictedInput.js";
|
|
35
|
+
import { RoundGauge as Bo } from "./RoundGauge.js";
|
|
36
|
+
import { Section as go } from "./Section.js";
|
|
37
|
+
import { Slider as To } from "./Slider.js";
|
|
38
|
+
import { Stack as ko } from "./Stack.js";
|
|
39
|
+
import { StyleableSection as So } from "./StyleableSection.js";
|
|
40
|
+
import { Table as Ao } from "./Table.js";
|
|
41
|
+
import { Tabs as Po } from "./Tabs.js";
|
|
42
|
+
import { TextArea as Ko } from "./TextArea.js";
|
|
43
|
+
import { TimeDisplay as Ro } from "./TimeDisplay.js";
|
|
44
|
+
import { Tooltip as vo } from "./Tooltip.js";
|
|
45
|
+
import { TrackOutsideClicks as Go } from "./TrackOutsideClicks.js";
|
|
46
|
+
import { VirtualList as Qo } from "./VirtualList.js";
|
|
46
47
|
export {
|
|
47
48
|
e as AnimatedNumber,
|
|
48
|
-
|
|
49
|
+
m as Autofocus,
|
|
49
50
|
x as Blink,
|
|
50
51
|
i as BlockQuote,
|
|
51
|
-
|
|
52
|
+
l as Box,
|
|
52
53
|
u as Button,
|
|
53
54
|
c as ByondUi,
|
|
54
55
|
b as Chart,
|
|
55
|
-
|
|
56
|
-
|
|
56
|
+
I as Collapsible,
|
|
57
|
+
D as ColorBox,
|
|
57
58
|
C as Dialog,
|
|
58
59
|
L as Dimmer,
|
|
59
60
|
y as Divider,
|
|
@@ -64,29 +65,30 @@ export {
|
|
|
64
65
|
w as Flex,
|
|
65
66
|
O as Icon,
|
|
66
67
|
U as Image,
|
|
67
|
-
j as
|
|
68
|
-
z as
|
|
69
|
-
H as
|
|
70
|
-
W as
|
|
71
|
-
Y as
|
|
72
|
-
_ as
|
|
73
|
-
oo as
|
|
74
|
-
eo as
|
|
75
|
-
|
|
76
|
-
xo as
|
|
77
|
-
io as
|
|
78
|
-
|
|
79
|
-
uo as
|
|
80
|
-
co as
|
|
81
|
-
Bo as
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
ko as
|
|
85
|
-
So as
|
|
86
|
-
Ao as
|
|
87
|
-
Po as
|
|
88
|
-
Ko as
|
|
89
|
-
Ro as
|
|
90
|
-
vo as
|
|
91
|
-
Go as
|
|
68
|
+
j as ImageButton,
|
|
69
|
+
z as InfinitePlane,
|
|
70
|
+
H as Input,
|
|
71
|
+
W as KeyListener,
|
|
72
|
+
Y as Knob,
|
|
73
|
+
_ as LabeledControls,
|
|
74
|
+
oo as LabeledList,
|
|
75
|
+
eo as MenuBar,
|
|
76
|
+
mo as Modal,
|
|
77
|
+
xo as NoticeBox,
|
|
78
|
+
io as NumberInput,
|
|
79
|
+
lo as Popper,
|
|
80
|
+
uo as ProgressBar,
|
|
81
|
+
co as RestrictedInput,
|
|
82
|
+
Bo as RoundGauge,
|
|
83
|
+
go as Section,
|
|
84
|
+
To as Slider,
|
|
85
|
+
ko as Stack,
|
|
86
|
+
So as StyleableSection,
|
|
87
|
+
Ao as Table,
|
|
88
|
+
Po as Tabs,
|
|
89
|
+
Ko as TextArea,
|
|
90
|
+
Ro as TimeDisplay,
|
|
91
|
+
vo as Tooltip,
|
|
92
|
+
Go as TrackOutsideClicks,
|
|
93
|
+
Qo as VirtualList
|
|
92
94
|
};
|
package/package.json
CHANGED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import './assets/Section.css';const t = "_section_1awt0_17", l = "_title_1awt0_28", o = "_titleText_1awt0_34", s = "_buttons_1awt0_40", _ = "_rest_1awt0_47", e = "_content_1awt0_51", n = "_fitted_1awt0_55", c = "_fill_1awt0_59", a = "_scrollable_1awt0_73", i = "_scrollableHorizontal_1awt0_90", r = {
|
|
2
|
-
section: t,
|
|
3
|
-
title: l,
|
|
4
|
-
titleText: o,
|
|
5
|
-
buttons: s,
|
|
6
|
-
rest: _,
|
|
7
|
-
content: e,
|
|
8
|
-
fitted: n,
|
|
9
|
-
fill: c,
|
|
10
|
-
scrollable: a,
|
|
11
|
-
scrollableHorizontal: i
|
|
12
|
-
};
|
|
13
|
-
export {
|
|
14
|
-
r as s
|
|
15
|
-
};
|