@imtf/icons 1.0.0-beta.2 → 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/ActionMarkAsDoneIcon.d.ts +4 -0
- package/lib/icons/ActionMarkAsDoneIcon.js +26 -0
- package/lib/icons/ActionMarkAsDoneIcon.mjs +27 -0
- package/lib/icons/{LastEditDateIcon.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/{SearchIcon.d.ts → DateLastEditIcon.d.ts} +1 -1
- package/lib/icons/{LastEditDateIcon.js → DateLastEditIcon.js} +3 -3
- package/lib/icons/{LastEditDateIcon.mjs → DateLastEditIcon.mjs} +3 -3
- package/lib/icons/index.d.ts +3 -2
- package/lib/index.js +6 -4
- package/lib/index.mjs +6 -4
- package/package.json +1 -1
- package/svg/ActionMarkAsDone.svg +1 -0
- /package/svg/{Search.svg → ActionSearch.svg} +0 -0
- /package/svg/{LastEditDate.svg → DateLastEdit.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 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 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
|
@@ -10,6 +10,7 @@ export { ActionEscalateIcon } from "./ActionEscalateIcon";
|
|
|
10
10
|
export { ActionExtandIcon } from "./ActionExtandIcon";
|
|
11
11
|
export { ActionFavoriteIcon } from "./ActionFavoriteIcon";
|
|
12
12
|
export { ActionLinkIcon } from "./ActionLinkIcon";
|
|
13
|
+
export { ActionMarkAsDoneIcon } from "./ActionMarkAsDoneIcon";
|
|
13
14
|
export { ActionOpenLinkIcon } from "./ActionOpenLinkIcon";
|
|
14
15
|
export { ActionPinOffIcon } from "./ActionPinOffIcon";
|
|
15
16
|
export { ActionPinIcon } from "./ActionPinIcon";
|
|
@@ -19,6 +20,7 @@ export { ActionRefreshIcon } from "./ActionRefreshIcon";
|
|
|
19
20
|
export { ActionRemoveIcon } from "./ActionRemoveIcon";
|
|
20
21
|
export { ActionResetSettingsIcon } from "./ActionResetSettingsIcon";
|
|
21
22
|
export { ActionSaveIcon } from "./ActionSaveIcon";
|
|
23
|
+
export { ActionSearchIcon } from "./ActionSearchIcon";
|
|
22
24
|
export { ActionSidebarCollapseIcon } from "./ActionSidebarCollapseIcon";
|
|
23
25
|
export { ActionSidebarExpandIcon } from "./ActionSidebarExpandIcon";
|
|
24
26
|
export { ActionSuspendIcon } from "./ActionSuspendIcon";
|
|
@@ -41,6 +43,7 @@ export { ChevronUpIcon } from "./ChevronUpIcon";
|
|
|
41
43
|
export { CommentIcon } from "./CommentIcon";
|
|
42
44
|
export { DateDueIcon } from "./DateDueIcon";
|
|
43
45
|
export { DateExpireIcon } from "./DateExpireIcon";
|
|
46
|
+
export { DateLastEditIcon } from "./DateLastEditIcon";
|
|
44
47
|
export { DecisionIcon } from "./DecisionIcon";
|
|
45
48
|
export { DossierTemplateIcon } from "./DossierTemplateIcon";
|
|
46
49
|
export { DossierIcon } from "./DossierIcon";
|
|
@@ -97,7 +100,6 @@ export { HistoryIcon } from "./HistoryIcon";
|
|
|
97
100
|
export { ImportantIcon } from "./ImportantIcon";
|
|
98
101
|
export { InfoIcon } from "./InfoIcon";
|
|
99
102
|
export { InheritableIcon } from "./InheritableIcon";
|
|
100
|
-
export { LastEditDateIcon } from "./LastEditDateIcon";
|
|
101
103
|
export { MenuBurgerIcon } from "./MenuBurgerIcon";
|
|
102
104
|
export { MenuIcon } from "./MenuIcon";
|
|
103
105
|
export { ModuleAdminIcon } from "./ModuleAdminIcon";
|
|
@@ -122,7 +124,6 @@ export { NoteIcon } from "./NoteIcon";
|
|
|
122
124
|
export { OwnerIcon } from "./OwnerIcon";
|
|
123
125
|
export { PriorityTrivialIcon } from "./PriorityTrivialIcon";
|
|
124
126
|
export { ScoreIcon } from "./ScoreIcon";
|
|
125
|
-
export { SearchIcon } from "./SearchIcon";
|
|
126
127
|
export { SironOneIcon } from "./SironOneIcon";
|
|
127
128
|
export { SkipNextIcon } from "./SkipNextIcon";
|
|
128
129
|
export { SkipPreviousIcon } from "./SkipPreviousIcon";
|
package/lib/index.js
CHANGED
|
@@ -14,6 +14,7 @@ const ActionEscalateIcon = require("./icons/ActionEscalateIcon.js");
|
|
|
14
14
|
const ActionExtandIcon = require("./icons/ActionExtandIcon.js");
|
|
15
15
|
const ActionFavoriteIcon = require("./icons/ActionFavoriteIcon.js");
|
|
16
16
|
const ActionLinkIcon = require("./icons/ActionLinkIcon.js");
|
|
17
|
+
const ActionMarkAsDoneIcon = require("./icons/ActionMarkAsDoneIcon.js");
|
|
17
18
|
const ActionOpenLinkIcon = require("./icons/ActionOpenLinkIcon.js");
|
|
18
19
|
const ActionPinOffIcon = require("./icons/ActionPinOffIcon.js");
|
|
19
20
|
const ActionPinIcon = require("./icons/ActionPinIcon.js");
|
|
@@ -23,6 +24,7 @@ const ActionRefreshIcon = require("./icons/ActionRefreshIcon.js");
|
|
|
23
24
|
const ActionRemoveIcon = require("./icons/ActionRemoveIcon.js");
|
|
24
25
|
const ActionResetSettingsIcon = require("./icons/ActionResetSettingsIcon.js");
|
|
25
26
|
const ActionSaveIcon = require("./icons/ActionSaveIcon.js");
|
|
27
|
+
const ActionSearchIcon = require("./icons/ActionSearchIcon.js");
|
|
26
28
|
const ActionSidebarCollapseIcon = require("./icons/ActionSidebarCollapseIcon.js");
|
|
27
29
|
const ActionSidebarExpandIcon = require("./icons/ActionSidebarExpandIcon.js");
|
|
28
30
|
const ActionSuspendIcon = require("./icons/ActionSuspendIcon.js");
|
|
@@ -45,6 +47,7 @@ const ChevronUpIcon = require("./icons/ChevronUpIcon.js");
|
|
|
45
47
|
const CommentIcon = require("./icons/CommentIcon.js");
|
|
46
48
|
const DateDueIcon = require("./icons/DateDueIcon.js");
|
|
47
49
|
const DateExpireIcon = require("./icons/DateExpireIcon.js");
|
|
50
|
+
const DateLastEditIcon = require("./icons/DateLastEditIcon.js");
|
|
48
51
|
const DecisionIcon = require("./icons/DecisionIcon.js");
|
|
49
52
|
const DossierTemplateIcon = require("./icons/DossierTemplateIcon.js");
|
|
50
53
|
const DossierIcon = require("./icons/DossierIcon.js");
|
|
@@ -101,7 +104,6 @@ const HistoryIcon = require("./icons/HistoryIcon.js");
|
|
|
101
104
|
const ImportantIcon = require("./icons/ImportantIcon.js");
|
|
102
105
|
const InfoIcon = require("./icons/InfoIcon.js");
|
|
103
106
|
const InheritableIcon = require("./icons/InheritableIcon.js");
|
|
104
|
-
const LastEditDateIcon = require("./icons/LastEditDateIcon.js");
|
|
105
107
|
const MenuBurgerIcon = require("./icons/MenuBurgerIcon.js");
|
|
106
108
|
const MenuIcon = require("./icons/MenuIcon.js");
|
|
107
109
|
const ModuleAdminIcon = require("./icons/ModuleAdminIcon.js");
|
|
@@ -126,7 +128,6 @@ const NoteIcon = require("./icons/NoteIcon.js");
|
|
|
126
128
|
const OwnerIcon = require("./icons/OwnerIcon.js");
|
|
127
129
|
const PriorityTrivialIcon = require("./icons/PriorityTrivialIcon.js");
|
|
128
130
|
const ScoreIcon = require("./icons/ScoreIcon.js");
|
|
129
|
-
const SearchIcon = require("./icons/SearchIcon.js");
|
|
130
131
|
const SironOneIcon = require("./icons/SironOneIcon.js");
|
|
131
132
|
const SkipNextIcon = require("./icons/SkipNextIcon.js");
|
|
132
133
|
const SkipPreviousIcon = require("./icons/SkipPreviousIcon.js");
|
|
@@ -188,6 +189,7 @@ exports.ActionEscalateIcon = ActionEscalateIcon.ActionEscalateIcon;
|
|
|
188
189
|
exports.ActionExtandIcon = ActionExtandIcon.ActionExtandIcon;
|
|
189
190
|
exports.ActionFavoriteIcon = ActionFavoriteIcon.ActionFavoriteIcon;
|
|
190
191
|
exports.ActionLinkIcon = ActionLinkIcon.ActionLinkIcon;
|
|
192
|
+
exports.ActionMarkAsDoneIcon = ActionMarkAsDoneIcon.ActionMarkAsDoneIcon;
|
|
191
193
|
exports.ActionOpenLinkIcon = ActionOpenLinkIcon.ActionOpenLinkIcon;
|
|
192
194
|
exports.ActionPinOffIcon = ActionPinOffIcon.ActionPinOffIcon;
|
|
193
195
|
exports.ActionPinIcon = ActionPinIcon.ActionPinIcon;
|
|
@@ -197,6 +199,7 @@ exports.ActionRefreshIcon = ActionRefreshIcon.ActionRefreshIcon;
|
|
|
197
199
|
exports.ActionRemoveIcon = ActionRemoveIcon.ActionRemoveIcon;
|
|
198
200
|
exports.ActionResetSettingsIcon = ActionResetSettingsIcon.ActionResetSettingsIcon;
|
|
199
201
|
exports.ActionSaveIcon = ActionSaveIcon.ActionSaveIcon;
|
|
202
|
+
exports.ActionSearchIcon = ActionSearchIcon.ActionSearchIcon;
|
|
200
203
|
exports.ActionSidebarCollapseIcon = ActionSidebarCollapseIcon.ActionSidebarCollapseIcon;
|
|
201
204
|
exports.ActionSidebarExpandIcon = ActionSidebarExpandIcon.ActionSidebarExpandIcon;
|
|
202
205
|
exports.ActionSuspendIcon = ActionSuspendIcon.ActionSuspendIcon;
|
|
@@ -219,6 +222,7 @@ exports.ChevronUpIcon = ChevronUpIcon.ChevronUpIcon;
|
|
|
219
222
|
exports.CommentIcon = CommentIcon.CommentIcon;
|
|
220
223
|
exports.DateDueIcon = DateDueIcon.DateDueIcon;
|
|
221
224
|
exports.DateExpireIcon = DateExpireIcon.DateExpireIcon;
|
|
225
|
+
exports.DateLastEditIcon = DateLastEditIcon.DateLastEditIcon;
|
|
222
226
|
exports.DecisionIcon = DecisionIcon.DecisionIcon;
|
|
223
227
|
exports.DossierTemplateIcon = DossierTemplateIcon.DossierTemplateIcon;
|
|
224
228
|
exports.DossierIcon = DossierIcon.DossierIcon;
|
|
@@ -275,7 +279,6 @@ exports.HistoryIcon = HistoryIcon.HistoryIcon;
|
|
|
275
279
|
exports.ImportantIcon = ImportantIcon.ImportantIcon;
|
|
276
280
|
exports.InfoIcon = InfoIcon.InfoIcon;
|
|
277
281
|
exports.InheritableIcon = InheritableIcon.InheritableIcon;
|
|
278
|
-
exports.LastEditDateIcon = LastEditDateIcon.LastEditDateIcon;
|
|
279
282
|
exports.MenuBurgerIcon = MenuBurgerIcon.MenuBurgerIcon;
|
|
280
283
|
exports.MenuIcon = MenuIcon.MenuIcon;
|
|
281
284
|
exports.ModuleAdminIcon = ModuleAdminIcon.ModuleAdminIcon;
|
|
@@ -300,7 +303,6 @@ exports.NoteIcon = NoteIcon.NoteIcon;
|
|
|
300
303
|
exports.OwnerIcon = OwnerIcon.OwnerIcon;
|
|
301
304
|
exports.PriorityTrivialIcon = PriorityTrivialIcon.PriorityTrivialIcon;
|
|
302
305
|
exports.ScoreIcon = ScoreIcon.ScoreIcon;
|
|
303
|
-
exports.SearchIcon = SearchIcon.SearchIcon;
|
|
304
306
|
exports.SironOneIcon = SironOneIcon.SironOneIcon;
|
|
305
307
|
exports.SkipNextIcon = SkipNextIcon.SkipNextIcon;
|
|
306
308
|
exports.SkipPreviousIcon = SkipPreviousIcon.SkipPreviousIcon;
|
package/lib/index.mjs
CHANGED
|
@@ -13,6 +13,7 @@ import { ActionEscalateIcon } from "./icons/ActionEscalateIcon.mjs";
|
|
|
13
13
|
import { ActionExtandIcon } from "./icons/ActionExtandIcon.mjs";
|
|
14
14
|
import { ActionFavoriteIcon } from "./icons/ActionFavoriteIcon.mjs";
|
|
15
15
|
import { ActionLinkIcon } from "./icons/ActionLinkIcon.mjs";
|
|
16
|
+
import { ActionMarkAsDoneIcon } from "./icons/ActionMarkAsDoneIcon.mjs";
|
|
16
17
|
import { ActionOpenLinkIcon } from "./icons/ActionOpenLinkIcon.mjs";
|
|
17
18
|
import { ActionPinOffIcon } from "./icons/ActionPinOffIcon.mjs";
|
|
18
19
|
import { ActionPinIcon } from "./icons/ActionPinIcon.mjs";
|
|
@@ -22,6 +23,7 @@ import { ActionRefreshIcon } from "./icons/ActionRefreshIcon.mjs";
|
|
|
22
23
|
import { ActionRemoveIcon } from "./icons/ActionRemoveIcon.mjs";
|
|
23
24
|
import { ActionResetSettingsIcon } from "./icons/ActionResetSettingsIcon.mjs";
|
|
24
25
|
import { ActionSaveIcon } from "./icons/ActionSaveIcon.mjs";
|
|
26
|
+
import { ActionSearchIcon } from "./icons/ActionSearchIcon.mjs";
|
|
25
27
|
import { ActionSidebarCollapseIcon } from "./icons/ActionSidebarCollapseIcon.mjs";
|
|
26
28
|
import { ActionSidebarExpandIcon } from "./icons/ActionSidebarExpandIcon.mjs";
|
|
27
29
|
import { ActionSuspendIcon } from "./icons/ActionSuspendIcon.mjs";
|
|
@@ -44,6 +46,7 @@ import { ChevronUpIcon } from "./icons/ChevronUpIcon.mjs";
|
|
|
44
46
|
import { CommentIcon } from "./icons/CommentIcon.mjs";
|
|
45
47
|
import { DateDueIcon } from "./icons/DateDueIcon.mjs";
|
|
46
48
|
import { DateExpireIcon } from "./icons/DateExpireIcon.mjs";
|
|
49
|
+
import { DateLastEditIcon } from "./icons/DateLastEditIcon.mjs";
|
|
47
50
|
import { DecisionIcon } from "./icons/DecisionIcon.mjs";
|
|
48
51
|
import { DossierTemplateIcon } from "./icons/DossierTemplateIcon.mjs";
|
|
49
52
|
import { DossierIcon } from "./icons/DossierIcon.mjs";
|
|
@@ -100,7 +103,6 @@ import { HistoryIcon } from "./icons/HistoryIcon.mjs";
|
|
|
100
103
|
import { ImportantIcon } from "./icons/ImportantIcon.mjs";
|
|
101
104
|
import { InfoIcon } from "./icons/InfoIcon.mjs";
|
|
102
105
|
import { InheritableIcon } from "./icons/InheritableIcon.mjs";
|
|
103
|
-
import { LastEditDateIcon } from "./icons/LastEditDateIcon.mjs";
|
|
104
106
|
import { MenuBurgerIcon } from "./icons/MenuBurgerIcon.mjs";
|
|
105
107
|
import { MenuIcon } from "./icons/MenuIcon.mjs";
|
|
106
108
|
import { ModuleAdminIcon } from "./icons/ModuleAdminIcon.mjs";
|
|
@@ -125,7 +127,6 @@ import { NoteIcon } from "./icons/NoteIcon.mjs";
|
|
|
125
127
|
import { OwnerIcon } from "./icons/OwnerIcon.mjs";
|
|
126
128
|
import { PriorityTrivialIcon } from "./icons/PriorityTrivialIcon.mjs";
|
|
127
129
|
import { ScoreIcon } from "./icons/ScoreIcon.mjs";
|
|
128
|
-
import { SearchIcon } from "./icons/SearchIcon.mjs";
|
|
129
130
|
import { SironOneIcon } from "./icons/SironOneIcon.mjs";
|
|
130
131
|
import { SkipNextIcon } from "./icons/SkipNextIcon.mjs";
|
|
131
132
|
import { SkipPreviousIcon } from "./icons/SkipPreviousIcon.mjs";
|
|
@@ -184,6 +185,7 @@ export {
|
|
|
184
185
|
ActionExtandIcon,
|
|
185
186
|
ActionFavoriteIcon,
|
|
186
187
|
ActionLinkIcon,
|
|
188
|
+
ActionMarkAsDoneIcon,
|
|
187
189
|
ActionOpenLinkIcon,
|
|
188
190
|
ActionPinIcon,
|
|
189
191
|
ActionPinOffIcon,
|
|
@@ -193,6 +195,7 @@ export {
|
|
|
193
195
|
ActionRemoveIcon,
|
|
194
196
|
ActionResetSettingsIcon,
|
|
195
197
|
ActionSaveIcon,
|
|
198
|
+
ActionSearchIcon,
|
|
196
199
|
ActionSidebarCollapseIcon,
|
|
197
200
|
ActionSidebarExpandIcon,
|
|
198
201
|
ActionSuspendIcon,
|
|
@@ -215,6 +218,7 @@ export {
|
|
|
215
218
|
CommentIcon,
|
|
216
219
|
DateDueIcon,
|
|
217
220
|
DateExpireIcon,
|
|
221
|
+
DateLastEditIcon,
|
|
218
222
|
DecisionIcon,
|
|
219
223
|
DossierIcon,
|
|
220
224
|
DossierTemplateIcon,
|
|
@@ -274,7 +278,6 @@ export {
|
|
|
274
278
|
ImportantIcon,
|
|
275
279
|
InfoIcon,
|
|
276
280
|
InheritableIcon,
|
|
277
|
-
LastEditDateIcon,
|
|
278
281
|
MenuBurgerIcon,
|
|
279
282
|
MenuIcon,
|
|
280
283
|
ModuleAdminIcon,
|
|
@@ -299,7 +302,6 @@ export {
|
|
|
299
302
|
OwnerIcon,
|
|
300
303
|
PriorityTrivialIcon,
|
|
301
304
|
ScoreIcon,
|
|
302
|
-
SearchIcon,
|
|
303
305
|
SironOneIcon,
|
|
304
306
|
SkipNextIcon,
|
|
305
307
|
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 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
|