@imtf/icons 0.8.0 → 0.9.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/AdminIcon.js +1 -1
- package/lib/icons/AdminIcon.mjs +1 -1
- package/lib/icons/DashboardIcon.js +1 -1
- package/lib/icons/DashboardIcon.mjs +1 -1
- package/lib/icons/OpenLinkIcon.d.ts +4 -0
- package/lib/icons/OpenLinkIcon.js +23 -0
- package/lib/icons/OpenLinkIcon.mjs +24 -0
- package/lib/icons/UploadAndContinueIcon.d.ts +4 -0
- package/lib/icons/UploadAndContinueIcon.js +23 -0
- package/lib/icons/UploadAndContinueIcon.mjs +24 -0
- package/lib/icons/UploadIcon.d.ts +4 -0
- package/lib/icons/UploadIcon.js +23 -0
- package/lib/icons/UploadIcon.mjs +24 -0
- package/lib/icons/index.d.ts +3 -0
- package/lib/index.js +6 -0
- package/lib/index.mjs +6 -0
- package/package.json +1 -1
- package/svg/Admin.svg +3 -2
- package/svg/Dashboard.svg +2 -2
- package/svg/OpenLink.svg +1 -0
- package/svg/Upload.svg +1 -0
- package/svg/UploadAndContinue.svg +1 -0
- package/svg/admin.json +1 -1
- package/svg/openLink.json +4 -0
- package/svg/upload.json +4 -0
- package/svg/uploadAndContinue.json +4 -0
package/lib/icons/AdminIcon.js
CHANGED
|
@@ -17,7 +17,7 @@ const AdminIcon = ({
|
|
|
17
17
|
...props
|
|
18
18
|
};
|
|
19
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
|
|
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, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m370-80-16-128q-13-5-24.5-12T307-235l-119 50L78-375l103-78q-1-7-1-13.5v-27q0-6.5 1-13.5L78-585l110-190 119 50q11-8 23-15t24-12l16-128h220l16 128q13 5 24.5 12t22.5 15l119-50 110 190-103 78q1 7 1 13.5v27q0 6.5-2 13.5l103 78-110 190-118-50q-11 8-23 15t-24 12L590-80zm112-260q58 0 99-41t41-99-41-99-99-41q-59 0-99.5 41T342-480t40.5 99 99.5 41" }) });
|
|
21
21
|
};
|
|
22
22
|
const ForwardRef = react.forwardRef(AdminIcon);
|
|
23
23
|
exports.AdminIcon = ForwardRef;
|
package/lib/icons/AdminIcon.mjs
CHANGED
|
@@ -16,7 +16,7 @@ const AdminIcon = ({
|
|
|
16
16
|
...props
|
|
17
17
|
};
|
|
18
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
|
|
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, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "m370-80-16-128q-13-5-24.5-12T307-235l-119 50L78-375l103-78q-1-7-1-13.5v-27q0-6.5 1-13.5L78-585l110-190 119 50q11-8 23-15t24-12l16-128h220l16 128q13 5 24.5 12t22.5 15l119-50 110 190-103 78q1 7 1 13.5v27q0 6.5-2 13.5l103 78-110 190-118-50q-11 8-23 15t-24 12L590-80zm112-260q58 0 99-41t41-99-41-99-99-41q-59 0-99.5 41T342-480t40.5 99 99.5 41" }) });
|
|
20
20
|
};
|
|
21
21
|
const ForwardRef = forwardRef(AdminIcon);
|
|
22
22
|
export {
|
|
@@ -17,7 +17,7 @@ const DashboardIcon = ({
|
|
|
17
17
|
...props
|
|
18
18
|
};
|
|
19
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
|
|
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, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M520-600v-240h320v240zM120-440v-400h320v400zm400 320v-400h320v400zm-400 0v-240h320v240z" }) });
|
|
21
21
|
};
|
|
22
22
|
const ForwardRef = react.forwardRef(DashboardIcon);
|
|
23
23
|
exports.DashboardIcon = ForwardRef;
|
|
@@ -16,7 +16,7 @@ const DashboardIcon = ({
|
|
|
16
16
|
...props
|
|
17
17
|
};
|
|
18
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
|
|
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, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M520-600v-240h320v240zM120-440v-400h320v400zm400 320v-400h320v400zm-400 0v-240h320v240z" }) });
|
|
20
20
|
};
|
|
21
21
|
const ForwardRef = forwardRef(DashboardIcon);
|
|
22
22
|
export {
|
|
@@ -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 OpenLinkIcon };
|
|
@@ -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 OpenLinkIcon = ({
|
|
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, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h280v80H200v560h560v-280h80v280q0 33-23.5 56.5T760-120zm188-212-56-56 372-372H560v-80h280v280h-80v-144z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(OpenLinkIcon);
|
|
23
|
+
exports.OpenLinkIcon = 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 OpenLinkIcon = ({
|
|
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, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h280v80H200v560h560v-280h80v280q0 33-23.5 56.5T760-120zm188-212-56-56 372-372H560v-80h280v280h-80v-144z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(OpenLinkIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as OpenLinkIcon
|
|
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 UploadAndContinueIcon };
|
|
@@ -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 UploadAndContinueIcon = ({
|
|
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, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M320-200v-560l440 280z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(UploadAndContinueIcon);
|
|
23
|
+
exports.UploadAndContinueIcon = 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 UploadAndContinueIcon = ({
|
|
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, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M320-200v-560l440 280z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(UploadAndContinueIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as UploadAndContinueIcon
|
|
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 UploadIcon };
|
|
@@ -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 UploadIcon = ({
|
|
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, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M440-200h80v-167l64 64 56-57-160-160-160 160 57 56 63-63zM240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h320l240 240v480q0 33-23.5 56.5T720-80zm280-520v-200H240v640h480v-440zM240-800v200zv640z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(UploadIcon);
|
|
23
|
+
exports.UploadIcon = 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 UploadIcon = ({
|
|
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, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M440-200h80v-167l64 64 56-57-160-160-160 160 57 56 63-63zM240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h320l240 240v480q0 33-23.5 56.5T720-80zm280-520v-200H240v640h480v-440zM240-800v200zv640z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(UploadIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as UploadIcon
|
|
24
|
+
};
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -77,6 +77,7 @@ export { NaturalPersonIcon } from "./NaturalPersonIcon";
|
|
|
77
77
|
export { NotFoundIcon } from "./NotFoundIcon";
|
|
78
78
|
export { NotificationIcon } from "./NotificationIcon";
|
|
79
79
|
export { NotificationsOutlineIcon } from "./NotificationsOutlineIcon";
|
|
80
|
+
export { OpenLinkIcon } from "./OpenLinkIcon";
|
|
80
81
|
export { OutgoingIcon } from "./OutgoingIcon";
|
|
81
82
|
export { PassivatedIcon } from "./PassivatedIcon";
|
|
82
83
|
export { PassiveOriginArchiveIcon } from "./PassiveOriginArchiveIcon";
|
|
@@ -110,6 +111,8 @@ export { TaskRejectedIcon } from "./TaskRejectedIcon";
|
|
|
110
111
|
export { TransactionsSanctionsScreeningIcon } from "./TransactionsSanctionsScreeningIcon";
|
|
111
112
|
export { TypesIcon } from "./TypesIcon";
|
|
112
113
|
export { UpdateIcon } from "./UpdateIcon";
|
|
114
|
+
export { UploadIcon } from "./UploadIcon";
|
|
115
|
+
export { UploadAndContinueIcon } from "./UploadAndContinueIcon";
|
|
113
116
|
export { ViewTreeIcon } from "./ViewTreeIcon";
|
|
114
117
|
export { WarningIcon } from "./WarningIcon";
|
|
115
118
|
export { WorkbenchIcon } from "./WorkbenchIcon";
|
package/lib/index.js
CHANGED
|
@@ -81,6 +81,7 @@ const NaturalPersonIcon = require("./icons/NaturalPersonIcon.js");
|
|
|
81
81
|
const NotFoundIcon = require("./icons/NotFoundIcon.js");
|
|
82
82
|
const NotificationIcon = require("./icons/NotificationIcon.js");
|
|
83
83
|
const NotificationsOutlineIcon = require("./icons/NotificationsOutlineIcon.js");
|
|
84
|
+
const OpenLinkIcon = require("./icons/OpenLinkIcon.js");
|
|
84
85
|
const OutgoingIcon = require("./icons/OutgoingIcon.js");
|
|
85
86
|
const PassivatedIcon = require("./icons/PassivatedIcon.js");
|
|
86
87
|
const PassiveOriginArchiveIcon = require("./icons/PassiveOriginArchiveIcon.js");
|
|
@@ -114,6 +115,8 @@ const TaskRejectedIcon = require("./icons/TaskRejectedIcon.js");
|
|
|
114
115
|
const TransactionsSanctionsScreeningIcon = require("./icons/TransactionsSanctionsScreeningIcon.js");
|
|
115
116
|
const TypesIcon = require("./icons/TypesIcon.js");
|
|
116
117
|
const UpdateIcon = require("./icons/UpdateIcon.js");
|
|
118
|
+
const UploadIcon = require("./icons/UploadIcon.js");
|
|
119
|
+
const UploadAndContinueIcon = require("./icons/UploadAndContinueIcon.js");
|
|
117
120
|
const ViewTreeIcon = require("./icons/ViewTreeIcon.js");
|
|
118
121
|
const WarningIcon = require("./icons/WarningIcon.js");
|
|
119
122
|
const WorkbenchIcon = require("./icons/WorkbenchIcon.js");
|
|
@@ -202,6 +205,7 @@ exports.NaturalPersonIcon = NaturalPersonIcon.NaturalPersonIcon;
|
|
|
202
205
|
exports.NotFoundIcon = NotFoundIcon.NotFoundIcon;
|
|
203
206
|
exports.NotificationIcon = NotificationIcon.NotificationIcon;
|
|
204
207
|
exports.NotificationsOutlineIcon = NotificationsOutlineIcon.NotificationsOutlineIcon;
|
|
208
|
+
exports.OpenLinkIcon = OpenLinkIcon.OpenLinkIcon;
|
|
205
209
|
exports.OutgoingIcon = OutgoingIcon.OutgoingIcon;
|
|
206
210
|
exports.PassivatedIcon = PassivatedIcon.PassivatedIcon;
|
|
207
211
|
exports.PassiveOriginArchiveIcon = PassiveOriginArchiveIcon.PassiveOriginArchiveIcon;
|
|
@@ -235,6 +239,8 @@ exports.TaskRejectedIcon = TaskRejectedIcon.TaskRejectedIcon;
|
|
|
235
239
|
exports.TransactionsSanctionsScreeningIcon = TransactionsSanctionsScreeningIcon.TransactionsSanctionsScreeningIcon;
|
|
236
240
|
exports.TypesIcon = TypesIcon.TypesIcon;
|
|
237
241
|
exports.UpdateIcon = UpdateIcon.UpdateIcon;
|
|
242
|
+
exports.UploadIcon = UploadIcon.UploadIcon;
|
|
243
|
+
exports.UploadAndContinueIcon = UploadAndContinueIcon.UploadAndContinueIcon;
|
|
238
244
|
exports.ViewTreeIcon = ViewTreeIcon.ViewTreeIcon;
|
|
239
245
|
exports.WarningIcon = WarningIcon.WarningIcon;
|
|
240
246
|
exports.WorkbenchIcon = WorkbenchIcon.WorkbenchIcon;
|
package/lib/index.mjs
CHANGED
|
@@ -80,6 +80,7 @@ import { NaturalPersonIcon } from "./icons/NaturalPersonIcon.mjs";
|
|
|
80
80
|
import { NotFoundIcon } from "./icons/NotFoundIcon.mjs";
|
|
81
81
|
import { NotificationIcon } from "./icons/NotificationIcon.mjs";
|
|
82
82
|
import { NotificationsOutlineIcon } from "./icons/NotificationsOutlineIcon.mjs";
|
|
83
|
+
import { OpenLinkIcon } from "./icons/OpenLinkIcon.mjs";
|
|
83
84
|
import { OutgoingIcon } from "./icons/OutgoingIcon.mjs";
|
|
84
85
|
import { PassivatedIcon } from "./icons/PassivatedIcon.mjs";
|
|
85
86
|
import { PassiveOriginArchiveIcon } from "./icons/PassiveOriginArchiveIcon.mjs";
|
|
@@ -113,6 +114,8 @@ import { TaskRejectedIcon } from "./icons/TaskRejectedIcon.mjs";
|
|
|
113
114
|
import { TransactionsSanctionsScreeningIcon } from "./icons/TransactionsSanctionsScreeningIcon.mjs";
|
|
114
115
|
import { TypesIcon } from "./icons/TypesIcon.mjs";
|
|
115
116
|
import { UpdateIcon } from "./icons/UpdateIcon.mjs";
|
|
117
|
+
import { UploadIcon } from "./icons/UploadIcon.mjs";
|
|
118
|
+
import { UploadAndContinueIcon } from "./icons/UploadAndContinueIcon.mjs";
|
|
116
119
|
import { ViewTreeIcon } from "./icons/ViewTreeIcon.mjs";
|
|
117
120
|
import { WarningIcon } from "./icons/WarningIcon.mjs";
|
|
118
121
|
import { WorkbenchIcon } from "./icons/WorkbenchIcon.mjs";
|
|
@@ -201,6 +204,7 @@ export {
|
|
|
201
204
|
NotFoundIcon,
|
|
202
205
|
NotificationIcon,
|
|
203
206
|
NotificationsOutlineIcon,
|
|
207
|
+
OpenLinkIcon,
|
|
204
208
|
OutgoingIcon,
|
|
205
209
|
PassivatedIcon,
|
|
206
210
|
PassiveOriginArchiveIcon,
|
|
@@ -234,6 +238,8 @@ export {
|
|
|
234
238
|
TransactionsSanctionsScreeningIcon,
|
|
235
239
|
TypesIcon,
|
|
236
240
|
UpdateIcon,
|
|
241
|
+
UploadAndContinueIcon,
|
|
242
|
+
UploadIcon,
|
|
237
243
|
ViewTreeIcon,
|
|
238
244
|
WarningIcon,
|
|
239
245
|
WorkbenchIcon,
|
package/package.json
CHANGED
package/svg/Admin.svg
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
2
|
-
<path
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
|
|
2
|
+
<path
|
|
3
|
+
d="m370-80-16-128q-13-5-24.5-12T307-235l-119 50L78-375l103-78q-1-7-1-13.5v-27q0-6.5 1-13.5L78-585l110-190 119 50q11-8 23-15t24-12l16-128h220l16 128q13 5 24.5 12t22.5 15l119-50 110 190-103 78q1 7 1 13.5v27q0 6.5-2 13.5l103 78-110 190-118-50q-11 8-23 15t-24 12L590-80H370Zm112-260q58 0 99-41t41-99q0-58-41-99t-99-41q-59 0-99.5 41T342-480q0 58 40.5 99t99.5 41Z" />
|
|
3
4
|
</svg>
|
package/svg/Dashboard.svg
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
2
|
-
<path d="
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
|
|
2
|
+
<path d="M520-600v-240h320v240H520ZM120-440v-400h320v400H120Zm400 320v-400h320v400H520Zm-400 0v-240h320v240H120Z" />
|
|
3
3
|
</svg>
|
package/svg/OpenLink.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px"><path d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h280v80H200v560h560v-280h80v280q0 33-23.5 56.5T760-120H200Zm188-212-56-56 372-372H560v-80h280v280h-80v-144L388-332Z"/></svg>
|
package/svg/Upload.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px"><path d="M440-200h80v-167l64 64 56-57-160-160-160 160 57 56 63-63v167ZM240-80q-33 0-56.5-23.5T160-160v-640q0-33 23.5-56.5T240-880h320l240 240v480q0 33-23.5 56.5T720-80H240Zm280-520v-200H240v640h480v-440H520ZM240-800v200-200 640-640Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px"><path d="M320-200v-560l440 280-440 280Z"/></svg>
|
package/svg/admin.json
CHANGED
package/svg/upload.json
ADDED