@mittwald/flow-react-components 0.1.0-alpha.136 → 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.
Files changed (33) hide show
  1. package/dist/{Action-Dp9FyJCZ.js → Action-BGsLXvb9.js} +114 -110
  2. package/dist/Action.js +1 -1
  3. package/dist/ActionGroup.js +1 -1
  4. package/dist/ContextMenu.js +2 -2
  5. package/dist/ContextMenuTrigger-DjZx2IST.js +52 -0
  6. package/dist/ContextualHelp.js +50 -0
  7. package/dist/CopyButton.js +1 -1
  8. package/dist/IconInfo-Dzy8qZId.js +9 -0
  9. package/dist/IconWarning-DHYHv9V-.js +10 -0
  10. package/dist/Icons.js +20 -19
  11. package/dist/InlineAlert.js +1 -1
  12. package/dist/List.js +1 -1
  13. package/dist/Modal.js +12 -12
  14. package/dist/Notification.js +1 -1
  15. package/dist/NotificationProvider.js +19 -19
  16. package/dist/OffCanvas.js +1 -1
  17. package/dist/StatusBadge.js +1 -1
  18. package/dist/{StatusIcon-Dj5p-iL1.js → StatusIcon-l795M3JX.js} +6 -5
  19. package/dist/StatusIcon.js +1 -1
  20. package/dist/Tabs.js +1 -1
  21. package/dist/{getActionGroupSlot-izllH4ID.js → getActionGroupSlot-Do-bk4GU.js} +7 -7
  22. package/dist/styles.css +1 -1
  23. package/dist/types/components/ContextualHelp/ContextualHelp.d.ts +6 -0
  24. package/dist/types/components/ContextualHelp/components/ContextualHelpTrigger/ContextualHelpTrigger.d.ts +5 -0
  25. package/dist/types/components/ContextualHelp/components/ContextualHelpTrigger/index.d.ts +4 -0
  26. package/dist/types/components/ContextualHelp/index.d.ts +5 -0
  27. package/dist/types/components/ContextualHelp/stories/Default.stories.d.ts +7 -0
  28. package/dist/types/components/NotificationProvider/NotificationContainer.d.ts +5 -0
  29. package/dist/types/components/NotificationProvider/NotificationProvider.d.ts +2 -1
  30. package/package.json +16 -12
  31. package/dist/ContextMenuTrigger-BwhLrGm5.js +0 -51
  32. package/dist/IconWarning-DFG_1t6M.js +0 -11
  33. package/dist/types/components/NotificationProvider/NotificationsContainer.d.ts +0 -8
@@ -2,19 +2,19 @@
2
2
  /* */
3
3
  var S = Object.defineProperty;
4
4
  var B = (o, t, e) => t in o ? S(o, t, { enumerable: !0, configurable: !0, writable: !0, value: e }) : o[t] = e;
5
- var c = (o, t, e) => (B(o, typeof t != "symbol" ? t + "" : t, e), e);
6
- import y, { createContext as F, useRef as k, useContext as A } from "react";
7
- import { makeObservable as O, observable as I, action as M, computed as E } from "mobx";
5
+ var a = (o, t, e) => (B(o, typeof t != "symbol" ? t + "" : t, e), e);
6
+ import A, { createContext as F, useRef as k, useContext as y } from "react";
7
+ import { makeObservable as O, observable as M, action as I, computed as E } from "mobx";
8
8
  import { u as w } from "./useOverlayController-CGKumeGL.js";
9
9
  import D from "invariant";
10
10
  import { u as b } from "./useSelector-DpU7_HMO.js";
11
- import { a as T, g as N, u as R } from "./getActionGroupSlot-izllH4ID.js";
11
+ import { a as T, g as N, u as R } from "./getActionGroupSlot-Do-bk4GU.js";
12
12
  import "./propsContext-DzAKlmhS.js";
13
- import { P as $ } from "./PropsContextProvider-C6Z4XGp6.js";
13
+ import { P as V } from "./PropsContextProvider-C6Z4XGp6.js";
14
14
  import "@react-aria/utils";
15
15
  import "remeda";
16
16
  import { d as u } from "./dynamic-ClpUSmEt.js";
17
- import { u as V } from "./slotContext-DoCFkzCA.js";
17
+ import { u as $ } from "./slotContext-DoCFkzCA.js";
18
18
  const m = F(void 0), G = m.Provider, g = (o) => new Promise((t) => setTimeout(t, o)), f = {
19
19
  pending: 1e3,
20
20
  succeeded: 1500,
@@ -22,14 +22,14 @@ const m = F(void 0), G = m.Provider, g = (o) => new Promise((t) => setTimeout(t,
22
22
  };
23
23
  class C {
24
24
  constructor() {
25
- c(this, "showFeedback");
26
- c(this, "state", "isIdle");
27
- c(this, "setPendingTimeout");
28
- c(this, "error");
29
- c(this, "isAsync", !1);
25
+ a(this, "showFeedback");
26
+ a(this, "state", "isIdle");
27
+ a(this, "setPendingTimeout");
28
+ a(this, "error");
29
+ a(this, "isAsync", !1);
30
30
  O(this, {
31
- state: I,
32
- updateState: M,
31
+ state: M,
32
+ updateState: I,
33
33
  isBusy: E
34
34
  });
35
35
  }
@@ -46,7 +46,7 @@ class C {
46
46
  return b(() => this.isBusy, [this]);
47
47
  }
48
48
  get isBusy() {
49
- return this.state === "isExecuting" || this.state === "isPending";
49
+ return this.state !== "isIdle";
50
50
  }
51
51
  onAsyncStart() {
52
52
  this.isAsync = !0, this.updateState("isExecuting"), this.setPendingTimeout = window.setTimeout(
@@ -79,26 +79,26 @@ class C {
79
79
  this.updateState("isPending");
80
80
  }
81
81
  }
82
- const x = (o) => (...t) => {
83
- const e = [...o], s = e.shift();
84
- if (s) {
85
- const i = s(...t), n = () => e.length === 0 ? i : x(e)(...t);
86
- return i instanceof Promise ? i.then(n) : n();
82
+ const P = (o) => (...t) => {
83
+ const e = [...o], n = e.shift();
84
+ if (n) {
85
+ const s = n(...t), i = () => e.length === 0 ? s : P(e)(...t);
86
+ return s instanceof Promise ? s.then(i) : i();
87
87
  }
88
88
  }, d = () => {
89
89
  }, L = (o, t = {}) => {
90
90
  const {
91
91
  onSync: e = d,
92
- onAsync: s = d,
93
- then: i = d,
94
- catch: n = d,
95
- finally: r = d
92
+ onAsync: n = d,
93
+ then: s = d,
94
+ catch: i = d,
95
+ finally: c = d
96
96
  } = t;
97
97
  try {
98
- const a = o();
99
- return a instanceof Promise ? (s(), a.then(i).catch(n).finally(r)) : (e(), i(a), r(), a);
100
- } catch (a) {
101
- e(), n(a), r();
98
+ const r = o();
99
+ return r instanceof Promise ? (n(), r.then(s).catch(i).finally(c)) : (e(), s(r), c(), r);
100
+ } catch (r) {
101
+ e(), i(r), c();
102
102
  }
103
103
  }, U = () => {
104
104
  };
@@ -107,16 +107,16 @@ function j(o) {
107
107
  return o.confirmationModalController.open;
108
108
  const t = o.getOverlayController(), {
109
109
  action: e,
110
- toggleOverlay: s,
111
- closeOverlay: i,
112
- openOverlay: n
110
+ toggleOverlay: n,
111
+ closeOverlay: s,
112
+ openOverlay: i
113
113
  } = o.actionProps;
114
- return e || (n && t ? t.open : i && t || s && t ? t.close : U);
114
+ return e || (i && t ? t.open : s && t || n && t ? t.close : U);
115
115
  }
116
116
  class v {
117
117
  constructor(t) {
118
- c(this, "actions", []);
119
- c(this, "baseAction");
118
+ a(this, "actions", []);
119
+ a(this, "baseAction");
120
120
  this.baseAction = t;
121
121
  }
122
122
  addAction(t) {
@@ -125,94 +125,94 @@ class v {
125
125
  async executeBatch(t) {
126
126
  if (this.actions.length === 0)
127
127
  return;
128
- const e = this.actions[this.actions.length - 1].actionProps.showFeedback, s = this.baseAction.state.withFeedback(
128
+ const e = this.actions[this.actions.length - 1].actionProps.showFeedback, n = this.baseAction.state.withFeedback(
129
129
  this.baseAction.needsConfirmation ? !1 : e
130
- ), i = this.actions.map((a) => j(a)), n = x(i);
131
- let r;
132
- if (await L(() => n(...t), {
133
- onAsync: () => s.onAsyncStart(),
134
- then: () => s.onSucceeded(),
135
- catch: (a) => {
136
- s.onFailed(a), r = a;
130
+ ), s = this.actions.map((r) => j(r)), i = P(s);
131
+ let c;
132
+ if (await L(() => i(...t), {
133
+ onAsync: () => n.onAsyncStart(),
134
+ then: () => n.onSucceeded(),
135
+ catch: (r) => {
136
+ n.onFailed(r), c = r;
137
137
  }
138
- }), r)
139
- throw r;
138
+ }), c)
139
+ throw c;
140
140
  }
141
141
  }
142
142
  class q {
143
143
  constructor(t) {
144
- c(this, "action");
145
- c(this, "execute", (...t) => {
144
+ a(this, "action");
145
+ a(this, "execute", (...t) => {
146
146
  const e = this.getBatchedActions();
147
147
  (async () => {
148
- for (const i of e)
149
- await i.executeBatch(t);
150
- })().catch((i) => console.error(i));
148
+ for (const s of e)
149
+ await s.executeBatch(t);
150
+ })().catch((s) => console.error(s));
151
151
  });
152
- c(this, "getBatchedActions", () => {
152
+ a(this, "getBatchedActions", () => {
153
153
  let t = this.action;
154
154
  const e = [];
155
- let s = new v(
155
+ let n = new v(
156
156
  this.action
157
- ), i = 0;
157
+ ), s = 0;
158
158
  for (; t; ) {
159
- const { action: n, break: r, skip: a } = t.actionProps;
159
+ const { action: i, break: c, skip: r } = t.actionProps;
160
160
  if (t.needsConfirmation) {
161
- s.addAction(t);
161
+ n.addAction(t);
162
162
  break;
163
163
  }
164
- if (a) {
165
- i = a === !0 ? 1 : a, t = t.parentAction;
164
+ if (r) {
165
+ s = r === !0 ? 1 : r, t = t.parentAction;
166
166
  continue;
167
167
  }
168
- if (i > 0) {
169
- t = t.parentAction, i--;
168
+ if (s > 0) {
169
+ t = t.parentAction, s--;
170
170
  continue;
171
171
  }
172
- if (r)
172
+ if (c)
173
173
  break;
174
- n || (e.push(s), s = new v(this.action)), s.addAction(t), t = t.parentAction;
174
+ i || (e.push(n), n = new v(this.action)), n.addAction(t), t = t.parentAction;
175
175
  }
176
- return e.push(s), e;
176
+ return e.push(n), e;
177
177
  });
178
178
  this.action = t;
179
179
  }
180
180
  }
181
181
  class l {
182
182
  constructor(t) {
183
- c(this, "state");
184
- c(this, "needsConfirmation");
185
- c(this, "actionProps");
186
- c(this, "parentAction");
187
- c(this, "confirmationModalController");
188
- c(this, "overlayController");
189
- c(this, "execute", (...t) => {
183
+ a(this, "state");
184
+ a(this, "needsConfirmation");
185
+ a(this, "actionProps");
186
+ a(this, "parentAction");
187
+ a(this, "confirmationModalController");
188
+ a(this, "overlayController");
189
+ a(this, "execute", (...t) => {
190
190
  new q(this).execute(...t);
191
191
  });
192
192
  const {
193
193
  actionProps: e,
194
- needsConfirmation: s,
195
- parentAction: i,
196
- overlayController: n,
197
- confirmationModalController: r,
198
- state: a
194
+ needsConfirmation: n,
195
+ parentAction: s,
196
+ overlayController: i,
197
+ confirmationModalController: c,
198
+ state: r
199
199
  } = t;
200
- this.actionProps = e, this.parentAction = i, this.confirmationModalController = r, this.needsConfirmation = s, this.overlayController = n, this.state = a;
200
+ this.actionProps = e, this.parentAction = s, this.confirmationModalController = c, this.needsConfirmation = n, this.overlayController = i, this.state = r;
201
201
  }
202
202
  static useNew(t, e = {}) {
203
- const s = A(m), i = w(), n = w(), r = C.useNew();
203
+ const n = y(m), s = w(), i = w(), c = C.useNew();
204
204
  return new l({
205
- parentAction: s,
206
- overlayController: i,
207
- confirmationModalController: n,
205
+ parentAction: n,
206
+ overlayController: s,
207
+ confirmationModalController: i,
208
208
  needsConfirmation: !1,
209
209
  actionProps: t,
210
- state: r,
210
+ state: c,
211
211
  ...e
212
212
  });
213
213
  }
214
214
  static use() {
215
- const t = A(m);
215
+ const t = y(m);
216
216
  return D(!!t, "Action context is not defined"), T.useRegisterState(t.state), t;
217
217
  }
218
218
  static useConfirmationAction() {
@@ -238,45 +238,49 @@ class l {
238
238
  return t(this.actionProps.openOverlay) ?? t(this.actionProps.closeOverlay) ?? t(this.actionProps.toggleOverlay);
239
239
  }
240
240
  }
241
- const z = (o) => V()[o], p = (o) => z("Modal") === "actionConfirm" ? N(o) : void 0, h = (o) => {
242
- const t = l.use(), e = t.state.useValue(), s = p(o) === "primary", i = t.confirmationModalController.useIsOpen();
243
- return t.needsConfirmation && i && !s ? "isIdle" : e;
244
- }, it = (o) => {
245
- const { children: t, ...e } = o, s = l.useNew(e), i = {
246
- Button: {
247
- onPress: u((n) => {
248
- const r = l.use(), a = l.useConfirmationAction(), P = p(n) === "primary";
249
- return p(n) === "abort" ? r.confirmationModalController.close : P ? a.execute : r.execute;
250
- }),
251
- isPending: u(
252
- (n) => h(n) === "isPending"
253
- ),
254
- isSucceeded: u(
255
- (n) => h(n) === "isSucceeded"
256
- ),
257
- isFailed: u((n) => h(n) === "isFailed"),
258
- "aria-disabled": u(() => {
259
- const n = h(o), r = R().useIsBusy();
260
- return n === "isExecuting" || r;
261
- })
262
- },
241
+ const z = (o) => $()[o], p = (o) => z("Modal") === "actionConfirm" ? N(o) : void 0, h = (o) => {
242
+ const t = l.use(), e = t.state.useValue(), n = p(o) === "primary", s = t.confirmationModalController.useIsOpen();
243
+ return t.needsConfirmation && s && !n ? "isIdle" : e;
244
+ }, x = {
245
+ onPress: u((o) => {
246
+ const t = l.use(), e = l.useConfirmationAction(), n = p(o) === "primary";
247
+ return p(o) === "abort" ? t.confirmationModalController.close : n ? e.execute : t.execute;
248
+ }),
249
+ isPending: u((o) => h(o) === "isPending"),
250
+ isSucceeded: u(
251
+ (o) => h(o) === "isSucceeded"
252
+ ),
253
+ isFailed: u((o) => h(o) === "isFailed"),
254
+ "aria-disabled": u((o) => {
255
+ const t = h(o), e = R().useIsBusy();
256
+ return t === "isExecuting" || e;
257
+ })
258
+ }, st = (o) => {
259
+ const { children: t, ...e } = o, n = l.useNew(e), s = {
260
+ Button: x,
263
261
  Link: {
264
262
  onPress: u(() => l.use().execute)
265
263
  },
266
264
  Modal: {
267
- slot: u((n) => {
268
- const { slot: r } = n, a = l.use();
269
- return a.needsConfirmation = r === "actionConfirm", r;
265
+ slot: u((i) => {
266
+ const { slot: c } = i, r = l.use();
267
+ return r.needsConfirmation = c === "actionConfirm", c;
268
+ }),
269
+ isDismissable: u((i) => {
270
+ const r = l.use().state.useValue();
271
+ return r === "isExecuting" || r === "isPending" ? !1 : i.isDismissable;
270
272
  }),
271
- isDismissable: u((n) => l.use().state.useIsBusy() ? !1 : n.isDismissable),
272
273
  controller: u(() => {
273
- const n = l.use();
274
- return n.needsConfirmation ? n.confirmationModalController : n.getOverlayController();
275
- })
274
+ const i = l.use();
275
+ return i.needsConfirmation ? i.confirmationModalController : i.getOverlayController();
276
+ }),
277
+ ActionGroup: {
278
+ Button: x
279
+ }
276
280
  }
277
281
  };
278
- return /* @__PURE__ */ y.createElement(G, { value: s }, /* @__PURE__ */ y.createElement($, { props: i, mergeInParentContext: !0 }, t));
282
+ return /* @__PURE__ */ A.createElement(G, { value: n }, /* @__PURE__ */ A.createElement(V, { props: s, mergeInParentContext: !0 }, t));
279
283
  };
280
284
  export {
281
- it as A
285
+ st as A
282
286
  };
package/dist/Action.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use client"
2
2
  /* */
3
- import { A as t } from "./Action-Dp9FyJCZ.js";
3
+ import { A as t } from "./Action-BGsLXvb9.js";
4
4
  export {
5
5
  t as Action,
6
6
  t as default
@@ -9,7 +9,7 @@ import { d as e } from "./dynamic-ClpUSmEt.js";
9
9
  import i from "clsx";
10
10
  import { f as g } from "./flowComponent-CPKCCJEg.js";
11
11
  import { TunnelProvider as E, TunnelExit as n } from "@mittwald/react-tunnel";
12
- import { A as C, g as a } from "./getActionGroupSlot-izllH4ID.js";
12
+ import { A as C, g as a } from "./getActionGroupSlot-Do-bk4GU.js";
13
13
  const G = "flow--action-group--action-group-container", v = "flow--action-group", x = "flow--action-group--primary", N = "flow--action-group--secondary", P = "flow--action-group--abort", r = {
14
14
  actionGroupContainer: G,
15
15
  actionGroup: v,
@@ -1,7 +1,7 @@
1
1
  "use client"
2
2
  /* */
3
- import { C as t } from "./ContextMenuTrigger-BwhLrGm5.js";
4
- import { a } from "./ContextMenuTrigger-BwhLrGm5.js";
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
+ };
@@ -15,7 +15,7 @@ import "@react-aria/utils";
15
15
  import "remeda";
16
16
  import "dot-prop";
17
17
  import { f as C } from "./flowComponent-CPKCCJEg.js";
18
- import { A as E } from "./Action-Dp9FyJCZ.js";
18
+ import { A as E } from "./Action-BGsLXvb9.js";
19
19
  const B = {
20
20
  "de-DE": {
21
21
  "copyButton.copy": "Kopieren"
@@ -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 h, IconExternalLink as f, IconFilter as d, IconEyeCancel as x, IconHome as C, IconInbox as S, IconList as v, IconPower as b, IconUsersGroup as g, 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";
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, a as ln, b as rn } from "./IconWarning-DFG_1t6M.js";
18
- import { I as In, a as mn } from "./IconPlus-CAQpgAH5.js";
19
- import { I as En } from "./IconPending-BV7TXz8_.js";
20
- import { a as pn, I as hn } from "./IconRadioOn-BIS8wd64.js";
21
- import { I as dn } from "./IconSearch-DadOOeXe.js";
22
- 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(h, null)), oe = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(f, 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(b, null)), Ee = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(g, 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)), he = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(D, null)), fe = (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)), be = (e) => /* @__PURE__ */ n.createElement(t, { ...e }, /* @__PURE__ */ n.createElement(P, null)), ge = (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(
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
- In as IconMinus,
70
+ rn as IconMinus,
70
71
  Fe as IconMittwald,
71
72
  ie as IconNotification,
72
- En as IconPending,
73
- mn as IconPlus,
73
+ mn as IconPending,
74
+ an as IconPlus,
74
75
  pe as IconProject,
75
- pn as IconRadioOff,
76
- hn as IconRadioOn,
77
- he as IconRandom,
78
- fe as IconSave,
79
- dn as IconSearch,
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
- be as IconSorting,
86
- ge as IconSpamProtectionOff,
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
- ln as IconSuccess,
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
- rn as IconWarning
97
+ xn as IconWarning
97
98
  };
@@ -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-Dj5p-iL1.js";
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-BwhLrGm5.js";
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";