@imtf/icons 1.1.0 → 1.2.0
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/lib/icons/AssignmentTurnedInIcon.d.ts +4 -0
- package/lib/icons/AssignmentTurnedInIcon.js +23 -0
- package/lib/icons/AssignmentTurnedInIcon.mjs +24 -0
- package/lib/icons/index.d.ts +1 -0
- package/lib/index.js +33 -31
- package/lib/index.mjs +17 -15
- package/package.json +1 -1
- package/svg/AssignmentTurnedIn.json +6 -0
- package/svg/AssignmentTurnedIn.svg +4 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
import type { IconProps } from "../types";
|
|
3
|
+
declare const ForwardRef: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
4
|
+
export { ForwardRef as AssignmentTurnedInIcon };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const react = require("react");
|
|
5
|
+
const get = require("../utils/get.js");
|
|
6
|
+
const Context = require("../providers/IconProvider/Context.js");
|
|
7
|
+
const AssignmentTurnedInIcon = ({
|
|
8
|
+
color: defaultColor,
|
|
9
|
+
size,
|
|
10
|
+
...props
|
|
11
|
+
}, ref) => {
|
|
12
|
+
const defaultContextValues = react.useContext(Context.IconContext);
|
|
13
|
+
const defaultValues = {
|
|
14
|
+
...defaultContextValues,
|
|
15
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
16
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
17
|
+
...props
|
|
18
|
+
};
|
|
19
|
+
const color = react.useMemo(() => get.default(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
20
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, fill: color, color, "data-testid": "AssignmentTurnedInIcon", ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m424-318 282-282-56-56-226 226-114-114-56 56zM200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h168q13-36 43.5-58t68.5-22 68.5 22 43.5 58h168q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120zm301.5-678.5Q510-807 510-820t-8.5-21.5T480-850t-21.5 8.5T450-820t8.5 21.5T480-790t21.5-8.5" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(AssignmentTurnedInIcon);
|
|
23
|
+
exports.AssignmentTurnedInIcon = ForwardRef;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
import { forwardRef, useContext, useMemo } from "react";
|
|
4
|
+
import get from "../utils/get.mjs";
|
|
5
|
+
import { IconContext } from "../providers/IconProvider/Context.mjs";
|
|
6
|
+
const AssignmentTurnedInIcon = ({
|
|
7
|
+
color: defaultColor,
|
|
8
|
+
size,
|
|
9
|
+
...props
|
|
10
|
+
}, ref) => {
|
|
11
|
+
const defaultContextValues = useContext(IconContext);
|
|
12
|
+
const defaultValues = {
|
|
13
|
+
...defaultContextValues,
|
|
14
|
+
color: defaultColor ?? defaultContextValues.color,
|
|
15
|
+
fontSize: size ?? defaultContextValues.size ?? "var(--panache-icon-size)",
|
|
16
|
+
...props
|
|
17
|
+
};
|
|
18
|
+
const color = useMemo(() => get(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
19
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, fill: color, color, "data-testid": "AssignmentTurnedInIcon", ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "m424-318 282-282-56-56-226 226-114-114-56 56zM200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h168q13-36 43.5-58t68.5-22 68.5 22 43.5 58h168q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120zm301.5-678.5Q510-807 510-820t-8.5-21.5T480-850t-21.5 8.5T450-820t8.5 21.5T480-790t21.5-8.5" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(AssignmentTurnedInIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as AssignmentTurnedInIcon
|
|
24
|
+
};
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ export { ActionValidateIcon } from "./ActionValidateIcon";
|
|
|
38
38
|
export { ActionValueHideIcon } from "./ActionValueHideIcon";
|
|
39
39
|
export { ActionValueRevealIcon } from "./ActionValueRevealIcon";
|
|
40
40
|
export { AiIcon } from "./AiIcon";
|
|
41
|
+
export { AssignmentTurnedInIcon } from "./AssignmentTurnedInIcon";
|
|
41
42
|
export { AttachmentsIcon } from "./AttachmentsIcon";
|
|
42
43
|
export { CaseLockIcon } from "./CaseLockIcon";
|
|
43
44
|
export { CaseIcon } from "./CaseIcon";
|
package/lib/index.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
-
const IconProvider = require("./providers/IconProvider/IconProvider.js");
|
|
3
|
-
const Context = require("./providers/IconProvider/Context.js");
|
|
4
|
-
const IconSVG = require("./components/IconSVG.js");
|
|
5
2
|
const ActionAddAltIcon = require("./icons/ActionAddAltIcon.js");
|
|
6
3
|
const ActionAddIcon = require("./icons/ActionAddIcon.js");
|
|
7
4
|
const ActionCancelIcon = require("./icons/ActionCancelIcon.js");
|
|
@@ -16,13 +13,13 @@ const ActionEscalateIcon = require("./icons/ActionEscalateIcon.js");
|
|
|
16
13
|
const ActionExtandIcon = require("./icons/ActionExtandIcon.js");
|
|
17
14
|
const ActionFavoriteIcon = require("./icons/ActionFavoriteIcon.js");
|
|
18
15
|
const ActionInvestigateIcon = require("./icons/ActionInvestigateIcon.js");
|
|
19
|
-
const ActionLinkOffIcon = require("./icons/ActionLinkOffIcon.js");
|
|
20
16
|
const ActionLinkIcon = require("./icons/ActionLinkIcon.js");
|
|
17
|
+
const ActionLinkOffIcon = require("./icons/ActionLinkOffIcon.js");
|
|
21
18
|
const ActionLogoutIcon = require("./icons/ActionLogoutIcon.js");
|
|
22
19
|
const ActionMarkAsDoneIcon = require("./icons/ActionMarkAsDoneIcon.js");
|
|
23
20
|
const ActionOpenLinkIcon = require("./icons/ActionOpenLinkIcon.js");
|
|
24
|
-
const ActionPinOffIcon = require("./icons/ActionPinOffIcon.js");
|
|
25
21
|
const ActionPinIcon = require("./icons/ActionPinIcon.js");
|
|
22
|
+
const ActionPinOffIcon = require("./icons/ActionPinOffIcon.js");
|
|
26
23
|
const ActionPreviewIcon = require("./icons/ActionPreviewIcon.js");
|
|
27
24
|
const ActionPrintIcon = require("./icons/ActionPrintIcon.js");
|
|
28
25
|
const ActionRefreshIcon = require("./icons/ActionRefreshIcon.js");
|
|
@@ -42,9 +39,10 @@ const ActionValidateIcon = require("./icons/ActionValidateIcon.js");
|
|
|
42
39
|
const ActionValueHideIcon = require("./icons/ActionValueHideIcon.js");
|
|
43
40
|
const ActionValueRevealIcon = require("./icons/ActionValueRevealIcon.js");
|
|
44
41
|
const AiIcon = require("./icons/AiIcon.js");
|
|
42
|
+
const AssignmentTurnedInIcon = require("./icons/AssignmentTurnedInIcon.js");
|
|
45
43
|
const AttachmentsIcon = require("./icons/AttachmentsIcon.js");
|
|
46
|
-
const CaseLockIcon = require("./icons/CaseLockIcon.js");
|
|
47
44
|
const CaseIcon = require("./icons/CaseIcon.js");
|
|
45
|
+
const CaseLockIcon = require("./icons/CaseLockIcon.js");
|
|
48
46
|
const ChevronDownIcon = require("./icons/ChevronDownIcon.js");
|
|
49
47
|
const ChevronLeftIcon = require("./icons/ChevronLeftIcon.js");
|
|
50
48
|
const ChevronRightIcon = require("./icons/ChevronRightIcon.js");
|
|
@@ -57,8 +55,8 @@ const DateExpireIcon = require("./icons/DateExpireIcon.js");
|
|
|
57
55
|
const DateLastEditIcon = require("./icons/DateLastEditIcon.js");
|
|
58
56
|
const DatePendingIcon = require("./icons/DatePendingIcon.js");
|
|
59
57
|
const DecisionIcon = require("./icons/DecisionIcon.js");
|
|
60
|
-
const DossierTemplateIcon = require("./icons/DossierTemplateIcon.js");
|
|
61
58
|
const DossierIcon = require("./icons/DossierIcon.js");
|
|
59
|
+
const DossierTemplateIcon = require("./icons/DossierTemplateIcon.js");
|
|
62
60
|
const DragHandleIcon = require("./icons/DragHandleIcon.js");
|
|
63
61
|
const EditorAlignCenterIcon = require("./icons/EditorAlignCenterIcon.js");
|
|
64
62
|
const EditorAlignJustifyIcon = require("./icons/EditorAlignJustifyIcon.js");
|
|
@@ -87,29 +85,32 @@ const EntityBankMessageIcon = require("./icons/EntityBankMessageIcon.js");
|
|
|
87
85
|
const EntityCaseIcon = require("./icons/EntityCaseIcon.js");
|
|
88
86
|
const EntityGroupIcon = require("./icons/EntityGroupIcon.js");
|
|
89
87
|
const EntityHouseholdIcon = require("./icons/EntityHouseholdIcon.js");
|
|
88
|
+
const EntityIcon = require("./icons/EntityIcon.js");
|
|
90
89
|
const EntityLegalPersonIcon = require("./icons/EntityLegalPersonIcon.js");
|
|
91
90
|
const EntityPhysicalPersonIcon = require("./icons/EntityPhysicalPersonIcon.js");
|
|
92
91
|
const EntityScenarioIcon = require("./icons/EntityScenarioIcon.js");
|
|
93
|
-
const EntityIcon = require("./icons/EntityIcon.js");
|
|
94
92
|
const ErrorIcon = require("./icons/ErrorIcon.js");
|
|
95
93
|
const ExpandTreeLessIcon = require("./icons/ExpandTreeLessIcon.js");
|
|
96
94
|
const ExpandTreeMoreIcon = require("./icons/ExpandTreeMoreIcon.js");
|
|
97
|
-
const FileExcelLinkIcon = require("./icons/FileExcelLinkIcon.js");
|
|
98
95
|
const FileExcelIcon = require("./icons/FileExcelIcon.js");
|
|
99
|
-
const
|
|
96
|
+
const FileExcelLinkIcon = require("./icons/FileExcelLinkIcon.js");
|
|
97
|
+
const FileIcon = require("./icons/FileIcon.js");
|
|
100
98
|
const FileImageIcon = require("./icons/FileImageIcon.js");
|
|
99
|
+
const FileImageLinkIcon = require("./icons/FileImageLinkIcon.js");
|
|
101
100
|
const FileLinkIcon = require("./icons/FileLinkIcon.js");
|
|
102
|
-
const FilePdfLinkIcon = require("./icons/FilePdfLinkIcon.js");
|
|
103
101
|
const FilePdfIcon = require("./icons/FilePdfIcon.js");
|
|
104
|
-
const
|
|
102
|
+
const FilePdfLinkIcon = require("./icons/FilePdfLinkIcon.js");
|
|
105
103
|
const FilePowerpointIcon = require("./icons/FilePowerpointIcon.js");
|
|
104
|
+
const FilePowerpointLinkIcon = require("./icons/FilePowerpointLinkIcon.js");
|
|
106
105
|
const FileStackIcon = require("./icons/FileStackIcon.js");
|
|
107
|
-
const FileWordLinkIcon = require("./icons/FileWordLinkIcon.js");
|
|
108
106
|
const FileWordIcon = require("./icons/FileWordIcon.js");
|
|
109
|
-
const
|
|
110
|
-
const FolderInboxIcon = require("./icons/FolderInboxIcon.js");
|
|
107
|
+
const FileWordLinkIcon = require("./icons/FileWordLinkIcon.js");
|
|
111
108
|
const FolderIcon = require("./icons/FolderIcon.js");
|
|
109
|
+
const FolderInboxIcon = require("./icons/FolderInboxIcon.js");
|
|
112
110
|
const HistoryIcon = require("./icons/HistoryIcon.js");
|
|
111
|
+
const Context = require("./providers/IconProvider/Context.js");
|
|
112
|
+
const IconProvider = require("./providers/IconProvider/IconProvider.js");
|
|
113
|
+
const IconSVG = require("./components/IconSVG.js");
|
|
113
114
|
const InfoIcon = require("./icons/InfoIcon.js");
|
|
114
115
|
const InheritableIcon = require("./icons/InheritableIcon.js");
|
|
115
116
|
const MenuBurgerIcon = require("./icons/MenuBurgerIcon.js");
|
|
@@ -191,10 +192,6 @@ const ViewNetworkIcon = require("./icons/ViewNetworkIcon.js");
|
|
|
191
192
|
const ViewTableIcon = require("./icons/ViewTableIcon.js");
|
|
192
193
|
const ViewTreeIcon = require("./icons/ViewTreeIcon.js");
|
|
193
194
|
const WarningIcon = require("./icons/WarningIcon.js");
|
|
194
|
-
exports.IconProvider = IconProvider.IconProvider;
|
|
195
|
-
exports.IconContext = Context.IconContext;
|
|
196
|
-
exports.withIconContext = Context.withIconContext;
|
|
197
|
-
exports.IconSVG = IconSVG.IconSVG;
|
|
198
195
|
exports.ActionAddAltIcon = ActionAddAltIcon.ActionAddAltIcon;
|
|
199
196
|
exports.ActionAddIcon = ActionAddIcon.ActionAddIcon;
|
|
200
197
|
exports.ActionCancelIcon = ActionCancelIcon.ActionCancelIcon;
|
|
@@ -209,13 +206,13 @@ exports.ActionEscalateIcon = ActionEscalateIcon.ActionEscalateIcon;
|
|
|
209
206
|
exports.ActionExtandIcon = ActionExtandIcon.ActionExtandIcon;
|
|
210
207
|
exports.ActionFavoriteIcon = ActionFavoriteIcon.ActionFavoriteIcon;
|
|
211
208
|
exports.ActionInvestigateIcon = ActionInvestigateIcon.ActionInvestigateIcon;
|
|
212
|
-
exports.ActionLinkOffIcon = ActionLinkOffIcon.ActionLinkOffIcon;
|
|
213
209
|
exports.ActionLinkIcon = ActionLinkIcon.ActionLinkIcon;
|
|
210
|
+
exports.ActionLinkOffIcon = ActionLinkOffIcon.ActionLinkOffIcon;
|
|
214
211
|
exports.ActionLogoutIcon = ActionLogoutIcon.ActionLogoutIcon;
|
|
215
212
|
exports.ActionMarkAsDoneIcon = ActionMarkAsDoneIcon.ActionMarkAsDoneIcon;
|
|
216
213
|
exports.ActionOpenLinkIcon = ActionOpenLinkIcon.ActionOpenLinkIcon;
|
|
217
|
-
exports.ActionPinOffIcon = ActionPinOffIcon.ActionPinOffIcon;
|
|
218
214
|
exports.ActionPinIcon = ActionPinIcon.ActionPinIcon;
|
|
215
|
+
exports.ActionPinOffIcon = ActionPinOffIcon.ActionPinOffIcon;
|
|
219
216
|
exports.ActionPreviewIcon = ActionPreviewIcon.ActionPreviewIcon;
|
|
220
217
|
exports.ActionPrintIcon = ActionPrintIcon.ActionPrintIcon;
|
|
221
218
|
exports.ActionRefreshIcon = ActionRefreshIcon.ActionRefreshIcon;
|
|
@@ -235,9 +232,10 @@ exports.ActionValidateIcon = ActionValidateIcon.ActionValidateIcon;
|
|
|
235
232
|
exports.ActionValueHideIcon = ActionValueHideIcon.ActionValueHideIcon;
|
|
236
233
|
exports.ActionValueRevealIcon = ActionValueRevealIcon.ActionValueRevealIcon;
|
|
237
234
|
exports.AiIcon = AiIcon.AiIcon;
|
|
235
|
+
exports.AssignmentTurnedInIcon = AssignmentTurnedInIcon.AssignmentTurnedInIcon;
|
|
238
236
|
exports.AttachmentsIcon = AttachmentsIcon.AttachmentsIcon;
|
|
239
|
-
exports.CaseLockIcon = CaseLockIcon.CaseLockIcon;
|
|
240
237
|
exports.CaseIcon = CaseIcon.CaseIcon;
|
|
238
|
+
exports.CaseLockIcon = CaseLockIcon.CaseLockIcon;
|
|
241
239
|
exports.ChevronDownIcon = ChevronDownIcon.ChevronDownIcon;
|
|
242
240
|
exports.ChevronLeftIcon = ChevronLeftIcon.ChevronLeftIcon;
|
|
243
241
|
exports.ChevronRightIcon = ChevronRightIcon.ChevronRightIcon;
|
|
@@ -250,8 +248,8 @@ exports.DateExpireIcon = DateExpireIcon.DateExpireIcon;
|
|
|
250
248
|
exports.DateLastEditIcon = DateLastEditIcon.DateLastEditIcon;
|
|
251
249
|
exports.DatePendingIcon = DatePendingIcon.DatePendingIcon;
|
|
252
250
|
exports.DecisionIcon = DecisionIcon.DecisionIcon;
|
|
253
|
-
exports.DossierTemplateIcon = DossierTemplateIcon.DossierTemplateIcon;
|
|
254
251
|
exports.DossierIcon = DossierIcon.DossierIcon;
|
|
252
|
+
exports.DossierTemplateIcon = DossierTemplateIcon.DossierTemplateIcon;
|
|
255
253
|
exports.DragHandleIcon = DragHandleIcon.DragHandleIcon;
|
|
256
254
|
exports.EditorAlignCenterIcon = EditorAlignCenterIcon.EditorAlignCenterIcon;
|
|
257
255
|
exports.EditorAlignJustifyIcon = EditorAlignJustifyIcon.EditorAlignJustifyIcon;
|
|
@@ -280,29 +278,33 @@ exports.EntityBankMessageIcon = EntityBankMessageIcon.EntityBankMessageIcon;
|
|
|
280
278
|
exports.EntityCaseIcon = EntityCaseIcon.EntityCaseIcon;
|
|
281
279
|
exports.EntityGroupIcon = EntityGroupIcon.EntityGroupIcon;
|
|
282
280
|
exports.EntityHouseholdIcon = EntityHouseholdIcon.EntityHouseholdIcon;
|
|
281
|
+
exports.EntityIcon = EntityIcon.EntityIcon;
|
|
283
282
|
exports.EntityLegalPersonIcon = EntityLegalPersonIcon.EntityLegalPersonIcon;
|
|
284
283
|
exports.EntityPhysicalPersonIcon = EntityPhysicalPersonIcon.EntityPhysicalPersonIcon;
|
|
285
284
|
exports.EntityScenarioIcon = EntityScenarioIcon.EntityScenarioIcon;
|
|
286
|
-
exports.EntityIcon = EntityIcon.EntityIcon;
|
|
287
285
|
exports.ErrorIcon = ErrorIcon.ErrorIcon;
|
|
288
286
|
exports.ExpandTreeLessIcon = ExpandTreeLessIcon.ExpandTreeLessIcon;
|
|
289
287
|
exports.ExpandTreeMoreIcon = ExpandTreeMoreIcon.ExpandTreeMoreIcon;
|
|
290
|
-
exports.FileExcelLinkIcon = FileExcelLinkIcon.FileExcelLinkIcon;
|
|
291
288
|
exports.FileExcelIcon = FileExcelIcon.FileExcelIcon;
|
|
292
|
-
exports.
|
|
289
|
+
exports.FileExcelLinkIcon = FileExcelLinkIcon.FileExcelLinkIcon;
|
|
290
|
+
exports.FileIcon = FileIcon.FileIcon;
|
|
293
291
|
exports.FileImageIcon = FileImageIcon.FileImageIcon;
|
|
292
|
+
exports.FileImageLinkIcon = FileImageLinkIcon.FileImageLinkIcon;
|
|
294
293
|
exports.FileLinkIcon = FileLinkIcon.FileLinkIcon;
|
|
295
|
-
exports.FilePdfLinkIcon = FilePdfLinkIcon.FilePdfLinkIcon;
|
|
296
294
|
exports.FilePdfIcon = FilePdfIcon.FilePdfIcon;
|
|
297
|
-
exports.
|
|
295
|
+
exports.FilePdfLinkIcon = FilePdfLinkIcon.FilePdfLinkIcon;
|
|
298
296
|
exports.FilePowerpointIcon = FilePowerpointIcon.FilePowerpointIcon;
|
|
297
|
+
exports.FilePowerpointLinkIcon = FilePowerpointLinkIcon.FilePowerpointLinkIcon;
|
|
299
298
|
exports.FileStackIcon = FileStackIcon.FileStackIcon;
|
|
300
|
-
exports.FileWordLinkIcon = FileWordLinkIcon.FileWordLinkIcon;
|
|
301
299
|
exports.FileWordIcon = FileWordIcon.FileWordIcon;
|
|
302
|
-
exports.
|
|
303
|
-
exports.FolderInboxIcon = FolderInboxIcon.FolderInboxIcon;
|
|
300
|
+
exports.FileWordLinkIcon = FileWordLinkIcon.FileWordLinkIcon;
|
|
304
301
|
exports.FolderIcon = FolderIcon.FolderIcon;
|
|
302
|
+
exports.FolderInboxIcon = FolderInboxIcon.FolderInboxIcon;
|
|
305
303
|
exports.HistoryIcon = HistoryIcon.HistoryIcon;
|
|
304
|
+
exports.IconContext = Context.IconContext;
|
|
305
|
+
exports.withIconContext = Context.withIconContext;
|
|
306
|
+
exports.IconProvider = IconProvider.IconProvider;
|
|
307
|
+
exports.IconSVG = IconSVG.IconSVG;
|
|
306
308
|
exports.InfoIcon = InfoIcon.InfoIcon;
|
|
307
309
|
exports.InheritableIcon = InheritableIcon.InheritableIcon;
|
|
308
310
|
exports.MenuBurgerIcon = MenuBurgerIcon.MenuBurgerIcon;
|
package/lib/index.mjs
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
import { IconProvider } from "./providers/IconProvider/IconProvider.mjs";
|
|
2
|
-
import { IconContext, withIconContext } from "./providers/IconProvider/Context.mjs";
|
|
3
|
-
import { IconSVG } from "./components/IconSVG.mjs";
|
|
4
1
|
import { ActionAddAltIcon } from "./icons/ActionAddAltIcon.mjs";
|
|
5
2
|
import { ActionAddIcon } from "./icons/ActionAddIcon.mjs";
|
|
6
3
|
import { ActionCancelIcon } from "./icons/ActionCancelIcon.mjs";
|
|
@@ -15,13 +12,13 @@ import { ActionEscalateIcon } from "./icons/ActionEscalateIcon.mjs";
|
|
|
15
12
|
import { ActionExtandIcon } from "./icons/ActionExtandIcon.mjs";
|
|
16
13
|
import { ActionFavoriteIcon } from "./icons/ActionFavoriteIcon.mjs";
|
|
17
14
|
import { ActionInvestigateIcon } from "./icons/ActionInvestigateIcon.mjs";
|
|
18
|
-
import { ActionLinkOffIcon } from "./icons/ActionLinkOffIcon.mjs";
|
|
19
15
|
import { ActionLinkIcon } from "./icons/ActionLinkIcon.mjs";
|
|
16
|
+
import { ActionLinkOffIcon } from "./icons/ActionLinkOffIcon.mjs";
|
|
20
17
|
import { ActionLogoutIcon } from "./icons/ActionLogoutIcon.mjs";
|
|
21
18
|
import { ActionMarkAsDoneIcon } from "./icons/ActionMarkAsDoneIcon.mjs";
|
|
22
19
|
import { ActionOpenLinkIcon } from "./icons/ActionOpenLinkIcon.mjs";
|
|
23
|
-
import { ActionPinOffIcon } from "./icons/ActionPinOffIcon.mjs";
|
|
24
20
|
import { ActionPinIcon } from "./icons/ActionPinIcon.mjs";
|
|
21
|
+
import { ActionPinOffIcon } from "./icons/ActionPinOffIcon.mjs";
|
|
25
22
|
import { ActionPreviewIcon } from "./icons/ActionPreviewIcon.mjs";
|
|
26
23
|
import { ActionPrintIcon } from "./icons/ActionPrintIcon.mjs";
|
|
27
24
|
import { ActionRefreshIcon } from "./icons/ActionRefreshIcon.mjs";
|
|
@@ -41,9 +38,10 @@ import { ActionValidateIcon } from "./icons/ActionValidateIcon.mjs";
|
|
|
41
38
|
import { ActionValueHideIcon } from "./icons/ActionValueHideIcon.mjs";
|
|
42
39
|
import { ActionValueRevealIcon } from "./icons/ActionValueRevealIcon.mjs";
|
|
43
40
|
import { AiIcon } from "./icons/AiIcon.mjs";
|
|
41
|
+
import { AssignmentTurnedInIcon } from "./icons/AssignmentTurnedInIcon.mjs";
|
|
44
42
|
import { AttachmentsIcon } from "./icons/AttachmentsIcon.mjs";
|
|
45
|
-
import { CaseLockIcon } from "./icons/CaseLockIcon.mjs";
|
|
46
43
|
import { CaseIcon } from "./icons/CaseIcon.mjs";
|
|
44
|
+
import { CaseLockIcon } from "./icons/CaseLockIcon.mjs";
|
|
47
45
|
import { ChevronDownIcon } from "./icons/ChevronDownIcon.mjs";
|
|
48
46
|
import { ChevronLeftIcon } from "./icons/ChevronLeftIcon.mjs";
|
|
49
47
|
import { ChevronRightIcon } from "./icons/ChevronRightIcon.mjs";
|
|
@@ -56,8 +54,8 @@ import { DateExpireIcon } from "./icons/DateExpireIcon.mjs";
|
|
|
56
54
|
import { DateLastEditIcon } from "./icons/DateLastEditIcon.mjs";
|
|
57
55
|
import { DatePendingIcon } from "./icons/DatePendingIcon.mjs";
|
|
58
56
|
import { DecisionIcon } from "./icons/DecisionIcon.mjs";
|
|
59
|
-
import { DossierTemplateIcon } from "./icons/DossierTemplateIcon.mjs";
|
|
60
57
|
import { DossierIcon } from "./icons/DossierIcon.mjs";
|
|
58
|
+
import { DossierTemplateIcon } from "./icons/DossierTemplateIcon.mjs";
|
|
61
59
|
import { DragHandleIcon } from "./icons/DragHandleIcon.mjs";
|
|
62
60
|
import { EditorAlignCenterIcon } from "./icons/EditorAlignCenterIcon.mjs";
|
|
63
61
|
import { EditorAlignJustifyIcon } from "./icons/EditorAlignJustifyIcon.mjs";
|
|
@@ -86,29 +84,32 @@ import { EntityBankMessageIcon } from "./icons/EntityBankMessageIcon.mjs";
|
|
|
86
84
|
import { EntityCaseIcon } from "./icons/EntityCaseIcon.mjs";
|
|
87
85
|
import { EntityGroupIcon } from "./icons/EntityGroupIcon.mjs";
|
|
88
86
|
import { EntityHouseholdIcon } from "./icons/EntityHouseholdIcon.mjs";
|
|
87
|
+
import { EntityIcon } from "./icons/EntityIcon.mjs";
|
|
89
88
|
import { EntityLegalPersonIcon } from "./icons/EntityLegalPersonIcon.mjs";
|
|
90
89
|
import { EntityPhysicalPersonIcon } from "./icons/EntityPhysicalPersonIcon.mjs";
|
|
91
90
|
import { EntityScenarioIcon } from "./icons/EntityScenarioIcon.mjs";
|
|
92
|
-
import { EntityIcon } from "./icons/EntityIcon.mjs";
|
|
93
91
|
import { ErrorIcon } from "./icons/ErrorIcon.mjs";
|
|
94
92
|
import { ExpandTreeLessIcon } from "./icons/ExpandTreeLessIcon.mjs";
|
|
95
93
|
import { ExpandTreeMoreIcon } from "./icons/ExpandTreeMoreIcon.mjs";
|
|
96
|
-
import { FileExcelLinkIcon } from "./icons/FileExcelLinkIcon.mjs";
|
|
97
94
|
import { FileExcelIcon } from "./icons/FileExcelIcon.mjs";
|
|
98
|
-
import {
|
|
95
|
+
import { FileExcelLinkIcon } from "./icons/FileExcelLinkIcon.mjs";
|
|
96
|
+
import { FileIcon } from "./icons/FileIcon.mjs";
|
|
99
97
|
import { FileImageIcon } from "./icons/FileImageIcon.mjs";
|
|
98
|
+
import { FileImageLinkIcon } from "./icons/FileImageLinkIcon.mjs";
|
|
100
99
|
import { FileLinkIcon } from "./icons/FileLinkIcon.mjs";
|
|
101
|
-
import { FilePdfLinkIcon } from "./icons/FilePdfLinkIcon.mjs";
|
|
102
100
|
import { FilePdfIcon } from "./icons/FilePdfIcon.mjs";
|
|
103
|
-
import {
|
|
101
|
+
import { FilePdfLinkIcon } from "./icons/FilePdfLinkIcon.mjs";
|
|
104
102
|
import { FilePowerpointIcon } from "./icons/FilePowerpointIcon.mjs";
|
|
103
|
+
import { FilePowerpointLinkIcon } from "./icons/FilePowerpointLinkIcon.mjs";
|
|
105
104
|
import { FileStackIcon } from "./icons/FileStackIcon.mjs";
|
|
106
|
-
import { FileWordLinkIcon } from "./icons/FileWordLinkIcon.mjs";
|
|
107
105
|
import { FileWordIcon } from "./icons/FileWordIcon.mjs";
|
|
108
|
-
import {
|
|
109
|
-
import { FolderInboxIcon } from "./icons/FolderInboxIcon.mjs";
|
|
106
|
+
import { FileWordLinkIcon } from "./icons/FileWordLinkIcon.mjs";
|
|
110
107
|
import { FolderIcon } from "./icons/FolderIcon.mjs";
|
|
108
|
+
import { FolderInboxIcon } from "./icons/FolderInboxIcon.mjs";
|
|
111
109
|
import { HistoryIcon } from "./icons/HistoryIcon.mjs";
|
|
110
|
+
import { IconContext, withIconContext } from "./providers/IconProvider/Context.mjs";
|
|
111
|
+
import { IconProvider } from "./providers/IconProvider/IconProvider.mjs";
|
|
112
|
+
import { IconSVG } from "./components/IconSVG.mjs";
|
|
112
113
|
import { InfoIcon } from "./icons/InfoIcon.mjs";
|
|
113
114
|
import { InheritableIcon } from "./icons/InheritableIcon.mjs";
|
|
114
115
|
import { MenuBurgerIcon } from "./icons/MenuBurgerIcon.mjs";
|
|
@@ -231,6 +232,7 @@ export {
|
|
|
231
232
|
ActionValueHideIcon,
|
|
232
233
|
ActionValueRevealIcon,
|
|
233
234
|
AiIcon,
|
|
235
|
+
AssignmentTurnedInIcon,
|
|
234
236
|
AttachmentsIcon,
|
|
235
237
|
CaseIcon,
|
|
236
238
|
CaseLockIcon,
|
package/package.json
CHANGED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
|
|
2
|
+
<path
|
|
3
|
+
d="m424-318 282-282-56-56-226 226-114-114-56 56 170 170ZM200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h168q13-36 43.5-58t68.5-22q38 0 68.5 22t43.5 58h168q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Zm301.5-678.5Q510-807 510-820t-8.5-21.5Q493-850 480-850t-21.5 8.5Q450-833 450-820t8.5 21.5Q467-790 480-790t21.5-8.5Z" />
|
|
4
|
+
</svg>
|