@edifice.io/react 2.0.0-develop-integration.20250109114627 → 2.0.0-develop-b2school.20250114153604
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/List/List.d.ts +9 -1
- package/dist/components/List/List.js +9 -9
- package/dist/icons.js +258 -260
- package/dist/modules/editor/components/Editor/Editor.js +4 -9
- 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 +2 -3
- package/package.json +5 -5
- package/dist/modules/editor/components/Editor/CantooModal.d.ts +0 -7
- package/dist/modules/editor/components/Editor/CantooModal.js +0 -28
- package/dist/modules/editor/components/EditorToolbar/EditorToolbar.Cantoo.d.ts +0 -8
- package/dist/modules/editor/hooks/useCantooEditor.d.ts +0 -9
- package/dist/modules/editor/hooks/useCantooModal.d.ts +0 -15
- package/dist/modules/editor/hooks/useCantooModal.js +0 -17
- package/dist/modules/icons/components/IconCantoo.d.ts +0 -7
- package/dist/modules/icons/components/IconCantoo.js +0 -12
- package/dist/modules/icons/components/IconMicOff.d.ts +0 -7
- package/dist/modules/icons/components/IconMicOff.js +0 -12
- package/dist/modules/icons/components/IconTextToSpeechOff.d.ts +0 -7
- package/dist/modules/icons/components/IconTextToSpeechOff.js +0 -12
|
@@ -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
|
};
|
package/dist/icons.js
CHANGED
|
@@ -20,136 +20,135 @@ import { default as default20 } from "./modules/icons/components/IconBurgerMenu.
|
|
|
20
20
|
import { default as default21 } from "./modules/icons/components/IconCalendarLight.js";
|
|
21
21
|
import { default as default22 } from "./modules/icons/components/IconCalendar.js";
|
|
22
22
|
import { default as default23 } from "./modules/icons/components/IconCamera.js";
|
|
23
|
-
import { default as default24 } from "./modules/icons/components/
|
|
24
|
-
import { default as default25 } from "./modules/icons/components/
|
|
25
|
-
import { default as default26 } from "./modules/icons/components/
|
|
26
|
-
import { default as default27 } from "./modules/icons/components/
|
|
27
|
-
import { default as default28 } from "./modules/icons/components/
|
|
28
|
-
import { default as default29 } from "./modules/icons/components/
|
|
29
|
-
import { default as default30 } from "./modules/icons/components/
|
|
30
|
-
import { default as default31 } from "./modules/icons/components/
|
|
31
|
-
import { default as default32 } from "./modules/icons/components/
|
|
32
|
-
import { default as default33 } from "./modules/icons/components/
|
|
33
|
-
import { default as default34 } from "./modules/icons/components/
|
|
34
|
-
import { default as default35 } from "./modules/icons/components/
|
|
35
|
-
import { default as default36 } from "./modules/icons/components/
|
|
36
|
-
import { default as default37 } from "./modules/icons/components/
|
|
37
|
-
import { default as default38 } from "./modules/icons/components/
|
|
38
|
-
import { default as default39 } from "./modules/icons/components/
|
|
39
|
-
import { default as default40 } from "./modules/icons/components/
|
|
40
|
-
import { default as default41 } from "./modules/icons/components/
|
|
41
|
-
import { default as default42 } from "./modules/icons/components/
|
|
42
|
-
import { default as default43 } from "./modules/icons/components/
|
|
43
|
-
import { default as default44 } from "./modules/icons/components/
|
|
44
|
-
import { default as default45 } from "./modules/icons/components/
|
|
45
|
-
import { default as default46 } from "./modules/icons/components/
|
|
46
|
-
import { default as default47 } from "./modules/icons/components/
|
|
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/
|
|
150
|
-
import { default as default151 } from "./modules/icons/components/
|
|
151
|
-
import { default as default152 } from "./modules/icons/components/
|
|
152
|
-
import { default as default153 } from "./modules/icons/components/IconZoomOut.js";
|
|
23
|
+
import { default as default24 } from "./modules/icons/components/IconCenter.js";
|
|
24
|
+
import { default as default25 } from "./modules/icons/components/IconCheck.js";
|
|
25
|
+
import { default as default26 } from "./modules/icons/components/IconChecklist.js";
|
|
26
|
+
import { default as default27 } from "./modules/icons/components/IconClock.js";
|
|
27
|
+
import { default as default28 } from "./modules/icons/components/IconCloseFullScreen.js";
|
|
28
|
+
import { default as default29 } from "./modules/icons/components/IconClose.js";
|
|
29
|
+
import { default as default30 } from "./modules/icons/components/IconCode.js";
|
|
30
|
+
import { default as default31 } from "./modules/icons/components/IconCopy.js";
|
|
31
|
+
import { default as default32 } from "./modules/icons/components/IconCrop.js";
|
|
32
|
+
import { default as default33 } from "./modules/icons/components/IconCut.js";
|
|
33
|
+
import { default as default34 } from "./modules/icons/components/IconDeleteColor.js";
|
|
34
|
+
import { default as default35 } from "./modules/icons/components/IconDeleteColumnHighlight.js";
|
|
35
|
+
import { default as default36 } from "./modules/icons/components/IconDeleteColumn.js";
|
|
36
|
+
import { default as default37 } from "./modules/icons/components/IconDeleteRowHighlight.js";
|
|
37
|
+
import { default as default38 } from "./modules/icons/components/IconDeleteRow.js";
|
|
38
|
+
import { default as default39 } from "./modules/icons/components/IconDelete.js";
|
|
39
|
+
import { default as default40 } from "./modules/icons/components/IconDepositeInbox.js";
|
|
40
|
+
import { default as default41 } from "./modules/icons/components/IconDownload.js";
|
|
41
|
+
import { default as default42 } from "./modules/icons/components/IconEdit.js";
|
|
42
|
+
import { default as default43 } from "./modules/icons/components/IconError.js";
|
|
43
|
+
import { default as default44 } from "./modules/icons/components/IconExternalLink.js";
|
|
44
|
+
import { default as default45 } from "./modules/icons/components/IconFiles.js";
|
|
45
|
+
import { default as default46 } from "./modules/icons/components/IconFilter.js";
|
|
46
|
+
import { default as default47 } from "./modules/icons/components/IconFlag.js";
|
|
47
|
+
import { default as default48 } from "./modules/icons/components/IconFolderMove.js";
|
|
48
|
+
import { default as default49 } from "./modules/icons/components/IconFolder.js";
|
|
49
|
+
import { default as default50 } from "./modules/icons/components/IconForgoing.js";
|
|
50
|
+
import { default as default51 } from "./modules/icons/components/IconFullScreen.js";
|
|
51
|
+
import { default as default52 } from "./modules/icons/components/IconGlobe.js";
|
|
52
|
+
import { default as default53 } from "./modules/icons/components/IconHeadphone.js";
|
|
53
|
+
import { default as default54 } from "./modules/icons/components/IconHide.js";
|
|
54
|
+
import { default as default55 } from "./modules/icons/components/IconHighlightColumn.js";
|
|
55
|
+
import { default as default56 } from "./modules/icons/components/IconHighlightRow.js";
|
|
56
|
+
import { default as default57 } from "./modules/icons/components/IconHome.js";
|
|
57
|
+
import { default as default58 } from "./modules/icons/components/IconHourglass.js";
|
|
58
|
+
import { default as default59 } from "./modules/icons/components/IconImageSizeLarge.js";
|
|
59
|
+
import { default as default60 } from "./modules/icons/components/IconImageSizeMedium.js";
|
|
60
|
+
import { default as default61 } from "./modules/icons/components/IconImageSizeSmall.js";
|
|
61
|
+
import { default as default62 } from "./modules/icons/components/IconInbox.js";
|
|
62
|
+
import { default as default63 } from "./modules/icons/components/IconInfoCircle.js";
|
|
63
|
+
import { default as default64 } from "./modules/icons/components/IconLandscape.js";
|
|
64
|
+
import { default as default65 } from "./modules/icons/components/IconLink.js";
|
|
65
|
+
import { default as default66 } from "./modules/icons/components/IconListOrder.js";
|
|
66
|
+
import { default as default67 } from "./modules/icons/components/IconLoader.js";
|
|
67
|
+
import { default as default68 } from "./modules/icons/components/IconLock.js";
|
|
68
|
+
import { default as default69 } from "./modules/icons/components/IconMail.js";
|
|
69
|
+
import { default as default70 } from "./modules/icons/components/IconMergeCells.js";
|
|
70
|
+
import { default as default71 } from "./modules/icons/components/IconMessageInfo.js";
|
|
71
|
+
import { default as default72 } from "./modules/icons/components/IconMic.js";
|
|
72
|
+
import { default as default73 } from "./modules/icons/components/IconMinus.js";
|
|
73
|
+
import { default as default74 } from "./modules/icons/components/IconMove.js";
|
|
74
|
+
import { default as default75 } from "./modules/icons/components/IconNoColors.js";
|
|
75
|
+
import { default as default76 } from "./modules/icons/components/IconOptions.js";
|
|
76
|
+
import { default as default77 } from "./modules/icons/components/IconOrderedList.js";
|
|
77
|
+
import { default as default78 } from "./modules/icons/components/IconPaperclip.js";
|
|
78
|
+
import { default as default79 } from "./modules/icons/components/IconPause.js";
|
|
79
|
+
import { default as default80 } from "./modules/icons/components/IconPinOff.js";
|
|
80
|
+
import { default as default81 } from "./modules/icons/components/IconPinOn.js";
|
|
81
|
+
import { default as default82 } from "./modules/icons/components/IconPlaceholder.js";
|
|
82
|
+
import { default as default83 } from "./modules/icons/components/IconPlayFilled.js";
|
|
83
|
+
import { default as default84 } from "./modules/icons/components/IconPlay.js";
|
|
84
|
+
import { default as default85 } from "./modules/icons/components/IconPlus.js";
|
|
85
|
+
import { default as default86 } from "./modules/icons/components/IconPointerDefault.js";
|
|
86
|
+
import { default as default87 } from "./modules/icons/components/IconPointerHand.js";
|
|
87
|
+
import { default as default88 } from "./modules/icons/components/IconPrint.js";
|
|
88
|
+
import { default as default89 } from "./modules/icons/components/IconQuestion.js";
|
|
89
|
+
import { default as default90 } from "./modules/icons/components/IconRafterDown.js";
|
|
90
|
+
import { default as default91 } from "./modules/icons/components/IconRafterLeft.js";
|
|
91
|
+
import { default as default92 } from "./modules/icons/components/IconRafterRight.js";
|
|
92
|
+
import { default as default93 } from "./modules/icons/components/IconRafterUp.js";
|
|
93
|
+
import { default as default94 } from "./modules/icons/components/IconReaction.js";
|
|
94
|
+
import { default as default95 } from "./modules/icons/components/IconReadMail.js";
|
|
95
|
+
import { default as default96 } from "./modules/icons/components/IconRecordPause.js";
|
|
96
|
+
import { default as default97 } from "./modules/icons/components/IconRecordStop.js";
|
|
97
|
+
import { default as default98 } from "./modules/icons/components/IconRecordVideo.js";
|
|
98
|
+
import { default as default99 } from "./modules/icons/components/IconRecord.js";
|
|
99
|
+
import { default as default100 } from "./modules/icons/components/IconRedo.js";
|
|
100
|
+
import { default as default101 } from "./modules/icons/components/IconRefresh.js";
|
|
101
|
+
import { default as default102 } from "./modules/icons/components/IconReset.js";
|
|
102
|
+
import { default as default103 } from "./modules/icons/components/IconRestart.js";
|
|
103
|
+
import { default as default104 } from "./modules/icons/components/IconRestore.js";
|
|
104
|
+
import { default as default105 } from "./modules/icons/components/IconSave.js";
|
|
105
|
+
import { default as default106 } from "./modules/icons/components/IconSearch.js";
|
|
106
|
+
import { default as default107 } from "./modules/icons/components/IconSee.js";
|
|
107
|
+
import { default as default108 } from "./modules/icons/components/IconSend.js";
|
|
108
|
+
import { default as default109 } from "./modules/icons/components/IconSetBackground.js";
|
|
109
|
+
import { default as default110 } from "./modules/icons/components/IconSettings.js";
|
|
110
|
+
import { default as default111 } from "./modules/icons/components/IconShare.js";
|
|
111
|
+
import { default as default112 } from "./modules/icons/components/IconSmartphone.js";
|
|
112
|
+
import { default as default113 } from "./modules/icons/components/IconSmiley.js";
|
|
113
|
+
import { default as default114 } from "./modules/icons/components/IconSortAscendingLetters.js";
|
|
114
|
+
import { default as default115 } from "./modules/icons/components/IconSortDescendingLetters.js";
|
|
115
|
+
import { default as default116 } from "./modules/icons/components/IconSortDescending.js";
|
|
116
|
+
import { default as default117 } from "./modules/icons/components/IconSortTime.js";
|
|
117
|
+
import { default as default118 } from "./modules/icons/components/IconSpeechToText.js";
|
|
118
|
+
import { default as default119 } from "./modules/icons/components/IconSplitCells.js";
|
|
119
|
+
import { default as default120 } from "./modules/icons/components/IconSquareRoot.js";
|
|
120
|
+
import { default as default121 } from "./modules/icons/components/IconSubscript.js";
|
|
121
|
+
import { default as default122 } from "./modules/icons/components/IconSuccessFill.js";
|
|
122
|
+
import { default as default123 } from "./modules/icons/components/IconSuccessOutline.js";
|
|
123
|
+
import { default as default124 } from "./modules/icons/components/IconSuperscript.js";
|
|
124
|
+
import { default as default125 } from "./modules/icons/components/IconTable.js";
|
|
125
|
+
import { default as default126 } from "./modules/icons/components/IconTextBold.js";
|
|
126
|
+
import { default as default127 } from "./modules/icons/components/IconTextColor.js";
|
|
127
|
+
import { default as default128 } from "./modules/icons/components/IconTextHighlight.js";
|
|
128
|
+
import { default as default129 } from "./modules/icons/components/IconTextItalic.js";
|
|
129
|
+
import { default as default130 } from "./modules/icons/components/IconTextPage.js";
|
|
130
|
+
import { default as default131 } from "./modules/icons/components/IconTextSize.js";
|
|
131
|
+
import { default as default132 } from "./modules/icons/components/IconTextToSpeech.js";
|
|
132
|
+
import { default as default133 } from "./modules/icons/components/IconTextTypo.js";
|
|
133
|
+
import { default as default134 } from "./modules/icons/components/IconTextUnderline.js";
|
|
134
|
+
import { default as default135 } from "./modules/icons/components/IconTextVanilla.js";
|
|
135
|
+
import { default as default136 } from "./modules/icons/components/IconTool.js";
|
|
136
|
+
import { default as default137 } from "./modules/icons/components/IconTrendingUp.js";
|
|
137
|
+
import { default as default138 } from "./modules/icons/components/IconUndo.js";
|
|
138
|
+
import { default as default139 } from "./modules/icons/components/IconUnlink.js";
|
|
139
|
+
import { default as default140 } from "./modules/icons/components/IconUnlock.js";
|
|
140
|
+
import { default as default141 } from "./modules/icons/components/IconUnreadMail.js";
|
|
141
|
+
import { default as default142 } from "./modules/icons/components/IconUpload.js";
|
|
142
|
+
import { default as default143 } from "./modules/icons/components/IconUserSearch.js";
|
|
143
|
+
import { default as default144 } from "./modules/icons/components/IconUser.js";
|
|
144
|
+
import { default as default145 } from "./modules/icons/components/IconUsers.js";
|
|
145
|
+
import { default as default146 } from "./modules/icons/components/IconVideo.js";
|
|
146
|
+
import { default as default147 } from "./modules/icons/components/IconViewCalendar.js";
|
|
147
|
+
import { default as default148 } from "./modules/icons/components/IconViewList.js";
|
|
148
|
+
import { default as default149 } from "./modules/icons/components/IconWand.js";
|
|
149
|
+
import { default as default150 } from "./modules/icons/components/IconWrite.js";
|
|
150
|
+
import { default as default151 } from "./modules/icons/components/IconZoomIn.js";
|
|
151
|
+
import { default as default152 } from "./modules/icons/components/IconZoomOut.js";
|
|
153
152
|
export {
|
|
154
153
|
default3 as IconAdd,
|
|
155
154
|
default2 as IconAddUser,
|
|
@@ -173,134 +172,133 @@ export {
|
|
|
173
172
|
default22 as IconCalendar,
|
|
174
173
|
default21 as IconCalendarLight,
|
|
175
174
|
default23 as IconCamera,
|
|
176
|
-
default24 as
|
|
177
|
-
default25 as
|
|
178
|
-
default26 as
|
|
179
|
-
default27 as
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
default31 as
|
|
184
|
-
default32 as
|
|
185
|
-
default33 as
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
default41 as
|
|
194
|
-
default42 as
|
|
195
|
-
default43 as
|
|
196
|
-
default44 as
|
|
197
|
-
default45 as
|
|
198
|
-
default46 as
|
|
199
|
-
default47 as
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
default51 as
|
|
204
|
-
default52 as
|
|
205
|
-
default53 as
|
|
206
|
-
default54 as
|
|
207
|
-
default55 as
|
|
208
|
-
default56 as
|
|
209
|
-
default57 as
|
|
210
|
-
default58 as
|
|
211
|
-
default59 as
|
|
212
|
-
default60 as
|
|
213
|
-
default61 as
|
|
214
|
-
default62 as
|
|
215
|
-
default63 as
|
|
216
|
-
default64 as
|
|
217
|
-
default65 as
|
|
218
|
-
default66 as
|
|
219
|
-
default67 as
|
|
220
|
-
default68 as
|
|
221
|
-
default69 as
|
|
222
|
-
default70 as
|
|
223
|
-
default71 as
|
|
224
|
-
default72 as
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
default75 as
|
|
228
|
-
default76 as
|
|
229
|
-
default77 as
|
|
230
|
-
default78 as
|
|
231
|
-
default79 as
|
|
232
|
-
default80 as
|
|
233
|
-
default81 as
|
|
234
|
-
default82 as
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
default87 as
|
|
240
|
-
default88 as
|
|
241
|
-
default89 as
|
|
242
|
-
default90 as
|
|
243
|
-
default91 as
|
|
244
|
-
default92 as
|
|
245
|
-
default93 as
|
|
246
|
-
default94 as
|
|
247
|
-
default95 as
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
default97 as
|
|
251
|
-
default98 as
|
|
252
|
-
|
|
253
|
-
default101 as
|
|
254
|
-
default102 as
|
|
255
|
-
default103 as
|
|
256
|
-
default104 as
|
|
257
|
-
default105 as
|
|
258
|
-
default106 as
|
|
259
|
-
default107 as
|
|
260
|
-
default108 as
|
|
261
|
-
default109 as
|
|
262
|
-
default110 as
|
|
263
|
-
default111 as
|
|
264
|
-
default112 as
|
|
265
|
-
default113 as
|
|
266
|
-
default114 as
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
default118 as
|
|
271
|
-
default119 as
|
|
272
|
-
default120 as
|
|
273
|
-
default121 as
|
|
274
|
-
default122 as
|
|
275
|
-
default123 as
|
|
276
|
-
default124 as
|
|
277
|
-
default125 as
|
|
278
|
-
default126 as
|
|
279
|
-
default127 as
|
|
280
|
-
default128 as
|
|
281
|
-
default129 as
|
|
282
|
-
default130 as
|
|
283
|
-
default131 as
|
|
284
|
-
default132 as
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
default135 as
|
|
288
|
-
default136 as
|
|
289
|
-
default137 as
|
|
290
|
-
default138 as
|
|
291
|
-
default139 as
|
|
292
|
-
default140 as
|
|
293
|
-
default141 as
|
|
294
|
-
default142 as
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
default146 as
|
|
299
|
-
default147 as
|
|
300
|
-
default148 as
|
|
301
|
-
default149 as
|
|
302
|
-
default150 as
|
|
303
|
-
default151 as
|
|
304
|
-
default152 as
|
|
305
|
-
default153 as IconZoomOut
|
|
175
|
+
default24 as IconCenter,
|
|
176
|
+
default25 as IconCheck,
|
|
177
|
+
default26 as IconChecklist,
|
|
178
|
+
default27 as IconClock,
|
|
179
|
+
default29 as IconClose,
|
|
180
|
+
default28 as IconCloseFullScreen,
|
|
181
|
+
default30 as IconCode,
|
|
182
|
+
default31 as IconCopy,
|
|
183
|
+
default32 as IconCrop,
|
|
184
|
+
default33 as IconCut,
|
|
185
|
+
default39 as IconDelete,
|
|
186
|
+
default34 as IconDeleteColor,
|
|
187
|
+
default36 as IconDeleteColumn,
|
|
188
|
+
default35 as IconDeleteColumnHighlight,
|
|
189
|
+
default38 as IconDeleteRow,
|
|
190
|
+
default37 as IconDeleteRowHighlight,
|
|
191
|
+
default40 as IconDepositeInbox,
|
|
192
|
+
default41 as IconDownload,
|
|
193
|
+
default42 as IconEdit,
|
|
194
|
+
default43 as IconError,
|
|
195
|
+
default44 as IconExternalLink,
|
|
196
|
+
default45 as IconFiles,
|
|
197
|
+
default46 as IconFilter,
|
|
198
|
+
default47 as IconFlag,
|
|
199
|
+
default49 as IconFolder,
|
|
200
|
+
default48 as IconFolderMove,
|
|
201
|
+
default50 as IconForgoing,
|
|
202
|
+
default51 as IconFullScreen,
|
|
203
|
+
default52 as IconGlobe,
|
|
204
|
+
default53 as IconHeadphone,
|
|
205
|
+
default54 as IconHide,
|
|
206
|
+
default55 as IconHighlightColumn,
|
|
207
|
+
default56 as IconHighlightRow,
|
|
208
|
+
default57 as IconHome,
|
|
209
|
+
default58 as IconHourglass,
|
|
210
|
+
default59 as IconImageSizeLarge,
|
|
211
|
+
default60 as IconImageSizeMedium,
|
|
212
|
+
default61 as IconImageSizeSmall,
|
|
213
|
+
default62 as IconInbox,
|
|
214
|
+
default63 as IconInfoCircle,
|
|
215
|
+
default64 as IconLandscape,
|
|
216
|
+
default65 as IconLink,
|
|
217
|
+
default66 as IconListOrder,
|
|
218
|
+
default67 as IconLoader,
|
|
219
|
+
default68 as IconLock,
|
|
220
|
+
default69 as IconMail,
|
|
221
|
+
default70 as IconMergeCells,
|
|
222
|
+
default71 as IconMessageInfo,
|
|
223
|
+
default72 as IconMic,
|
|
224
|
+
default73 as IconMinus,
|
|
225
|
+
default74 as IconMove,
|
|
226
|
+
default75 as IconNoColors,
|
|
227
|
+
default76 as IconOptions,
|
|
228
|
+
default77 as IconOrderedList,
|
|
229
|
+
default78 as IconPaperclip,
|
|
230
|
+
default79 as IconPause,
|
|
231
|
+
default80 as IconPinOff,
|
|
232
|
+
default81 as IconPinOn,
|
|
233
|
+
default82 as IconPlaceholder,
|
|
234
|
+
default84 as IconPlay,
|
|
235
|
+
default83 as IconPlayFilled,
|
|
236
|
+
default85 as IconPlus,
|
|
237
|
+
default86 as IconPointerDefault,
|
|
238
|
+
default87 as IconPointerHand,
|
|
239
|
+
default88 as IconPrint,
|
|
240
|
+
default89 as IconQuestion,
|
|
241
|
+
default90 as IconRafterDown,
|
|
242
|
+
default91 as IconRafterLeft,
|
|
243
|
+
default92 as IconRafterRight,
|
|
244
|
+
default93 as IconRafterUp,
|
|
245
|
+
default94 as IconReaction,
|
|
246
|
+
default95 as IconReadMail,
|
|
247
|
+
default99 as IconRecord,
|
|
248
|
+
default96 as IconRecordPause,
|
|
249
|
+
default97 as IconRecordStop,
|
|
250
|
+
default98 as IconRecordVideo,
|
|
251
|
+
default100 as IconRedo,
|
|
252
|
+
default101 as IconRefresh,
|
|
253
|
+
default102 as IconReset,
|
|
254
|
+
default103 as IconRestart,
|
|
255
|
+
default104 as IconRestore,
|
|
256
|
+
default105 as IconSave,
|
|
257
|
+
default106 as IconSearch,
|
|
258
|
+
default107 as IconSee,
|
|
259
|
+
default108 as IconSend,
|
|
260
|
+
default109 as IconSetBackground,
|
|
261
|
+
default110 as IconSettings,
|
|
262
|
+
default111 as IconShare,
|
|
263
|
+
default112 as IconSmartphone,
|
|
264
|
+
default113 as IconSmiley,
|
|
265
|
+
default114 as IconSortAscendingLetters,
|
|
266
|
+
default116 as IconSortDescending,
|
|
267
|
+
default115 as IconSortDescendingLetters,
|
|
268
|
+
default117 as IconSortTime,
|
|
269
|
+
default118 as IconSpeechToText,
|
|
270
|
+
default119 as IconSplitCells,
|
|
271
|
+
default120 as IconSquareRoot,
|
|
272
|
+
default121 as IconSubscript,
|
|
273
|
+
default122 as IconSuccessFill,
|
|
274
|
+
default123 as IconSuccessOutline,
|
|
275
|
+
default124 as IconSuperscript,
|
|
276
|
+
default125 as IconTable,
|
|
277
|
+
default126 as IconTextBold,
|
|
278
|
+
default127 as IconTextColor,
|
|
279
|
+
default128 as IconTextHighlight,
|
|
280
|
+
default129 as IconTextItalic,
|
|
281
|
+
default130 as IconTextPage,
|
|
282
|
+
default131 as IconTextSize,
|
|
283
|
+
default132 as IconTextToSpeech,
|
|
284
|
+
default133 as IconTextTypo,
|
|
285
|
+
default134 as IconTextUnderline,
|
|
286
|
+
default135 as IconTextVanilla,
|
|
287
|
+
default136 as IconTool,
|
|
288
|
+
default137 as IconTrendingUp,
|
|
289
|
+
default138 as IconUndo,
|
|
290
|
+
default139 as IconUnlink,
|
|
291
|
+
default140 as IconUnlock,
|
|
292
|
+
default141 as IconUnreadMail,
|
|
293
|
+
default142 as IconUpload,
|
|
294
|
+
default144 as IconUser,
|
|
295
|
+
default143 as IconUserSearch,
|
|
296
|
+
default145 as IconUsers,
|
|
297
|
+
default146 as IconVideo,
|
|
298
|
+
default147 as IconViewCalendar,
|
|
299
|
+
default148 as IconViewList,
|
|
300
|
+
default149 as IconWand,
|
|
301
|
+
default150 as IconWrite,
|
|
302
|
+
default151 as IconZoomIn,
|
|
303
|
+
default152 as IconZoomOut
|
|
306
304
|
};
|
|
@@ -3,7 +3,6 @@ import { forwardRef, useId, useImperativeHandle, Suspense, lazy } from "react";
|
|
|
3
3
|
import { EditorContent } from "@tiptap/react";
|
|
4
4
|
import clsx from "clsx";
|
|
5
5
|
import { useEdificeClient } from "../../../../providers/EdificeClientProvider/EdificeClientProvider.hook.js";
|
|
6
|
-
import { useCantooModal } from "../../hooks/useCantooModal.js";
|
|
7
6
|
import { useMathsStyles } from "../../hooks/useMathsStyles.js";
|
|
8
7
|
import { useTipTapEditor } from "../../hooks/useTipTapEditor.js";
|
|
9
8
|
import { useMediaLibraryEditor } from "../../hooks/useMediaLibraryEditor.js";
|
|
@@ -18,7 +17,7 @@ import TableToolbar from "../Toolbar/TableToolbar.js";
|
|
|
18
17
|
import BubbleMenuEditImage from "../BubbleMenuEditImage/BubbleMenuEditImage.js";
|
|
19
18
|
import LoadingScreen from "../../../../components/LoadingScreen/LoadingScreen.js";
|
|
20
19
|
import MediaLibrary from "../../../multimedia/MediaLibrary/MediaLibrary.js";
|
|
21
|
-
const MathsModal = /* @__PURE__ */ lazy(async () => await import("./MathsModal.js")), ImageEditor = /* @__PURE__ */ lazy(async () => await import("../../../multimedia/ImageEditor/components/ImageEditor.js")),
|
|
20
|
+
const MathsModal = /* @__PURE__ */ lazy(async () => await import("./MathsModal.js")), ImageEditor = /* @__PURE__ */ lazy(async () => await import("../../../multimedia/ImageEditor/components/ImageEditor.js")), Editor = /* @__PURE__ */ forwardRef(({
|
|
22
21
|
id,
|
|
23
22
|
content,
|
|
24
23
|
mode = "read",
|
|
@@ -40,10 +39,7 @@ const MathsModal = /* @__PURE__ */ lazy(async () => await import("./MathsModal.j
|
|
|
40
39
|
} = useMediaLibraryEditor(editor), {
|
|
41
40
|
toggle: toggleMathsModal,
|
|
42
41
|
...mathsModalHandlers
|
|
43
|
-
} = useMathsModal(editor),
|
|
44
|
-
toggle: toggleCantooModal,
|
|
45
|
-
...cantooModalHandlers
|
|
46
|
-
} = useCantooModal(), imageModal = useImageModal(editor, "media-library", visibility), linkToolbarHandlers = useLinkToolbar(editor, mediaLibraryModalRef), speechSynthetisis = useSpeechSynthetisis(editor);
|
|
42
|
+
} = useMathsModal(editor), imageModal = useImageModal(editor, "media-library", visibility), linkToolbarHandlers = useLinkToolbar(editor, mediaLibraryModalRef), speechSynthetisis = useSpeechSynthetisis(editor);
|
|
47
43
|
if (useMathsStyles(), useImperativeHandle(ref, () => ({
|
|
48
44
|
getContent: (as) => {
|
|
49
45
|
switch (as) {
|
|
@@ -68,7 +64,7 @@ const MathsModal = /* @__PURE__ */ lazy(async () => await import("./MathsModal.j
|
|
|
68
64
|
editable
|
|
69
65
|
}, children: [
|
|
70
66
|
/* @__PURE__ */ jsxs("div", { className: borderClass, children: [
|
|
71
|
-
toolbar !== "none" && editable && /* @__PURE__ */ jsx(EditorToolbar, { mediaLibraryRef: mediaLibraryModalRef, toggleMathsModal
|
|
67
|
+
toolbar !== "none" && editable && /* @__PURE__ */ jsx(EditorToolbar, { mediaLibraryRef: mediaLibraryModalRef, toggleMathsModal }),
|
|
72
68
|
/* @__PURE__ */ jsx(EditorContent, { id: id ?? editorId, editor, className: contentClass })
|
|
73
69
|
] }),
|
|
74
70
|
/* @__PURE__ */ jsx(LinkToolbar, { editor, ...linkToolbarHandlers }),
|
|
@@ -77,8 +73,7 @@ const MathsModal = /* @__PURE__ */ lazy(async () => await import("./MathsModal.j
|
|
|
77
73
|
/* @__PURE__ */ jsxs(Suspense, { fallback: /* @__PURE__ */ jsx(LoadingScreen, {}), children: [
|
|
78
74
|
editable && /* @__PURE__ */ jsx(MediaLibrary, { appCode, visibility, multiple: !0, ref: mediaLibraryModalRef, ...mediaLibraryModalHandlers }),
|
|
79
75
|
editable && mathsModalHandlers.isOpen && /* @__PURE__ */ jsx(MathsModal, { ...mathsModalHandlers }),
|
|
80
|
-
editable && (imageModal == null ? void 0 : imageModal.isOpen) && (imageModal == null ? void 0 : imageModal.currentImage) && /* @__PURE__ */ jsx(ImageEditor, { altText: imageModal == null ? void 0 : imageModal.currentImage.alt, legend: imageModal == null ? void 0 : imageModal.currentImage.title, image: imageModal == null ? void 0 : imageModal.currentImage.src, isOpen: imageModal.isOpen, onCancel: imageModal.handleCancel, onSave: imageModal.handleSave, onError: console.error })
|
|
81
|
-
editable && cantooModalHandlers.isOpen && /* @__PURE__ */ jsx(CantooModal, { ...cantooModalHandlers })
|
|
76
|
+
editable && (imageModal == null ? void 0 : imageModal.isOpen) && (imageModal == null ? void 0 : imageModal.currentImage) && /* @__PURE__ */ jsx(ImageEditor, { altText: imageModal == null ? void 0 : imageModal.currentImage.alt, legend: imageModal == null ? void 0 : imageModal.currentImage.title, image: imageModal == null ? void 0 : imageModal.currentImage.src, isOpen: imageModal.isOpen, onCancel: imageModal.handleCancel, onSave: imageModal.handleSave, onError: console.error })
|
|
82
77
|
] })
|
|
83
78
|
] });
|
|
84
79
|
});
|
|
@@ -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
|
+
};
|
|
@@ -20,7 +20,6 @@ export { default as IconBurgerMenu } from './IconBurgerMenu';
|
|
|
20
20
|
export { default as IconCalendarLight } from './IconCalendarLight';
|
|
21
21
|
export { default as IconCalendar } from './IconCalendar';
|
|
22
22
|
export { default as IconCamera } from './IconCamera';
|
|
23
|
-
export { default as IconCantoo } from './IconCantoo';
|
|
24
23
|
export { default as IconCenter } from './IconCenter';
|
|
25
24
|
export { default as IconCheck } from './IconCheck';
|
|
26
25
|
export { default as IconChecklist } from './IconChecklist';
|
|
@@ -69,7 +68,6 @@ export { default as IconLock } from './IconLock';
|
|
|
69
68
|
export { default as IconMail } from './IconMail';
|
|
70
69
|
export { default as IconMergeCells } from './IconMergeCells';
|
|
71
70
|
export { default as IconMessageInfo } from './IconMessageInfo';
|
|
72
|
-
export { default as IconMicOff } from './IconMicOff';
|
|
73
71
|
export { default as IconMic } from './IconMic';
|
|
74
72
|
export { default as IconMinus } from './IconMinus';
|
|
75
73
|
export { default as IconMove } from './IconMove';
|
|
@@ -93,6 +91,7 @@ export { default as IconRafterLeft } from './IconRafterLeft';
|
|
|
93
91
|
export { default as IconRafterRight } from './IconRafterRight';
|
|
94
92
|
export { default as IconRafterUp } from './IconRafterUp';
|
|
95
93
|
export { default as IconReaction } from './IconReaction';
|
|
94
|
+
export { default as IconReadMail } from './IconReadMail';
|
|
96
95
|
export { default as IconRecordPause } from './IconRecordPause';
|
|
97
96
|
export { default as IconRecordStop } from './IconRecordStop';
|
|
98
97
|
export { default as IconRecordVideo } from './IconRecordVideo';
|
|
@@ -129,7 +128,6 @@ export { default as IconTextHighlight } from './IconTextHighlight';
|
|
|
129
128
|
export { default as IconTextItalic } from './IconTextItalic';
|
|
130
129
|
export { default as IconTextPage } from './IconTextPage';
|
|
131
130
|
export { default as IconTextSize } from './IconTextSize';
|
|
132
|
-
export { default as IconTextToSpeechOff } from './IconTextToSpeechOff';
|
|
133
131
|
export { default as IconTextToSpeech } from './IconTextToSpeech';
|
|
134
132
|
export { default as IconTextTypo } from './IconTextTypo';
|
|
135
133
|
export { default as IconTextUnderline } from './IconTextUnderline';
|
|
@@ -139,6 +137,7 @@ export { default as IconTrendingUp } from './IconTrendingUp';
|
|
|
139
137
|
export { default as IconUndo } from './IconUndo';
|
|
140
138
|
export { default as IconUnlink } from './IconUnlink';
|
|
141
139
|
export { default as IconUnlock } from './IconUnlock';
|
|
140
|
+
export { default as IconUnreadMail } from './IconUnreadMail';
|
|
142
141
|
export { default as IconUpload } from './IconUpload';
|
|
143
142
|
export { default as IconUserSearch } from './IconUserSearch';
|
|
144
143
|
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.0.0-develop-
|
|
3
|
+
"version": "2.0.0-develop-b2school.20250114153604",
|
|
4
4
|
"description": "Edifice React Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -119,9 +119,9 @@
|
|
|
119
119
|
"react-slugify": "^3.0.3",
|
|
120
120
|
"swiper": "^10.1.0",
|
|
121
121
|
"ua-parser-js": "^1.0.36",
|
|
122
|
-
"@edifice.io/bootstrap": "2.0.0-develop-
|
|
123
|
-
"@edifice.io/
|
|
124
|
-
"@edifice.io/
|
|
122
|
+
"@edifice.io/bootstrap": "2.0.0-develop-b2school.20250114153604",
|
|
123
|
+
"@edifice.io/tiptap-extensions": "2.0.0-develop-b2school.20250114153604",
|
|
124
|
+
"@edifice.io/utilities": "2.0.0-develop-b2school.20250114153604"
|
|
125
125
|
},
|
|
126
126
|
"devDependencies": {
|
|
127
127
|
"@babel/plugin-transform-react-pure-annotations": "^7.23.3",
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
"typescript-eslint": "^8.8.1",
|
|
148
148
|
"vite": "^5.4.11",
|
|
149
149
|
"vite-plugin-dts": "^4.1.0",
|
|
150
|
-
"@edifice.io/client": "2.0.0-develop-
|
|
150
|
+
"@edifice.io/client": "2.0.0-develop-b2school.20250114153604"
|
|
151
151
|
},
|
|
152
152
|
"peerDependencies": {
|
|
153
153
|
"@react-spring/web": "^9.7.5",
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
-
import { createPortal } from "react-dom";
|
|
3
|
-
import { useTranslation } from "react-i18next";
|
|
4
|
-
import Modal from "../../../../components/Modal/Modal.js";
|
|
5
|
-
import Button from "../../../../components/Button/Button.js";
|
|
6
|
-
import { useEditorContext } from "../../hooks/useEditorContext.js";
|
|
7
|
-
const CantooModal = ({
|
|
8
|
-
isOpen,
|
|
9
|
-
onCancel
|
|
10
|
-
}) => {
|
|
11
|
-
const {
|
|
12
|
-
t
|
|
13
|
-
} = useTranslation(), handleOnClose = () => {
|
|
14
|
-
onCancel == null || onCancel();
|
|
15
|
-
}, {
|
|
16
|
-
editor
|
|
17
|
-
} = useEditorContext(), Cantoo = window.Cantoo, editorHTML = editor == null ? void 0 : editor.getHTML(), cantooHTML = Cantoo == null ? void 0 : Cantoo.formatText(editorHTML);
|
|
18
|
-
return /* @__PURE__ */ createPortal(/* @__PURE__ */ jsxs(Modal, { id: "CantooModal", isOpen, onModalClose: handleOnClose, children: [
|
|
19
|
-
/* @__PURE__ */ jsx(Modal.Header, { onModalClose: handleOnClose, children: t("tiptap.cantoo.formatText") }),
|
|
20
|
-
/* @__PURE__ */ jsx(Modal.Body, { children: /* @__PURE__ */ jsx("div", { dangerouslySetInnerHTML: {
|
|
21
|
-
__html: cantooHTML
|
|
22
|
-
} }) }),
|
|
23
|
-
/* @__PURE__ */ jsx(Modal.Footer, { children: /* @__PURE__ */ jsx(Button, { color: "tertiary", onClick: onCancel, type: "button", variant: "ghost", children: t("tiptap.cantoo.close") }) })
|
|
24
|
-
] }), document.getElementById("portal"));
|
|
25
|
-
};
|
|
26
|
-
export {
|
|
27
|
-
CantooModal as default
|
|
28
|
-
};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { RefAttributes } from 'react';
|
|
2
|
-
import { IconButtonProps } from '../../../../components';
|
|
3
|
-
interface Props {
|
|
4
|
-
triggerProps: JSX.IntrinsicAttributes & Omit<IconButtonProps, 'ref'> & RefAttributes<HTMLButtonElement>;
|
|
5
|
-
openModal: () => void;
|
|
6
|
-
}
|
|
7
|
-
export declare const EditorToolbarCantoo: ({ triggerProps, openModal }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
export {};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Editor } from '@tiptap/react';
|
|
2
|
-
export declare const useCantooEditor: (editor: Editor | null) => {
|
|
3
|
-
isAvailable: boolean | Record<string, boolean> | undefined;
|
|
4
|
-
speech2textIsActive: boolean;
|
|
5
|
-
text2speechIsActive: boolean;
|
|
6
|
-
toggleSpeech2Text: () => Promise<void>;
|
|
7
|
-
toggleText2Speech: () => void;
|
|
8
|
-
formatText: (openModal: () => void) => void;
|
|
9
|
-
};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Custom hook to manage CantooModal events in an editor.
|
|
3
|
-
* @returns {
|
|
4
|
-
* `isOpen`: truthy boolean when CantooModal sholud be visible,
|
|
5
|
-
* `toggle`: an imperative function to toggle the `isOpen` value,
|
|
6
|
-
* `onCancel`: Cancel event handler,
|
|
7
|
-
* `onSuccess`: Success event handler (adds a formula to the editor content),
|
|
8
|
-
* }
|
|
9
|
-
*/
|
|
10
|
-
export declare const useCantooModal: () => {
|
|
11
|
-
isOpen: boolean;
|
|
12
|
-
toggle: any;
|
|
13
|
-
onCancel: () => void;
|
|
14
|
-
onSuccess: () => void;
|
|
15
|
-
};
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import useToggle from "../../../hooks/useToggle/useToggle.js";
|
|
2
|
-
const useCantooModal = () => {
|
|
3
|
-
const [isOpen, toggle] = useToggle(!1);
|
|
4
|
-
return {
|
|
5
|
-
isOpen,
|
|
6
|
-
toggle,
|
|
7
|
-
onCancel: () => {
|
|
8
|
-
toggle();
|
|
9
|
-
},
|
|
10
|
-
onSuccess: () => {
|
|
11
|
-
toggle();
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
};
|
|
15
|
-
export {
|
|
16
|
-
useCantooModal
|
|
17
|
-
};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { SVGProps } from 'react';
|
|
2
|
-
interface SVGRProps {
|
|
3
|
-
title?: string;
|
|
4
|
-
titleId?: string;
|
|
5
|
-
}
|
|
6
|
-
declare const SvgIconCantoo: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export default SvgIconCantoo;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
-
const SvgIconCantoo = ({
|
|
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 16 16", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
|
|
7
|
-
title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
|
|
8
|
-
/* @__PURE__ */ jsx("path", { fill: "#000", d: "M8 3a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3M15 4v2h-4.455l.445 10H8.988l-.222-5H7.234l-.222 5H5.01l.445-10H1V4z" })
|
|
9
|
-
] });
|
|
10
|
-
export {
|
|
11
|
-
SvgIconCantoo as default
|
|
12
|
-
};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { SVGProps } from 'react';
|
|
2
|
-
interface SVGRProps {
|
|
3
|
-
title?: string;
|
|
4
|
-
titleId?: string;
|
|
5
|
-
}
|
|
6
|
-
declare const SvgIconMicOff: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export default SvgIconMicOff;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
-
const SvgIconMicOff = ({
|
|
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("path", { fill: "currentColor", fillRule: "evenodd", d: "M1.793 1.04c-.252.045-.546.274-.676.526a.87.87 0 0 0-.06.691c.082.279.119.318 4.107 4.323l2.829 2.84.019 1.58c.019 1.461.027 1.604.107 1.9.367 1.351 1.351 2.35 2.761 2.8.322.103.382.109 1.12.109s.798-.006 1.12-.109c.187-.06.45-.159.585-.22l.245-.111.689.69.689.69-.446.228a7 7 0 0 1-1.782.608c-.597.112-1.686.103-2.289-.017-1.205-.241-2.258-.789-3.093-1.607-.755-.741-1.233-1.531-1.524-2.521-.126-.431-.154-.759-.189-2.221-.031-1.296-.04-1.412-.116-1.559-.368-.717-1.401-.717-1.781 0-.08.15-.086.232-.101 1.273-.009.65.004 1.333.031 1.64A7.7 7.7 0 0 0 5.5 16.46c.277.376.959 1.084 1.335 1.387A8.8 8.8 0 0 0 9.26 19.2c.395.138 1.2.34 1.53.383l.21.027v1.904l-1.65.013-1.65.013-.192.113c-.342.201-.55.619-.489.983.046.269.254.567.499.714l.218.13h8.532l.236-.153c.641-.415.638-1.251-.008-1.655l-.236-.147-1.63-.003L13 21.52l.001-.91c0-.5.013-.93.03-.954.016-.025.119-.058.229-.074.341-.049 1.232-.29 1.646-.445.439-.164.981-.43 1.494-.733l.34-.201.26.248c.143.137 1.007.987 1.92 1.891 2.426 2.402 2.558 2.524 2.822 2.6.775.226 1.513-.639 1.153-1.35-.072-.143-5.933-6.059-11.781-11.895-6.987-6.971-8.607-8.563-8.762-8.61a1.2 1.2 0 0 0-.559-.047m9.567.004c-.576.074-1.3.371-1.8.738-.675.497-1.145 1.163-1.422 2.018-.096.298-.112.421-.129.99-.02.718.014.948.175 1.159.12.158.401.327.625.378.349.078.82-.138 1.011-.463.096-.164.112-.249.157-.844.049-.642.055-.671.202-.961C10.526 3.375 11.164 3 11.98 3c.819 0 1.481.406 1.825 1.12l.144.3.024 3.567.023 3.568.106.208c.112.222.755.915 1.016 1.096.263.182.615.132.762-.108.078-.129.08-.204.08-4.293V4.297l-.104-.359a3.93 3.93 0 0 0-1.115-1.849c-.893-.84-2.092-1.211-3.381-1.045m7.393 8.575c-.353.089-.663.379-.729.681-.014.066-.043.777-.064 1.58-.041 1.529-.058 1.683-.258 2.3-.218.669-.172 1.099.153 1.433.381.392 1.038.408 1.353.034.24-.285.633-1.573.711-2.327.054-.521.052-2.858-.002-3.054-.048-.172-.311-.48-.489-.572a1.1 1.1 0 0 0-.675-.075m-6.462 4.226c-.698.16-1.735-.343-2.069-1.002-.142-.279-.22-.664-.221-1.083L10 11.421l1.201 1.199c1.146 1.146 1.195 1.201 1.09 1.225", clipRule: "evenodd" })
|
|
9
|
-
] });
|
|
10
|
-
export {
|
|
11
|
-
SvgIconMicOff as default
|
|
12
|
-
};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { SVGProps } from 'react';
|
|
2
|
-
interface SVGRProps {
|
|
3
|
-
title?: string;
|
|
4
|
-
titleId?: string;
|
|
5
|
-
}
|
|
6
|
-
declare const SvgIconTextToSpeechOff: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export default SvgIconTextToSpeechOff;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
-
const SvgIconTextToSpeechOff = ({
|
|
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("path", { fill: "currentColor", fillRule: "evenodd", d: "M1.793 1.04c-.252.045-.546.274-.676.526a.87.87 0 0 0-.06.688c.08.277.2.405 3.076 3.292l2.038 2.046-1.715.018c-1.494.016-1.744.027-1.936.089-.717.229-1.203.697-1.41 1.356-.089.283-.09.302-.09 2.925 0 2.449.005 2.657.074 2.878.221.719.684 1.212 1.34 1.429.256.085.337.089 2.128.104l1.862.015 1.978 1.663c3.634 3.054 3.408 2.886 3.918 2.921.679.046 1.148-.122 1.577-.564.331-.341.487-.631.542-1.013.022-.15.04-1.002.04-1.893l.001-1.62 2.87 2.862c3.453 3.443 4.073 4.046 4.252 4.139.181.094.528.097.765.006.21-.08.447-.317.543-.541.084-.196.082-.591-.003-.754-.085-.162-5.712-5.847-11.793-11.915-6.987-6.971-8.607-8.563-8.762-8.61a1.2 1.2 0 0 0-.559-.047m10.424 1.974c-.09.029-.342.147-.56.261-.407.214-.858.555-1.967 1.492-.673.568-.77.704-.77 1.073 0 .314.107.493.56.938.359.353.406.387.47.337.038-.03.393-.325.788-.655l1.256-1.049c.296-.246.556-.437.578-.423.027.016.032.722.015 2.108-.029 2.306-.023 2.397.213 2.863.156.311.747.937.944 1.002.274.091.618-.082.698-.352.031-.105.04-1.033.03-3.129-.013-2.972-.013-2.981-.102-3.219-.111-.294-.341-.536-.825-.869-.546-.375-.969-.495-1.328-.378m7.881 4.539c-.295.138-.538.518-.538.84 0 .043.161.408.358.812.391.801.548 1.231.688 1.875.081.373.092.531.092 1.4.001.775-.014 1.055-.069 1.34-.123.625-.345 1.242-.715 1.982-.453.905-.456.938-.104 1.307.273.285.425.371.662.371.407 0 .749-.242 1.015-.72.335-.601.745-1.724.91-2.492.171-.795.195-2.134.057-3.103-.142-.996-.769-2.648-1.238-3.263-.264-.345-.782-.507-1.118-.349m-7.587 8.814c-.006 1.334-.023 2.439-.039 2.454-.031.031-.038.026-2.332-1.862-2.281-1.878-2.987-2.446-3.07-2.469-.066-.018-.07-.17-.07-2.474V9.562l.11-.058c.06-.031.208-.141.327-.244l.217-.186 2.434 2.433 2.435 2.433zM5 12v2.4H3V9.6h2zm11.68-2.293c-.444.228-.588.666-.349 1.053.062.099.203.288.315.42s.251.339.309.46c.091.19.105.272.105.6 0 .456-.11.839-.346 1.204-.085.131-.154.279-.154.329 0 .105 1.065 1.187 1.168 1.187s.25-.142.461-.448c.278-.402.427-.709.551-1.132a3.64 3.64 0 0 0-.695-3.29c-.254-.305-.532-.456-.881-.479-.231-.015-.291-.003-.484.096", clipRule: "evenodd" })
|
|
9
|
-
] });
|
|
10
|
-
export {
|
|
11
|
-
SvgIconTextToSpeechOff as default
|
|
12
|
-
};
|