@mittwald/flow-react-components 0.1.0-alpha.397 → 0.1.0-alpha.399
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/CHANGELOG.md +25 -0
- package/dist/css/List.css +1 -1
- package/dist/js/ContextMenu.js +3 -3
- package/dist/js/{ContextMenuSection-CmajFz_f.js → ContextMenuSection-kLzjPKqH.js} +12 -12
- package/dist/js/{ContextMenuTrigger-BAV29sr-.js → ContextMenuTrigger-C6ZCPTHC.js} +1 -1
- package/dist/js/Icons.js +125 -121
- package/dist/js/List.js +575 -538
- package/dist/js/{Section-wjl9OuOK.js → Section-BPfvjI0d.js} +1 -1
- package/dist/js/Section.js +1 -1
- package/dist/js/Tabs.js +2 -2
- package/dist/js/all.css +1 -1
- package/dist/js/types/components/Icon/components/icons/IconBulb.d.ts +4 -0
- package/dist/js/types/components/Icon/components/icons/IconDesktop.d.ts +4 -0
- package/dist/js/types/components/Icon/components/icons/IconLink.d.ts +4 -0
- package/dist/js/types/components/Icon/components/icons/IconMobile.d.ts +4 -0
- package/dist/js/types/components/Icon/components/icons/index.d.ts +4 -0
- package/dist/js/types/components/List/components/Items/Items.d.ts +4 -1
- package/dist/js/types/components/List/components/Items/components/Item/Item.d.ts +4 -1
- package/dist/js/types/components/List/model/List.d.ts +3 -3
- package/dist/js/types/components/List/model/item/ItemView.d.ts +5 -1
- package/dist/js/types/components/List/model/types.d.ts +1 -1
- package/dist/js/types/components/List/stories/ListItem.stories.d.ts +1 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,31 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.1.0-alpha.399](https://github.com/mittwald/flow/compare/0.1.0-alpha.398...0.1.0-alpha.399) (2025-01-22)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **icon:** add mobile, desktop, link and bulb icon
|
|
11
|
+
([#1123](https://github.com/mittwald/flow/issues/1123))
|
|
12
|
+
([30e6700](https://github.com/mittwald/flow/commit/30e6700baa8103ffb242ba8363ab7bea14c404a6))
|
|
13
|
+
|
|
14
|
+
# Change Log
|
|
15
|
+
|
|
16
|
+
All notable changes to this project will be documented in this file. See
|
|
17
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
18
|
+
|
|
19
|
+
# [0.1.0-alpha.398](https://github.com/mittwald/flow/compare/0.1.0-alpha.397...0.1.0-alpha.398) (2025-01-22)
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
- **List:** add tile view
|
|
24
|
+
([2058342](https://github.com/mittwald/flow/commit/205834235c856b649b0fd1be26b9693f86cbb9dc))
|
|
25
|
+
|
|
26
|
+
# Change Log
|
|
27
|
+
|
|
28
|
+
All notable changes to this project will be documented in this file. See
|
|
29
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
30
|
+
|
|
6
31
|
# [0.1.0-alpha.397](https://github.com/mittwald/flow/compare/0.1.0-alpha.396...0.1.0-alpha.397) (2025-01-21)
|
|
7
32
|
|
|
8
33
|
### Features
|
package/dist/css/List.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";.flow--list--items--item--view{display:flex;padding:var(--list-item--padding);gap:var(--list-item--spacing);align-items:
|
|
1
|
+
@charset "UTF-8";.flow--list--items--item--view{display:flex;padding:var(--list-item--padding);gap:var(--list-item--spacing);align-items:center;flex-wrap:wrap}.flow--list--items--item--view .flow--list--items--item--view--content{display:flex;flex-wrap:wrap;gap:var(--list-item--spacing);align-items:center;flex-grow:1}.flow--list--items--item--view .flow--list--items--item--view--title{order:0;flex-grow:1;display:grid;grid-column-gap:var(--list-item--avatar-to-title-spacing);grid-template-areas:"avatar title " "avatar subtitle";grid-template-columns:auto 1fr}.flow--list--items--item--view .flow--list--items--item--view--title:empty,.flow--list--items--item--view .flow--list--items--item--view--title .flow--list--items--item--view--sub-title:empty{display:none}.flow--list--items--item--view .flow--list--items--item--view--title:not(:has(.flow--list--items--item--view--avatar)){grid-template-areas:"title " "subtitle";grid-template-columns:1fr}.flow--list--items--item--view .flow--list--items--item--view--title:has(.flow--list--items--item--view--sub-title:empty){grid-template-areas:"avatar title"}.flow--list--items--item--view .flow--list--items--item--view--title:has(.flow--list--items--item--view--sub-title:empty):not(:has(.flow--list--items--item--view--avatar)){grid-template-areas:"title"}.flow--list--items--item--view .flow--list--items--item--view--title .flow--list--items--item--view--avatar{grid-area:avatar;align-self:center}.flow--list--items--item--view .flow--list--items--item--view--title .flow--list--items--item--view--heading{grid-area:title;align-self:center}.flow--list--items--item--view .flow--list--items--item--view--title .flow--list--items--item--view--sub-title{grid-area:subtitle;font-size:var(--list-item--subtitle-font-size)}.flow--list--items--item--view .flow--list--items--item--view--title .flow--list--items--item--view--sub-title .flow--list--items--item--view--text:not(:last-child):after{content:"–";display:inline-block;margin:0 var(--size-rem--s)}.flow--list--items--item--view .flow--list--items--item--view--top-content{order:2}.flow--list--items--item--view .flow--list--items--item--view--action{margin-left:auto}.flow--list--items--item--view .flow--list--items--item--view--bottom-content{order:4;width:100%}.flow--list--items--item--view.flow--list--items--item--view--tile{padding:0}.flow--list--items--item--view.flow--list--items--item--view--tile .flow--list--items--item--view--action{display:none}.flow--list--items--item--view.flow--list--items--item--view--tile .flow--list--items--item--view--avatar-container{width:100%;overflow:hidden;border-bottom-color:var(--list-item--border-color);border-bottom-width:var(--list-item--border-width);border-bottom-style:var(--list-item--border-style);border-top-left-radius:var(--corner-radius--default);border-top-right-radius:var(--corner-radius--default);aspect-ratio:16/9}.flow--list--items--item--view.flow--list--items--item--view--tile .flow--list--items--item--view--avatar{width:100%;height:100%;border-radius:0}.flow--list--items--item--view.flow--list--items--item--view--tile .flow--list--items--item--view--avatar .flow--avatar--icon{width:var(--size-px--xxl);height:var(--size-px--xxl)}.flow--list--items--item--view.flow--list--items--item--view--tile .flow--list--items--item--view--avatar .flow--avatar--initials{font-size:var(--size-px--xxl)}.flow--list--items--item--view.flow--list--items--item--view--tile .flow--list--items--item--view--content{display:flex;justify-content:space-between;align-items:start;padding-inline:var(--list-item--spacing);padding-bottom:var(--list-item--spacing);width:100%}.flow--list--items--item--view.flow--list--items--item--view--tile .flow--list--items--item--view--top-content{width:100%}.flow--list--list-summary{border-width:var(--list-item--border-width);border-bottom-width:0;border-style:var(--list-item--border-style);border-color:var(--list-item--border-color);padding:var(--list-item--padding);border-top-left-radius:var(--list-item--corner-radius);border-top-right-radius:var(--list-item--corner-radius)}.flow--list--header{display:flex;flex-direction:column;row-gap:var(--list--spacing)}.flow--list--header .flow--list--header--picker-list-and-search{display:flex;gap:var(--list--block-to-block-spacing);align-items:center;justify-content:space-between;flex-wrap:wrap-reverse}.flow--list--header .flow--list--header--picker-list{display:flex;flex-wrap:wrap;gap:var(--list--spacing)}.flow--list--header .flow--list--header--search-and-actions{display:flex;flex-grow:1;gap:var(--list--spacing);flex-wrap:wrap-reverse;justify-content:end}.flow--list--header .flow--list--header--search-field{max-width:180px;flex-grow:1;transition:max-width var(--transition--duration--default)}.flow--list--header .flow--list--header--search-field:has(input:focus){max-width:600px}.flow--list--header--active-filters{display:flex;flex-direction:row;column-gap:var(--list--spacing);row-gap:var(--list--spacing);flex-wrap:wrap;align-items:center}.flow--list--header--active-filters .flow--list--header--active-filters--clear-button{margin-inline-start:auto}.flow--list{display:flex;flex-direction:column;row-gap:var(--list--block-to-block-spacing);container-type:inline-size}.flow--list :has(.flow--list--list-summary) .flow--list--items,.flow--list :has(.flow--list--list-summary) .flow--list--table{border-top-left-radius:0;border-top-right-radius:0}.flow--list--items{display:flex;flex-direction:column;border-radius:var(--list-item--corner-radius);border-color:var(--list-item--border-color);border-width:var(--list-item--border-width);border-style:var(--list-item--border-style);overflow:hidden}.flow--list--items:empty{display:none}.flow--list--items.flow--list--items--is-loading{pointer-events:none;opacity:.5}.flow--list--items[data-empty=true]{border:none}.flow--list--items.flow--list--items--tiles{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));border:none;gap:var(--list-item--spacing)}.flow--list--items--item{cursor:default;background-color:var(--list-item--background-color--default)}.flow--list--items--item{outline-color:var(--focus--outline-color);outline-offset:var(--focus--outline-offset);outline-width:var(--focus--outline-width);outline-style:none}.flow--list--items--item[data-focused],.flow--list--items--item:focus{outline-style:none}.flow--list--items--item[data-focus-visible],.flow--list--items--item:focus-visible{outline-style:auto}.flow--list--items--item[data-focused]:not([data-focus-visible]):focus-visible{outline-style:none}.flow--list--items--item.flow--list--items--item{outline-offset:calc(var(--size-px--xs) * -1)}.flow--list--items--item:where(.flow--list--items--item--is-selected){background-color:var(--list-item--background-color--pressed)}.flow--list--items--item:not(:last-child){border-bottom-color:var(--list-item--border-color);border-bottom-width:var(--list-item--border-width);border-bottom-style:var(--list-item--border-style)}.flow--list--items--item:where(.flow--list--items--item--has-action):not(.flow--list--items--item--is-selected):hover{background-color:var(--list-item--background-color--hover)}.flow--list--items--item:where(.flow--list--items--item--has-action)[data-pressed]{background-color:var(--list-item--background-color--pressed)}.flow--list--items--item.flow--list--items--item--tile{border-color:var(--list-item--border-color);border-width:var(--list-item--border-width);border-style:var(--list-item--border-style);border-radius:var(--list-item--corner-radius)}.flow--list--items--item.flow--list--items--item--tile:where(.flow--list--items--item--has-action):not(.flow--list--items--item--is-selected):hover .flow--avatar{filter:brightness(var(--image-button--brightness--hover))}.flow--list--items--item.flow--list--items--item--tile:where(.flow--list--items--item--has-action)[data-pressed] .flow--avatar{filter:brightness(var(--image-button--brightness--pressed))}.flow--list--footer{font-size:var(--font-size-text--s);display:flex;flex-direction:column;align-items:center;row-gap:var(--list--spacing)}.flow--list--table.flow--list--table--is-loading{pointer-events:none;opacity:.5}.flow--list--table--row.flow--list--table--is-selected{background-color:var(--list-item--background-color--pressed)}.flow--list--table--row:where(.flow--list--table--has-action){cursor:default}.flow--list--table--row:where(.flow--list--table--has-action):not(.flow--list--table--is-selected):hover{background-color:var(--list-item--background-color--hover)}.flow--list--table--row:where(.flow--list--table--has-action)[data-pressed]{background-color:var(--list-item--background-color--pressed)}
|
package/dist/js/ContextMenu.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client"
|
|
2
2
|
/* */
|
|
3
|
-
import { C as t } from "./ContextMenuTrigger-
|
|
4
|
-
import { a as n } from "./ContextMenuTrigger-
|
|
3
|
+
import { C as t } from "./ContextMenuTrigger-C6ZCPTHC.js";
|
|
4
|
+
import { a as n } from "./ContextMenuTrigger-C6ZCPTHC.js";
|
|
5
5
|
import { M as x } from "./MenuItem-D5BsewlU.js";
|
|
6
|
-
import { C as f } from "./ContextMenuSection-
|
|
6
|
+
import { C as f } from "./ContextMenuSection-kLzjPKqH.js";
|
|
7
7
|
export {
|
|
8
8
|
t as ContextMenu,
|
|
9
9
|
f as ContextMenuSection,
|
|
@@ -3,41 +3,41 @@
|
|
|
3
3
|
import * as o from "react-aria-components";
|
|
4
4
|
import t from "react";
|
|
5
5
|
import "./propsContext-DzAKlmhS.js";
|
|
6
|
-
import { PropsContextProvider as
|
|
6
|
+
import { PropsContextProvider as l } from "./PropsContextProvider.js";
|
|
7
7
|
import "@react-aria/utils";
|
|
8
8
|
import "remeda";
|
|
9
|
-
import { f as
|
|
9
|
+
import { f as m } from "./flowComponent-BQs9wMX_.js";
|
|
10
10
|
import { A as r } from "./Action-Bm7dBV7s.js";
|
|
11
11
|
const p = "flow--context-menu", u = "flow--context-menu--section", x = {
|
|
12
12
|
contextMenu: p,
|
|
13
13
|
section: u
|
|
14
|
-
},
|
|
14
|
+
}, f = (e) => e === "navigation" ? "none" : e === "switch" ? "multiple" : e, C = (e) => e === "single" || e === "multiple" ? "control" : e, g = (e) => e === "multiple" ? void 0 : "ContextMenu", A = m(
|
|
15
15
|
"ContextMenuSection",
|
|
16
16
|
(e) => {
|
|
17
|
-
const { children:
|
|
17
|
+
const { children: s, selectionMode: n, ...c } = e, i = C(n), a = {
|
|
18
18
|
Heading: {
|
|
19
19
|
level: 5,
|
|
20
20
|
wrapWith: /* @__PURE__ */ t.createElement(o.Header, null)
|
|
21
21
|
},
|
|
22
22
|
MenuItem: {
|
|
23
|
-
selectionVariant:
|
|
23
|
+
selectionVariant: i
|
|
24
24
|
}
|
|
25
25
|
};
|
|
26
26
|
return /* @__PURE__ */ t.createElement(
|
|
27
27
|
o.MenuSection,
|
|
28
28
|
{
|
|
29
|
-
...
|
|
30
|
-
selectionMode:
|
|
29
|
+
...c,
|
|
30
|
+
selectionMode: f(n),
|
|
31
31
|
className: x.section
|
|
32
32
|
},
|
|
33
|
-
/* @__PURE__ */ t.createElement(
|
|
33
|
+
/* @__PURE__ */ t.createElement(l, { props: a, mergeInParentContext: !0 }, /* @__PURE__ */ t.createElement(r, { skip: !0 }, /* @__PURE__ */ t.createElement(r, { closeOverlay: g(n) }, s)))
|
|
34
34
|
);
|
|
35
35
|
}
|
|
36
36
|
);
|
|
37
37
|
export {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
g,
|
|
38
|
+
A as C,
|
|
39
|
+
g as a,
|
|
40
|
+
C as b,
|
|
41
|
+
f as g,
|
|
42
42
|
x as s
|
|
43
43
|
};
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* */
|
|
3
3
|
import e from "react";
|
|
4
4
|
import * as a from "react-aria-components";
|
|
5
|
-
import { s as f, g as y, a as d, b as v } from "./ContextMenuSection-
|
|
5
|
+
import { s as f, g as y, a as d, b as v } from "./ContextMenuSection-kLzjPKqH.js";
|
|
6
6
|
import { f as s } from "./flowComponent-BQs9wMX_.js";
|
|
7
7
|
import { P } from "./Popover-3qM_-J3x.js";
|
|
8
8
|
import { C as A } from "./ClearPropsContext-CUvsbMn8.js";
|
package/dist/js/Icons.js
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
"use client"
|
|
2
2
|
/* */
|
|
3
3
|
import n from "react";
|
|
4
|
-
import { IconAppWindow as o, IconArrowBackUpDouble as l, IconArrowLeft as r, IconHistory as a,
|
|
4
|
+
import { IconAppWindow as o, IconArrowBackUpDouble as l, IconArrowLeft as r, IconHistory as a, IconBulb as I, IconCamera as m, IconClipboardList as s, IconFileCertificate as E, IconClock as i, IconCode as u, IconDotsVertical as p, IconFileDescription as d, IconFileInfo as f, IconCalendarCheck as h, IconBuilding as C, IconBorderAll as S, IconDatabase as x, IconDeviceImac as k, IconFolder as b, IconMailShare as g, IconWorld as w, IconEdit as v, IconMail as $, IconPuzzle as M, IconArrowRight as D, IconEyeOff as L, IconHome as F, IconInbox as y, IconFileEuro as B, IconLink as P, IconLock as t, IconLockOpen as z, IconPower as A, IconMaximize as O, IconUsersGroup as R, IconMenu2 as U, IconMinimize as H, IconDeviceMobile as V, IconTruckDelivery as W, IconBell as T, IconHash as j, IconShoppingCart as K, IconCreditCard as N, IconChartHistogram as G, IconArchive as X, IconArrowForwardUp as q, IconRefresh as J, IconListSearch as Q, IconShieldLock as Y, IconServer as Z, IconSettings as _, IconShare3 as ee, IconEye as ne, IconShield as ce, IconShieldCheckFilled as te, IconSparkles as oe, IconKey as le, IconDoor as re, IconStar as ae, IconStarFilled as Ie, IconWorldWww as me, IconHeadset as se, IconFileX as Ee, IconTicket as ie, IconArrowBackUp as ue, IconUser as pe, IconWorldShare as de } from "@tabler/icons-react";
|
|
5
5
|
import { I as c } from "./Icon--OEo4TjW.js";
|
|
6
|
-
import { I as
|
|
7
|
-
import { I as
|
|
8
|
-
import { I as
|
|
9
|
-
import { I as
|
|
10
|
-
import { a as
|
|
11
|
-
import { I as
|
|
12
|
-
import { I as
|
|
13
|
-
import { I as
|
|
14
|
-
import { I as
|
|
15
|
-
import { I as
|
|
16
|
-
import { I as
|
|
17
|
-
import { I as
|
|
18
|
-
import { I as
|
|
19
|
-
import { a as
|
|
20
|
-
import { a as
|
|
21
|
-
import { I as
|
|
22
|
-
import { I as
|
|
23
|
-
import { I as
|
|
24
|
-
import { a as
|
|
25
|
-
import { I as
|
|
26
|
-
import { I as
|
|
27
|
-
const
|
|
6
|
+
import { I as Rn } from "./IconCheck-s8wGBc30.js";
|
|
7
|
+
import { I as Hn, a as Vn } from "./IconCheckboxEmpty-CZrD3f3O.js";
|
|
8
|
+
import { I as Tn } from "./IconCheckboxIndeterminate-CmpwByDj.js";
|
|
9
|
+
import { I as Kn } from "./IconChevronDown-wKRgAuyR.js";
|
|
10
|
+
import { a as Gn, I as Xn } from "./IconCalendar-C5CRRRyg.js";
|
|
11
|
+
import { I as Jn } from "./IconChevronRight-DkfNRCtw.js";
|
|
12
|
+
import { I as Yn } from "./IconChevronUp-C2rq4v--.js";
|
|
13
|
+
import { I as _n } from "./IconClose-Bf4k99aq.js";
|
|
14
|
+
import { I as nc } from "./IconContextMenu-x1p9NcUF.js";
|
|
15
|
+
import { I as tc } from "./IconCopy-Ig2YhkQv.js";
|
|
16
|
+
import { I as lc } from "./IconDanger-BwFfgysk.js";
|
|
17
|
+
import { I as ac, a as Ic, b as mc, c as sc, d as Ec } from "./IconView-CSIFhlza.js";
|
|
18
|
+
import { I as uc, a as pc } from "./IconExternalLink-CN5WgFKj.js";
|
|
19
|
+
import { a as fc, I as hc } from "./IconSucceeded-SyLL7w9B.js";
|
|
20
|
+
import { a as Sc, I as xc } from "./IconImage-CaXFaBpx.js";
|
|
21
|
+
import { I as bc } from "./IconInfo-BQ-pXsUh.js";
|
|
22
|
+
import { I as wc, a as vc } from "./IconPlus-CccQXOjh.js";
|
|
23
|
+
import { I as Mc } from "./IconPending-DVqDmv2n.js";
|
|
24
|
+
import { a as Lc, I as Fc } from "./IconRadioOn-D7w6KLWm.js";
|
|
25
|
+
import { I as Bc } from "./IconSearch-9xESFc33.js";
|
|
26
|
+
import { I as zc, a as Ac } from "./IconWarning-BQcw4Db0.js";
|
|
27
|
+
const Se = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(o, null)), xe = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(l, null)), ke = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(r, null)), be = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(a, null)), ge = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(I, null)), we = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(m, null)), ve = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(s, null)), $e = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(E, null)), Me = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(i, null)), De = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(u, null)), Le = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(p, null)), Fe = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(d, null)), ye = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(f, null)), Be = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(h, null)), Pe = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(C, null)), ze = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(S, null)), Ae = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(x, null)), Oe = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(k, null)), Re = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(b, null)), Ue = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(g, null)), He = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(w, null)), Ve = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(v, null)), We = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement($, null)), Te = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(M, null)), je = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(D, null)), Ke = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(L, null)), Ne = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(F, null)), Ge = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(y, null)), Xe = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(B, null)), qe = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(P, null)), Je = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(t, null)), Qe = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(z, null)), Ye = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(A, null)), Ze = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(O, null)), _e = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(R, null)), en = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(U, null)), nn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(H, null)), cn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(V, null)), tn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(W, null)), on = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(T, null)), ln = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(j, null)), rn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(K, null)), an = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(t, null)), In = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(N, null)), mn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(G, null)), sn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(X, null)), En = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(q, null)), un = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(J, null)), pn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(Q, null)), dn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(Y, null)), fn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(Z, null)), hn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(_, null)), Cn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(ee, null)), Sn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(ne, null)), xn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(ce, null)), kn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(te, null)), bn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(oe, null)), gn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(le, null)), wn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(re, null)), vn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(ae, null)), $n = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(Ie, null)), Mn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(me, null)), Dn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(se, null)), Ln = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(Ee, null)), Fn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(ie, null)), yn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(ue, null)), Bn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(pe, null)), Pn = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n.createElement(de, null)), zn = (e) => /* @__PURE__ */ n.createElement(
|
|
28
28
|
c,
|
|
29
29
|
{
|
|
30
30
|
...e
|
|
@@ -36,102 +36,106 @@ const de = (e) => /* @__PURE__ */ n.createElement(c, { ...e }, /* @__PURE__ */ n
|
|
|
36
36
|
`
|
|
37
37
|
);
|
|
38
38
|
export {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
39
|
+
Se as IconApp,
|
|
40
|
+
xe as IconAutoresponder,
|
|
41
|
+
ke as IconBackLink,
|
|
42
|
+
be as IconBackup,
|
|
43
|
+
ge as IconBulb,
|
|
44
|
+
Gn as IconCalendar,
|
|
45
|
+
we as IconCamera,
|
|
46
|
+
$e as IconCertificate,
|
|
47
|
+
ve as IconChangelog,
|
|
48
|
+
Rn as IconCheck,
|
|
49
|
+
Hn as IconCheckboxChecked,
|
|
50
|
+
Vn as IconCheckboxEmpty,
|
|
51
|
+
Tn as IconCheckboxIndeterminate,
|
|
52
|
+
Kn as IconChevronDown,
|
|
53
|
+
Xn as IconChevronLeft,
|
|
54
|
+
Jn as IconChevronRight,
|
|
55
|
+
Yn as IconChevronUp,
|
|
56
|
+
Me as IconClock,
|
|
57
|
+
_n as IconClose,
|
|
58
|
+
De as IconCode,
|
|
59
|
+
nc as IconContextMenu,
|
|
60
|
+
Le as IconContextMenuVertical,
|
|
61
|
+
ye as IconContract,
|
|
62
|
+
Fe as IconContractPartner,
|
|
63
|
+
tc as IconCopy,
|
|
64
|
+
Be as IconCronjob,
|
|
65
|
+
Pe as IconCustomer,
|
|
66
|
+
lc as IconDanger,
|
|
67
|
+
ze as IconDashboard,
|
|
68
|
+
Ae as IconDatabase,
|
|
69
|
+
ac as IconDelete,
|
|
70
|
+
Ue as IconDeliveryBox,
|
|
71
|
+
Oe as IconDesktop,
|
|
72
|
+
Re as IconDirectory,
|
|
73
|
+
He as IconDomain,
|
|
74
|
+
uc as IconDownload,
|
|
75
|
+
Ve as IconEdit,
|
|
76
|
+
We as IconEmail,
|
|
77
|
+
Te as IconExtension,
|
|
78
|
+
pc as IconExternalLink,
|
|
79
|
+
fc as IconFailed,
|
|
80
|
+
Sc as IconFile,
|
|
81
|
+
Ic as IconFilter,
|
|
82
|
+
je as IconForward,
|
|
83
|
+
Ke as IconHide,
|
|
84
|
+
Ne as IconHome,
|
|
85
|
+
xc as IconImage,
|
|
86
|
+
Ge as IconInbox,
|
|
87
|
+
bc as IconInfo,
|
|
88
|
+
Xe as IconInvoice,
|
|
89
|
+
qe as IconLink,
|
|
90
|
+
Je as IconLock,
|
|
91
|
+
Qe as IconLockOpen,
|
|
92
|
+
Ye as IconLogout,
|
|
93
|
+
Ze as IconMaximize,
|
|
94
|
+
_e as IconMember,
|
|
95
|
+
en as IconMenu,
|
|
96
|
+
nn as IconMinimize,
|
|
97
|
+
wc as IconMinus,
|
|
98
|
+
zn as IconMittwald,
|
|
99
|
+
cn as IconMobile,
|
|
100
|
+
tn as IconMove,
|
|
101
|
+
on as IconNotification,
|
|
102
|
+
ln as IconNumber,
|
|
103
|
+
rn as IconOrder,
|
|
104
|
+
an as IconPassword,
|
|
105
|
+
In as IconPayment,
|
|
106
|
+
Mc as IconPending,
|
|
107
|
+
mn as IconPerformance,
|
|
108
|
+
vc as IconPlus,
|
|
109
|
+
sn as IconProject,
|
|
110
|
+
Lc as IconRadioOff,
|
|
111
|
+
Fc as IconRadioOn,
|
|
112
|
+
En as IconRedo,
|
|
113
|
+
un as IconRefresh,
|
|
114
|
+
mc as IconSave,
|
|
115
|
+
Bc as IconSearch,
|
|
116
|
+
pn as IconSearchEngine,
|
|
117
|
+
dn as IconSecurity,
|
|
118
|
+
fn as IconServer,
|
|
119
|
+
hn as IconSettings,
|
|
120
|
+
Cn as IconShare,
|
|
121
|
+
Sn as IconShow,
|
|
122
|
+
sc as IconSorting,
|
|
123
|
+
xn as IconSpamProtectionOff,
|
|
124
|
+
kn as IconSpamProtectionOn,
|
|
125
|
+
bn as IconSparkles,
|
|
126
|
+
gn as IconSshKey,
|
|
127
|
+
wn as IconSshSftp,
|
|
128
|
+
vn as IconStar,
|
|
129
|
+
$n as IconStarFilled,
|
|
130
|
+
Mn as IconSubdomain,
|
|
131
|
+
hc as IconSucceeded,
|
|
132
|
+
zc as IconSuccess,
|
|
133
|
+
Dn as IconSupport,
|
|
134
|
+
Ln as IconTerminate,
|
|
135
|
+
Fn as IconTicket,
|
|
136
|
+
yn as IconUndo,
|
|
137
|
+
Bn as IconUser,
|
|
138
|
+
Pn as IconVhost,
|
|
139
|
+
Ec as IconView,
|
|
140
|
+
Ac as IconWarning
|
|
137
141
|
};
|