@imtf/icons 1.0.0-beta.2 → 1.0.0-beta.4
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/ActionInvestigateIcon.d.ts +4 -0
- package/lib/icons/ActionInvestigateIcon.js +26 -0
- package/lib/icons/ActionInvestigateIcon.mjs +27 -0
- package/lib/icons/ActionMarkAsDoneIcon.d.ts +4 -0
- package/lib/icons/ActionMarkAsDoneIcon.js +26 -0
- package/lib/icons/ActionMarkAsDoneIcon.mjs +27 -0
- package/lib/icons/{SearchIcon.d.ts → ActionSearchIcon.d.ts} +1 -1
- package/lib/icons/{SearchIcon.js → ActionSearchIcon.js} +3 -3
- package/lib/icons/{SearchIcon.mjs → ActionSearchIcon.mjs} +3 -3
- package/lib/icons/{LastEditDateIcon.d.ts → DateCreationIcon.d.ts} +1 -1
- package/lib/icons/DateCreationIcon.js +26 -0
- package/lib/icons/DateCreationIcon.mjs +27 -0
- package/lib/icons/DateLastEditIcon.d.ts +4 -0
- package/lib/icons/{LastEditDateIcon.js → DateLastEditIcon.js} +3 -3
- package/lib/icons/{LastEditDateIcon.mjs → DateLastEditIcon.mjs} +3 -3
- package/lib/icons/{ImportantIcon.d.ts → EntityCaseIcon.d.ts} +1 -1
- package/lib/icons/EntityCaseIcon.js +23 -0
- package/lib/icons/EntityCaseIcon.mjs +24 -0
- package/lib/icons/PriorityImportantIcon.d.ts +4 -0
- package/lib/icons/{ImportantIcon.js → PriorityImportantIcon.js} +3 -3
- package/lib/icons/{ImportantIcon.mjs → PriorityImportantIcon.mjs} +3 -3
- package/lib/icons/ProrityInformationalIcon.d.ts +4 -0
- package/lib/icons/ProrityInformationalIcon.js +26 -0
- package/lib/icons/ProrityInformationalIcon.mjs +27 -0
- package/lib/icons/index.d.ts +8 -3
- package/lib/index.js +16 -6
- package/lib/index.mjs +16 -6
- package/package.json +1 -1
- package/svg/ActionInvestigate.svg +1 -0
- package/svg/ActionMarkAsDone.svg +1 -0
- package/svg/DateCreation.svg +1 -0
- package/svg/EntityCase.svg +3 -0
- package/svg/ProrityInformational.svg +4 -0
- /package/svg/{Search.svg → ActionSearch.svg} +0 -0
- /package/svg/{LastEditDate.svg → DateLastEdit.svg} +0 -0
- /package/svg/{Important.json → PriorityImportant.json} +0 -0
- /package/svg/{Important.svg → PriorityImportant.svg} +0 -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 ActionInvestigateIcon };
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ActionInvestigateIcon = ({
|
|
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.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
21
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "none", d: "M0 0h24v24H0z" }),
|
|
22
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.99 11 3 15l3.99 4v-3H14v-2H6.99zM21 9l-3.99-4v3H10v2h7.01v3z" })
|
|
23
|
+
] });
|
|
24
|
+
};
|
|
25
|
+
const ForwardRef = react.forwardRef(ActionInvestigateIcon);
|
|
26
|
+
exports.ActionInvestigateIcon = ForwardRef;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsxs, 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 ActionInvestigateIcon = ({
|
|
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__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
20
|
+
/* @__PURE__ */ jsx("path", { fill: "none", d: "M0 0h24v24H0z" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M6.99 11 3 15l3.99 4v-3H14v-2H6.99zM21 9l-3.99-4v3H10v2h7.01v3z" })
|
|
22
|
+
] });
|
|
23
|
+
};
|
|
24
|
+
const ForwardRef = forwardRef(ActionInvestigateIcon);
|
|
25
|
+
export {
|
|
26
|
+
ForwardRef as ActionInvestigateIcon
|
|
27
|
+
};
|
|
@@ -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 ActionMarkAsDoneIcon };
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ActionMarkAsDoneIcon = ({
|
|
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.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
21
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "none", d: "M0 0h24v24H0z" }),
|
|
22
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m-2 15-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8z" })
|
|
23
|
+
] });
|
|
24
|
+
};
|
|
25
|
+
const ForwardRef = react.forwardRef(ActionMarkAsDoneIcon);
|
|
26
|
+
exports.ActionMarkAsDoneIcon = ForwardRef;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsxs, 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 ActionMarkAsDoneIcon = ({
|
|
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__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
20
|
+
/* @__PURE__ */ jsx("path", { fill: "none", d: "M0 0h24v24H0z" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m-2 15-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8z" })
|
|
22
|
+
] });
|
|
23
|
+
};
|
|
24
|
+
const ForwardRef = forwardRef(ActionMarkAsDoneIcon);
|
|
25
|
+
export {
|
|
26
|
+
ForwardRef as ActionMarkAsDoneIcon
|
|
27
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { SVGProps } from "react";
|
|
2
2
|
import type { IconProps } from "../types";
|
|
3
3
|
declare const ForwardRef: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
4
|
-
export { ForwardRef as
|
|
4
|
+
export { ForwardRef as ActionSearchIcon };
|
|
@@ -4,7 +4,7 @@ const jsxRuntime = require("react/jsx-runtime");
|
|
|
4
4
|
const react = require("react");
|
|
5
5
|
const get = require("../utils/get.js");
|
|
6
6
|
const Context = require("../providers/IconProvider/Context.js");
|
|
7
|
-
const
|
|
7
|
+
const ActionSearchIcon = ({
|
|
8
8
|
color: defaultColor,
|
|
9
9
|
size,
|
|
10
10
|
...props
|
|
@@ -22,5 +22,5 @@ const SearchIcon = ({
|
|
|
22
22
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M15.5 14h-.79l-.28-.27A6.47 6.47 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14" })
|
|
23
23
|
] });
|
|
24
24
|
};
|
|
25
|
-
const ForwardRef = react.forwardRef(
|
|
26
|
-
exports.
|
|
25
|
+
const ForwardRef = react.forwardRef(ActionSearchIcon);
|
|
26
|
+
exports.ActionSearchIcon = ForwardRef;
|
|
@@ -3,7 +3,7 @@ import { jsxs, jsx } from "react/jsx-runtime";
|
|
|
3
3
|
import { forwardRef, useContext, useMemo } from "react";
|
|
4
4
|
import get from "../utils/get.mjs";
|
|
5
5
|
import { IconContext } from "../providers/IconProvider/Context.mjs";
|
|
6
|
-
const
|
|
6
|
+
const ActionSearchIcon = ({
|
|
7
7
|
color: defaultColor,
|
|
8
8
|
size,
|
|
9
9
|
...props
|
|
@@ -21,7 +21,7 @@ const SearchIcon = ({
|
|
|
21
21
|
/* @__PURE__ */ jsx("path", { d: "M15.5 14h-.79l-.28-.27A6.47 6.47 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14" })
|
|
22
22
|
] });
|
|
23
23
|
};
|
|
24
|
-
const ForwardRef = forwardRef(
|
|
24
|
+
const ForwardRef = forwardRef(ActionSearchIcon);
|
|
25
25
|
export {
|
|
26
|
-
ForwardRef as
|
|
26
|
+
ForwardRef as ActionSearchIcon
|
|
27
27
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { SVGProps } from "react";
|
|
2
2
|
import type { IconProps } from "../types";
|
|
3
3
|
declare const ForwardRef: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
4
|
-
export { ForwardRef as
|
|
4
|
+
export { ForwardRef as DateCreationIcon };
|
|
@@ -0,0 +1,26 @@
|
|
|
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 DateCreationIcon = ({
|
|
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.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
21
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "none", d: "M0 0h24v24H0z" }),
|
|
22
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 18H4V10h16zm0-13H4V5h16z" })
|
|
23
|
+
] });
|
|
24
|
+
};
|
|
25
|
+
const ForwardRef = react.forwardRef(DateCreationIcon);
|
|
26
|
+
exports.DateCreationIcon = ForwardRef;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsxs, 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 DateCreationIcon = ({
|
|
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__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
20
|
+
/* @__PURE__ */ jsx("path", { fill: "none", d: "M0 0h24v24H0z" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 18H4V10h16zm0-13H4V5h16z" })
|
|
22
|
+
] });
|
|
23
|
+
};
|
|
24
|
+
const ForwardRef = forwardRef(DateCreationIcon);
|
|
25
|
+
export {
|
|
26
|
+
ForwardRef as DateCreationIcon
|
|
27
|
+
};
|
|
@@ -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 DateLastEditIcon };
|
|
@@ -4,7 +4,7 @@ const jsxRuntime = require("react/jsx-runtime");
|
|
|
4
4
|
const react = require("react");
|
|
5
5
|
const get = require("../utils/get.js");
|
|
6
6
|
const Context = require("../providers/IconProvider/Context.js");
|
|
7
|
-
const
|
|
7
|
+
const DateLastEditIcon = ({
|
|
8
8
|
color: defaultColor,
|
|
9
9
|
size,
|
|
10
10
|
...props
|
|
@@ -19,5 +19,5 @@ const LastEditDateIcon = ({
|
|
|
19
19
|
const color = react.useMemo(() => get.default(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
20
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-80q-33 0-56.5-23.5T120-160v-560q0-33 23.5-56.5T200-800h40v-80h80v80h320v-80h80v80h40q33 0 56.5 23.5T840-720v200h-80v-40H200v400h280v80zm0-560h560v-80H200zm0 0v-80zM560-80v-123l221-220q9-9 20-13t22-4q12 0 23 4.5t20 13.5l37 37q8 9 12.5 20t4.5 22-4 22.5-13 20.5L683-80zm300-263-37-37zM620-140h38l121-122-18-19-19-18-122 121zm141-141-19-18 37 37z" }) });
|
|
21
21
|
};
|
|
22
|
-
const ForwardRef = react.forwardRef(
|
|
23
|
-
exports.
|
|
22
|
+
const ForwardRef = react.forwardRef(DateLastEditIcon);
|
|
23
|
+
exports.DateLastEditIcon = ForwardRef;
|
|
@@ -3,7 +3,7 @@ import { jsx } from "react/jsx-runtime";
|
|
|
3
3
|
import { forwardRef, useContext, useMemo } from "react";
|
|
4
4
|
import get from "../utils/get.mjs";
|
|
5
5
|
import { IconContext } from "../providers/IconProvider/Context.mjs";
|
|
6
|
-
const
|
|
6
|
+
const DateLastEditIcon = ({
|
|
7
7
|
color: defaultColor,
|
|
8
8
|
size,
|
|
9
9
|
...props
|
|
@@ -18,7 +18,7 @@ const LastEditDateIcon = ({
|
|
|
18
18
|
const color = useMemo(() => get(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
19
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-80q-33 0-56.5-23.5T120-160v-560q0-33 23.5-56.5T200-800h40v-80h80v80h320v-80h80v80h40q33 0 56.5 23.5T840-720v200h-80v-40H200v400h280v80zm0-560h560v-80H200zm0 0v-80zM560-80v-123l221-220q9-9 20-13t22-4q12 0 23 4.5t20 13.5l37 37q8 9 12.5 20t4.5 22-4 22.5-13 20.5L683-80zm300-263-37-37zM620-140h38l121-122-18-19-19-18-122 121zm141-141-19-18 37 37z" }) });
|
|
20
20
|
};
|
|
21
|
-
const ForwardRef = forwardRef(
|
|
21
|
+
const ForwardRef = forwardRef(DateLastEditIcon);
|
|
22
22
|
export {
|
|
23
|
-
ForwardRef as
|
|
23
|
+
ForwardRef as DateLastEditIcon
|
|
24
24
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { SVGProps } from "react";
|
|
2
2
|
import type { IconProps } from "../types";
|
|
3
3
|
declare const ForwardRef: import("react").ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & IconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
4
|
-
export { ForwardRef as
|
|
4
|
+
export { ForwardRef as EntityCaseIcon };
|
|
@@ -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 EntityCaseIcon = ({
|
|
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 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 6h-9L9 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(EntityCaseIcon);
|
|
23
|
+
exports.EntityCaseIcon = 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 EntityCaseIcon = ({
|
|
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 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M20 6h-9L9 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(EntityCaseIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as EntityCaseIcon
|
|
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 PriorityImportantIcon };
|
|
@@ -4,7 +4,7 @@ const jsxRuntime = require("react/jsx-runtime");
|
|
|
4
4
|
const react = require("react");
|
|
5
5
|
const get = require("../utils/get.js");
|
|
6
6
|
const Context = require("../providers/IconProvider/Context.js");
|
|
7
|
-
const
|
|
7
|
+
const PriorityImportantIcon = ({
|
|
8
8
|
color: defaultColor,
|
|
9
9
|
size,
|
|
10
10
|
...props
|
|
@@ -19,5 +19,5 @@ const ImportantIcon = ({
|
|
|
19
19
|
const color = react.useMemo(() => get.default(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
20
20
|
return /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M480-280q17 0 28.5-11.5T520-320t-11.5-28.5T480-360t-28.5 11.5T440-320t11.5 28.5T480-280m-40-160h80v-240h-80zm40 360q-83 0-156-31.5T197-197t-85.5-127T80-480t31.5-156T197-763t127-85.5T480-880t156 31.5T763-763t85.5 127T880-480t-31.5 156T763-197t-127 85.5T480-80" }) });
|
|
21
21
|
};
|
|
22
|
-
const ForwardRef = react.forwardRef(
|
|
23
|
-
exports.
|
|
22
|
+
const ForwardRef = react.forwardRef(PriorityImportantIcon);
|
|
23
|
+
exports.PriorityImportantIcon = ForwardRef;
|
|
@@ -3,7 +3,7 @@ import { jsx } from "react/jsx-runtime";
|
|
|
3
3
|
import { forwardRef, useContext, useMemo } from "react";
|
|
4
4
|
import get from "../utils/get.mjs";
|
|
5
5
|
import { IconContext } from "../providers/IconProvider/Context.mjs";
|
|
6
|
-
const
|
|
6
|
+
const PriorityImportantIcon = ({
|
|
7
7
|
color: defaultColor,
|
|
8
8
|
size,
|
|
9
9
|
...props
|
|
@@ -18,7 +18,7 @@ const ImportantIcon = ({
|
|
|
18
18
|
const color = useMemo(() => get(defaultValues.palette, defaultValues.color) ?? defaultValues.color, [defaultValues.color, defaultValues.palette]);
|
|
19
19
|
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-280q17 0 28.5-11.5T520-320t-11.5-28.5T480-360t-28.5 11.5T440-320t11.5 28.5T480-280m-40-160h80v-240h-80zm40 360q-83 0-156-31.5T197-197t-85.5-127T80-480t31.5-156T197-763t127-85.5T480-880t156 31.5T763-763t85.5 127T880-480t-31.5 156T763-197t-127 85.5T480-80" }) });
|
|
20
20
|
};
|
|
21
|
-
const ForwardRef = forwardRef(
|
|
21
|
+
const ForwardRef = forwardRef(PriorityImportantIcon);
|
|
22
22
|
export {
|
|
23
|
-
ForwardRef as
|
|
23
|
+
ForwardRef as PriorityImportantIcon
|
|
24
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 ProrityInformationalIcon };
|
|
@@ -0,0 +1,26 @@
|
|
|
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 ProrityInformationalIcon = ({
|
|
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.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
21
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "none", d: "M0 0h24v24H0z" }),
|
|
22
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m1 15h-2v-6h2zm0-8h-2V7h2z" })
|
|
23
|
+
] });
|
|
24
|
+
};
|
|
25
|
+
const ForwardRef = react.forwardRef(ProrityInformationalIcon);
|
|
26
|
+
exports.ProrityInformationalIcon = ForwardRef;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsxs, 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 ProrityInformationalIcon = ({
|
|
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__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24", fontSize: defaultValues.fontSize, fill: color, color, ref, ...props, children: [
|
|
20
|
+
/* @__PURE__ */ jsx("path", { fill: "none", d: "M0 0h24v24H0z" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m1 15h-2v-6h2zm0-8h-2V7h2z" })
|
|
22
|
+
] });
|
|
23
|
+
};
|
|
24
|
+
const ForwardRef = forwardRef(ProrityInformationalIcon);
|
|
25
|
+
export {
|
|
26
|
+
ForwardRef as ProrityInformationalIcon
|
|
27
|
+
};
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -9,7 +9,9 @@ export { ActionEraseIcon } from "./ActionEraseIcon";
|
|
|
9
9
|
export { ActionEscalateIcon } from "./ActionEscalateIcon";
|
|
10
10
|
export { ActionExtandIcon } from "./ActionExtandIcon";
|
|
11
11
|
export { ActionFavoriteIcon } from "./ActionFavoriteIcon";
|
|
12
|
+
export { ActionInvestigateIcon } from "./ActionInvestigateIcon";
|
|
12
13
|
export { ActionLinkIcon } from "./ActionLinkIcon";
|
|
14
|
+
export { ActionMarkAsDoneIcon } from "./ActionMarkAsDoneIcon";
|
|
13
15
|
export { ActionOpenLinkIcon } from "./ActionOpenLinkIcon";
|
|
14
16
|
export { ActionPinOffIcon } from "./ActionPinOffIcon";
|
|
15
17
|
export { ActionPinIcon } from "./ActionPinIcon";
|
|
@@ -19,6 +21,7 @@ export { ActionRefreshIcon } from "./ActionRefreshIcon";
|
|
|
19
21
|
export { ActionRemoveIcon } from "./ActionRemoveIcon";
|
|
20
22
|
export { ActionResetSettingsIcon } from "./ActionResetSettingsIcon";
|
|
21
23
|
export { ActionSaveIcon } from "./ActionSaveIcon";
|
|
24
|
+
export { ActionSearchIcon } from "./ActionSearchIcon";
|
|
22
25
|
export { ActionSidebarCollapseIcon } from "./ActionSidebarCollapseIcon";
|
|
23
26
|
export { ActionSidebarExpandIcon } from "./ActionSidebarExpandIcon";
|
|
24
27
|
export { ActionSuspendIcon } from "./ActionSuspendIcon";
|
|
@@ -39,8 +42,10 @@ export { ChevronLeftIcon } from "./ChevronLeftIcon";
|
|
|
39
42
|
export { ChevronRightIcon } from "./ChevronRightIcon";
|
|
40
43
|
export { ChevronUpIcon } from "./ChevronUpIcon";
|
|
41
44
|
export { CommentIcon } from "./CommentIcon";
|
|
45
|
+
export { DateCreationIcon } from "./DateCreationIcon";
|
|
42
46
|
export { DateDueIcon } from "./DateDueIcon";
|
|
43
47
|
export { DateExpireIcon } from "./DateExpireIcon";
|
|
48
|
+
export { DateLastEditIcon } from "./DateLastEditIcon";
|
|
44
49
|
export { DecisionIcon } from "./DecisionIcon";
|
|
45
50
|
export { DossierTemplateIcon } from "./DossierTemplateIcon";
|
|
46
51
|
export { DossierIcon } from "./DossierIcon";
|
|
@@ -69,6 +74,7 @@ export { EmptyPlaceholderIcon } from "./EmptyPlaceholderIcon";
|
|
|
69
74
|
export { EntityAccountIcon } from "./EntityAccountIcon";
|
|
70
75
|
export { EntityAlertIcon } from "./EntityAlertIcon";
|
|
71
76
|
export { EntityBankMessageIcon } from "./EntityBankMessageIcon";
|
|
77
|
+
export { EntityCaseIcon } from "./EntityCaseIcon";
|
|
72
78
|
export { EntityGroupIcon } from "./EntityGroupIcon";
|
|
73
79
|
export { EntityHouseholdIcon } from "./EntityHouseholdIcon";
|
|
74
80
|
export { EntityLegalPersonIcon } from "./EntityLegalPersonIcon";
|
|
@@ -94,10 +100,8 @@ export { FileIcon } from "./FileIcon";
|
|
|
94
100
|
export { FolderInboxIcon } from "./FolderInboxIcon";
|
|
95
101
|
export { FolderIcon } from "./FolderIcon";
|
|
96
102
|
export { HistoryIcon } from "./HistoryIcon";
|
|
97
|
-
export { ImportantIcon } from "./ImportantIcon";
|
|
98
103
|
export { InfoIcon } from "./InfoIcon";
|
|
99
104
|
export { InheritableIcon } from "./InheritableIcon";
|
|
100
|
-
export { LastEditDateIcon } from "./LastEditDateIcon";
|
|
101
105
|
export { MenuBurgerIcon } from "./MenuBurgerIcon";
|
|
102
106
|
export { MenuIcon } from "./MenuIcon";
|
|
103
107
|
export { ModuleAdminIcon } from "./ModuleAdminIcon";
|
|
@@ -120,9 +124,10 @@ export { NavToFirstIcon } from "./NavToFirstIcon";
|
|
|
120
124
|
export { NavToLastIcon } from "./NavToLastIcon";
|
|
121
125
|
export { NoteIcon } from "./NoteIcon";
|
|
122
126
|
export { OwnerIcon } from "./OwnerIcon";
|
|
127
|
+
export { PriorityImportantIcon } from "./PriorityImportantIcon";
|
|
123
128
|
export { PriorityTrivialIcon } from "./PriorityTrivialIcon";
|
|
129
|
+
export { ProrityInformationalIcon } from "./ProrityInformationalIcon";
|
|
124
130
|
export { ScoreIcon } from "./ScoreIcon";
|
|
125
|
-
export { SearchIcon } from "./SearchIcon";
|
|
126
131
|
export { SironOneIcon } from "./SironOneIcon";
|
|
127
132
|
export { SkipNextIcon } from "./SkipNextIcon";
|
|
128
133
|
export { SkipPreviousIcon } from "./SkipPreviousIcon";
|
package/lib/index.js
CHANGED
|
@@ -13,7 +13,9 @@ const ActionEraseIcon = require("./icons/ActionEraseIcon.js");
|
|
|
13
13
|
const ActionEscalateIcon = require("./icons/ActionEscalateIcon.js");
|
|
14
14
|
const ActionExtandIcon = require("./icons/ActionExtandIcon.js");
|
|
15
15
|
const ActionFavoriteIcon = require("./icons/ActionFavoriteIcon.js");
|
|
16
|
+
const ActionInvestigateIcon = require("./icons/ActionInvestigateIcon.js");
|
|
16
17
|
const ActionLinkIcon = require("./icons/ActionLinkIcon.js");
|
|
18
|
+
const ActionMarkAsDoneIcon = require("./icons/ActionMarkAsDoneIcon.js");
|
|
17
19
|
const ActionOpenLinkIcon = require("./icons/ActionOpenLinkIcon.js");
|
|
18
20
|
const ActionPinOffIcon = require("./icons/ActionPinOffIcon.js");
|
|
19
21
|
const ActionPinIcon = require("./icons/ActionPinIcon.js");
|
|
@@ -23,6 +25,7 @@ const ActionRefreshIcon = require("./icons/ActionRefreshIcon.js");
|
|
|
23
25
|
const ActionRemoveIcon = require("./icons/ActionRemoveIcon.js");
|
|
24
26
|
const ActionResetSettingsIcon = require("./icons/ActionResetSettingsIcon.js");
|
|
25
27
|
const ActionSaveIcon = require("./icons/ActionSaveIcon.js");
|
|
28
|
+
const ActionSearchIcon = require("./icons/ActionSearchIcon.js");
|
|
26
29
|
const ActionSidebarCollapseIcon = require("./icons/ActionSidebarCollapseIcon.js");
|
|
27
30
|
const ActionSidebarExpandIcon = require("./icons/ActionSidebarExpandIcon.js");
|
|
28
31
|
const ActionSuspendIcon = require("./icons/ActionSuspendIcon.js");
|
|
@@ -43,8 +46,10 @@ const ChevronLeftIcon = require("./icons/ChevronLeftIcon.js");
|
|
|
43
46
|
const ChevronRightIcon = require("./icons/ChevronRightIcon.js");
|
|
44
47
|
const ChevronUpIcon = require("./icons/ChevronUpIcon.js");
|
|
45
48
|
const CommentIcon = require("./icons/CommentIcon.js");
|
|
49
|
+
const DateCreationIcon = require("./icons/DateCreationIcon.js");
|
|
46
50
|
const DateDueIcon = require("./icons/DateDueIcon.js");
|
|
47
51
|
const DateExpireIcon = require("./icons/DateExpireIcon.js");
|
|
52
|
+
const DateLastEditIcon = require("./icons/DateLastEditIcon.js");
|
|
48
53
|
const DecisionIcon = require("./icons/DecisionIcon.js");
|
|
49
54
|
const DossierTemplateIcon = require("./icons/DossierTemplateIcon.js");
|
|
50
55
|
const DossierIcon = require("./icons/DossierIcon.js");
|
|
@@ -73,6 +78,7 @@ const EmptyPlaceholderIcon = require("./icons/EmptyPlaceholderIcon.js");
|
|
|
73
78
|
const EntityAccountIcon = require("./icons/EntityAccountIcon.js");
|
|
74
79
|
const EntityAlertIcon = require("./icons/EntityAlertIcon.js");
|
|
75
80
|
const EntityBankMessageIcon = require("./icons/EntityBankMessageIcon.js");
|
|
81
|
+
const EntityCaseIcon = require("./icons/EntityCaseIcon.js");
|
|
76
82
|
const EntityGroupIcon = require("./icons/EntityGroupIcon.js");
|
|
77
83
|
const EntityHouseholdIcon = require("./icons/EntityHouseholdIcon.js");
|
|
78
84
|
const EntityLegalPersonIcon = require("./icons/EntityLegalPersonIcon.js");
|
|
@@ -98,10 +104,8 @@ const FileIcon = require("./icons/FileIcon.js");
|
|
|
98
104
|
const FolderInboxIcon = require("./icons/FolderInboxIcon.js");
|
|
99
105
|
const FolderIcon = require("./icons/FolderIcon.js");
|
|
100
106
|
const HistoryIcon = require("./icons/HistoryIcon.js");
|
|
101
|
-
const ImportantIcon = require("./icons/ImportantIcon.js");
|
|
102
107
|
const InfoIcon = require("./icons/InfoIcon.js");
|
|
103
108
|
const InheritableIcon = require("./icons/InheritableIcon.js");
|
|
104
|
-
const LastEditDateIcon = require("./icons/LastEditDateIcon.js");
|
|
105
109
|
const MenuBurgerIcon = require("./icons/MenuBurgerIcon.js");
|
|
106
110
|
const MenuIcon = require("./icons/MenuIcon.js");
|
|
107
111
|
const ModuleAdminIcon = require("./icons/ModuleAdminIcon.js");
|
|
@@ -124,9 +128,10 @@ const NavToFirstIcon = require("./icons/NavToFirstIcon.js");
|
|
|
124
128
|
const NavToLastIcon = require("./icons/NavToLastIcon.js");
|
|
125
129
|
const NoteIcon = require("./icons/NoteIcon.js");
|
|
126
130
|
const OwnerIcon = require("./icons/OwnerIcon.js");
|
|
131
|
+
const PriorityImportantIcon = require("./icons/PriorityImportantIcon.js");
|
|
127
132
|
const PriorityTrivialIcon = require("./icons/PriorityTrivialIcon.js");
|
|
133
|
+
const ProrityInformationalIcon = require("./icons/ProrityInformationalIcon.js");
|
|
128
134
|
const ScoreIcon = require("./icons/ScoreIcon.js");
|
|
129
|
-
const SearchIcon = require("./icons/SearchIcon.js");
|
|
130
135
|
const SironOneIcon = require("./icons/SironOneIcon.js");
|
|
131
136
|
const SkipNextIcon = require("./icons/SkipNextIcon.js");
|
|
132
137
|
const SkipPreviousIcon = require("./icons/SkipPreviousIcon.js");
|
|
@@ -187,7 +192,9 @@ exports.ActionEraseIcon = ActionEraseIcon.ActionEraseIcon;
|
|
|
187
192
|
exports.ActionEscalateIcon = ActionEscalateIcon.ActionEscalateIcon;
|
|
188
193
|
exports.ActionExtandIcon = ActionExtandIcon.ActionExtandIcon;
|
|
189
194
|
exports.ActionFavoriteIcon = ActionFavoriteIcon.ActionFavoriteIcon;
|
|
195
|
+
exports.ActionInvestigateIcon = ActionInvestigateIcon.ActionInvestigateIcon;
|
|
190
196
|
exports.ActionLinkIcon = ActionLinkIcon.ActionLinkIcon;
|
|
197
|
+
exports.ActionMarkAsDoneIcon = ActionMarkAsDoneIcon.ActionMarkAsDoneIcon;
|
|
191
198
|
exports.ActionOpenLinkIcon = ActionOpenLinkIcon.ActionOpenLinkIcon;
|
|
192
199
|
exports.ActionPinOffIcon = ActionPinOffIcon.ActionPinOffIcon;
|
|
193
200
|
exports.ActionPinIcon = ActionPinIcon.ActionPinIcon;
|
|
@@ -197,6 +204,7 @@ exports.ActionRefreshIcon = ActionRefreshIcon.ActionRefreshIcon;
|
|
|
197
204
|
exports.ActionRemoveIcon = ActionRemoveIcon.ActionRemoveIcon;
|
|
198
205
|
exports.ActionResetSettingsIcon = ActionResetSettingsIcon.ActionResetSettingsIcon;
|
|
199
206
|
exports.ActionSaveIcon = ActionSaveIcon.ActionSaveIcon;
|
|
207
|
+
exports.ActionSearchIcon = ActionSearchIcon.ActionSearchIcon;
|
|
200
208
|
exports.ActionSidebarCollapseIcon = ActionSidebarCollapseIcon.ActionSidebarCollapseIcon;
|
|
201
209
|
exports.ActionSidebarExpandIcon = ActionSidebarExpandIcon.ActionSidebarExpandIcon;
|
|
202
210
|
exports.ActionSuspendIcon = ActionSuspendIcon.ActionSuspendIcon;
|
|
@@ -217,8 +225,10 @@ exports.ChevronLeftIcon = ChevronLeftIcon.ChevronLeftIcon;
|
|
|
217
225
|
exports.ChevronRightIcon = ChevronRightIcon.ChevronRightIcon;
|
|
218
226
|
exports.ChevronUpIcon = ChevronUpIcon.ChevronUpIcon;
|
|
219
227
|
exports.CommentIcon = CommentIcon.CommentIcon;
|
|
228
|
+
exports.DateCreationIcon = DateCreationIcon.DateCreationIcon;
|
|
220
229
|
exports.DateDueIcon = DateDueIcon.DateDueIcon;
|
|
221
230
|
exports.DateExpireIcon = DateExpireIcon.DateExpireIcon;
|
|
231
|
+
exports.DateLastEditIcon = DateLastEditIcon.DateLastEditIcon;
|
|
222
232
|
exports.DecisionIcon = DecisionIcon.DecisionIcon;
|
|
223
233
|
exports.DossierTemplateIcon = DossierTemplateIcon.DossierTemplateIcon;
|
|
224
234
|
exports.DossierIcon = DossierIcon.DossierIcon;
|
|
@@ -247,6 +257,7 @@ exports.EmptyPlaceholderIcon = EmptyPlaceholderIcon.EmptyPlaceholderIcon;
|
|
|
247
257
|
exports.EntityAccountIcon = EntityAccountIcon.EntityAccountIcon;
|
|
248
258
|
exports.EntityAlertIcon = EntityAlertIcon.EntityAlertIcon;
|
|
249
259
|
exports.EntityBankMessageIcon = EntityBankMessageIcon.EntityBankMessageIcon;
|
|
260
|
+
exports.EntityCaseIcon = EntityCaseIcon.EntityCaseIcon;
|
|
250
261
|
exports.EntityGroupIcon = EntityGroupIcon.EntityGroupIcon;
|
|
251
262
|
exports.EntityHouseholdIcon = EntityHouseholdIcon.EntityHouseholdIcon;
|
|
252
263
|
exports.EntityLegalPersonIcon = EntityLegalPersonIcon.EntityLegalPersonIcon;
|
|
@@ -272,10 +283,8 @@ exports.FileIcon = FileIcon.FileIcon;
|
|
|
272
283
|
exports.FolderInboxIcon = FolderInboxIcon.FolderInboxIcon;
|
|
273
284
|
exports.FolderIcon = FolderIcon.FolderIcon;
|
|
274
285
|
exports.HistoryIcon = HistoryIcon.HistoryIcon;
|
|
275
|
-
exports.ImportantIcon = ImportantIcon.ImportantIcon;
|
|
276
286
|
exports.InfoIcon = InfoIcon.InfoIcon;
|
|
277
287
|
exports.InheritableIcon = InheritableIcon.InheritableIcon;
|
|
278
|
-
exports.LastEditDateIcon = LastEditDateIcon.LastEditDateIcon;
|
|
279
288
|
exports.MenuBurgerIcon = MenuBurgerIcon.MenuBurgerIcon;
|
|
280
289
|
exports.MenuIcon = MenuIcon.MenuIcon;
|
|
281
290
|
exports.ModuleAdminIcon = ModuleAdminIcon.ModuleAdminIcon;
|
|
@@ -298,9 +307,10 @@ exports.NavToFirstIcon = NavToFirstIcon.NavToFirstIcon;
|
|
|
298
307
|
exports.NavToLastIcon = NavToLastIcon.NavToLastIcon;
|
|
299
308
|
exports.NoteIcon = NoteIcon.NoteIcon;
|
|
300
309
|
exports.OwnerIcon = OwnerIcon.OwnerIcon;
|
|
310
|
+
exports.PriorityImportantIcon = PriorityImportantIcon.PriorityImportantIcon;
|
|
301
311
|
exports.PriorityTrivialIcon = PriorityTrivialIcon.PriorityTrivialIcon;
|
|
312
|
+
exports.ProrityInformationalIcon = ProrityInformationalIcon.ProrityInformationalIcon;
|
|
302
313
|
exports.ScoreIcon = ScoreIcon.ScoreIcon;
|
|
303
|
-
exports.SearchIcon = SearchIcon.SearchIcon;
|
|
304
314
|
exports.SironOneIcon = SironOneIcon.SironOneIcon;
|
|
305
315
|
exports.SkipNextIcon = SkipNextIcon.SkipNextIcon;
|
|
306
316
|
exports.SkipPreviousIcon = SkipPreviousIcon.SkipPreviousIcon;
|
package/lib/index.mjs
CHANGED
|
@@ -12,7 +12,9 @@ import { ActionEraseIcon } from "./icons/ActionEraseIcon.mjs";
|
|
|
12
12
|
import { ActionEscalateIcon } from "./icons/ActionEscalateIcon.mjs";
|
|
13
13
|
import { ActionExtandIcon } from "./icons/ActionExtandIcon.mjs";
|
|
14
14
|
import { ActionFavoriteIcon } from "./icons/ActionFavoriteIcon.mjs";
|
|
15
|
+
import { ActionInvestigateIcon } from "./icons/ActionInvestigateIcon.mjs";
|
|
15
16
|
import { ActionLinkIcon } from "./icons/ActionLinkIcon.mjs";
|
|
17
|
+
import { ActionMarkAsDoneIcon } from "./icons/ActionMarkAsDoneIcon.mjs";
|
|
16
18
|
import { ActionOpenLinkIcon } from "./icons/ActionOpenLinkIcon.mjs";
|
|
17
19
|
import { ActionPinOffIcon } from "./icons/ActionPinOffIcon.mjs";
|
|
18
20
|
import { ActionPinIcon } from "./icons/ActionPinIcon.mjs";
|
|
@@ -22,6 +24,7 @@ import { ActionRefreshIcon } from "./icons/ActionRefreshIcon.mjs";
|
|
|
22
24
|
import { ActionRemoveIcon } from "./icons/ActionRemoveIcon.mjs";
|
|
23
25
|
import { ActionResetSettingsIcon } from "./icons/ActionResetSettingsIcon.mjs";
|
|
24
26
|
import { ActionSaveIcon } from "./icons/ActionSaveIcon.mjs";
|
|
27
|
+
import { ActionSearchIcon } from "./icons/ActionSearchIcon.mjs";
|
|
25
28
|
import { ActionSidebarCollapseIcon } from "./icons/ActionSidebarCollapseIcon.mjs";
|
|
26
29
|
import { ActionSidebarExpandIcon } from "./icons/ActionSidebarExpandIcon.mjs";
|
|
27
30
|
import { ActionSuspendIcon } from "./icons/ActionSuspendIcon.mjs";
|
|
@@ -42,8 +45,10 @@ import { ChevronLeftIcon } from "./icons/ChevronLeftIcon.mjs";
|
|
|
42
45
|
import { ChevronRightIcon } from "./icons/ChevronRightIcon.mjs";
|
|
43
46
|
import { ChevronUpIcon } from "./icons/ChevronUpIcon.mjs";
|
|
44
47
|
import { CommentIcon } from "./icons/CommentIcon.mjs";
|
|
48
|
+
import { DateCreationIcon } from "./icons/DateCreationIcon.mjs";
|
|
45
49
|
import { DateDueIcon } from "./icons/DateDueIcon.mjs";
|
|
46
50
|
import { DateExpireIcon } from "./icons/DateExpireIcon.mjs";
|
|
51
|
+
import { DateLastEditIcon } from "./icons/DateLastEditIcon.mjs";
|
|
47
52
|
import { DecisionIcon } from "./icons/DecisionIcon.mjs";
|
|
48
53
|
import { DossierTemplateIcon } from "./icons/DossierTemplateIcon.mjs";
|
|
49
54
|
import { DossierIcon } from "./icons/DossierIcon.mjs";
|
|
@@ -72,6 +77,7 @@ import { EmptyPlaceholderIcon } from "./icons/EmptyPlaceholderIcon.mjs";
|
|
|
72
77
|
import { EntityAccountIcon } from "./icons/EntityAccountIcon.mjs";
|
|
73
78
|
import { EntityAlertIcon } from "./icons/EntityAlertIcon.mjs";
|
|
74
79
|
import { EntityBankMessageIcon } from "./icons/EntityBankMessageIcon.mjs";
|
|
80
|
+
import { EntityCaseIcon } from "./icons/EntityCaseIcon.mjs";
|
|
75
81
|
import { EntityGroupIcon } from "./icons/EntityGroupIcon.mjs";
|
|
76
82
|
import { EntityHouseholdIcon } from "./icons/EntityHouseholdIcon.mjs";
|
|
77
83
|
import { EntityLegalPersonIcon } from "./icons/EntityLegalPersonIcon.mjs";
|
|
@@ -97,10 +103,8 @@ import { FileIcon } from "./icons/FileIcon.mjs";
|
|
|
97
103
|
import { FolderInboxIcon } from "./icons/FolderInboxIcon.mjs";
|
|
98
104
|
import { FolderIcon } from "./icons/FolderIcon.mjs";
|
|
99
105
|
import { HistoryIcon } from "./icons/HistoryIcon.mjs";
|
|
100
|
-
import { ImportantIcon } from "./icons/ImportantIcon.mjs";
|
|
101
106
|
import { InfoIcon } from "./icons/InfoIcon.mjs";
|
|
102
107
|
import { InheritableIcon } from "./icons/InheritableIcon.mjs";
|
|
103
|
-
import { LastEditDateIcon } from "./icons/LastEditDateIcon.mjs";
|
|
104
108
|
import { MenuBurgerIcon } from "./icons/MenuBurgerIcon.mjs";
|
|
105
109
|
import { MenuIcon } from "./icons/MenuIcon.mjs";
|
|
106
110
|
import { ModuleAdminIcon } from "./icons/ModuleAdminIcon.mjs";
|
|
@@ -123,9 +127,10 @@ import { NavToFirstIcon } from "./icons/NavToFirstIcon.mjs";
|
|
|
123
127
|
import { NavToLastIcon } from "./icons/NavToLastIcon.mjs";
|
|
124
128
|
import { NoteIcon } from "./icons/NoteIcon.mjs";
|
|
125
129
|
import { OwnerIcon } from "./icons/OwnerIcon.mjs";
|
|
130
|
+
import { PriorityImportantIcon } from "./icons/PriorityImportantIcon.mjs";
|
|
126
131
|
import { PriorityTrivialIcon } from "./icons/PriorityTrivialIcon.mjs";
|
|
132
|
+
import { ProrityInformationalIcon } from "./icons/ProrityInformationalIcon.mjs";
|
|
127
133
|
import { ScoreIcon } from "./icons/ScoreIcon.mjs";
|
|
128
|
-
import { SearchIcon } from "./icons/SearchIcon.mjs";
|
|
129
134
|
import { SironOneIcon } from "./icons/SironOneIcon.mjs";
|
|
130
135
|
import { SkipNextIcon } from "./icons/SkipNextIcon.mjs";
|
|
131
136
|
import { SkipPreviousIcon } from "./icons/SkipPreviousIcon.mjs";
|
|
@@ -183,7 +188,9 @@ export {
|
|
|
183
188
|
ActionEscalateIcon,
|
|
184
189
|
ActionExtandIcon,
|
|
185
190
|
ActionFavoriteIcon,
|
|
191
|
+
ActionInvestigateIcon,
|
|
186
192
|
ActionLinkIcon,
|
|
193
|
+
ActionMarkAsDoneIcon,
|
|
187
194
|
ActionOpenLinkIcon,
|
|
188
195
|
ActionPinIcon,
|
|
189
196
|
ActionPinOffIcon,
|
|
@@ -193,6 +200,7 @@ export {
|
|
|
193
200
|
ActionRemoveIcon,
|
|
194
201
|
ActionResetSettingsIcon,
|
|
195
202
|
ActionSaveIcon,
|
|
203
|
+
ActionSearchIcon,
|
|
196
204
|
ActionSidebarCollapseIcon,
|
|
197
205
|
ActionSidebarExpandIcon,
|
|
198
206
|
ActionSuspendIcon,
|
|
@@ -213,8 +221,10 @@ export {
|
|
|
213
221
|
ChevronRightIcon,
|
|
214
222
|
ChevronUpIcon,
|
|
215
223
|
CommentIcon,
|
|
224
|
+
DateCreationIcon,
|
|
216
225
|
DateDueIcon,
|
|
217
226
|
DateExpireIcon,
|
|
227
|
+
DateLastEditIcon,
|
|
218
228
|
DecisionIcon,
|
|
219
229
|
DossierIcon,
|
|
220
230
|
DossierTemplateIcon,
|
|
@@ -243,6 +253,7 @@ export {
|
|
|
243
253
|
EntityAccountIcon,
|
|
244
254
|
EntityAlertIcon,
|
|
245
255
|
EntityBankMessageIcon,
|
|
256
|
+
EntityCaseIcon,
|
|
246
257
|
EntityGroupIcon,
|
|
247
258
|
EntityHouseholdIcon,
|
|
248
259
|
EntityIcon,
|
|
@@ -271,10 +282,8 @@ export {
|
|
|
271
282
|
IconContext,
|
|
272
283
|
IconProvider,
|
|
273
284
|
IconSVG,
|
|
274
|
-
ImportantIcon,
|
|
275
285
|
InfoIcon,
|
|
276
286
|
InheritableIcon,
|
|
277
|
-
LastEditDateIcon,
|
|
278
287
|
MenuBurgerIcon,
|
|
279
288
|
MenuIcon,
|
|
280
289
|
ModuleAdminIcon,
|
|
@@ -297,9 +306,10 @@ export {
|
|
|
297
306
|
NavToLastIcon,
|
|
298
307
|
NoteIcon,
|
|
299
308
|
OwnerIcon,
|
|
309
|
+
PriorityImportantIcon,
|
|
300
310
|
PriorityTrivialIcon,
|
|
311
|
+
ProrityInformationalIcon,
|
|
301
312
|
ScoreIcon,
|
|
302
|
-
SearchIcon,
|
|
303
313
|
SironOneIcon,
|
|
304
314
|
SkipNextIcon,
|
|
305
315
|
SkipPreviousIcon,
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V10h16v11zm0-13H4V5h16v3z"/></svg>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|