trepur_components 2.3.46 → 2.3.48
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/lib/assets/trepurComponentsLogo.svg +32 -0
- package/lib/components/AlertBar/index.js +3 -3
- package/lib/components/Breadcrumbs/index.js +14 -14
- package/lib/components/Button/index.js +16 -15
- package/lib/components/Card/index.js +18 -23
- package/lib/components/Carousel/index.js +38 -38
- package/lib/components/CarouselThumbnail/index.js +33 -32
- package/lib/components/Dropdown/index.js +34 -32
- package/lib/components/FooterNav/index.js +6 -5
- package/lib/components/ImageCard/index.js +16 -15
- package/lib/components/Input/Input.stories.d.ts +1 -1
- package/lib/components/Input/index.d.ts +1 -1
- package/lib/components/Input/index.js +20 -19
- package/lib/components/Link/Link.stories.d.ts +0 -1
- package/lib/components/Link/index.js +18 -17
- package/lib/components/Nav/index.js +49 -49
- package/lib/components/Pill/index.js +6 -6
- package/lib/components/Timeline/index.js +14 -14
- package/lib/components/Tubestops/index.js +58 -61
- package/lib/documentation/assets/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { jsx as e, jsxs as p, Fragment as
|
|
2
|
-
import { createContext as
|
|
3
|
-
import { HamburgerIcon as
|
|
4
|
-
import { faChevronDown as
|
|
1
|
+
import { jsx as e, jsxs as p, Fragment as w } from "react/jsx-runtime";
|
|
2
|
+
import { createContext as C, forwardRef as d, useState as v, useMemo as k, useContext as m, useRef as M } from "react";
|
|
3
|
+
import { HamburgerIcon as j } from "../HamburgerIcon/index.js";
|
|
4
|
+
import { faChevronDown as D } from "@fortawesome/fontawesome-free-solid";
|
|
5
5
|
import n from "clsx";
|
|
6
|
-
import { Icon as
|
|
7
|
-
import { NavItem as
|
|
8
|
-
const
|
|
9
|
-
const [s, l] = v(!1),
|
|
6
|
+
import { Icon as F } from "../Icon/index.js";
|
|
7
|
+
import { NavItem as L } from "../NavItem/index.js";
|
|
8
|
+
const c = C(null), g = d(({ className: r, children: t, loading: a }, o) => {
|
|
9
|
+
const [s, l] = v(!1), i = k(
|
|
10
10
|
() => ({
|
|
11
11
|
expanded: s,
|
|
12
12
|
setExpanded: l,
|
|
@@ -14,115 +14,115 @@ const i = w(null), g = d(({ className: t, children: r, loading: a }, o) => {
|
|
|
14
14
|
}),
|
|
15
15
|
[s, l, a]
|
|
16
16
|
);
|
|
17
|
-
return /* @__PURE__ */ e(
|
|
18
|
-
}),
|
|
19
|
-
({ className:
|
|
17
|
+
return /* @__PURE__ */ e(c.Provider, { value: i, children: /* @__PURE__ */ e("div", { className: r, ref: o, children: t }) });
|
|
18
|
+
}), f = d(
|
|
19
|
+
({ className: r, children: t }, a) => /* @__PURE__ */ e(
|
|
20
20
|
"div",
|
|
21
21
|
{
|
|
22
22
|
ref: a,
|
|
23
|
-
className: n("relative h-24 w-full bg-nav-bg px-2 py-2",
|
|
24
|
-
children:
|
|
23
|
+
className: n("relative h-24 w-full bg-nav-bg px-2 py-2", r),
|
|
24
|
+
children: t
|
|
25
25
|
}
|
|
26
26
|
)
|
|
27
|
-
),
|
|
28
|
-
const { loading: o, setExpanded: s, expanded: l } = c
|
|
29
|
-
return /* @__PURE__ */ p("div", { ref: a, className: n("flex h-full lg:hidden",
|
|
27
|
+
), N = d(({ className: r, children: t }, a) => {
|
|
28
|
+
const { loading: o, setExpanded: s, expanded: l } = m(c) || {};
|
|
29
|
+
return /* @__PURE__ */ p("div", { ref: a, className: n("flex h-full lg:hidden", r), children: [
|
|
30
30
|
!o && /* @__PURE__ */ e("div", { className: "my-auto", children: /* @__PURE__ */ e(
|
|
31
|
-
|
|
31
|
+
j,
|
|
32
32
|
{
|
|
33
33
|
variant: "ghost",
|
|
34
34
|
onClick: () => s == null ? void 0 : s(!l),
|
|
35
35
|
className: "aspect-square"
|
|
36
36
|
}
|
|
37
37
|
) }),
|
|
38
|
-
/* @__PURE__ */ e("div", { className: "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 transform", children:
|
|
38
|
+
/* @__PURE__ */ e("div", { className: "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 transform", children: t })
|
|
39
39
|
] });
|
|
40
|
-
}), u = d(({ className:
|
|
40
|
+
}), u = d(({ className: r, children: t }, a) => /* @__PURE__ */ e(
|
|
41
41
|
"div",
|
|
42
42
|
{
|
|
43
43
|
ref: a,
|
|
44
44
|
className: n(
|
|
45
45
|
"hidden justify-between lg:flex gap-4 px-4 lg:gap-8 lg:px-20",
|
|
46
|
-
|
|
46
|
+
r
|
|
47
47
|
),
|
|
48
|
-
children:
|
|
48
|
+
children: t
|
|
49
49
|
}
|
|
50
50
|
)), x = d(
|
|
51
|
-
({ className:
|
|
52
|
-
const { expanded: o } = c
|
|
51
|
+
({ className: r, children: t }, a) => {
|
|
52
|
+
const { expanded: o } = m(c) || {};
|
|
53
53
|
return o ? /* @__PURE__ */ e(
|
|
54
54
|
"div",
|
|
55
55
|
{
|
|
56
56
|
ref: a,
|
|
57
57
|
className: n(
|
|
58
58
|
"h-screen bg-nav-bg px-8 pb-12 pt-2 lg:hidden",
|
|
59
|
-
|
|
59
|
+
r
|
|
60
60
|
),
|
|
61
|
-
children: /* @__PURE__ */ e("div", { className: "grid grid-cols-1 gap-4 lg:hidden", children:
|
|
61
|
+
children: /* @__PURE__ */ e("div", { className: "grid grid-cols-1 gap-4 lg:hidden", children: t })
|
|
62
62
|
}
|
|
63
|
-
) : /* @__PURE__ */ e(
|
|
63
|
+
) : /* @__PURE__ */ e(w, {});
|
|
64
64
|
}
|
|
65
65
|
), h = d(
|
|
66
|
-
({ className:
|
|
67
|
-
const { loading: o } = c
|
|
68
|
-
return o ? /* @__PURE__ */ e("div", { ref: a, className: n("my-4 lg:flex lg:gap-6",
|
|
66
|
+
({ className: r, children: t }, a) => {
|
|
67
|
+
const { loading: o } = m(c) || {};
|
|
68
|
+
return o ? /* @__PURE__ */ e("div", { ref: a, className: n("my-4 lg:flex lg:gap-6", r), children: [...Array(5)].map((s, l) => /* @__PURE__ */ e(L, { loading: !0 }, l)) }) : /* @__PURE__ */ e("div", { ref: a, className: n("my-4 lg:flex lg:gap-6", r), children: t });
|
|
69
69
|
}
|
|
70
|
-
), b = d(({ className:
|
|
71
|
-
const [
|
|
70
|
+
), b = d(({ className: r, label: t, children: a, active: o = !1 }, s) => {
|
|
71
|
+
const [l, i] = v(!1), H = M(null);
|
|
72
72
|
return /* @__PURE__ */ p(
|
|
73
73
|
"div",
|
|
74
74
|
{
|
|
75
|
-
ref:
|
|
76
|
-
onMouseEnter: () =>
|
|
77
|
-
onMouseLeave: () =>
|
|
78
|
-
onClick: () =>
|
|
75
|
+
ref: H ?? s,
|
|
76
|
+
onMouseEnter: () => i(!0),
|
|
77
|
+
onMouseLeave: () => i(!1),
|
|
78
|
+
onClick: () => i(!l),
|
|
79
79
|
className: n(
|
|
80
80
|
"relative m-auto py-0 text-nav-text lg:after:block after:scale-x-0 after:border-b-2 after:border-nav-text after:transition-all after:duration-300 after:ease-in-out hover:cursor-pointer hover:after:scale-x-100",
|
|
81
81
|
{
|
|
82
82
|
"font-bold": o,
|
|
83
83
|
"font-light": !o
|
|
84
84
|
},
|
|
85
|
-
|
|
85
|
+
r
|
|
86
86
|
),
|
|
87
87
|
children: [
|
|
88
88
|
/* @__PURE__ */ p("div", { className: "flex justify-center items-center gap-1", children: [
|
|
89
|
-
/* @__PURE__ */ e("p", { className: "text-lg", children:
|
|
90
|
-
/* @__PURE__ */ e(
|
|
89
|
+
/* @__PURE__ */ e("p", { className: "text-lg", children: t }),
|
|
90
|
+
/* @__PURE__ */ e(F, { size: "xs", icon: D })
|
|
91
91
|
] }),
|
|
92
|
-
|
|
92
|
+
l && /* @__PURE__ */ e("div", { className: "rounded-md lg:absolute lg:-left-5 top-7 z-50 w-40 bg-nav-bg", children: /* @__PURE__ */ e("div", { className: "rounded-md grid grid-cols-1 gap-y-2 bg-nav-bg px-1 py-2 w-full", children: a }) })
|
|
93
93
|
]
|
|
94
94
|
}
|
|
95
95
|
);
|
|
96
|
-
}), y = d(({ className:
|
|
97
|
-
const { loading: l } = c
|
|
96
|
+
}), y = d(({ className: r, src: t, alt: a, ...o }, s) => {
|
|
97
|
+
const { loading: l } = m(c) || {};
|
|
98
98
|
return l ? /* @__PURE__ */ e("div", { children: /* @__PURE__ */ e("div", { className: "h-20 w-20 animate-pulse bg-gray-300" }) }) : /* @__PURE__ */ e(
|
|
99
99
|
"img",
|
|
100
100
|
{
|
|
101
|
-
className: n("h-20 flex-none",
|
|
101
|
+
className: n("h-20 flex-none", r),
|
|
102
102
|
ref: s,
|
|
103
|
-
src:
|
|
103
|
+
src: t,
|
|
104
104
|
alt: a,
|
|
105
105
|
...o
|
|
106
106
|
}
|
|
107
107
|
);
|
|
108
108
|
});
|
|
109
109
|
g.displayName = "Nav";
|
|
110
|
-
|
|
110
|
+
f.displayName = "Nav.Header";
|
|
111
111
|
u.displayName = "Nav.DesktopHeader";
|
|
112
|
-
|
|
112
|
+
N.displayName = "Nav.MobileHeader";
|
|
113
113
|
y.displayName = "Nav.Logo";
|
|
114
114
|
h.displayName = "Nav.Section";
|
|
115
115
|
x.displayName = "Nav.Body";
|
|
116
116
|
b.displayName = "Nav.Folder";
|
|
117
|
-
const
|
|
118
|
-
Header:
|
|
117
|
+
const A = Object.assign(g, {
|
|
118
|
+
Header: f,
|
|
119
119
|
DesktopHeader: u,
|
|
120
|
-
MobileHeader:
|
|
120
|
+
MobileHeader: N,
|
|
121
121
|
Section: h,
|
|
122
122
|
Logo: y,
|
|
123
123
|
Body: x,
|
|
124
124
|
Folder: b
|
|
125
125
|
});
|
|
126
126
|
export {
|
|
127
|
-
|
|
127
|
+
A as Nav
|
|
128
128
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { jsx as t } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef as r } from "react";
|
|
3
3
|
import s from "clsx";
|
|
4
|
-
import { Icon as
|
|
5
|
-
const i = r(({ children: o, variant: e = "info", inverse: l = !1 },
|
|
4
|
+
import { Icon as c } from "../Icon/index.js";
|
|
5
|
+
const i = r(({ children: o, variant: e = "info", inverse: l = !1 }, a) => /* @__PURE__ */ t(
|
|
6
6
|
"div",
|
|
7
7
|
{
|
|
8
|
-
ref:
|
|
8
|
+
ref: a,
|
|
9
9
|
className: s(
|
|
10
10
|
"inline-grid grid-flow-col w-auto py-2 px-4 text-base font-semibold rounded-full gap-2",
|
|
11
11
|
{
|
|
@@ -21,12 +21,12 @@ const i = r(({ children: o, variant: e = "info", inverse: l = !1 }, f) => /* @__
|
|
|
21
21
|
),
|
|
22
22
|
children: o
|
|
23
23
|
}
|
|
24
|
-
)), g = r(({ className: o, ...e }, l) => /* @__PURE__ */ t("p", { className: s("text-base my-auto", o), ref: l, ...e })),
|
|
24
|
+
)), g = r(({ className: o, ...e }, l) => /* @__PURE__ */ t("p", { className: s("text-base my-auto", o), ref: l, ...e })), f = r(({ icon: o }, e) => /* @__PURE__ */ t(c, { className: "my-auto", size: "sm", ref: e, icon: o }));
|
|
25
25
|
i.displayName = "Pill";
|
|
26
|
-
|
|
26
|
+
f.displayName = "Pill.Icon";
|
|
27
27
|
g.displayName = "Chip.Label";
|
|
28
28
|
const m = Object.assign(i, {
|
|
29
|
-
Icon:
|
|
29
|
+
Icon: f,
|
|
30
30
|
Label: g
|
|
31
31
|
});
|
|
32
32
|
export {
|
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
import { jsx as n, jsxs as c } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef as t } from "react";
|
|
3
|
-
import
|
|
4
|
-
const
|
|
3
|
+
import o from "clsx";
|
|
4
|
+
const r = t(({ id: e, className: m, children: i }, l) => /* @__PURE__ */ n("div", { ref: l, id: e, className: m, children: i })), s = t(
|
|
5
5
|
({ id: e, children: m }, i) => /* @__PURE__ */ n("div", { ref: i, id: e, className: "flex", children: m })
|
|
6
|
-
),
|
|
6
|
+
), a = t(({ className: e, index: m, length: i }, l) => /* @__PURE__ */ c("div", { ref: l, className: "hidden sm:block", children: [
|
|
7
7
|
/* @__PURE__ */ n(
|
|
8
8
|
"p",
|
|
9
9
|
{
|
|
10
|
-
className:
|
|
10
|
+
className: o("z-10 m-auto mt-12 h-4 w-4 rounded-full", e)
|
|
11
11
|
}
|
|
12
12
|
),
|
|
13
13
|
/* @__PURE__ */ n(
|
|
14
14
|
"div",
|
|
15
15
|
{
|
|
16
|
-
className: m !== i - 1 ?
|
|
16
|
+
className: m !== i - 1 ? o("m-auto h-full w-1", e) : "border-r-2 border-transparent"
|
|
17
17
|
}
|
|
18
18
|
)
|
|
19
|
-
] })),
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const T = Object.assign(
|
|
25
|
-
Item:
|
|
26
|
-
Dot:
|
|
27
|
-
Content:
|
|
19
|
+
] })), d = t(({ children: e }, m) => /* @__PURE__ */ n("div", { ref: m, className: "my-2 w-full sm:ml-8", children: e }));
|
|
20
|
+
r.displayName = "Timeline";
|
|
21
|
+
s.displayName = "Timeline.Item";
|
|
22
|
+
a.displayName = "Timeline.Dot";
|
|
23
|
+
d.displayName = "Timeline.Content";
|
|
24
|
+
const T = Object.assign(r, {
|
|
25
|
+
Item: s,
|
|
26
|
+
Dot: a,
|
|
27
|
+
Content: d
|
|
28
28
|
});
|
|
29
29
|
export {
|
|
30
30
|
T as Timeline
|
|
@@ -1,86 +1,83 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { createContext as f, forwardRef as a, useState as
|
|
3
|
-
import
|
|
4
|
-
import { Button as
|
|
5
|
-
const p = f(null),
|
|
1
|
+
import { jsx as r, jsxs as T } from "react/jsx-runtime";
|
|
2
|
+
import { createContext as f, forwardRef as a, useState as v, Children as z, useMemo as N, useContext as i } from "react";
|
|
3
|
+
import l from "clsx";
|
|
4
|
+
import { Button as d } from "../Button/index.js";
|
|
5
|
+
const p = f(null), h = f(
|
|
6
6
|
null
|
|
7
|
-
),
|
|
8
|
-
|
|
7
|
+
), y = a(({ className: n, children: t, activeStop: e = 1 }, s) => {
|
|
8
|
+
var b, x;
|
|
9
|
+
const [o, u] = v(e), c = (x = (b = z.toArray(t)[0]) == null ? void 0 : b.props) == null ? void 0 : x.children.length, m = N(
|
|
9
10
|
() => ({
|
|
10
|
-
totalStops: c
|
|
11
|
-
setTotalStops: m,
|
|
11
|
+
totalStops: c,
|
|
12
12
|
currentStop: o,
|
|
13
13
|
setCurrentStop: u
|
|
14
14
|
}),
|
|
15
|
-
[o, u
|
|
15
|
+
[o, u]
|
|
16
16
|
);
|
|
17
|
-
return /* @__PURE__ */
|
|
18
|
-
}),
|
|
19
|
-
const { setTotalStops: e } = i(p) || {}, o = k.count(t);
|
|
20
|
-
return e == null || e(o), /* @__PURE__ */ l("div", { ref: s, className: r("flex py-4", n), children: t });
|
|
21
|
-
}), C = a(({ className: n, children: t }, s) => /* @__PURE__ */ l("div", { ref: s, className: r("", n), children: t })), S = a(({ className: n, stopId: t, children: s }, e) => {
|
|
17
|
+
return /* @__PURE__ */ r(p.Provider, { value: m, children: /* @__PURE__ */ r("div", { ref: s, className: n, children: t }) });
|
|
18
|
+
}), C = a(({ className: n, children: t }, e) => /* @__PURE__ */ r("div", { ref: e, className: l("flex py-4", n), children: t })), S = a(({ className: n, children: t }, e) => /* @__PURE__ */ r("div", { ref: e, className: l("", n), children: t })), g = a(({ className: n, stopId: t, children: e }, s) => {
|
|
22
19
|
const { currentStop: o = 0 } = i(p) || {};
|
|
23
|
-
return /* @__PURE__ */
|
|
20
|
+
return /* @__PURE__ */ r(
|
|
24
21
|
"div",
|
|
25
22
|
{
|
|
26
|
-
ref:
|
|
27
|
-
className:
|
|
23
|
+
ref: s,
|
|
24
|
+
className: l("", n, {
|
|
28
25
|
block: o === t,
|
|
29
26
|
hidden: o !== t
|
|
30
27
|
}),
|
|
31
|
-
children:
|
|
28
|
+
children: e
|
|
32
29
|
}
|
|
33
30
|
);
|
|
34
31
|
}), w = a(({ className: n }, t) => {
|
|
35
32
|
const {
|
|
36
|
-
setCurrentStop:
|
|
37
|
-
currentStop:
|
|
33
|
+
setCurrentStop: e,
|
|
34
|
+
currentStop: s = 0,
|
|
38
35
|
totalStops: o = 0
|
|
39
36
|
} = i(p) || {};
|
|
40
|
-
return /* @__PURE__ */ T("div", { ref: t, className:
|
|
41
|
-
/* @__PURE__ */
|
|
42
|
-
|
|
37
|
+
return /* @__PURE__ */ T("div", { ref: t, className: l("flex justify-between", n), children: [
|
|
38
|
+
/* @__PURE__ */ r(
|
|
39
|
+
d,
|
|
43
40
|
{
|
|
44
|
-
disabled:
|
|
45
|
-
onClick: () =>
|
|
46
|
-
children: /* @__PURE__ */
|
|
41
|
+
disabled: s === 1,
|
|
42
|
+
onClick: () => s > 1 && (e == null ? void 0 : e(s - 1)),
|
|
43
|
+
children: /* @__PURE__ */ r(d.Label, { children: "Previous" })
|
|
47
44
|
}
|
|
48
45
|
),
|
|
49
|
-
/* @__PURE__ */
|
|
50
|
-
|
|
46
|
+
/* @__PURE__ */ r(
|
|
47
|
+
d,
|
|
51
48
|
{
|
|
52
|
-
disabled:
|
|
53
|
-
onClick: () =>
|
|
54
|
-
children: /* @__PURE__ */
|
|
49
|
+
disabled: s === o,
|
|
50
|
+
onClick: () => s < o && (e == null ? void 0 : e(s + 1)),
|
|
51
|
+
children: /* @__PURE__ */ r(d.Label, { children: "Next" })
|
|
55
52
|
}
|
|
56
53
|
)
|
|
57
54
|
] });
|
|
58
|
-
}),
|
|
55
|
+
}), j = a(({ className: n, stopId: t = 0, children: e }, s) => {
|
|
59
56
|
const {
|
|
60
57
|
currentStop: o = 0,
|
|
61
58
|
setCurrentStop: u,
|
|
62
59
|
totalStops: c = 0
|
|
63
|
-
} = i(p) || {}, [m] =
|
|
60
|
+
} = i(p) || {}, [m] = v(t), b = N(
|
|
64
61
|
() => ({
|
|
65
62
|
stopNumber: m
|
|
66
63
|
}),
|
|
67
64
|
[m]
|
|
68
65
|
);
|
|
69
|
-
return /* @__PURE__ */
|
|
70
|
-
/* @__PURE__ */
|
|
66
|
+
return /* @__PURE__ */ r(h.Provider, { value: b, children: /* @__PURE__ */ T("div", { ref: s, className: l(n, "w-full min-w-[120px]"), children: [
|
|
67
|
+
/* @__PURE__ */ r(
|
|
71
68
|
"div",
|
|
72
69
|
{
|
|
73
|
-
className:
|
|
70
|
+
className: l({
|
|
74
71
|
"mt-4 h-1 w-full translate-x-1/2 bg-tubestop-line-future": t >= o && t < c,
|
|
75
72
|
"mt-4 h-1 w-full translate-x-1/2 bg-tubestop-line-complete": t < o && t < c
|
|
76
73
|
})
|
|
77
74
|
}
|
|
78
75
|
),
|
|
79
|
-
/* @__PURE__ */
|
|
76
|
+
/* @__PURE__ */ r(
|
|
80
77
|
"p",
|
|
81
78
|
{
|
|
82
79
|
onClick: () => u == null ? void 0 : u(t),
|
|
83
|
-
className:
|
|
80
|
+
className: l(
|
|
84
81
|
"hover:cursor-pointer z-10 mx-auto h-6 w-6 rounded-full",
|
|
85
82
|
{
|
|
86
83
|
"relative z-20 -mt-4 bg-tubestop-station-complete": t < o,
|
|
@@ -91,20 +88,20 @@ const p = f(null), N = f(
|
|
|
91
88
|
)
|
|
92
89
|
}
|
|
93
90
|
),
|
|
94
|
-
|
|
91
|
+
e
|
|
95
92
|
] }) });
|
|
96
|
-
}),
|
|
97
|
-
const { currentStop:
|
|
98
|
-
return /* @__PURE__ */
|
|
93
|
+
}), k = a(({ className: n, children: t }, e) => {
|
|
94
|
+
const { currentStop: s = 0 } = i(p) || {}, { stopNumber: o = 0 } = i(h) || {};
|
|
95
|
+
return /* @__PURE__ */ r(
|
|
99
96
|
"p",
|
|
100
97
|
{
|
|
101
|
-
ref:
|
|
102
|
-
className:
|
|
98
|
+
ref: e,
|
|
99
|
+
className: l(
|
|
103
100
|
"mt-2 text-center",
|
|
104
101
|
{
|
|
105
|
-
"font-medium text-tubestop-text-complete": o <
|
|
106
|
-
"font-bold text-tubestop-text-active":
|
|
107
|
-
"font-medium text-tubestop-text-future": o >
|
|
102
|
+
"font-medium text-tubestop-text-complete": o < s,
|
|
103
|
+
"font-bold text-tubestop-text-active": s === o,
|
|
104
|
+
"font-medium text-tubestop-text-future": o > s
|
|
108
105
|
},
|
|
109
106
|
n
|
|
110
107
|
),
|
|
@@ -112,21 +109,21 @@ const p = f(null), N = f(
|
|
|
112
109
|
}
|
|
113
110
|
);
|
|
114
111
|
});
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
112
|
+
y.displayName = "Tubestop";
|
|
113
|
+
C.displayName = "Tubestops.Header";
|
|
114
|
+
j.displayName = "Tubestops.Stop";
|
|
115
|
+
k.displayName = "Tubestops.Text";
|
|
119
116
|
w.displayName = "Tubestops.Controls";
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
const
|
|
123
|
-
Header:
|
|
124
|
-
Stop:
|
|
125
|
-
Text:
|
|
117
|
+
S.displayName = "Tubestops.Body";
|
|
118
|
+
g.displayName = "Tubestops.Content";
|
|
119
|
+
const A = Object.assign(y, {
|
|
120
|
+
Header: C,
|
|
121
|
+
Stop: j,
|
|
122
|
+
Text: k,
|
|
126
123
|
Controls: w,
|
|
127
|
-
Body:
|
|
128
|
-
Content:
|
|
124
|
+
Body: S,
|
|
125
|
+
Content: g
|
|
129
126
|
});
|
|
130
127
|
export {
|
|
131
|
-
|
|
128
|
+
A as Tubestops
|
|
132
129
|
};
|