@imtf/icons 1.1.0 → 1.3.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/LineAxisIcon.d.ts +4 -0
- package/lib/icons/LineAxisIcon.js +23 -0
- package/lib/icons/LineAxisIcon.mjs +24 -0
- package/lib/icons/index.d.ts +2 -0
- package/lib/index.js +35 -31
- package/lib/index.mjs +19 -15
- package/package.json +1 -1
- package/svg/AssignmentTurnedIn.json +6 -0
- package/svg/AssignmentTurnedIn.svg +4 -0
- package/svg/LineAxis.json +7 -0
- package/svg/LineAxis.svg +3 -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
|
+
};
|
|
@@ -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 LineAxisIcon };
|
|
@@ -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 LineAxisIcon = ({
|
|
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", fontSize: defaultValues.fontSize, fill: color, color, "data-testid": "LineAxisIcon", ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m22 7.43-1.41-1.41-4.03 4.53L9.5 4 2 11.51l1.5 1.5 6.14-6.15 5.59 5.18-1.73 1.95-4-4L2 17.5 3.5 19l6-6.01 4 4 3.19-3.59 3.9 3.61L22 15.6l-3.98-3.7z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(LineAxisIcon);
|
|
23
|
+
exports.LineAxisIcon = 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 LineAxisIcon = ({
|
|
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", fontSize: defaultValues.fontSize, fill: color, color, "data-testid": "LineAxisIcon", ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "m22 7.43-1.41-1.41-4.03 4.53L9.5 4 2 11.51l1.5 1.5 6.14-6.15 5.59 5.18-1.73 1.95-4-4L2 17.5 3.5 19l6-6.01 4 4 3.19-3.59 3.9 3.61L22 15.6l-3.98-3.7z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(LineAxisIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as LineAxisIcon
|
|
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";
|
|
@@ -108,6 +109,7 @@ export { FolderIcon } from "./FolderIcon";
|
|
|
108
109
|
export { HistoryIcon } from "./HistoryIcon";
|
|
109
110
|
export { InfoIcon } from "./InfoIcon";
|
|
110
111
|
export { InheritableIcon } from "./InheritableIcon";
|
|
112
|
+
export { LineAxisIcon } from "./LineAxisIcon";
|
|
111
113
|
export { MenuBurgerIcon } from "./MenuBurgerIcon";
|
|
112
114
|
export { MenuIcon } from "./MenuIcon";
|
|
113
115
|
export { ModuleAdminIcon } from "./ModuleAdminIcon";
|
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,31 +85,35 @@ 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");
|
|
116
|
+
const LineAxisIcon = require("./icons/LineAxisIcon.js");
|
|
115
117
|
const MenuBurgerIcon = require("./icons/MenuBurgerIcon.js");
|
|
116
118
|
const MenuIcon = require("./icons/MenuIcon.js");
|
|
117
119
|
const ModuleAdminIcon = require("./icons/ModuleAdminIcon.js");
|
|
@@ -191,10 +193,6 @@ const ViewNetworkIcon = require("./icons/ViewNetworkIcon.js");
|
|
|
191
193
|
const ViewTableIcon = require("./icons/ViewTableIcon.js");
|
|
192
194
|
const ViewTreeIcon = require("./icons/ViewTreeIcon.js");
|
|
193
195
|
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
196
|
exports.ActionAddAltIcon = ActionAddAltIcon.ActionAddAltIcon;
|
|
199
197
|
exports.ActionAddIcon = ActionAddIcon.ActionAddIcon;
|
|
200
198
|
exports.ActionCancelIcon = ActionCancelIcon.ActionCancelIcon;
|
|
@@ -209,13 +207,13 @@ exports.ActionEscalateIcon = ActionEscalateIcon.ActionEscalateIcon;
|
|
|
209
207
|
exports.ActionExtandIcon = ActionExtandIcon.ActionExtandIcon;
|
|
210
208
|
exports.ActionFavoriteIcon = ActionFavoriteIcon.ActionFavoriteIcon;
|
|
211
209
|
exports.ActionInvestigateIcon = ActionInvestigateIcon.ActionInvestigateIcon;
|
|
212
|
-
exports.ActionLinkOffIcon = ActionLinkOffIcon.ActionLinkOffIcon;
|
|
213
210
|
exports.ActionLinkIcon = ActionLinkIcon.ActionLinkIcon;
|
|
211
|
+
exports.ActionLinkOffIcon = ActionLinkOffIcon.ActionLinkOffIcon;
|
|
214
212
|
exports.ActionLogoutIcon = ActionLogoutIcon.ActionLogoutIcon;
|
|
215
213
|
exports.ActionMarkAsDoneIcon = ActionMarkAsDoneIcon.ActionMarkAsDoneIcon;
|
|
216
214
|
exports.ActionOpenLinkIcon = ActionOpenLinkIcon.ActionOpenLinkIcon;
|
|
217
|
-
exports.ActionPinOffIcon = ActionPinOffIcon.ActionPinOffIcon;
|
|
218
215
|
exports.ActionPinIcon = ActionPinIcon.ActionPinIcon;
|
|
216
|
+
exports.ActionPinOffIcon = ActionPinOffIcon.ActionPinOffIcon;
|
|
219
217
|
exports.ActionPreviewIcon = ActionPreviewIcon.ActionPreviewIcon;
|
|
220
218
|
exports.ActionPrintIcon = ActionPrintIcon.ActionPrintIcon;
|
|
221
219
|
exports.ActionRefreshIcon = ActionRefreshIcon.ActionRefreshIcon;
|
|
@@ -235,9 +233,10 @@ exports.ActionValidateIcon = ActionValidateIcon.ActionValidateIcon;
|
|
|
235
233
|
exports.ActionValueHideIcon = ActionValueHideIcon.ActionValueHideIcon;
|
|
236
234
|
exports.ActionValueRevealIcon = ActionValueRevealIcon.ActionValueRevealIcon;
|
|
237
235
|
exports.AiIcon = AiIcon.AiIcon;
|
|
236
|
+
exports.AssignmentTurnedInIcon = AssignmentTurnedInIcon.AssignmentTurnedInIcon;
|
|
238
237
|
exports.AttachmentsIcon = AttachmentsIcon.AttachmentsIcon;
|
|
239
|
-
exports.CaseLockIcon = CaseLockIcon.CaseLockIcon;
|
|
240
238
|
exports.CaseIcon = CaseIcon.CaseIcon;
|
|
239
|
+
exports.CaseLockIcon = CaseLockIcon.CaseLockIcon;
|
|
241
240
|
exports.ChevronDownIcon = ChevronDownIcon.ChevronDownIcon;
|
|
242
241
|
exports.ChevronLeftIcon = ChevronLeftIcon.ChevronLeftIcon;
|
|
243
242
|
exports.ChevronRightIcon = ChevronRightIcon.ChevronRightIcon;
|
|
@@ -250,8 +249,8 @@ exports.DateExpireIcon = DateExpireIcon.DateExpireIcon;
|
|
|
250
249
|
exports.DateLastEditIcon = DateLastEditIcon.DateLastEditIcon;
|
|
251
250
|
exports.DatePendingIcon = DatePendingIcon.DatePendingIcon;
|
|
252
251
|
exports.DecisionIcon = DecisionIcon.DecisionIcon;
|
|
253
|
-
exports.DossierTemplateIcon = DossierTemplateIcon.DossierTemplateIcon;
|
|
254
252
|
exports.DossierIcon = DossierIcon.DossierIcon;
|
|
253
|
+
exports.DossierTemplateIcon = DossierTemplateIcon.DossierTemplateIcon;
|
|
255
254
|
exports.DragHandleIcon = DragHandleIcon.DragHandleIcon;
|
|
256
255
|
exports.EditorAlignCenterIcon = EditorAlignCenterIcon.EditorAlignCenterIcon;
|
|
257
256
|
exports.EditorAlignJustifyIcon = EditorAlignJustifyIcon.EditorAlignJustifyIcon;
|
|
@@ -280,31 +279,36 @@ exports.EntityBankMessageIcon = EntityBankMessageIcon.EntityBankMessageIcon;
|
|
|
280
279
|
exports.EntityCaseIcon = EntityCaseIcon.EntityCaseIcon;
|
|
281
280
|
exports.EntityGroupIcon = EntityGroupIcon.EntityGroupIcon;
|
|
282
281
|
exports.EntityHouseholdIcon = EntityHouseholdIcon.EntityHouseholdIcon;
|
|
282
|
+
exports.EntityIcon = EntityIcon.EntityIcon;
|
|
283
283
|
exports.EntityLegalPersonIcon = EntityLegalPersonIcon.EntityLegalPersonIcon;
|
|
284
284
|
exports.EntityPhysicalPersonIcon = EntityPhysicalPersonIcon.EntityPhysicalPersonIcon;
|
|
285
285
|
exports.EntityScenarioIcon = EntityScenarioIcon.EntityScenarioIcon;
|
|
286
|
-
exports.EntityIcon = EntityIcon.EntityIcon;
|
|
287
286
|
exports.ErrorIcon = ErrorIcon.ErrorIcon;
|
|
288
287
|
exports.ExpandTreeLessIcon = ExpandTreeLessIcon.ExpandTreeLessIcon;
|
|
289
288
|
exports.ExpandTreeMoreIcon = ExpandTreeMoreIcon.ExpandTreeMoreIcon;
|
|
290
|
-
exports.FileExcelLinkIcon = FileExcelLinkIcon.FileExcelLinkIcon;
|
|
291
289
|
exports.FileExcelIcon = FileExcelIcon.FileExcelIcon;
|
|
292
|
-
exports.
|
|
290
|
+
exports.FileExcelLinkIcon = FileExcelLinkIcon.FileExcelLinkIcon;
|
|
291
|
+
exports.FileIcon = FileIcon.FileIcon;
|
|
293
292
|
exports.FileImageIcon = FileImageIcon.FileImageIcon;
|
|
293
|
+
exports.FileImageLinkIcon = FileImageLinkIcon.FileImageLinkIcon;
|
|
294
294
|
exports.FileLinkIcon = FileLinkIcon.FileLinkIcon;
|
|
295
|
-
exports.FilePdfLinkIcon = FilePdfLinkIcon.FilePdfLinkIcon;
|
|
296
295
|
exports.FilePdfIcon = FilePdfIcon.FilePdfIcon;
|
|
297
|
-
exports.
|
|
296
|
+
exports.FilePdfLinkIcon = FilePdfLinkIcon.FilePdfLinkIcon;
|
|
298
297
|
exports.FilePowerpointIcon = FilePowerpointIcon.FilePowerpointIcon;
|
|
298
|
+
exports.FilePowerpointLinkIcon = FilePowerpointLinkIcon.FilePowerpointLinkIcon;
|
|
299
299
|
exports.FileStackIcon = FileStackIcon.FileStackIcon;
|
|
300
|
-
exports.FileWordLinkIcon = FileWordLinkIcon.FileWordLinkIcon;
|
|
301
300
|
exports.FileWordIcon = FileWordIcon.FileWordIcon;
|
|
302
|
-
exports.
|
|
303
|
-
exports.FolderInboxIcon = FolderInboxIcon.FolderInboxIcon;
|
|
301
|
+
exports.FileWordLinkIcon = FileWordLinkIcon.FileWordLinkIcon;
|
|
304
302
|
exports.FolderIcon = FolderIcon.FolderIcon;
|
|
303
|
+
exports.FolderInboxIcon = FolderInboxIcon.FolderInboxIcon;
|
|
305
304
|
exports.HistoryIcon = HistoryIcon.HistoryIcon;
|
|
305
|
+
exports.IconContext = Context.IconContext;
|
|
306
|
+
exports.withIconContext = Context.withIconContext;
|
|
307
|
+
exports.IconProvider = IconProvider.IconProvider;
|
|
308
|
+
exports.IconSVG = IconSVG.IconSVG;
|
|
306
309
|
exports.InfoIcon = InfoIcon.InfoIcon;
|
|
307
310
|
exports.InheritableIcon = InheritableIcon.InheritableIcon;
|
|
311
|
+
exports.LineAxisIcon = LineAxisIcon.LineAxisIcon;
|
|
308
312
|
exports.MenuBurgerIcon = MenuBurgerIcon.MenuBurgerIcon;
|
|
309
313
|
exports.MenuIcon = MenuIcon.MenuIcon;
|
|
310
314
|
exports.ModuleAdminIcon = ModuleAdminIcon.ModuleAdminIcon;
|
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,31 +84,35 @@ 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";
|
|
115
|
+
import { LineAxisIcon } from "./icons/LineAxisIcon.mjs";
|
|
114
116
|
import { MenuBurgerIcon } from "./icons/MenuBurgerIcon.mjs";
|
|
115
117
|
import { MenuIcon } from "./icons/MenuIcon.mjs";
|
|
116
118
|
import { ModuleAdminIcon } from "./icons/ModuleAdminIcon.mjs";
|
|
@@ -231,6 +233,7 @@ export {
|
|
|
231
233
|
ActionValueHideIcon,
|
|
232
234
|
ActionValueRevealIcon,
|
|
233
235
|
AiIcon,
|
|
236
|
+
AssignmentTurnedInIcon,
|
|
234
237
|
AttachmentsIcon,
|
|
235
238
|
CaseIcon,
|
|
236
239
|
CaseLockIcon,
|
|
@@ -304,6 +307,7 @@ export {
|
|
|
304
307
|
IconSVG,
|
|
305
308
|
InfoIcon,
|
|
306
309
|
InheritableIcon,
|
|
310
|
+
LineAxisIcon,
|
|
307
311
|
MenuBurgerIcon,
|
|
308
312
|
MenuIcon,
|
|
309
313
|
ModuleAdminIcon,
|
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>
|
package/svg/LineAxis.svg
ADDED