@mittwald/flow-react-components 0.1.0-alpha.137 → 0.1.0-alpha.138
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/ContextMenu.js +2 -2
- package/dist/ContextMenuTrigger-DjZx2IST.js +52 -0
- package/dist/ContextualHelp.js +50 -0
- package/dist/IconInfo-Dzy8qZId.js +9 -0
- package/dist/IconWarning-DHYHv9V-.js +10 -0
- package/dist/Icons.js +20 -19
- package/dist/InlineAlert.js +1 -1
- package/dist/List.js +1 -1
- package/dist/Notification.js +1 -1
- package/dist/StatusBadge.js +1 -1
- package/dist/{StatusIcon-Dj5p-iL1.js → StatusIcon-l795M3JX.js} +6 -5
- package/dist/StatusIcon.js +1 -1
- package/dist/Tabs.js +1 -1
- package/dist/styles.css +1 -1
- package/dist/types/components/ContextualHelp/ContextualHelp.d.ts +6 -0
- package/dist/types/components/ContextualHelp/components/ContextualHelpTrigger/ContextualHelpTrigger.d.ts +5 -0
- package/dist/types/components/ContextualHelp/components/ContextualHelpTrigger/index.d.ts +4 -0
- package/dist/types/components/ContextualHelp/index.d.ts +5 -0
- package/dist/types/components/ContextualHelp/stories/Default.stories.d.ts +7 -0
- package/package.json +16 -12
- package/dist/ContextMenuTrigger-BwhLrGm5.js +0 -51
- package/dist/IconWarning-DFG_1t6M.js +0 -11
package/dist/ContextMenu.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client"
|
|
2
2
|
/* */
|
|
3
|
-
import { C as t } from "./ContextMenuTrigger-
|
|
4
|
-
import { a } from "./ContextMenuTrigger-
|
|
3
|
+
import { C as t } from "./ContextMenuTrigger-DjZx2IST.js";
|
|
4
|
+
import { a } from "./ContextMenuTrigger-DjZx2IST.js";
|
|
5
5
|
import { M as n } from "./MenuItem-Dny58Rqq.js";
|
|
6
6
|
export {
|
|
7
7
|
t as ContextMenu,
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
import e from "react";
|
|
4
|
+
import * as r from "react-aria-components";
|
|
5
|
+
import { f as M } from "./flowComponent-CPKCCJEg.js";
|
|
6
|
+
import { P as d } from "./Popover-B-COTLld.js";
|
|
7
|
+
import "mobx";
|
|
8
|
+
import "./useOverlayController-CGKumeGL.js";
|
|
9
|
+
import { C as g } from "./ClearPropsContext-CUvsbMn8.js";
|
|
10
|
+
import { P as C } from "./PropsContextProvider-C6Z4XGp6.js";
|
|
11
|
+
import "@react-aria/utils";
|
|
12
|
+
import "./propsContext-DzAKlmhS.js";
|
|
13
|
+
import "remeda";
|
|
14
|
+
import { O as v } from "./OverlayTrigger-DbjMkqKf.js";
|
|
15
|
+
const P = "flow--context-menu", E = "flow--context-menu--popover", n = {
|
|
16
|
+
contextMenu: P,
|
|
17
|
+
popover: E
|
|
18
|
+
}, R = M("ContextMenu", (o) => {
|
|
19
|
+
const {
|
|
20
|
+
children: a,
|
|
21
|
+
onAction: s,
|
|
22
|
+
selectionMode: t,
|
|
23
|
+
selectedKeys: i,
|
|
24
|
+
defaultSelectedKeys: c,
|
|
25
|
+
disabledKeys: l,
|
|
26
|
+
onSelectionChange: m,
|
|
27
|
+
refProp: p,
|
|
28
|
+
...u
|
|
29
|
+
} = o, f = t === "navigation" ? "single" : t, x = {
|
|
30
|
+
MenuItem: {
|
|
31
|
+
selectionVariant: t === "navigation" ? "navigation" : "control"
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
return /* @__PURE__ */ e.createElement(g, null, /* @__PURE__ */ e.createElement(d, { ...u, className: n.popover }, /* @__PURE__ */ e.createElement(
|
|
35
|
+
r.Menu,
|
|
36
|
+
{
|
|
37
|
+
className: n.contextMenu,
|
|
38
|
+
onAction: s,
|
|
39
|
+
selectionMode: f,
|
|
40
|
+
selectedKeys: i,
|
|
41
|
+
defaultSelectedKeys: c,
|
|
42
|
+
disabledKeys: l,
|
|
43
|
+
onSelectionChange: m,
|
|
44
|
+
ref: p
|
|
45
|
+
},
|
|
46
|
+
/* @__PURE__ */ e.createElement(C, { props: x }, a)
|
|
47
|
+
)));
|
|
48
|
+
}), V = (o) => /* @__PURE__ */ e.createElement(v, null, /* @__PURE__ */ e.createElement(r.MenuTrigger, null, o.children));
|
|
49
|
+
export {
|
|
50
|
+
R as C,
|
|
51
|
+
V as a
|
|
52
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
import t from "react";
|
|
4
|
+
import { P as l } from "./Popover-B-COTLld.js";
|
|
5
|
+
import * as i from "react-aria-components";
|
|
6
|
+
import "mobx";
|
|
7
|
+
import "./useOverlayController-CGKumeGL.js";
|
|
8
|
+
import "./propsContext-DzAKlmhS.js";
|
|
9
|
+
import { P as n } from "./PropsContextProvider-C6Z4XGp6.js";
|
|
10
|
+
import "@react-aria/utils";
|
|
11
|
+
import "remeda";
|
|
12
|
+
import { O as m } from "./OverlayTrigger-DbjMkqKf.js";
|
|
13
|
+
import { useLocalizedStringFormatter as p } from "react-aria";
|
|
14
|
+
import "@tabler/icons-react";
|
|
15
|
+
import "./Icon-D4bkU_pz.js";
|
|
16
|
+
import { I as c } from "./IconInfo-Dzy8qZId.js";
|
|
17
|
+
const s = "flow--contextual-help", u = {
|
|
18
|
+
contextualHelp: s
|
|
19
|
+
}, w = (e) => {
|
|
20
|
+
const { children: r, ...o } = e, a = {
|
|
21
|
+
Heading: {
|
|
22
|
+
level: 5
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
return /* @__PURE__ */ t.createElement(l, { withTip: !0, ...o }, /* @__PURE__ */ t.createElement(n, { props: a }, /* @__PURE__ */ t.createElement("div", { className: u.contextualHelp }, r)));
|
|
26
|
+
}, f = {
|
|
27
|
+
"de-DE": {
|
|
28
|
+
"contextualHelpButton.moreInformation": "Weitere Informationen"
|
|
29
|
+
},
|
|
30
|
+
"en-EN": {
|
|
31
|
+
"contextualHelpButton.moreInformation": "More information"
|
|
32
|
+
}
|
|
33
|
+
}, y = (e) => {
|
|
34
|
+
const o = {
|
|
35
|
+
Button: {
|
|
36
|
+
"aria-label": p(f).format(
|
|
37
|
+
"contextualHelpButton.moreInformation"
|
|
38
|
+
),
|
|
39
|
+
children: /* @__PURE__ */ t.createElement(c, null),
|
|
40
|
+
size: "s",
|
|
41
|
+
variant: "plain"
|
|
42
|
+
}
|
|
43
|
+
};
|
|
44
|
+
return /* @__PURE__ */ t.createElement(m, null, /* @__PURE__ */ t.createElement(i.DialogTrigger, null, /* @__PURE__ */ t.createElement(n, { props: o, mergeInParentContext: !0 }, e.children)));
|
|
45
|
+
};
|
|
46
|
+
export {
|
|
47
|
+
w as ContextualHelp,
|
|
48
|
+
y as ContextualHelpTrigger,
|
|
49
|
+
w as default
|
|
50
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
import o from "react";
|
|
4
|
+
import { IconInfoCircle as r } from "@tabler/icons-react";
|
|
5
|
+
import { I as t } from "./Icon-D4bkU_pz.js";
|
|
6
|
+
const I = (e) => /* @__PURE__ */ o.createElement(t, { ...e }, /* @__PURE__ */ o.createElement(r, null));
|
|
7
|
+
export {
|
|
8
|
+
I
|
|
9
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
import e from "react";
|
|
4
|
+
import { IconCircleCheck as n, IconAlertCircle as r } from "@tabler/icons-react";
|
|
5
|
+
import { I as t } from "./Icon-D4bkU_pz.js";
|
|
6
|
+
const m = (c) => /* @__PURE__ */ e.createElement(t, { ...c }, /* @__PURE__ */ e.createElement(n, null)), s = (c) => /* @__PURE__ */ e.createElement(t, { ...c }, /* @__PURE__ */ e.createElement(r, null));
|
|
7
|
+
export {
|
|
8
|
+
m as I,
|
|
9
|
+
s as a
|
|
10
|
+
};
|
package/dist/Icons.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client"
|
|
2
2
|
/* */
|
|
3
3
|
import n from "react";
|
|
4
|
-
import { IconAppWindow as o, IconArrowLeft as l, IconClock as c, IconChevronLeft as r, IconCode as a, IconCalendarCheck as I, IconBuilding as m, IconLayoutBoard as s, IconDatabase as E, IconCalendar as u, IconTrash as i, IconWorld as p, IconMail as
|
|
4
|
+
import { IconAppWindow as o, IconArrowLeft as l, IconClock as c, IconChevronLeft as r, IconCode as a, IconCalendarCheck as I, IconBuilding as m, IconLayoutBoard as s, IconDatabase as E, IconCalendar as u, IconTrash as i, IconWorld as p, IconMail as f, IconExternalLink as h, IconFilter as d, IconEyeCancel as x, IconHome as C, IconInbox as S, IconList as v, IconPower as g, IconUsersGroup as b, IconMenu2 as k, IconBell as L, IconArchive as w, IconDice3 as D, IconDeviceFloppy as M, IconListSearch as $, IconServer as y, IconSettings as F, IconShare3 as B, IconEye as H, IconAdjustmentsHorizontal as P, IconShield as A, IconShieldCheckFilled as R, IconDoor as V, IconSubtask as O, IconHeadset as T, IconFileX as j, IconLayoutGrid as z } from "@tabler/icons-react";
|
|
5
5
|
import { I as t } from "./Icon-D4bkU_pz.js";
|
|
6
6
|
import { I as Pe } from "./IconCheck-CMWmQYpS.js";
|
|
7
7
|
import { I as Re, a as Ve } from "./IconCheckboxEmpty-DQLeOSmS.js";
|
|
@@ -14,12 +14,13 @@ import { I as Ke } from "./IconContextMenu-Bmk1_j_0.js";
|
|
|
14
14
|
import { I as Ye } from "./IconCopy-DH_CNzXF.js";
|
|
15
15
|
import { I as _e } from "./IconDanger-PwvUWqzQ.js";
|
|
16
16
|
import { a as nn, I as tn } from "./IconSucceeded-KKiDIenP.js";
|
|
17
|
-
import { I as on
|
|
18
|
-
import { I as
|
|
19
|
-
import { I as
|
|
20
|
-
import { a as
|
|
21
|
-
import { I as
|
|
22
|
-
|
|
17
|
+
import { I as on } from "./IconInfo-Dzy8qZId.js";
|
|
18
|
+
import { I as rn, a as an } from "./IconPlus-CAQpgAH5.js";
|
|
19
|
+
import { I as mn } from "./IconPending-BV7TXz8_.js";
|
|
20
|
+
import { a as En, I as un } from "./IconRadioOn-BIS8wd64.js";
|
|
21
|
+
import { I as fn } from "./IconSearch-DadOOeXe.js";
|
|
22
|
+
import { I as dn, a as xn } from "./IconWarning-DHYHv9V-.js";
|
|
23
|
+
const N = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(o, null)), X = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(l, null)), q = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(c, null)), J = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(r, null)), K = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(a, null)), Q = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(I, null)), Y = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(m, null)), Z = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(s, null)), _ = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(E, null)), ee = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(u, null)), ne = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(i, null)), te = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(p, null)), ce = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(f, null)), oe = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(h, null)), le = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(d, null)), re = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(x, null)), ae = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(C, null)), Ie = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(S, null)), me = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(v, null)), se = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(g, null)), Ee = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(b, null)), ue = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(k, null)), ie = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(L, null)), pe = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(w, null)), fe = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(D, null)), he = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(M, null)), de = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement($, null)), xe = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(y, null)), Ce = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(F, null)), Se = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(B, null)), ve = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(H, null)), ge = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(P, null)), be = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(A, null)), ke = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(R, null)), Le = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(V, null)), we = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(O, null)), De = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(T, null)), Me = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(j, null)), $e = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(z, null)), ye = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(c, null)), Fe = (e) => /* @__PURE__ */ n.createElement(
|
|
23
24
|
t,
|
|
24
25
|
{
|
|
25
26
|
...e
|
|
@@ -66,32 +67,32 @@ export {
|
|
|
66
67
|
se as IconLogout,
|
|
67
68
|
Ee as IconMember,
|
|
68
69
|
ue as IconMenu,
|
|
69
|
-
|
|
70
|
+
rn as IconMinus,
|
|
70
71
|
Fe as IconMittwald,
|
|
71
72
|
ie as IconNotification,
|
|
72
|
-
|
|
73
|
-
|
|
73
|
+
mn as IconPending,
|
|
74
|
+
an as IconPlus,
|
|
74
75
|
pe as IconProject,
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
76
|
+
En as IconRadioOff,
|
|
77
|
+
un as IconRadioOn,
|
|
78
|
+
fe as IconRandom,
|
|
79
|
+
he as IconSave,
|
|
80
|
+
fn as IconSearch,
|
|
80
81
|
de as IconSearchEngine,
|
|
81
82
|
xe as IconServer,
|
|
82
83
|
Ce as IconSettings,
|
|
83
84
|
Se as IconShare,
|
|
84
85
|
ve as IconShow,
|
|
85
|
-
|
|
86
|
-
|
|
86
|
+
ge as IconSorting,
|
|
87
|
+
be as IconSpamProtectionOff,
|
|
87
88
|
ke as IconSpamProtectionOn,
|
|
88
89
|
Le as IconSshSftp,
|
|
89
90
|
we as IconSubdomain,
|
|
90
91
|
tn as IconSucceeded,
|
|
91
|
-
|
|
92
|
+
dn as IconSuccess,
|
|
92
93
|
De as IconSupport,
|
|
93
94
|
Me as IconTerminate,
|
|
94
95
|
$e as IconTileView,
|
|
95
96
|
ye as IconTime,
|
|
96
|
-
|
|
97
|
+
xn as IconWarning
|
|
97
98
|
};
|
package/dist/InlineAlert.js
CHANGED
|
@@ -7,7 +7,7 @@ import "@react-aria/utils";
|
|
|
7
7
|
import "./propsContext-DzAKlmhS.js";
|
|
8
8
|
import "remeda";
|
|
9
9
|
import p from "clsx";
|
|
10
|
-
import { S as u } from "./StatusIcon-
|
|
10
|
+
import { S as u } from "./StatusIcon-l795M3JX.js";
|
|
11
11
|
import { f as d } from "./flowComponent-CPKCCJEg.js";
|
|
12
12
|
const w = "flow--inline-alert", g = "flow--inline-alert--status-icon", C = "flow--inline-alert--heading", I = "flow--inline-alert--content", N = "flow--inline-alert--info", h = "flow--inline-alert--warning", x = "flow--inline-alert--danger", A = "flow--inline-alert--success", n = {
|
|
13
13
|
inlineAlert: w,
|
package/dist/List.js
CHANGED
|
@@ -5,7 +5,7 @@ var et = (i, t, e) => t in i ? tt(i, t, { enumerable: !0, configurable: !0, writ
|
|
|
5
5
|
var o = (i, t, e) => (et(i, typeof t != "symbol" ? t + "" : t, e), e);
|
|
6
6
|
import s, { createContext as at, useContext as st, createElement as nt, useEffect as I, useRef as it, Suspense as rt } from "react";
|
|
7
7
|
import { R as ot } from "./Render-BdlTa7Qb.js";
|
|
8
|
-
import { C as q, a as lt } from "./ContextMenuTrigger-
|
|
8
|
+
import { C as q, a as lt } from "./ContextMenuTrigger-DjZx2IST.js";
|
|
9
9
|
import { M as K } from "./MenuItem-Dny58Rqq.js";
|
|
10
10
|
import * as j from "react-aria-components";
|
|
11
11
|
import { autorun as ct, runInAction as ut, makeObservable as mt, observable as N, computed as R, action as C } from "mobx";
|
package/dist/Notification.js
CHANGED
|
@@ -6,7 +6,7 @@ import "./propsContext-DzAKlmhS.js";
|
|
|
6
6
|
import { P as w } from "./PropsContextProvider-C6Z4XGp6.js";
|
|
7
7
|
import "@react-aria/utils";
|
|
8
8
|
import "remeda";
|
|
9
|
-
import { S as g } from "./StatusIcon-
|
|
9
|
+
import { S as g } from "./StatusIcon-l795M3JX.js";
|
|
10
10
|
import { L as h } from "./Link-CcYCy_KC.js";
|
|
11
11
|
import { B as k } from "./Button-BPAhEOTg.js";
|
|
12
12
|
import "@tabler/icons-react";
|
package/dist/StatusBadge.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* */
|
|
3
3
|
import t from "react";
|
|
4
4
|
import l from "clsx";
|
|
5
|
-
import { S as f } from "./StatusIcon-
|
|
5
|
+
import { S as f } from "./StatusIcon-l795M3JX.js";
|
|
6
6
|
import { T as i } from "./Text-D6e-S6em.js";
|
|
7
7
|
import { C as u } from "./ClearPropsContext-CUvsbMn8.js";
|
|
8
8
|
import "./propsContext-DzAKlmhS.js";
|
|
@@ -4,7 +4,8 @@ import t from "react";
|
|
|
4
4
|
import "@tabler/icons-react";
|
|
5
5
|
import "./Icon-D4bkU_pz.js";
|
|
6
6
|
import { I as m } from "./IconDanger-PwvUWqzQ.js";
|
|
7
|
-
import { I as f
|
|
7
|
+
import { I as f } from "./IconInfo-Dzy8qZId.js";
|
|
8
|
+
import { I, a as l } from "./IconWarning-DHYHv9V-.js";
|
|
8
9
|
import { useLocalizedStringFormatter as g } from "react-aria";
|
|
9
10
|
import { C as p } from "./ClearPropsContext-CUvsbMn8.js";
|
|
10
11
|
import "./propsContext-DzAKlmhS.js";
|
|
@@ -34,9 +35,9 @@ const S = {
|
|
|
34
35
|
}, F = {
|
|
35
36
|
danger: m,
|
|
36
37
|
info: f,
|
|
37
|
-
success:
|
|
38
|
-
warning:
|
|
39
|
-
},
|
|
38
|
+
success: I,
|
|
39
|
+
warning: l
|
|
40
|
+
}, v = (n) => {
|
|
40
41
|
const { status: s = "info", className: a, ...c } = n, r = w(o.statusIcon, o[s], a), e = g(S), i = F[s], u = {
|
|
41
42
|
className: r,
|
|
42
43
|
"aria-label": e.format(`statusIcon.${s}`),
|
|
@@ -45,5 +46,5 @@ const S = {
|
|
|
45
46
|
return /* @__PURE__ */ t.createElement(p, null, /* @__PURE__ */ t.createElement(i, { ...u }));
|
|
46
47
|
};
|
|
47
48
|
export {
|
|
48
|
-
|
|
49
|
+
v as S
|
|
49
50
|
};
|
package/dist/StatusIcon.js
CHANGED
package/dist/Tabs.js
CHANGED
|
@@ -6,7 +6,7 @@ import u from "clsx";
|
|
|
6
6
|
import { TunnelExit as C, TunnelProvider as y, TunnelEntry as f } from "@mittwald/react-tunnel";
|
|
7
7
|
import { f as S } from "./flowComponent-CPKCCJEg.js";
|
|
8
8
|
import { useCallbackRef as O } from "use-callback-ref";
|
|
9
|
-
import { a as B, C as K } from "./ContextMenuTrigger-
|
|
9
|
+
import { a as B, C as K } from "./ContextMenuTrigger-DjZx2IST.js";
|
|
10
10
|
import { M as A } from "./MenuItem-Dny58Rqq.js";
|
|
11
11
|
import { B as L } from "./Button-BPAhEOTg.js";
|
|
12
12
|
import "@tabler/icons-react";
|