@imtf/icons 1.0.0-beta.1 → 1.0.0-beta.3
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/{LastEditDateIcon.d.ts → ActionAddAltIcon.d.ts} +1 -1
- package/lib/icons/ActionAddAltIcon.js +23 -0
- package/lib/icons/ActionAddAltIcon.mjs +24 -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/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/index.d.ts +4 -2
- package/lib/index.js +8 -4
- package/lib/index.mjs +8 -4
- package/package.json +1 -1
- package/svg/ActionAddAlt.json +7 -0
- package/svg/ActionAddAlt.svg +1 -0
- package/svg/ActionMarkAsDone.svg +1 -0
- /package/svg/{Search.svg → ActionSearch.svg} +0 -0
- /package/svg/{LastEditDate.svg → DateLastEdit.svg} +0 -0
|
@@ -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 ActionAddAltIcon };
|
|
@@ -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 ActionAddAltIcon = ({
|
|
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", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M440-440H200v-80h240v-240h80v240h240v80H520v240h-80z" }) });
|
|
21
|
+
};
|
|
22
|
+
const ForwardRef = react.forwardRef(ActionAddAltIcon);
|
|
23
|
+
exports.ActionAddAltIcon = 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 ActionAddAltIcon = ({
|
|
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", fill: color, viewBox: "0 -960 960 960", fontSize: defaultValues.fontSize, color, ref, ...props, children: /* @__PURE__ */ jsx("path", { d: "M440-440H200v-80h240v-240h80v240h240v80H520v240h-80z" }) });
|
|
20
|
+
};
|
|
21
|
+
const ForwardRef = forwardRef(ActionAddAltIcon);
|
|
22
|
+
export {
|
|
23
|
+
ForwardRef as ActionAddAltIcon
|
|
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 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
|
};
|
|
@@ -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
|
};
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { ActionAddAltIcon } from "./ActionAddAltIcon";
|
|
1
2
|
export { ActionAddIcon } from "./ActionAddIcon";
|
|
2
3
|
export { ActionCancelIcon } from "./ActionCancelIcon";
|
|
3
4
|
export { ActionDeleteIcon } from "./ActionDeleteIcon";
|
|
@@ -9,6 +10,7 @@ export { ActionEscalateIcon } from "./ActionEscalateIcon";
|
|
|
9
10
|
export { ActionExtandIcon } from "./ActionExtandIcon";
|
|
10
11
|
export { ActionFavoriteIcon } from "./ActionFavoriteIcon";
|
|
11
12
|
export { ActionLinkIcon } from "./ActionLinkIcon";
|
|
13
|
+
export { ActionMarkAsDoneIcon } from "./ActionMarkAsDoneIcon";
|
|
12
14
|
export { ActionOpenLinkIcon } from "./ActionOpenLinkIcon";
|
|
13
15
|
export { ActionPinOffIcon } from "./ActionPinOffIcon";
|
|
14
16
|
export { ActionPinIcon } from "./ActionPinIcon";
|
|
@@ -18,6 +20,7 @@ export { ActionRefreshIcon } from "./ActionRefreshIcon";
|
|
|
18
20
|
export { ActionRemoveIcon } from "./ActionRemoveIcon";
|
|
19
21
|
export { ActionResetSettingsIcon } from "./ActionResetSettingsIcon";
|
|
20
22
|
export { ActionSaveIcon } from "./ActionSaveIcon";
|
|
23
|
+
export { ActionSearchIcon } from "./ActionSearchIcon";
|
|
21
24
|
export { ActionSidebarCollapseIcon } from "./ActionSidebarCollapseIcon";
|
|
22
25
|
export { ActionSidebarExpandIcon } from "./ActionSidebarExpandIcon";
|
|
23
26
|
export { ActionSuspendIcon } from "./ActionSuspendIcon";
|
|
@@ -40,6 +43,7 @@ export { ChevronUpIcon } from "./ChevronUpIcon";
|
|
|
40
43
|
export { CommentIcon } from "./CommentIcon";
|
|
41
44
|
export { DateDueIcon } from "./DateDueIcon";
|
|
42
45
|
export { DateExpireIcon } from "./DateExpireIcon";
|
|
46
|
+
export { DateLastEditIcon } from "./DateLastEditIcon";
|
|
43
47
|
export { DecisionIcon } from "./DecisionIcon";
|
|
44
48
|
export { DossierTemplateIcon } from "./DossierTemplateIcon";
|
|
45
49
|
export { DossierIcon } from "./DossierIcon";
|
|
@@ -96,7 +100,6 @@ export { HistoryIcon } from "./HistoryIcon";
|
|
|
96
100
|
export { ImportantIcon } from "./ImportantIcon";
|
|
97
101
|
export { InfoIcon } from "./InfoIcon";
|
|
98
102
|
export { InheritableIcon } from "./InheritableIcon";
|
|
99
|
-
export { LastEditDateIcon } from "./LastEditDateIcon";
|
|
100
103
|
export { MenuBurgerIcon } from "./MenuBurgerIcon";
|
|
101
104
|
export { MenuIcon } from "./MenuIcon";
|
|
102
105
|
export { ModuleAdminIcon } from "./ModuleAdminIcon";
|
|
@@ -121,7 +124,6 @@ export { NoteIcon } from "./NoteIcon";
|
|
|
121
124
|
export { OwnerIcon } from "./OwnerIcon";
|
|
122
125
|
export { PriorityTrivialIcon } from "./PriorityTrivialIcon";
|
|
123
126
|
export { ScoreIcon } from "./ScoreIcon";
|
|
124
|
-
export { SearchIcon } from "./SearchIcon";
|
|
125
127
|
export { SironOneIcon } from "./SironOneIcon";
|
|
126
128
|
export { SkipNextIcon } from "./SkipNextIcon";
|
|
127
129
|
export { SkipPreviousIcon } from "./SkipPreviousIcon";
|
package/lib/index.js
CHANGED
|
@@ -2,6 +2,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
|
2
2
|
const IconProvider = require("./providers/IconProvider/IconProvider.js");
|
|
3
3
|
const Context = require("./providers/IconProvider/Context.js");
|
|
4
4
|
const IconSVG = require("./components/IconSVG.js");
|
|
5
|
+
const ActionAddAltIcon = require("./icons/ActionAddAltIcon.js");
|
|
5
6
|
const ActionAddIcon = require("./icons/ActionAddIcon.js");
|
|
6
7
|
const ActionCancelIcon = require("./icons/ActionCancelIcon.js");
|
|
7
8
|
const ActionDeleteIcon = require("./icons/ActionDeleteIcon.js");
|
|
@@ -13,6 +14,7 @@ const ActionEscalateIcon = require("./icons/ActionEscalateIcon.js");
|
|
|
13
14
|
const ActionExtandIcon = require("./icons/ActionExtandIcon.js");
|
|
14
15
|
const ActionFavoriteIcon = require("./icons/ActionFavoriteIcon.js");
|
|
15
16
|
const ActionLinkIcon = require("./icons/ActionLinkIcon.js");
|
|
17
|
+
const ActionMarkAsDoneIcon = require("./icons/ActionMarkAsDoneIcon.js");
|
|
16
18
|
const ActionOpenLinkIcon = require("./icons/ActionOpenLinkIcon.js");
|
|
17
19
|
const ActionPinOffIcon = require("./icons/ActionPinOffIcon.js");
|
|
18
20
|
const ActionPinIcon = require("./icons/ActionPinIcon.js");
|
|
@@ -22,6 +24,7 @@ const ActionRefreshIcon = require("./icons/ActionRefreshIcon.js");
|
|
|
22
24
|
const ActionRemoveIcon = require("./icons/ActionRemoveIcon.js");
|
|
23
25
|
const ActionResetSettingsIcon = require("./icons/ActionResetSettingsIcon.js");
|
|
24
26
|
const ActionSaveIcon = require("./icons/ActionSaveIcon.js");
|
|
27
|
+
const ActionSearchIcon = require("./icons/ActionSearchIcon.js");
|
|
25
28
|
const ActionSidebarCollapseIcon = require("./icons/ActionSidebarCollapseIcon.js");
|
|
26
29
|
const ActionSidebarExpandIcon = require("./icons/ActionSidebarExpandIcon.js");
|
|
27
30
|
const ActionSuspendIcon = require("./icons/ActionSuspendIcon.js");
|
|
@@ -44,6 +47,7 @@ const ChevronUpIcon = require("./icons/ChevronUpIcon.js");
|
|
|
44
47
|
const CommentIcon = require("./icons/CommentIcon.js");
|
|
45
48
|
const DateDueIcon = require("./icons/DateDueIcon.js");
|
|
46
49
|
const DateExpireIcon = require("./icons/DateExpireIcon.js");
|
|
50
|
+
const DateLastEditIcon = require("./icons/DateLastEditIcon.js");
|
|
47
51
|
const DecisionIcon = require("./icons/DecisionIcon.js");
|
|
48
52
|
const DossierTemplateIcon = require("./icons/DossierTemplateIcon.js");
|
|
49
53
|
const DossierIcon = require("./icons/DossierIcon.js");
|
|
@@ -100,7 +104,6 @@ const HistoryIcon = require("./icons/HistoryIcon.js");
|
|
|
100
104
|
const ImportantIcon = require("./icons/ImportantIcon.js");
|
|
101
105
|
const InfoIcon = require("./icons/InfoIcon.js");
|
|
102
106
|
const InheritableIcon = require("./icons/InheritableIcon.js");
|
|
103
|
-
const LastEditDateIcon = require("./icons/LastEditDateIcon.js");
|
|
104
107
|
const MenuBurgerIcon = require("./icons/MenuBurgerIcon.js");
|
|
105
108
|
const MenuIcon = require("./icons/MenuIcon.js");
|
|
106
109
|
const ModuleAdminIcon = require("./icons/ModuleAdminIcon.js");
|
|
@@ -125,7 +128,6 @@ const NoteIcon = require("./icons/NoteIcon.js");
|
|
|
125
128
|
const OwnerIcon = require("./icons/OwnerIcon.js");
|
|
126
129
|
const PriorityTrivialIcon = require("./icons/PriorityTrivialIcon.js");
|
|
127
130
|
const ScoreIcon = require("./icons/ScoreIcon.js");
|
|
128
|
-
const SearchIcon = require("./icons/SearchIcon.js");
|
|
129
131
|
const SironOneIcon = require("./icons/SironOneIcon.js");
|
|
130
132
|
const SkipNextIcon = require("./icons/SkipNextIcon.js");
|
|
131
133
|
const SkipPreviousIcon = require("./icons/SkipPreviousIcon.js");
|
|
@@ -175,6 +177,7 @@ exports.IconProvider = IconProvider.IconProvider;
|
|
|
175
177
|
exports.IconContext = Context.IconContext;
|
|
176
178
|
exports.withIconContext = Context.withIconContext;
|
|
177
179
|
exports.IconSVG = IconSVG.IconSVG;
|
|
180
|
+
exports.ActionAddAltIcon = ActionAddAltIcon.ActionAddAltIcon;
|
|
178
181
|
exports.ActionAddIcon = ActionAddIcon.ActionAddIcon;
|
|
179
182
|
exports.ActionCancelIcon = ActionCancelIcon.ActionCancelIcon;
|
|
180
183
|
exports.ActionDeleteIcon = ActionDeleteIcon.ActionDeleteIcon;
|
|
@@ -186,6 +189,7 @@ exports.ActionEscalateIcon = ActionEscalateIcon.ActionEscalateIcon;
|
|
|
186
189
|
exports.ActionExtandIcon = ActionExtandIcon.ActionExtandIcon;
|
|
187
190
|
exports.ActionFavoriteIcon = ActionFavoriteIcon.ActionFavoriteIcon;
|
|
188
191
|
exports.ActionLinkIcon = ActionLinkIcon.ActionLinkIcon;
|
|
192
|
+
exports.ActionMarkAsDoneIcon = ActionMarkAsDoneIcon.ActionMarkAsDoneIcon;
|
|
189
193
|
exports.ActionOpenLinkIcon = ActionOpenLinkIcon.ActionOpenLinkIcon;
|
|
190
194
|
exports.ActionPinOffIcon = ActionPinOffIcon.ActionPinOffIcon;
|
|
191
195
|
exports.ActionPinIcon = ActionPinIcon.ActionPinIcon;
|
|
@@ -195,6 +199,7 @@ exports.ActionRefreshIcon = ActionRefreshIcon.ActionRefreshIcon;
|
|
|
195
199
|
exports.ActionRemoveIcon = ActionRemoveIcon.ActionRemoveIcon;
|
|
196
200
|
exports.ActionResetSettingsIcon = ActionResetSettingsIcon.ActionResetSettingsIcon;
|
|
197
201
|
exports.ActionSaveIcon = ActionSaveIcon.ActionSaveIcon;
|
|
202
|
+
exports.ActionSearchIcon = ActionSearchIcon.ActionSearchIcon;
|
|
198
203
|
exports.ActionSidebarCollapseIcon = ActionSidebarCollapseIcon.ActionSidebarCollapseIcon;
|
|
199
204
|
exports.ActionSidebarExpandIcon = ActionSidebarExpandIcon.ActionSidebarExpandIcon;
|
|
200
205
|
exports.ActionSuspendIcon = ActionSuspendIcon.ActionSuspendIcon;
|
|
@@ -217,6 +222,7 @@ exports.ChevronUpIcon = ChevronUpIcon.ChevronUpIcon;
|
|
|
217
222
|
exports.CommentIcon = CommentIcon.CommentIcon;
|
|
218
223
|
exports.DateDueIcon = DateDueIcon.DateDueIcon;
|
|
219
224
|
exports.DateExpireIcon = DateExpireIcon.DateExpireIcon;
|
|
225
|
+
exports.DateLastEditIcon = DateLastEditIcon.DateLastEditIcon;
|
|
220
226
|
exports.DecisionIcon = DecisionIcon.DecisionIcon;
|
|
221
227
|
exports.DossierTemplateIcon = DossierTemplateIcon.DossierTemplateIcon;
|
|
222
228
|
exports.DossierIcon = DossierIcon.DossierIcon;
|
|
@@ -273,7 +279,6 @@ exports.HistoryIcon = HistoryIcon.HistoryIcon;
|
|
|
273
279
|
exports.ImportantIcon = ImportantIcon.ImportantIcon;
|
|
274
280
|
exports.InfoIcon = InfoIcon.InfoIcon;
|
|
275
281
|
exports.InheritableIcon = InheritableIcon.InheritableIcon;
|
|
276
|
-
exports.LastEditDateIcon = LastEditDateIcon.LastEditDateIcon;
|
|
277
282
|
exports.MenuBurgerIcon = MenuBurgerIcon.MenuBurgerIcon;
|
|
278
283
|
exports.MenuIcon = MenuIcon.MenuIcon;
|
|
279
284
|
exports.ModuleAdminIcon = ModuleAdminIcon.ModuleAdminIcon;
|
|
@@ -298,7 +303,6 @@ exports.NoteIcon = NoteIcon.NoteIcon;
|
|
|
298
303
|
exports.OwnerIcon = OwnerIcon.OwnerIcon;
|
|
299
304
|
exports.PriorityTrivialIcon = PriorityTrivialIcon.PriorityTrivialIcon;
|
|
300
305
|
exports.ScoreIcon = ScoreIcon.ScoreIcon;
|
|
301
|
-
exports.SearchIcon = SearchIcon.SearchIcon;
|
|
302
306
|
exports.SironOneIcon = SironOneIcon.SironOneIcon;
|
|
303
307
|
exports.SkipNextIcon = SkipNextIcon.SkipNextIcon;
|
|
304
308
|
exports.SkipPreviousIcon = SkipPreviousIcon.SkipPreviousIcon;
|
package/lib/index.mjs
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { IconProvider } from "./providers/IconProvider/IconProvider.mjs";
|
|
2
2
|
import { IconContext, withIconContext } from "./providers/IconProvider/Context.mjs";
|
|
3
3
|
import { IconSVG } from "./components/IconSVG.mjs";
|
|
4
|
+
import { ActionAddAltIcon } from "./icons/ActionAddAltIcon.mjs";
|
|
4
5
|
import { ActionAddIcon } from "./icons/ActionAddIcon.mjs";
|
|
5
6
|
import { ActionCancelIcon } from "./icons/ActionCancelIcon.mjs";
|
|
6
7
|
import { ActionDeleteIcon } from "./icons/ActionDeleteIcon.mjs";
|
|
@@ -12,6 +13,7 @@ import { ActionEscalateIcon } from "./icons/ActionEscalateIcon.mjs";
|
|
|
12
13
|
import { ActionExtandIcon } from "./icons/ActionExtandIcon.mjs";
|
|
13
14
|
import { ActionFavoriteIcon } from "./icons/ActionFavoriteIcon.mjs";
|
|
14
15
|
import { ActionLinkIcon } from "./icons/ActionLinkIcon.mjs";
|
|
16
|
+
import { ActionMarkAsDoneIcon } from "./icons/ActionMarkAsDoneIcon.mjs";
|
|
15
17
|
import { ActionOpenLinkIcon } from "./icons/ActionOpenLinkIcon.mjs";
|
|
16
18
|
import { ActionPinOffIcon } from "./icons/ActionPinOffIcon.mjs";
|
|
17
19
|
import { ActionPinIcon } from "./icons/ActionPinIcon.mjs";
|
|
@@ -21,6 +23,7 @@ import { ActionRefreshIcon } from "./icons/ActionRefreshIcon.mjs";
|
|
|
21
23
|
import { ActionRemoveIcon } from "./icons/ActionRemoveIcon.mjs";
|
|
22
24
|
import { ActionResetSettingsIcon } from "./icons/ActionResetSettingsIcon.mjs";
|
|
23
25
|
import { ActionSaveIcon } from "./icons/ActionSaveIcon.mjs";
|
|
26
|
+
import { ActionSearchIcon } from "./icons/ActionSearchIcon.mjs";
|
|
24
27
|
import { ActionSidebarCollapseIcon } from "./icons/ActionSidebarCollapseIcon.mjs";
|
|
25
28
|
import { ActionSidebarExpandIcon } from "./icons/ActionSidebarExpandIcon.mjs";
|
|
26
29
|
import { ActionSuspendIcon } from "./icons/ActionSuspendIcon.mjs";
|
|
@@ -43,6 +46,7 @@ import { ChevronUpIcon } from "./icons/ChevronUpIcon.mjs";
|
|
|
43
46
|
import { CommentIcon } from "./icons/CommentIcon.mjs";
|
|
44
47
|
import { DateDueIcon } from "./icons/DateDueIcon.mjs";
|
|
45
48
|
import { DateExpireIcon } from "./icons/DateExpireIcon.mjs";
|
|
49
|
+
import { DateLastEditIcon } from "./icons/DateLastEditIcon.mjs";
|
|
46
50
|
import { DecisionIcon } from "./icons/DecisionIcon.mjs";
|
|
47
51
|
import { DossierTemplateIcon } from "./icons/DossierTemplateIcon.mjs";
|
|
48
52
|
import { DossierIcon } from "./icons/DossierIcon.mjs";
|
|
@@ -99,7 +103,6 @@ import { HistoryIcon } from "./icons/HistoryIcon.mjs";
|
|
|
99
103
|
import { ImportantIcon } from "./icons/ImportantIcon.mjs";
|
|
100
104
|
import { InfoIcon } from "./icons/InfoIcon.mjs";
|
|
101
105
|
import { InheritableIcon } from "./icons/InheritableIcon.mjs";
|
|
102
|
-
import { LastEditDateIcon } from "./icons/LastEditDateIcon.mjs";
|
|
103
106
|
import { MenuBurgerIcon } from "./icons/MenuBurgerIcon.mjs";
|
|
104
107
|
import { MenuIcon } from "./icons/MenuIcon.mjs";
|
|
105
108
|
import { ModuleAdminIcon } from "./icons/ModuleAdminIcon.mjs";
|
|
@@ -124,7 +127,6 @@ import { NoteIcon } from "./icons/NoteIcon.mjs";
|
|
|
124
127
|
import { OwnerIcon } from "./icons/OwnerIcon.mjs";
|
|
125
128
|
import { PriorityTrivialIcon } from "./icons/PriorityTrivialIcon.mjs";
|
|
126
129
|
import { ScoreIcon } from "./icons/ScoreIcon.mjs";
|
|
127
|
-
import { SearchIcon } from "./icons/SearchIcon.mjs";
|
|
128
130
|
import { SironOneIcon } from "./icons/SironOneIcon.mjs";
|
|
129
131
|
import { SkipNextIcon } from "./icons/SkipNextIcon.mjs";
|
|
130
132
|
import { SkipPreviousIcon } from "./icons/SkipPreviousIcon.mjs";
|
|
@@ -171,6 +173,7 @@ import { ViewTableIcon } from "./icons/ViewTableIcon.mjs";
|
|
|
171
173
|
import { ViewTreeIcon } from "./icons/ViewTreeIcon.mjs";
|
|
172
174
|
import { WarningIcon } from "./icons/WarningIcon.mjs";
|
|
173
175
|
export {
|
|
176
|
+
ActionAddAltIcon,
|
|
174
177
|
ActionAddIcon,
|
|
175
178
|
ActionCancelIcon,
|
|
176
179
|
ActionDeleteIcon,
|
|
@@ -182,6 +185,7 @@ export {
|
|
|
182
185
|
ActionExtandIcon,
|
|
183
186
|
ActionFavoriteIcon,
|
|
184
187
|
ActionLinkIcon,
|
|
188
|
+
ActionMarkAsDoneIcon,
|
|
185
189
|
ActionOpenLinkIcon,
|
|
186
190
|
ActionPinIcon,
|
|
187
191
|
ActionPinOffIcon,
|
|
@@ -191,6 +195,7 @@ export {
|
|
|
191
195
|
ActionRemoveIcon,
|
|
192
196
|
ActionResetSettingsIcon,
|
|
193
197
|
ActionSaveIcon,
|
|
198
|
+
ActionSearchIcon,
|
|
194
199
|
ActionSidebarCollapseIcon,
|
|
195
200
|
ActionSidebarExpandIcon,
|
|
196
201
|
ActionSuspendIcon,
|
|
@@ -213,6 +218,7 @@ export {
|
|
|
213
218
|
CommentIcon,
|
|
214
219
|
DateDueIcon,
|
|
215
220
|
DateExpireIcon,
|
|
221
|
+
DateLastEditIcon,
|
|
216
222
|
DecisionIcon,
|
|
217
223
|
DossierIcon,
|
|
218
224
|
DossierTemplateIcon,
|
|
@@ -272,7 +278,6 @@ export {
|
|
|
272
278
|
ImportantIcon,
|
|
273
279
|
InfoIcon,
|
|
274
280
|
InheritableIcon,
|
|
275
|
-
LastEditDateIcon,
|
|
276
281
|
MenuBurgerIcon,
|
|
277
282
|
MenuIcon,
|
|
278
283
|
ModuleAdminIcon,
|
|
@@ -297,7 +302,6 @@ export {
|
|
|
297
302
|
OwnerIcon,
|
|
298
303
|
PriorityTrivialIcon,
|
|
299
304
|
ScoreIcon,
|
|
300
|
-
SearchIcon,
|
|
301
305
|
SironOneIcon,
|
|
302
306
|
SkipNextIcon,
|
|
303
307
|
SkipPreviousIcon,
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#1f1f1f"><path d="M440-440H200v-80h240v-240h80v240h240v80H520v240h-80v-240Z"/></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>
|
|
File without changes
|
|
File without changes
|