@mittwald/flow-react-components 0.1.0-alpha.43 → 0.1.0-alpha.44
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/IconChevronUp-_2GHUOdG.js +10 -0
- package/dist/IconPlus-D0cizRQb.js +10 -0
- package/dist/Icons.js +27 -26
- package/dist/InlineCode-CVs3jCiw.js +13 -0
- package/dist/InlineCode.js +3 -10
- package/dist/List/ListLoaderAsyncResource.js +8 -0
- package/dist/List.js +546 -0
- package/dist/NumberField.js +12 -11
- package/dist/styles.css +1 -1
- package/dist/types/components/List/List.d.ts +7 -0
- package/dist/types/components/List/List.test.d.ts +1 -0
- package/dist/types/components/List/components/DataLoader/DataLoader.d.ts +3 -0
- package/dist/types/components/List/components/DataLoader/components/SuspenseFallback/SuspenseFallback.d.ts +6 -0
- package/dist/types/components/List/components/DataLoader/components/SuspenseFallback/index.d.ts +3 -0
- package/dist/types/components/List/components/DataLoader/index.d.ts +3 -0
- package/dist/types/components/List/components/FilterBar/FilterBar.d.ts +6 -0
- package/dist/types/components/List/components/FilterBar/components/FilterPicker/FilterPicker.d.ts +2 -0
- package/dist/types/components/List/components/FilterBar/components/FilterPicker/index.d.ts +3 -0
- package/dist/types/components/List/components/FilterBar/components/FilterPickerItem/FilterPickerItem.d.ts +8 -0
- package/dist/types/components/List/components/FilterBar/components/FilterPickerItem/index.d.ts +3 -0
- package/dist/types/components/List/components/FilterBar/components/SortingPicker/SortingPicker.d.ts +2 -0
- package/dist/types/components/List/components/FilterBar/components/SortingPicker/index.d.ts +3 -0
- package/dist/types/components/List/components/FilterBar/components/SortingPickerItem/SortingPickerItem.d.ts +8 -0
- package/dist/types/components/List/components/FilterBar/components/SortingPickerItem/index.d.ts +3 -0
- package/dist/types/components/List/components/FilterBar/index.d.ts +3 -0
- package/dist/types/components/List/components/Item/FallbackRenderer.d.ts +7 -0
- package/dist/types/components/List/components/Item/Item.d.ts +5 -0
- package/dist/types/components/List/components/Item/index.d.ts +3 -0
- package/dist/types/components/List/components/Items/Items.d.ts +6 -0
- package/dist/types/components/List/components/Items/index.d.ts +3 -0
- package/dist/types/components/List/components/ListFilter.d.ts +5 -0
- package/dist/types/components/List/components/ListItemView.d.ts +6 -0
- package/dist/types/components/List/components/ListLoaderAsync.d.ts +6 -0
- package/dist/types/components/List/components/ListLoaderAsyncResource.d.ts +6 -0
- package/dist/types/components/List/components/ListSorting.d.ts +5 -0
- package/dist/types/components/List/components/ListStaticData.d.ts +5 -0
- package/dist/types/components/List/components/PaginationInfos/PaginationInfos.d.ts +4 -0
- package/dist/types/components/List/components/PaginationInfos/index.d.ts +3 -0
- package/dist/types/components/List/components/ShowMoreItemsButton/ShowMoreItemsButton.d.ts +4 -0
- package/dist/types/components/List/components/ShowMoreItemsButton/index.d.ts +3 -0
- package/dist/types/components/List/hooks/useList.d.ts +1 -0
- package/dist/types/components/List/index.d.ts +8 -0
- package/dist/types/components/List/listContext.d.ts +8 -0
- package/dist/types/components/List/model/List.d.ts +21 -0
- package/dist/types/components/List/model/ReactTable.d.ts +17 -0
- package/dist/types/components/List/model/filter/Filter.d.ts +26 -0
- package/dist/types/components/List/model/filter/types.d.ts +9 -0
- package/dist/types/components/List/model/item/Item.d.ts +14 -0
- package/dist/types/components/List/model/item/ItemCollection.d.ts +8 -0
- package/dist/types/components/List/model/item/types.d.ts +5 -0
- package/dist/types/components/List/model/loading/IncrementalLoader.d.ts +23 -0
- package/dist/types/components/List/model/loading/types.d.ts +43 -0
- package/dist/types/components/List/model/pagination/Pagination.d.ts +16 -0
- package/dist/types/components/List/model/pagination/types.d.ts +3 -0
- package/dist/types/components/List/model/sorting/Sorting.d.ts +12 -0
- package/dist/types/components/List/model/sorting/types.d.ts +4 -0
- package/dist/types/components/List/model/types.d.ts +14 -0
- package/dist/types/components/List/stories/Default.stories.d.ts +6 -0
- package/dist/types/components/List/testData/userApi.d.ts +57 -0
- package/dist/types/lib/react/components/Empty/Empty.d.ts +3 -0
- package/dist/types/lib/react/components/Empty/index.d.ts +3 -0
- package/dist/types/lib/react/components/Render/Render.d.ts +4 -0
- package/dist/types/lib/react/components/Render/Render.test.d.ts +1 -0
- package/dist/types/lib/react/components/Render/index.d.ts +1 -0
- package/dist/types/lib/react/deepFindOfType.d.ts +3 -0
- package/dist/types/lib/react/deepFindOfType.test.d.ts +1 -0
- package/dist/types/lib/react/deepHas.d.ts +2 -0
- package/package.json +23 -2
- package/dist/IconPlus-C2E1lBEu.js +0 -12
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
import o from "react";
|
|
4
|
+
import { IconChevronDown as r, IconChevronUp as t } from "@tabler/icons-react";
|
|
5
|
+
import { I as n } from "./Icon-S-6j_Kl3.js";
|
|
6
|
+
const I = (e) => /* @__PURE__ */ o.createElement(n, { ...e }, /* @__PURE__ */ o.createElement(r, null)), l = (e) => /* @__PURE__ */ o.createElement(n, { ...e }, /* @__PURE__ */ o.createElement(t, null));
|
|
7
|
+
export {
|
|
8
|
+
I,
|
|
9
|
+
l as a
|
|
10
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
import e from "react";
|
|
4
|
+
import { IconMinus as t, IconPlus as c } from "@tabler/icons-react";
|
|
5
|
+
import { I as o } from "./Icon-S-6j_Kl3.js";
|
|
6
|
+
const r = (n) => /* @__PURE__ */ e.createElement(o, { ...n }, /* @__PURE__ */ e.createElement(t, null)), m = (n) => /* @__PURE__ */ e.createElement(o, { ...n }, /* @__PURE__ */ e.createElement(c, null));
|
|
7
|
+
export {
|
|
8
|
+
r as I,
|
|
9
|
+
m as a
|
|
10
|
+
};
|
package/dist/Icons.js
CHANGED
|
@@ -1,32 +1,33 @@
|
|
|
1
1
|
"use client"
|
|
2
2
|
/* */
|
|
3
3
|
import e from "react";
|
|
4
|
-
import { IconAppWindow as o, IconArrowLeft as l, IconClock as c, IconChevronLeft as a, IconChevronRight as r, IconCalendarCheck as I, IconBuilding as m, IconLayoutBoard as s, IconDatabase as E, IconCalendar as u, IconTrash as i, IconWorld as h, IconMail as p, IconExternalLink as
|
|
4
|
+
import { IconAppWindow as o, IconArrowLeft as l, IconClock as c, IconChevronLeft as a, IconChevronRight as r, IconCalendarCheck as I, IconBuilding as m, IconLayoutBoard as s, IconDatabase as E, IconCalendar as u, IconTrash as i, IconWorld as h, IconMail as p, IconExternalLink as f, IconFilter as C, IconEyeCancel as d, IconHome as S, IconList as L, IconPower as g, IconUsersGroup as x, IconBell as v, IconArchive as k, IconDice3 as D, IconSearch as $, IconListSearch as b, IconServer as w, IconSettings as H, IconEye as y, IconAdjustmentsHorizontal as A, IconDoor as B, IconHeadset as F, IconFileX as R, IconLayoutGrid as P } from "@tabler/icons-react";
|
|
5
5
|
import { I as t } from "./Icon-S-6j_Kl3.js";
|
|
6
6
|
import { I as ge } from "./IconCheck-1PRSXamm.js";
|
|
7
|
-
import { I as
|
|
8
|
-
import { I as
|
|
9
|
-
import { I as
|
|
10
|
-
import { I as
|
|
11
|
-
import { I as
|
|
12
|
-
import { I as
|
|
13
|
-
import { I as
|
|
14
|
-
|
|
7
|
+
import { I as ve, a as ke } from "./IconUnchecked-DuOQbrqC.js";
|
|
8
|
+
import { I as $e, a as be } from "./IconChevronUp-_2GHUOdG.js";
|
|
9
|
+
import { I as He } from "./IconClose-D-8Y7fMZ.js";
|
|
10
|
+
import { I as Ae } from "./IconCopy-C1yg9WXZ.js";
|
|
11
|
+
import { I as Fe } from "./IconDanger-Dd6HnAx9.js";
|
|
12
|
+
import { I as Pe, a as Te, b as je } from "./IconSucceeded-BvrlGH02.js";
|
|
13
|
+
import { I as Ue, a as We, b as Ge } from "./IconWarning-h9MeCuZE.js";
|
|
14
|
+
import { I as ze, a as Ne } from "./IconPlus-D0cizRQb.js";
|
|
15
|
+
const U = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(o, null)), W = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(l, null)), G = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(c, null)), V = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(a, null)), z = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(r, null)), N = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(I, null)), X = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(m, null)), q = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(s, null)), J = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(E, null)), K = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(u, null)), O = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(i, null)), Q = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(h, null)), Y = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(p, null)), Z = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(f, null)), _ = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(C, null)), ee = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(d, null)), ne = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(S, null)), te = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(L, null)), ce = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(g, null)), oe = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(x, null)), le = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(v, null)), ae = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(k, null)), re = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(D, null)), Ie = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement($, null)), me = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(b, null)), se = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(w, null)), Ee = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(H, null)), ue = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(y, null)), ie = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(A, null)), he = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(B, null)), pe = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(F, null)), fe = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(R, null)), Ce = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(P, null)), de = (n) => /* @__PURE__ */ e.createElement(t, { ...n }, /* @__PURE__ */ e.createElement(c, null));
|
|
15
16
|
export {
|
|
16
17
|
U as IconApp,
|
|
17
18
|
W as IconBackLink,
|
|
18
19
|
G as IconBackup,
|
|
19
20
|
ge as IconCheck,
|
|
20
|
-
|
|
21
|
-
|
|
21
|
+
ve as IconChecked,
|
|
22
|
+
$e as IconChevronDown,
|
|
22
23
|
V as IconChevronLeft,
|
|
23
24
|
z as IconChevronRight,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
be as IconChevronUp,
|
|
26
|
+
He as IconClose,
|
|
27
|
+
Ae as IconCopy,
|
|
27
28
|
N as IconCronjob,
|
|
28
29
|
X as IconCustomer,
|
|
29
|
-
|
|
30
|
+
Fe as IconDanger,
|
|
30
31
|
q as IconDashboard,
|
|
31
32
|
J as IconDatabase,
|
|
32
33
|
K as IconDate,
|
|
@@ -34,18 +35,18 @@ export {
|
|
|
34
35
|
Q as IconDomain,
|
|
35
36
|
Y as IconEmail,
|
|
36
37
|
Z as IconExternalLink,
|
|
37
|
-
|
|
38
|
+
Pe as IconFailed,
|
|
38
39
|
_ as IconFilter,
|
|
39
40
|
ee as IconHide,
|
|
40
41
|
ne as IconHome,
|
|
41
|
-
|
|
42
|
+
Ue as IconInfo,
|
|
42
43
|
te as IconListView,
|
|
43
44
|
ce as IconLogout,
|
|
44
45
|
oe as IconMember,
|
|
45
|
-
|
|
46
|
+
ze as IconMinus,
|
|
46
47
|
le as IconNotification,
|
|
47
|
-
|
|
48
|
-
|
|
48
|
+
Te as IconPending,
|
|
49
|
+
Ne as IconPlus,
|
|
49
50
|
ae as IconProject,
|
|
50
51
|
re as IconRandom,
|
|
51
52
|
Ie as IconSearch,
|
|
@@ -55,12 +56,12 @@ export {
|
|
|
55
56
|
ue as IconShow,
|
|
56
57
|
ie as IconSorting,
|
|
57
58
|
he as IconSshSftp,
|
|
58
|
-
|
|
59
|
-
|
|
59
|
+
je as IconSucceeded,
|
|
60
|
+
We as IconSuccess,
|
|
60
61
|
pe as IconSupport,
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
62
|
+
fe as IconTerminate,
|
|
63
|
+
Ce as IconTileView,
|
|
64
|
+
de as IconTime,
|
|
64
65
|
ke as IconUnchecked,
|
|
65
|
-
|
|
66
|
+
Ge as IconWarning
|
|
66
67
|
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
/* */
|
|
3
|
+
import c from "react";
|
|
4
|
+
import l from "clsx";
|
|
5
|
+
const i = "flow--inline-code", r = {
|
|
6
|
+
inlineCode: i
|
|
7
|
+
}, d = (e) => {
|
|
8
|
+
const { children: o, className: n, ...s } = e, t = l(r.inlineCode, n);
|
|
9
|
+
return /* @__PURE__ */ c.createElement("code", { ...s, className: t }, o);
|
|
10
|
+
};
|
|
11
|
+
export {
|
|
12
|
+
d as I
|
|
13
|
+
};
|
package/dist/InlineCode.js
CHANGED
|
@@ -1,14 +1,7 @@
|
|
|
1
1
|
"use client"
|
|
2
2
|
/* */
|
|
3
|
-
import
|
|
4
|
-
import c from "clsx";
|
|
5
|
-
const i = "flow--inline-code", r = {
|
|
6
|
-
inlineCode: i
|
|
7
|
-
}, m = (e) => {
|
|
8
|
-
const { children: o, className: n, ...s } = e, t = c(r.inlineCode, n);
|
|
9
|
-
return /* @__PURE__ */ l.createElement("code", { ...s, className: t }, o);
|
|
10
|
-
};
|
|
3
|
+
import { I as o } from "./InlineCode-CVs3jCiw.js";
|
|
11
4
|
export {
|
|
12
|
-
|
|
13
|
-
|
|
5
|
+
o as InlineCode,
|
|
6
|
+
o as default
|
|
14
7
|
};
|