@edifice.io/react 2.1.0-develop-wl.20250204154502 → 2.1.0-develop-b2school.20250205111203
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/components/Dropdown/DropdownTrigger.js +5 -1
- package/dist/components/List/List.d.ts +9 -1
- package/dist/components/List/List.js +9 -9
- package/dist/components/SearchBar/SearchBar.d.ts +1 -1
- package/dist/components/SearchBar/SearchBar.js +3 -1
- package/dist/hooks/useCheckable/useCheckable.js +1 -1
- package/dist/hooks/useConversation/useConversation.d.ts +1 -1
- package/dist/hooks/useConversation/useConversation.js +13 -17
- package/dist/icons.js +212 -206
- package/dist/modules/icons/components/IconFolderAdd.d.ts +7 -0
- package/dist/modules/icons/components/IconFolderAdd.js +13 -0
- package/dist/modules/icons/components/IconReadMail.d.ts +7 -0
- package/dist/modules/icons/components/IconReadMail.js +16 -0
- package/dist/modules/icons/components/IconUnreadMail.d.ts +7 -0
- package/dist/modules/icons/components/IconUnreadMail.js +16 -0
- package/dist/modules/icons/components/index.d.ts +3 -0
- package/package.json +6 -6
|
@@ -3,6 +3,7 @@ import { forwardRef } from "react";
|
|
|
3
3
|
import clsx from "clsx";
|
|
4
4
|
import SvgIconRafterUp from "../../modules/icons/components/IconRafterUp.js";
|
|
5
5
|
import { useDropdownContext } from "./DropdownContext.js";
|
|
6
|
+
import Badge from "../Badge/Badge.js";
|
|
6
7
|
const DropdownTrigger = /* @__PURE__ */ forwardRef(({
|
|
7
8
|
label,
|
|
8
9
|
icon,
|
|
@@ -26,7 +27,10 @@ const DropdownTrigger = /* @__PURE__ */ forwardRef(({
|
|
|
26
27
|
return /* @__PURE__ */ jsxs("button", { ref: forwardRef2, type: "button", disabled, ...mergedProps, children: [
|
|
27
28
|
icon,
|
|
28
29
|
label,
|
|
29
|
-
badgeContent ? /* @__PURE__ */ jsx(
|
|
30
|
+
badgeContent ? /* @__PURE__ */ jsx(Badge, { variant: {
|
|
31
|
+
level: "info",
|
|
32
|
+
type: "notification"
|
|
33
|
+
}, children: badgeContent }) : !hideCarret && /* @__PURE__ */ jsx(SvgIconRafterUp, { width: 16, height: 16, className: "dropdown-toggle-caret" })
|
|
30
34
|
] });
|
|
31
35
|
});
|
|
32
36
|
export {
|
|
@@ -5,6 +5,10 @@ export type ListProps<T> = {
|
|
|
5
5
|
* Toolbar data items
|
|
6
6
|
*/
|
|
7
7
|
items?: ToolbarItem[];
|
|
8
|
+
/**
|
|
9
|
+
* Checkable list
|
|
10
|
+
*/
|
|
11
|
+
isCheckable?: boolean;
|
|
8
12
|
/**
|
|
9
13
|
* Generic data
|
|
10
14
|
*/
|
|
@@ -17,7 +21,11 @@ export type ListProps<T> = {
|
|
|
17
21
|
* Callback to get selected ids
|
|
18
22
|
*/
|
|
19
23
|
onSelectedItems?: (selectedIds: string[]) => void;
|
|
24
|
+
/**
|
|
25
|
+
* Custom class name
|
|
26
|
+
*/
|
|
27
|
+
className?: string;
|
|
20
28
|
};
|
|
21
29
|
export declare const List: <T extends {
|
|
22
30
|
_id: string;
|
|
23
|
-
}>({ items, data, renderNode, onSelectedItems, }: ListProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
}>({ items, isCheckable, data, renderNode, onSelectedItems, className, }: ListProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -7,9 +7,11 @@ import Checkbox from "../Checkbox/Checkbox.js";
|
|
|
7
7
|
import { Toolbar } from "../Toolbar/Toolbar.js";
|
|
8
8
|
const List = ({
|
|
9
9
|
items,
|
|
10
|
+
isCheckable = !1,
|
|
10
11
|
data,
|
|
11
12
|
renderNode,
|
|
12
|
-
onSelectedItems
|
|
13
|
+
onSelectedItems,
|
|
14
|
+
className
|
|
13
15
|
}) => {
|
|
14
16
|
const {
|
|
15
17
|
selectedItems,
|
|
@@ -21,11 +23,9 @@ const List = ({
|
|
|
21
23
|
return useEffect(() => {
|
|
22
24
|
selectedItems && (onSelectedItems == null || onSelectedItems(selectedItems));
|
|
23
25
|
}, [onSelectedItems, selectedItems]), /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
24
|
-
items && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
25
|
-
/* @__PURE__ */ jsx("div", { className: clsx("d-flex align-items-center gap-8", {
|
|
26
|
-
"
|
|
27
|
-
}), children: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
28
|
-
/* @__PURE__ */ jsxs("div", { className: "d-flex align-items-center gap-8", children: [
|
|
26
|
+
(items || isCheckable) && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
27
|
+
/* @__PURE__ */ jsx("div", { className: clsx("list-header d-flex align-items-center gap-8 px-12", className), children: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
28
|
+
/* @__PURE__ */ jsxs("div", { className: "d-flex align-items-center gap-8 py-12", children: [
|
|
29
29
|
/* @__PURE__ */ jsx(Checkbox, { checked: allItemsSelected, indeterminate: isIndeterminate, onChange: () => handleOnSelectAllItems(allItemsSelected) }),
|
|
30
30
|
/* @__PURE__ */ jsxs("span", { children: [
|
|
31
31
|
"(",
|
|
@@ -33,15 +33,15 @@ const List = ({
|
|
|
33
33
|
")"
|
|
34
34
|
] })
|
|
35
35
|
] }),
|
|
36
|
-
/* @__PURE__ */ jsx(Toolbar, { items, isBlock: !0, align: "left", variant: "no-shadow", className: clsx("gap-4 py-4", {
|
|
36
|
+
items && /* @__PURE__ */ jsx(Toolbar, { items, isBlock: !0, align: "left", variant: "no-shadow", className: clsx("gap-4 py-4", {
|
|
37
37
|
"px-0 ms-auto": !isDesktopDevice
|
|
38
38
|
}) })
|
|
39
39
|
] }) }),
|
|
40
40
|
/* @__PURE__ */ jsx("div", { className: "border-top" })
|
|
41
41
|
] }),
|
|
42
42
|
/* @__PURE__ */ jsx("div", { className: "mt-8", children: data == null ? void 0 : data.map((node) => {
|
|
43
|
-
const
|
|
44
|
-
return /* @__PURE__ */ jsx(Fragment$1, { children: renderNode(node,
|
|
43
|
+
const checked = selectedItems.includes(node._id);
|
|
44
|
+
return /* @__PURE__ */ jsx(Fragment$1, { children: renderNode(node, /* @__PURE__ */ jsx(Checkbox, { checked, onChange: () => handleOnSelectItem(node._id), onClick: (event) => event.stopPropagation() }), checked) }, node._id);
|
|
45
45
|
}) })
|
|
46
46
|
] });
|
|
47
47
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeEvent } from 'react';
|
|
2
2
|
import { Size } from '../../types';
|
|
3
|
-
export interface BaseProps {
|
|
3
|
+
export interface BaseProps extends Omit<React.ComponentPropsWithoutRef<'input'>, 'size'> {
|
|
4
4
|
/**
|
|
5
5
|
* String or Template literal with React i18next namespace
|
|
6
6
|
*/
|
|
@@ -24,10 +24,12 @@ const SearchBar = ({
|
|
|
24
24
|
"ps-48": isVariant
|
|
25
25
|
}), handleClick = () => {
|
|
26
26
|
onClick == null || onClick();
|
|
27
|
+
}, handleKeyDown = (e) => {
|
|
28
|
+
e.key === "Enter" && (e.preventDefault(), handleClick());
|
|
27
29
|
};
|
|
28
30
|
return /* @__PURE__ */ jsxs(FormControl, { id: "search-bar", className: searchbar, children: [
|
|
29
31
|
isVariant && /* @__PURE__ */ jsx("div", { className: "position-absolute z-1 top-50 start-0 translate-middle-y border-0 ps-12 bg-transparent", children: /* @__PURE__ */ jsx(SvgIconSearch, {}) }),
|
|
30
|
-
/* @__PURE__ */ jsx(FormControl.Input, { type: "search", placeholder: t(placeholder), size, noValidationIcon: !0, className: input, onChange, disabled, ...restProps }),
|
|
32
|
+
/* @__PURE__ */ jsx(FormControl.Input, { type: "search", placeholder: t(placeholder), size, noValidationIcon: !0, className: input, onChange, disabled, onKeyDown: handleKeyDown, ...restProps }),
|
|
31
33
|
!isVariant && /* @__PURE__ */ jsx(SearchButton, { type: "submit", "aria-label": t("search"), icon: /* @__PURE__ */ jsx(SvgIconSearch, {}), className: "border-start-0", onClick: handleClick })
|
|
32
34
|
] });
|
|
33
35
|
};
|
|
@@ -7,7 +7,7 @@ const useCheckable = (data) => {
|
|
|
7
7
|
});
|
|
8
8
|
}, handleOnSelectAllItems = (deselect) => {
|
|
9
9
|
setSelectedItems(() => deselect ? [] : (data == null ? void 0 : data.map((item) => item._id)) ?? []);
|
|
10
|
-
}, allItemsSelected = (selectedItems == null ? void 0 : selectedItems.length) === (data == null ? void 0 : data.length), isIndeterminate = data ? (selectedItems == null ? void 0 : selectedItems.length) > 0 && (selectedItems == null ? void 0 : selectedItems.length) < (data == null ? void 0 : data.length) : !1;
|
|
10
|
+
}, allItemsSelected = (selectedItems == null ? void 0 : selectedItems.length) === (data == null ? void 0 : data.length) && (data == null ? void 0 : data.length) > 0, isIndeterminate = data ? (selectedItems == null ? void 0 : selectedItems.length) > 0 && (selectedItems == null ? void 0 : selectedItems.length) < (data == null ? void 0 : data.length) : !1;
|
|
11
11
|
return {
|
|
12
12
|
selectedItems,
|
|
13
13
|
allItemsSelected,
|
|
@@ -1,23 +1,21 @@
|
|
|
1
1
|
import { useState, useEffect } from "react";
|
|
2
2
|
import { odeServices } from "@edifice.io/client";
|
|
3
|
+
import { useQuery } from "@tanstack/react-query";
|
|
3
4
|
import useHasWorkflow from "../useHasWorkflow/useHasWorkflow.js";
|
|
4
5
|
const useConversation = () => {
|
|
5
|
-
const zimbraWorkflow = useHasWorkflow("fr.openent.zimbra.controllers.ZimbraController|view"), zimbraPreauth = useHasWorkflow("fr.openent.zimbra.controllers.ZimbraController|preauth"), [
|
|
6
|
+
const zimbraWorkflow = useHasWorkflow("fr.openent.zimbra.controllers.ZimbraController|view"), zimbraPreauth = useHasWorkflow("fr.openent.zimbra.controllers.ZimbraController|preauth"), [msgLink, setMsgLink] = useState(""), queryParams = {
|
|
6
7
|
unread: !0,
|
|
7
8
|
_: (/* @__PURE__ */ new Date()).getTime()
|
|
8
|
-
},
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
console.error(error), setMessages(0);
|
|
19
|
-
}
|
|
20
|
-
}, goToMessagerie = async () => {
|
|
9
|
+
}, {
|
|
10
|
+
data: messages
|
|
11
|
+
} = useQuery({
|
|
12
|
+
queryKey: ["conversation-navbar-count"],
|
|
13
|
+
queryFn: async () => await odeServices.http().get(zimbraWorkflow ? "/zimbra/count/INBOX" : "/conversation/count/INBOX", {
|
|
14
|
+
queryParams
|
|
15
|
+
}),
|
|
16
|
+
staleTime: 5 * 60 * 1e3
|
|
17
|
+
// 5 minutes
|
|
18
|
+
}), goToMessagerie = async () => {
|
|
21
19
|
const defaultLink = "/zimbra/zimbra";
|
|
22
20
|
try {
|
|
23
21
|
const {
|
|
@@ -29,11 +27,9 @@ const useConversation = () => {
|
|
|
29
27
|
}
|
|
30
28
|
};
|
|
31
29
|
return useEffect(() => {
|
|
32
|
-
refreshMails();
|
|
33
|
-
}, []), useEffect(() => {
|
|
34
30
|
goToMessagerie();
|
|
35
31
|
}, []), {
|
|
36
|
-
messages,
|
|
32
|
+
messages: messages ? messages.count : 0,
|
|
37
33
|
msgLink,
|
|
38
34
|
zimbraWorkflow
|
|
39
35
|
};
|
package/dist/icons.js
CHANGED
|
@@ -44,109 +44,112 @@ import { default as default44 } from "./modules/icons/components/IconExternalLin
|
|
|
44
44
|
import { default as default45 } from "./modules/icons/components/IconFiles.js";
|
|
45
45
|
import { default as default46 } from "./modules/icons/components/IconFilter.js";
|
|
46
46
|
import { default as default47 } from "./modules/icons/components/IconFlag.js";
|
|
47
|
-
import { default as default48 } from "./modules/icons/components/
|
|
48
|
-
import { default as default49 } from "./modules/icons/components/
|
|
49
|
-
import { default as default50 } from "./modules/icons/components/
|
|
50
|
-
import { default as default51 } from "./modules/icons/components/
|
|
51
|
-
import { default as default52 } from "./modules/icons/components/
|
|
52
|
-
import { default as default53 } from "./modules/icons/components/
|
|
53
|
-
import { default as default54 } from "./modules/icons/components/
|
|
54
|
-
import { default as default55 } from "./modules/icons/components/
|
|
55
|
-
import { default as default56 } from "./modules/icons/components/
|
|
56
|
-
import { default as default57 } from "./modules/icons/components/
|
|
57
|
-
import { default as default58 } from "./modules/icons/components/
|
|
58
|
-
import { default as default59 } from "./modules/icons/components/
|
|
59
|
-
import { default as default60 } from "./modules/icons/components/
|
|
60
|
-
import { default as default61 } from "./modules/icons/components/
|
|
61
|
-
import { default as default62 } from "./modules/icons/components/
|
|
62
|
-
import { default as default63 } from "./modules/icons/components/
|
|
63
|
-
import { default as default64 } from "./modules/icons/components/
|
|
64
|
-
import { default as default65 } from "./modules/icons/components/
|
|
65
|
-
import { default as default66 } from "./modules/icons/components/
|
|
66
|
-
import { default as default67 } from "./modules/icons/components/
|
|
67
|
-
import { default as default68 } from "./modules/icons/components/
|
|
68
|
-
import { default as default69 } from "./modules/icons/components/
|
|
69
|
-
import { default as default70 } from "./modules/icons/components/
|
|
70
|
-
import { default as default71 } from "./modules/icons/components/
|
|
71
|
-
import { default as default72 } from "./modules/icons/components/
|
|
72
|
-
import { default as default73 } from "./modules/icons/components/
|
|
73
|
-
import { default as default74 } from "./modules/icons/components/
|
|
74
|
-
import { default as default75 } from "./modules/icons/components/
|
|
75
|
-
import { default as default76 } from "./modules/icons/components/
|
|
76
|
-
import { default as default77 } from "./modules/icons/components/
|
|
77
|
-
import { default as default78 } from "./modules/icons/components/
|
|
78
|
-
import { default as default79 } from "./modules/icons/components/
|
|
79
|
-
import { default as default80 } from "./modules/icons/components/
|
|
80
|
-
import { default as default81 } from "./modules/icons/components/
|
|
81
|
-
import { default as default82 } from "./modules/icons/components/
|
|
82
|
-
import { default as default83 } from "./modules/icons/components/
|
|
83
|
-
import { default as default84 } from "./modules/icons/components/
|
|
84
|
-
import { default as default85 } from "./modules/icons/components/
|
|
85
|
-
import { default as default86 } from "./modules/icons/components/
|
|
86
|
-
import { default as default87 } from "./modules/icons/components/
|
|
87
|
-
import { default as default88 } from "./modules/icons/components/
|
|
88
|
-
import { default as default89 } from "./modules/icons/components/
|
|
89
|
-
import { default as default90 } from "./modules/icons/components/
|
|
90
|
-
import { default as default91 } from "./modules/icons/components/
|
|
91
|
-
import { default as default92 } from "./modules/icons/components/
|
|
92
|
-
import { default as default93 } from "./modules/icons/components/
|
|
93
|
-
import { default as default94 } from "./modules/icons/components/
|
|
94
|
-
import { default as default95 } from "./modules/icons/components/
|
|
95
|
-
import { default as default96 } from "./modules/icons/components/
|
|
96
|
-
import { default as default97 } from "./modules/icons/components/
|
|
97
|
-
import { default as default98 } from "./modules/icons/components/
|
|
98
|
-
import { default as default99 } from "./modules/icons/components/
|
|
99
|
-
import { default as default100 } from "./modules/icons/components/
|
|
100
|
-
import { default as default101 } from "./modules/icons/components/
|
|
101
|
-
import { default as default102 } from "./modules/icons/components/
|
|
102
|
-
import { default as default103 } from "./modules/icons/components/
|
|
103
|
-
import { default as default104 } from "./modules/icons/components/
|
|
104
|
-
import { default as default105 } from "./modules/icons/components/
|
|
105
|
-
import { default as default106 } from "./modules/icons/components/
|
|
106
|
-
import { default as default107 } from "./modules/icons/components/
|
|
107
|
-
import { default as default108 } from "./modules/icons/components/
|
|
108
|
-
import { default as default109 } from "./modules/icons/components/
|
|
109
|
-
import { default as default110 } from "./modules/icons/components/
|
|
110
|
-
import { default as default111 } from "./modules/icons/components/
|
|
111
|
-
import { default as default112 } from "./modules/icons/components/
|
|
112
|
-
import { default as default113 } from "./modules/icons/components/
|
|
113
|
-
import { default as default114 } from "./modules/icons/components/
|
|
114
|
-
import { default as default115 } from "./modules/icons/components/
|
|
115
|
-
import { default as default116 } from "./modules/icons/components/
|
|
116
|
-
import { default as default117 } from "./modules/icons/components/
|
|
117
|
-
import { default as default118 } from "./modules/icons/components/
|
|
118
|
-
import { default as default119 } from "./modules/icons/components/
|
|
119
|
-
import { default as default120 } from "./modules/icons/components/
|
|
120
|
-
import { default as default121 } from "./modules/icons/components/
|
|
121
|
-
import { default as default122 } from "./modules/icons/components/
|
|
122
|
-
import { default as default123 } from "./modules/icons/components/
|
|
123
|
-
import { default as default124 } from "./modules/icons/components/
|
|
124
|
-
import { default as default125 } from "./modules/icons/components/
|
|
125
|
-
import { default as default126 } from "./modules/icons/components/
|
|
126
|
-
import { default as default127 } from "./modules/icons/components/
|
|
127
|
-
import { default as default128 } from "./modules/icons/components/
|
|
128
|
-
import { default as default129 } from "./modules/icons/components/
|
|
129
|
-
import { default as default130 } from "./modules/icons/components/
|
|
130
|
-
import { default as default131 } from "./modules/icons/components/
|
|
131
|
-
import { default as default132 } from "./modules/icons/components/
|
|
132
|
-
import { default as default133 } from "./modules/icons/components/
|
|
133
|
-
import { default as default134 } from "./modules/icons/components/
|
|
134
|
-
import { default as default135 } from "./modules/icons/components/
|
|
135
|
-
import { default as default136 } from "./modules/icons/components/
|
|
136
|
-
import { default as default137 } from "./modules/icons/components/
|
|
137
|
-
import { default as default138 } from "./modules/icons/components/
|
|
138
|
-
import { default as default139 } from "./modules/icons/components/
|
|
139
|
-
import { default as default140 } from "./modules/icons/components/
|
|
140
|
-
import { default as default141 } from "./modules/icons/components/
|
|
141
|
-
import { default as default142 } from "./modules/icons/components/
|
|
142
|
-
import { default as default143 } from "./modules/icons/components/
|
|
143
|
-
import { default as default144 } from "./modules/icons/components/
|
|
144
|
-
import { default as default145 } from "./modules/icons/components/
|
|
145
|
-
import { default as default146 } from "./modules/icons/components/
|
|
146
|
-
import { default as default147 } from "./modules/icons/components/
|
|
147
|
-
import { default as default148 } from "./modules/icons/components/
|
|
148
|
-
import { default as default149 } from "./modules/icons/components/
|
|
149
|
-
import { default as default150 } from "./modules/icons/components/
|
|
47
|
+
import { default as default48 } from "./modules/icons/components/IconFolderAdd.js";
|
|
48
|
+
import { default as default49 } from "./modules/icons/components/IconFolderMove.js";
|
|
49
|
+
import { default as default50 } from "./modules/icons/components/IconFolder.js";
|
|
50
|
+
import { default as default51 } from "./modules/icons/components/IconForgoing.js";
|
|
51
|
+
import { default as default52 } from "./modules/icons/components/IconFullScreen.js";
|
|
52
|
+
import { default as default53 } from "./modules/icons/components/IconGlobe.js";
|
|
53
|
+
import { default as default54 } from "./modules/icons/components/IconHeadphone.js";
|
|
54
|
+
import { default as default55 } from "./modules/icons/components/IconHide.js";
|
|
55
|
+
import { default as default56 } from "./modules/icons/components/IconHighlightColumn.js";
|
|
56
|
+
import { default as default57 } from "./modules/icons/components/IconHighlightRow.js";
|
|
57
|
+
import { default as default58 } from "./modules/icons/components/IconHome.js";
|
|
58
|
+
import { default as default59 } from "./modules/icons/components/IconHourglass.js";
|
|
59
|
+
import { default as default60 } from "./modules/icons/components/IconImageSizeLarge.js";
|
|
60
|
+
import { default as default61 } from "./modules/icons/components/IconImageSizeMedium.js";
|
|
61
|
+
import { default as default62 } from "./modules/icons/components/IconImageSizeSmall.js";
|
|
62
|
+
import { default as default63 } from "./modules/icons/components/IconInbox.js";
|
|
63
|
+
import { default as default64 } from "./modules/icons/components/IconInfoCircle.js";
|
|
64
|
+
import { default as default65 } from "./modules/icons/components/IconLandscape.js";
|
|
65
|
+
import { default as default66 } from "./modules/icons/components/IconLink.js";
|
|
66
|
+
import { default as default67 } from "./modules/icons/components/IconListOrder.js";
|
|
67
|
+
import { default as default68 } from "./modules/icons/components/IconLoader.js";
|
|
68
|
+
import { default as default69 } from "./modules/icons/components/IconLock.js";
|
|
69
|
+
import { default as default70 } from "./modules/icons/components/IconMail.js";
|
|
70
|
+
import { default as default71 } from "./modules/icons/components/IconMergeCells.js";
|
|
71
|
+
import { default as default72 } from "./modules/icons/components/IconMessageInfo.js";
|
|
72
|
+
import { default as default73 } from "./modules/icons/components/IconMic.js";
|
|
73
|
+
import { default as default74 } from "./modules/icons/components/IconMinus.js";
|
|
74
|
+
import { default as default75 } from "./modules/icons/components/IconMove.js";
|
|
75
|
+
import { default as default76 } from "./modules/icons/components/IconNoColors.js";
|
|
76
|
+
import { default as default77 } from "./modules/icons/components/IconOptions.js";
|
|
77
|
+
import { default as default78 } from "./modules/icons/components/IconOrderedList.js";
|
|
78
|
+
import { default as default79 } from "./modules/icons/components/IconPaperclip.js";
|
|
79
|
+
import { default as default80 } from "./modules/icons/components/IconPause.js";
|
|
80
|
+
import { default as default81 } from "./modules/icons/components/IconPinOff.js";
|
|
81
|
+
import { default as default82 } from "./modules/icons/components/IconPinOn.js";
|
|
82
|
+
import { default as default83 } from "./modules/icons/components/IconPlaceholder.js";
|
|
83
|
+
import { default as default84 } from "./modules/icons/components/IconPlayFilled.js";
|
|
84
|
+
import { default as default85 } from "./modules/icons/components/IconPlay.js";
|
|
85
|
+
import { default as default86 } from "./modules/icons/components/IconPlus.js";
|
|
86
|
+
import { default as default87 } from "./modules/icons/components/IconPointerDefault.js";
|
|
87
|
+
import { default as default88 } from "./modules/icons/components/IconPointerHand.js";
|
|
88
|
+
import { default as default89 } from "./modules/icons/components/IconPrint.js";
|
|
89
|
+
import { default as default90 } from "./modules/icons/components/IconQuestion.js";
|
|
90
|
+
import { default as default91 } from "./modules/icons/components/IconRafterDown.js";
|
|
91
|
+
import { default as default92 } from "./modules/icons/components/IconRafterLeft.js";
|
|
92
|
+
import { default as default93 } from "./modules/icons/components/IconRafterRight.js";
|
|
93
|
+
import { default as default94 } from "./modules/icons/components/IconRafterUp.js";
|
|
94
|
+
import { default as default95 } from "./modules/icons/components/IconReaction.js";
|
|
95
|
+
import { default as default96 } from "./modules/icons/components/IconReadMail.js";
|
|
96
|
+
import { default as default97 } from "./modules/icons/components/IconRecordPause.js";
|
|
97
|
+
import { default as default98 } from "./modules/icons/components/IconRecordStop.js";
|
|
98
|
+
import { default as default99 } from "./modules/icons/components/IconRecordVideo.js";
|
|
99
|
+
import { default as default100 } from "./modules/icons/components/IconRecord.js";
|
|
100
|
+
import { default as default101 } from "./modules/icons/components/IconRedo.js";
|
|
101
|
+
import { default as default102 } from "./modules/icons/components/IconRefresh.js";
|
|
102
|
+
import { default as default103 } from "./modules/icons/components/IconReset.js";
|
|
103
|
+
import { default as default104 } from "./modules/icons/components/IconRestart.js";
|
|
104
|
+
import { default as default105 } from "./modules/icons/components/IconRestore.js";
|
|
105
|
+
import { default as default106 } from "./modules/icons/components/IconSave.js";
|
|
106
|
+
import { default as default107 } from "./modules/icons/components/IconSearch.js";
|
|
107
|
+
import { default as default108 } from "./modules/icons/components/IconSee.js";
|
|
108
|
+
import { default as default109 } from "./modules/icons/components/IconSend.js";
|
|
109
|
+
import { default as default110 } from "./modules/icons/components/IconSetBackground.js";
|
|
110
|
+
import { default as default111 } from "./modules/icons/components/IconSettings.js";
|
|
111
|
+
import { default as default112 } from "./modules/icons/components/IconShare.js";
|
|
112
|
+
import { default as default113 } from "./modules/icons/components/IconSmartphone.js";
|
|
113
|
+
import { default as default114 } from "./modules/icons/components/IconSmiley.js";
|
|
114
|
+
import { default as default115 } from "./modules/icons/components/IconSortAscendingLetters.js";
|
|
115
|
+
import { default as default116 } from "./modules/icons/components/IconSortDescendingLetters.js";
|
|
116
|
+
import { default as default117 } from "./modules/icons/components/IconSortDescending.js";
|
|
117
|
+
import { default as default118 } from "./modules/icons/components/IconSortTime.js";
|
|
118
|
+
import { default as default119 } from "./modules/icons/components/IconSpeechToText.js";
|
|
119
|
+
import { default as default120 } from "./modules/icons/components/IconSplitCells.js";
|
|
120
|
+
import { default as default121 } from "./modules/icons/components/IconSquareRoot.js";
|
|
121
|
+
import { default as default122 } from "./modules/icons/components/IconSubscript.js";
|
|
122
|
+
import { default as default123 } from "./modules/icons/components/IconSuccessFill.js";
|
|
123
|
+
import { default as default124 } from "./modules/icons/components/IconSuccessOutline.js";
|
|
124
|
+
import { default as default125 } from "./modules/icons/components/IconSuperscript.js";
|
|
125
|
+
import { default as default126 } from "./modules/icons/components/IconTable.js";
|
|
126
|
+
import { default as default127 } from "./modules/icons/components/IconTextBold.js";
|
|
127
|
+
import { default as default128 } from "./modules/icons/components/IconTextColor.js";
|
|
128
|
+
import { default as default129 } from "./modules/icons/components/IconTextHighlight.js";
|
|
129
|
+
import { default as default130 } from "./modules/icons/components/IconTextItalic.js";
|
|
130
|
+
import { default as default131 } from "./modules/icons/components/IconTextPage.js";
|
|
131
|
+
import { default as default132 } from "./modules/icons/components/IconTextSize.js";
|
|
132
|
+
import { default as default133 } from "./modules/icons/components/IconTextToSpeech.js";
|
|
133
|
+
import { default as default134 } from "./modules/icons/components/IconTextTypo.js";
|
|
134
|
+
import { default as default135 } from "./modules/icons/components/IconTextUnderline.js";
|
|
135
|
+
import { default as default136 } from "./modules/icons/components/IconTextVanilla.js";
|
|
136
|
+
import { default as default137 } from "./modules/icons/components/IconTool.js";
|
|
137
|
+
import { default as default138 } from "./modules/icons/components/IconTrendingUp.js";
|
|
138
|
+
import { default as default139 } from "./modules/icons/components/IconUndo.js";
|
|
139
|
+
import { default as default140 } from "./modules/icons/components/IconUnlink.js";
|
|
140
|
+
import { default as default141 } from "./modules/icons/components/IconUnlock.js";
|
|
141
|
+
import { default as default142 } from "./modules/icons/components/IconUnreadMail.js";
|
|
142
|
+
import { default as default143 } from "./modules/icons/components/IconUpload.js";
|
|
143
|
+
import { default as default144 } from "./modules/icons/components/IconUserSearch.js";
|
|
144
|
+
import { default as default145 } from "./modules/icons/components/IconUser.js";
|
|
145
|
+
import { default as default146 } from "./modules/icons/components/IconUsers.js";
|
|
146
|
+
import { default as default147 } from "./modules/icons/components/IconVideo.js";
|
|
147
|
+
import { default as default148 } from "./modules/icons/components/IconViewCalendar.js";
|
|
148
|
+
import { default as default149 } from "./modules/icons/components/IconViewList.js";
|
|
149
|
+
import { default as default150 } from "./modules/icons/components/IconWand.js";
|
|
150
|
+
import { default as default151 } from "./modules/icons/components/IconWrite.js";
|
|
151
|
+
import { default as default152 } from "./modules/icons/components/IconZoomIn.js";
|
|
152
|
+
import { default as default153 } from "./modules/icons/components/IconZoomOut.js";
|
|
150
153
|
export {
|
|
151
154
|
default3 as IconAdd,
|
|
152
155
|
default2 as IconAddUser,
|
|
@@ -194,107 +197,110 @@ export {
|
|
|
194
197
|
default45 as IconFiles,
|
|
195
198
|
default46 as IconFilter,
|
|
196
199
|
default47 as IconFlag,
|
|
197
|
-
|
|
198
|
-
default48 as
|
|
199
|
-
|
|
200
|
-
default51 as
|
|
201
|
-
default52 as
|
|
202
|
-
default53 as
|
|
203
|
-
default54 as
|
|
204
|
-
default55 as
|
|
205
|
-
default56 as
|
|
206
|
-
default57 as
|
|
207
|
-
default58 as
|
|
208
|
-
default59 as
|
|
209
|
-
default60 as
|
|
210
|
-
default61 as
|
|
211
|
-
default62 as
|
|
212
|
-
default63 as
|
|
213
|
-
default64 as
|
|
214
|
-
default65 as
|
|
215
|
-
default66 as
|
|
216
|
-
default67 as
|
|
217
|
-
default68 as
|
|
218
|
-
default69 as
|
|
219
|
-
default70 as
|
|
220
|
-
default71 as
|
|
221
|
-
default72 as
|
|
222
|
-
default73 as
|
|
223
|
-
default74 as
|
|
224
|
-
default75 as
|
|
225
|
-
default76 as
|
|
226
|
-
default77 as
|
|
227
|
-
default78 as
|
|
228
|
-
default79 as
|
|
229
|
-
default80 as
|
|
230
|
-
default81 as
|
|
231
|
-
default82 as
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
default86 as
|
|
236
|
-
default87 as
|
|
237
|
-
default88 as
|
|
238
|
-
default89 as
|
|
239
|
-
default90 as
|
|
240
|
-
default91 as
|
|
241
|
-
default92 as
|
|
242
|
-
default93 as
|
|
243
|
-
default94 as
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
default97 as
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
default101 as
|
|
251
|
-
default102 as
|
|
252
|
-
default103 as
|
|
253
|
-
default104 as
|
|
254
|
-
default105 as
|
|
255
|
-
default106 as
|
|
256
|
-
default107 as
|
|
257
|
-
default108 as
|
|
258
|
-
default109 as
|
|
259
|
-
default110 as
|
|
260
|
-
default111 as
|
|
261
|
-
default112 as
|
|
262
|
-
default113 as
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
default118 as
|
|
268
|
-
default119 as
|
|
269
|
-
default120 as
|
|
270
|
-
default121 as
|
|
271
|
-
default122 as
|
|
272
|
-
default123 as
|
|
273
|
-
default124 as
|
|
274
|
-
default125 as
|
|
275
|
-
default126 as
|
|
276
|
-
default127 as
|
|
277
|
-
default128 as
|
|
278
|
-
default129 as
|
|
279
|
-
default130 as
|
|
280
|
-
default131 as
|
|
281
|
-
default132 as
|
|
282
|
-
default133 as
|
|
283
|
-
default134 as
|
|
284
|
-
default135 as
|
|
285
|
-
default136 as
|
|
286
|
-
default137 as
|
|
287
|
-
default138 as
|
|
288
|
-
default139 as
|
|
289
|
-
default140 as
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
default143 as
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
default146 as
|
|
296
|
-
default147 as
|
|
297
|
-
default148 as
|
|
298
|
-
default149 as
|
|
299
|
-
default150 as
|
|
200
|
+
default50 as IconFolder,
|
|
201
|
+
default48 as IconFolderAdd,
|
|
202
|
+
default49 as IconFolderMove,
|
|
203
|
+
default51 as IconForgoing,
|
|
204
|
+
default52 as IconFullScreen,
|
|
205
|
+
default53 as IconGlobe,
|
|
206
|
+
default54 as IconHeadphone,
|
|
207
|
+
default55 as IconHide,
|
|
208
|
+
default56 as IconHighlightColumn,
|
|
209
|
+
default57 as IconHighlightRow,
|
|
210
|
+
default58 as IconHome,
|
|
211
|
+
default59 as IconHourglass,
|
|
212
|
+
default60 as IconImageSizeLarge,
|
|
213
|
+
default61 as IconImageSizeMedium,
|
|
214
|
+
default62 as IconImageSizeSmall,
|
|
215
|
+
default63 as IconInbox,
|
|
216
|
+
default64 as IconInfoCircle,
|
|
217
|
+
default65 as IconLandscape,
|
|
218
|
+
default66 as IconLink,
|
|
219
|
+
default67 as IconListOrder,
|
|
220
|
+
default68 as IconLoader,
|
|
221
|
+
default69 as IconLock,
|
|
222
|
+
default70 as IconMail,
|
|
223
|
+
default71 as IconMergeCells,
|
|
224
|
+
default72 as IconMessageInfo,
|
|
225
|
+
default73 as IconMic,
|
|
226
|
+
default74 as IconMinus,
|
|
227
|
+
default75 as IconMove,
|
|
228
|
+
default76 as IconNoColors,
|
|
229
|
+
default77 as IconOptions,
|
|
230
|
+
default78 as IconOrderedList,
|
|
231
|
+
default79 as IconPaperclip,
|
|
232
|
+
default80 as IconPause,
|
|
233
|
+
default81 as IconPinOff,
|
|
234
|
+
default82 as IconPinOn,
|
|
235
|
+
default83 as IconPlaceholder,
|
|
236
|
+
default85 as IconPlay,
|
|
237
|
+
default84 as IconPlayFilled,
|
|
238
|
+
default86 as IconPlus,
|
|
239
|
+
default87 as IconPointerDefault,
|
|
240
|
+
default88 as IconPointerHand,
|
|
241
|
+
default89 as IconPrint,
|
|
242
|
+
default90 as IconQuestion,
|
|
243
|
+
default91 as IconRafterDown,
|
|
244
|
+
default92 as IconRafterLeft,
|
|
245
|
+
default93 as IconRafterRight,
|
|
246
|
+
default94 as IconRafterUp,
|
|
247
|
+
default95 as IconReaction,
|
|
248
|
+
default96 as IconReadMail,
|
|
249
|
+
default100 as IconRecord,
|
|
250
|
+
default97 as IconRecordPause,
|
|
251
|
+
default98 as IconRecordStop,
|
|
252
|
+
default99 as IconRecordVideo,
|
|
253
|
+
default101 as IconRedo,
|
|
254
|
+
default102 as IconRefresh,
|
|
255
|
+
default103 as IconReset,
|
|
256
|
+
default104 as IconRestart,
|
|
257
|
+
default105 as IconRestore,
|
|
258
|
+
default106 as IconSave,
|
|
259
|
+
default107 as IconSearch,
|
|
260
|
+
default108 as IconSee,
|
|
261
|
+
default109 as IconSend,
|
|
262
|
+
default110 as IconSetBackground,
|
|
263
|
+
default111 as IconSettings,
|
|
264
|
+
default112 as IconShare,
|
|
265
|
+
default113 as IconSmartphone,
|
|
266
|
+
default114 as IconSmiley,
|
|
267
|
+
default115 as IconSortAscendingLetters,
|
|
268
|
+
default117 as IconSortDescending,
|
|
269
|
+
default116 as IconSortDescendingLetters,
|
|
270
|
+
default118 as IconSortTime,
|
|
271
|
+
default119 as IconSpeechToText,
|
|
272
|
+
default120 as IconSplitCells,
|
|
273
|
+
default121 as IconSquareRoot,
|
|
274
|
+
default122 as IconSubscript,
|
|
275
|
+
default123 as IconSuccessFill,
|
|
276
|
+
default124 as IconSuccessOutline,
|
|
277
|
+
default125 as IconSuperscript,
|
|
278
|
+
default126 as IconTable,
|
|
279
|
+
default127 as IconTextBold,
|
|
280
|
+
default128 as IconTextColor,
|
|
281
|
+
default129 as IconTextHighlight,
|
|
282
|
+
default130 as IconTextItalic,
|
|
283
|
+
default131 as IconTextPage,
|
|
284
|
+
default132 as IconTextSize,
|
|
285
|
+
default133 as IconTextToSpeech,
|
|
286
|
+
default134 as IconTextTypo,
|
|
287
|
+
default135 as IconTextUnderline,
|
|
288
|
+
default136 as IconTextVanilla,
|
|
289
|
+
default137 as IconTool,
|
|
290
|
+
default138 as IconTrendingUp,
|
|
291
|
+
default139 as IconUndo,
|
|
292
|
+
default140 as IconUnlink,
|
|
293
|
+
default141 as IconUnlock,
|
|
294
|
+
default142 as IconUnreadMail,
|
|
295
|
+
default143 as IconUpload,
|
|
296
|
+
default145 as IconUser,
|
|
297
|
+
default144 as IconUserSearch,
|
|
298
|
+
default146 as IconUsers,
|
|
299
|
+
default147 as IconVideo,
|
|
300
|
+
default148 as IconViewCalendar,
|
|
301
|
+
default149 as IconViewList,
|
|
302
|
+
default150 as IconWand,
|
|
303
|
+
default151 as IconWrite,
|
|
304
|
+
default152 as IconZoomIn,
|
|
305
|
+
default153 as IconZoomOut
|
|
300
306
|
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconFolderAdd: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconFolderAdd;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconFolderAdd = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsx("g", { clipPath: "url(#icon-folder-add_svg__a)", children: /* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M10.985 5.283A2 2 0 0 0 12.965 7H22v12H2V4h7.5a1.5 1.5 0 0 1 1.485 1.283M1.902 2C.852 2 0 2.852 0 3.902V19a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-9.035A3.5 3.5 0 0 0 9.5 2zM12 8a1 1 0 0 1 1 1v3h3a1 1 0 1 1 0 2h-3v3a1 1 0 1 1-2 0v-3H8a1 1 0 1 1 0-2h3V9a1 1 0 0 1 1-1", clipRule: "evenodd" }) }),
|
|
9
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-folder-add_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
10
|
+
] });
|
|
11
|
+
export {
|
|
12
|
+
SvgIconFolderAdd as default
|
|
13
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconReadMail: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconReadMail;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconReadMail = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsxs("g", { fill: "currentColor", fillRule: "evenodd", clipPath: "url(#icon-read-mail_svg__a)", clipRule: "evenodd", children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", { d: "M1.143 8.986a1 1 0 0 1 1.372-.343l8.97 5.382a1 1 0 0 0 1.03 0l8.97-5.382a1 1 0 1 1 1.03 1.714l-8.971 5.383a3 3 0 0 1-3.088 0l-8.97-5.382a1 1 0 0 1-.343-1.373" }),
|
|
10
|
+
/* @__PURE__ */ jsx("path", { d: "M12.466 2.4a.95.95 0 0 0-.932 0c-1.333.74-3.83 2.146-5.99 3.465-1.083.662-2.063 1.29-2.764 1.797a8 8 0 0 0-.78.62v11.003H0V8c0-.38.191-.664.272-.776.107-.148.238-.285.364-.404.254-.24.594-.506.973-.78.765-.552 1.797-1.212 2.892-1.881C6.697 2.817 9.224 1.395 10.563.65a2.95 2.95 0 0 1 2.874 0c1.34.744 3.866 2.166 6.062 3.508 1.095.669 2.127 1.33 2.892 1.882.38.273.719.54.973.78.126.118.257.255.364.403.08.112.272.395.272.776v11.285h-2V8.284l-.009-.008a8 8 0 0 0-.77-.613c-.702-.506-1.682-1.135-2.765-1.797-2.16-1.32-4.657-2.725-5.99-3.466M2.321 19.802c.253.192.647.34 1.123.34h17.112c.476 0 .87-.148 1.123-.34.252-.192.321-.384.321-.517h2c0 .892-.479 1.629-1.111 2.11-.632.479-1.46.747-2.333.747H3.444c-.873 0-1.701-.268-2.333-.748S0 20.178 0 19.285h2c0 .133.069.326.32.518" })
|
|
11
|
+
] }),
|
|
12
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-read-mail_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
13
|
+
] });
|
|
14
|
+
export {
|
|
15
|
+
SvgIconReadMail as default
|
|
16
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgIconUnreadMail: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgIconUnreadMail;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
+
const SvgIconUnreadMail = ({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
+
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
+
/* @__PURE__ */ jsxs("g", { fill: "currentColor", fillRule: "evenodd", clipPath: "url(#icon-unread-mail_svg__a)", clipRule: "evenodd", children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", { d: "M7.975 4.5a5.1 5.1 0 0 0-.204-2h12.785A3.437 3.437 0 0 1 24 5.948V18.07c0 1.9-1.548 3.429-3.444 3.429H3.444A3.437 3.437 0 0 1 0 18.071V8.001c.581.436 1.261.749 2 .899v9.171c0 .783.64 1.429 1.444 1.429h17.112c.803 0 1.444-.646 1.444-1.429V7.79l-9.448 6.257a1 1 0 0 1-1.104 0L3.744 8.945a5 5 0 0 0 2.228-.924L12 12.014l9.916-6.567c-.2-.55-.73-.947-1.36-.947z" }),
|
|
10
|
+
/* @__PURE__ */ jsx("path", { d: "M3 7a3 3 0 1 0 0-6 3 3 0 0 0 0 6" })
|
|
11
|
+
] }),
|
|
12
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "icon-unread-mail_svg__a", children: /* @__PURE__ */ jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
13
|
+
] });
|
|
14
|
+
export {
|
|
15
|
+
SvgIconUnreadMail as default
|
|
16
|
+
};
|
|
@@ -44,6 +44,7 @@ export { default as IconExternalLink } from './IconExternalLink';
|
|
|
44
44
|
export { default as IconFiles } from './IconFiles';
|
|
45
45
|
export { default as IconFilter } from './IconFilter';
|
|
46
46
|
export { default as IconFlag } from './IconFlag';
|
|
47
|
+
export { default as IconFolderAdd } from './IconFolderAdd';
|
|
47
48
|
export { default as IconFolderMove } from './IconFolderMove';
|
|
48
49
|
export { default as IconFolder } from './IconFolder';
|
|
49
50
|
export { default as IconForgoing } from './IconForgoing';
|
|
@@ -91,6 +92,7 @@ export { default as IconRafterLeft } from './IconRafterLeft';
|
|
|
91
92
|
export { default as IconRafterRight } from './IconRafterRight';
|
|
92
93
|
export { default as IconRafterUp } from './IconRafterUp';
|
|
93
94
|
export { default as IconReaction } from './IconReaction';
|
|
95
|
+
export { default as IconReadMail } from './IconReadMail';
|
|
94
96
|
export { default as IconRecordPause } from './IconRecordPause';
|
|
95
97
|
export { default as IconRecordStop } from './IconRecordStop';
|
|
96
98
|
export { default as IconRecordVideo } from './IconRecordVideo';
|
|
@@ -136,6 +138,7 @@ export { default as IconTrendingUp } from './IconTrendingUp';
|
|
|
136
138
|
export { default as IconUndo } from './IconUndo';
|
|
137
139
|
export { default as IconUnlink } from './IconUnlink';
|
|
138
140
|
export { default as IconUnlock } from './IconUnlock';
|
|
141
|
+
export { default as IconUnreadMail } from './IconUnreadMail';
|
|
139
142
|
export { default as IconUpload } from './IconUpload';
|
|
140
143
|
export { default as IconUserSearch } from './IconUserSearch';
|
|
141
144
|
export { default as IconUser } from './IconUser';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edifice.io/react",
|
|
3
|
-
"version": "2.1.0-develop-
|
|
3
|
+
"version": "2.1.0-develop-b2school.20250205111203",
|
|
4
4
|
"description": "Edifice React Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -118,9 +118,9 @@
|
|
|
118
118
|
"react-slugify": "^3.0.3",
|
|
119
119
|
"swiper": "^10.1.0",
|
|
120
120
|
"ua-parser-js": "^1.0.36",
|
|
121
|
-
"@edifice.io/bootstrap": "2.1.0-develop-
|
|
122
|
-
"@edifice.io/tiptap-extensions": "2.1.0-develop-
|
|
123
|
-
"@edifice.io/utilities": "2.1.0-develop-
|
|
121
|
+
"@edifice.io/bootstrap": "2.1.0-develop-b2school.20250205111203",
|
|
122
|
+
"@edifice.io/tiptap-extensions": "2.1.0-develop-b2school.20250205111203",
|
|
123
|
+
"@edifice.io/utilities": "2.1.0-develop-b2school.20250205111203"
|
|
124
124
|
},
|
|
125
125
|
"devDependencies": {
|
|
126
126
|
"@babel/plugin-transform-react-pure-annotations": "^7.23.3",
|
|
@@ -148,8 +148,8 @@
|
|
|
148
148
|
"vite": "^5.4.11",
|
|
149
149
|
"vite-plugin-dts": "^4.1.0",
|
|
150
150
|
"vite-tsconfig-paths": "^5.0.1",
|
|
151
|
-
"@edifice.io/
|
|
152
|
-
"@edifice.io/
|
|
151
|
+
"@edifice.io/client": "2.1.0-develop-b2school.20250205111203",
|
|
152
|
+
"@edifice.io/config": "2.1.0-develop-b2school.20250205111203"
|
|
153
153
|
},
|
|
154
154
|
"peerDependencies": {
|
|
155
155
|
"@react-spring/web": "^9.7.5",
|