@conveyorhq/arrow-ds 1.214.0 → 1.215.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/public/components/EmptyIllustration/EmptyIllustration.d.ts +2 -0
- package/public/components/EmptyIllustration/EmptyIllustration.js +20 -20
- package/public/components/EmptyIllustration/illustrations/alert.d.ts +7 -0
- package/public/components/EmptyIllustration/{alert.js → illustrations/alert.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/books-check.d.ts +7 -0
- package/public/components/EmptyIllustration/{books-check.js → illustrations/books-check.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/bulk-edit.d.ts +7 -0
- package/public/components/EmptyIllustration/{bulk-edit.js → illustrations/bulk-edit.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/clock.d.ts +7 -0
- package/public/components/EmptyIllustration/{clock.js → illustrations/clock.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/confetti.d.ts +7 -0
- package/public/components/EmptyIllustration/{confetti.js → illustrations/confetti.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/docs.d.ts +7 -0
- package/public/components/EmptyIllustration/{docs.js → illustrations/docs.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/done.d.ts +7 -0
- package/public/components/EmptyIllustration/{done.js → illustrations/done.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/found.d.ts +7 -0
- package/public/components/EmptyIllustration/{found.js → illustrations/found.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/index.d.ts +19 -0
- package/public/components/EmptyIllustration/illustrations/index.js +35 -0
- package/public/components/EmptyIllustration/illustrations/lightning.d.ts +7 -0
- package/public/components/EmptyIllustration/{lightning.js → illustrations/lightning.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/megaphone.d.ts +7 -0
- package/public/components/EmptyIllustration/{megaphone.js → illustrations/megaphone.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/network-nodes.d.ts +7 -0
- package/public/components/EmptyIllustration/{network-nodes.js → illustrations/network-nodes.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/network.d.ts +7 -0
- package/public/components/EmptyIllustration/{network.js → illustrations/network.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/no-results.d.ts +7 -0
- package/public/components/EmptyIllustration/{no-results.js → illustrations/no-results.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/open-questions.d.ts +7 -0
- package/public/components/EmptyIllustration/{open-questions.js → illustrations/open-questions.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/patterns.d.ts +7 -0
- package/public/components/EmptyIllustration/{patterns.js → illustrations/patterns.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/stopwatch.d.ts +7 -0
- package/public/components/EmptyIllustration/{stopwatch.js → illustrations/stopwatch.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/tags.d.ts +7 -0
- package/public/components/EmptyIllustration/{tags.js → illustrations/tags.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/team.d.ts +7 -0
- package/public/components/EmptyIllustration/{team.js → illustrations/team.js} +4 -4
- package/public/components/EmptyIllustration/illustrations/todo.d.ts +7 -0
- package/public/components/EmptyIllustration/{todo.js → illustrations/todo.js} +4 -4
- package/public/components/EmptyIllustration/index.d.ts +2 -19
- package/public/components/EmptyIllustration/index.js +2 -19
- package/public/components/MaterialIcon/MaterialIcon.d.ts +1 -0
- package/public/components/MaterialIcon/MaterialIcon.js +1635 -383
- package/public/components/MaterialIcon/symbols.d.ts +424 -0
- package/public/components/MaterialIcon/symbols.js +865 -8
- package/public/components/MaterialIcon/types.d.ts +19 -2
- package/public/css/styles.css +4 -0
- package/public/css/styles.min.css +1 -1
- package/public/css/styles.min.css.map +1 -1
- package/src/components/EmptyIllustration/EmptyIllustration.tsx +3 -1
- package/src/components/EmptyIllustration/{alert.tsx → illustrations/alert.tsx} +22 -4
- package/src/components/EmptyIllustration/{books-check.tsx → illustrations/books-check.tsx} +15 -5
- package/src/components/EmptyIllustration/{bulk-edit.tsx → illustrations/bulk-edit.tsx} +15 -5
- package/src/components/EmptyIllustration/{clock.tsx → illustrations/clock.tsx} +11 -5
- package/src/components/EmptyIllustration/{confetti.tsx → illustrations/confetti.tsx} +11 -5
- package/src/components/EmptyIllustration/{docs.tsx → illustrations/docs.tsx} +17 -3
- package/src/components/EmptyIllustration/{done.tsx → illustrations/done.tsx} +17 -3
- package/src/components/EmptyIllustration/{found.tsx → illustrations/found.tsx} +16 -4
- package/src/components/EmptyIllustration/illustrations/index.ts +19 -0
- package/src/components/EmptyIllustration/{lightning.tsx → illustrations/lightning.tsx} +22 -4
- package/src/components/EmptyIllustration/{megaphone.tsx → illustrations/megaphone.tsx} +22 -4
- package/src/components/EmptyIllustration/{network-nodes.tsx → illustrations/network-nodes.tsx} +10 -4
- package/src/components/EmptyIllustration/{network.tsx → illustrations/network.tsx} +11 -5
- package/src/components/EmptyIllustration/{no-results.tsx → illustrations/no-results.tsx} +16 -4
- package/src/components/EmptyIllustration/{open-questions.tsx → illustrations/open-questions.tsx} +15 -3
- package/src/components/EmptyIllustration/{patterns.tsx → illustrations/patterns.tsx} +11 -5
- package/src/components/EmptyIllustration/{stopwatch.tsx → illustrations/stopwatch.tsx} +22 -4
- package/src/components/EmptyIllustration/{tags.tsx → illustrations/tags.tsx} +17 -3
- package/src/components/EmptyIllustration/{team.tsx → illustrations/team.tsx} +13 -5
- package/src/components/EmptyIllustration/{todo.tsx → illustrations/todo.tsx} +17 -3
- package/src/components/EmptyIllustration/index.ts +2 -19
- package/src/components/MaterialIcon/MaterialIcon.stories.mdx +22 -0
- package/src/components/MaterialIcon/MaterialIcon.tsx +1636 -384
- package/src/components/MaterialIcon/symbols.ts +435 -6
- package/src/components/MaterialIcon/types.ts +19 -2
- package/public/components/EmptyIllustration/alert.d.ts +0 -4
- package/public/components/EmptyIllustration/books-check.d.ts +0 -4
- package/public/components/EmptyIllustration/bulk-edit.d.ts +0 -4
- package/public/components/EmptyIllustration/clock.d.ts +0 -4
- package/public/components/EmptyIllustration/confetti.d.ts +0 -4
- package/public/components/EmptyIllustration/docs.d.ts +0 -4
- package/public/components/EmptyIllustration/done.d.ts +0 -4
- package/public/components/EmptyIllustration/found.d.ts +0 -4
- package/public/components/EmptyIllustration/lightning.d.ts +0 -4
- package/public/components/EmptyIllustration/megaphone.d.ts +0 -4
- package/public/components/EmptyIllustration/network-nodes.d.ts +0 -4
- package/public/components/EmptyIllustration/network.d.ts +0 -4
- package/public/components/EmptyIllustration/no-results.d.ts +0 -4
- package/public/components/EmptyIllustration/open-questions.d.ts +0 -4
- package/public/components/EmptyIllustration/patterns.d.ts +0 -4
- package/public/components/EmptyIllustration/stopwatch.d.ts +0 -4
- package/public/components/EmptyIllustration/tags.d.ts +0 -4
- package/public/components/EmptyIllustration/team.d.ts +0 -4
- package/public/components/EmptyIllustration/todo.d.ts +0 -4
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@conveyorhq/arrow-ds",
|
|
3
3
|
"author": "Conveyor",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.215.0",
|
|
6
6
|
"description": "Arrow Design System",
|
|
7
7
|
"repository": "https://github.com/conveyor/arrow-ds",
|
|
8
8
|
"publishConfig": {
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"@fortawesome/free-regular-svg-icons": "^5.14.0",
|
|
26
26
|
"@fortawesome/free-solid-svg-icons": "^5.14.0",
|
|
27
27
|
"@fortawesome/react-fontawesome": "^0.1.11",
|
|
28
|
-
"@material-symbols/svg-400": "^0.
|
|
29
|
-
"@material-symbols/svg-600": "^0.
|
|
28
|
+
"@material-symbols/svg-400": "^0.44.0",
|
|
29
|
+
"@material-symbols/svg-600": "^0.44.0",
|
|
30
30
|
"@popperjs/core": "^2.11.8",
|
|
31
31
|
"@react-spring/web": "^9.7.3",
|
|
32
32
|
"@rehooks/component-size": "^1.0.3",
|
|
@@ -3,5 +3,7 @@ import { Svg } from "../Svg";
|
|
|
3
3
|
declare const illustrationIds: readonly ["alert", "books-check", "bulk-edit", "clock", "confetti", "docs", "done", "found", "lightning", "megaphone", "network", "network-nodes", "no-results", "open-questions", "patterns", "stopwatch", "tags", "team", "todo"];
|
|
4
4
|
declare function EmptyIllustration({ id, ...props }: React.ComponentProps<typeof Svg> & {
|
|
5
5
|
id: typeof illustrationIds[number];
|
|
6
|
+
backgroundColor?: string;
|
|
7
|
+
backgroundOpacity?: number;
|
|
6
8
|
}): React.JSX.Element | null;
|
|
7
9
|
export { EmptyIllustration };
|
|
@@ -5,7 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustration = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const
|
|
8
|
+
const illustrations_1 = require("./illustrations");
|
|
9
9
|
const illustrationIds = [
|
|
10
10
|
"alert",
|
|
11
11
|
"books-check",
|
|
@@ -30,43 +30,43 @@ const illustrationIds = [
|
|
|
30
30
|
function EmptyIllustration({ id, ...props }) {
|
|
31
31
|
switch (id) {
|
|
32
32
|
case "alert":
|
|
33
|
-
return react_1.default.createElement(
|
|
33
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationAlert, { ...props });
|
|
34
34
|
case "books-check":
|
|
35
|
-
return react_1.default.createElement(
|
|
35
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationBooksCheck, { ...props });
|
|
36
36
|
case "bulk-edit":
|
|
37
|
-
return react_1.default.createElement(
|
|
37
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationBulkEdit, { ...props });
|
|
38
38
|
case "clock":
|
|
39
|
-
return react_1.default.createElement(
|
|
39
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationClock, { ...props });
|
|
40
40
|
case "confetti":
|
|
41
|
-
return react_1.default.createElement(
|
|
41
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationConfetti, { ...props });
|
|
42
42
|
case "docs":
|
|
43
|
-
return react_1.default.createElement(
|
|
43
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationDocs, { ...props });
|
|
44
44
|
case "done":
|
|
45
|
-
return react_1.default.createElement(
|
|
45
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationDone, { ...props });
|
|
46
46
|
case "found":
|
|
47
|
-
return react_1.default.createElement(
|
|
47
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationFound, { ...props });
|
|
48
48
|
case "lightning":
|
|
49
|
-
return react_1.default.createElement(
|
|
49
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationLightning, { ...props });
|
|
50
50
|
case "megaphone":
|
|
51
|
-
return react_1.default.createElement(
|
|
51
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationMegaphone, { ...props });
|
|
52
52
|
case "network":
|
|
53
|
-
return react_1.default.createElement(
|
|
53
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationNetwork, { ...props });
|
|
54
54
|
case "network-nodes":
|
|
55
|
-
return react_1.default.createElement(
|
|
55
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationNetworkNodes, { ...props });
|
|
56
56
|
case "no-results":
|
|
57
|
-
return react_1.default.createElement(
|
|
57
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationNoResults, { ...props });
|
|
58
58
|
case "open-questions":
|
|
59
|
-
return react_1.default.createElement(
|
|
59
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationOpenQuestions, { ...props });
|
|
60
60
|
case "patterns":
|
|
61
|
-
return react_1.default.createElement(
|
|
61
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationPatterns, { ...props });
|
|
62
62
|
case "stopwatch":
|
|
63
|
-
return react_1.default.createElement(
|
|
63
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationStopwatch, { ...props });
|
|
64
64
|
case "tags":
|
|
65
|
-
return react_1.default.createElement(
|
|
65
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationTags, { ...props });
|
|
66
66
|
case "team":
|
|
67
|
-
return react_1.default.createElement(
|
|
67
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationTeam, { ...props });
|
|
68
68
|
case "todo":
|
|
69
|
-
return react_1.default.createElement(
|
|
69
|
+
return react_1.default.createElement(illustrations_1.EmptyIllustrationTodo, { ...props });
|
|
70
70
|
default:
|
|
71
71
|
return null;
|
|
72
72
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationAlert({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationAlert };
|
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationAlert = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationAlert({ ...props }) {
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "none", ...props },
|
|
11
|
-
react_1.default.createElement("circle", { fill:
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationAlert({ backgroundColor = "#d93329", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "none", "data-component": "empty-illustration-alert", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("path", { strokeWidth: "2", stroke: "#47687d", fill: "#fa7d76", d: "M52.0068 22.5813c1.8455 0.013 3.7559 0.7943 4.9375 2.3896l0.2266 0.3301 2e-3 3e-3 25.0224 39.8046 49e-4 88e-4c1.1529 1.8766 0.9911 3.9863-0.0508 5.6006-1.0358 1.6047-2.9199 2.7002-5.1797 2.7002H27.0303c-2.2702 0-4.151-1.1287-5.1817-2.7402-1.0343-1.6172-1.2093-3.7314-0.042-5.5723L46.8271 25.304c1.1571-1.8752 3.2102-2.7365 5.1797-2.7227zM52.0518 58.3362c-2.2284 2e-4-3.7959 1.6252-3.7959 3.3916 1e-4 1.8481 1.5529 3.3904 3.7959 3.3906 2.1537 0 3.7957-1.5558 3.7959-3.3906 0-1.7529-1.6569-3.3916-3.7959-3.3916zM48.7158 41.3459c-0.1087 1e-4-0.1973 0.0446-0.2431 0.0889-82e-4 79e-4-0.0131 0.0148-0.0166 0.0195l39e-4 0.0264 29e-4 0.0498 0.7266 12.9141c0.0174 0.0777 0.0467 0.1075 0.0634 0.1211 0.0249 0.0201 0.0833 0.0526 0.1924 0.0527h5.1094c0.1091-1e-4 0.1675-0.0326 0.1924-0.0527 0.0167-0.0136 0.045-0.0436 0.0625-0.1211l0.7275-12.9141 29e-4-0.0498 3e-3-0.0264c-36e-4-47e-4-78e-4-0.0119-0.0157-0.0195-0.0458-0.0443-0.1344-0.0888-0.2431-0.0889z" })));
|
|
13
13
|
}
|
|
14
14
|
exports.EmptyIllustrationAlert = EmptyIllustrationAlert;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationBooksCheck({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationBooksCheck };
|
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationBooksCheck = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationBooksCheck({
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, {
|
|
11
|
-
react_1.default.createElement("circle", { fill:
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationBooksCheck({ backgroundColor = "#29853d", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "none", "data-component": "empty-illustration-books-check", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("rect", { fill: "#fff", width: "16.3529", height: "48.9804", rx: "1", x: "19.3525", y: "29.549" }),
|
|
13
13
|
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", width: "16.3529", height: "48.9804", rx: "1", x: "19.3525", y: "29.549" }),
|
|
14
14
|
react_1.default.createElement("rect", { fill: "#8969bd", transform: "translate(26.5098 36.7058)", width: "2.03922", height: "30.5882" }),
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationBulkEdit({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationBulkEdit };
|
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationBulkEdit = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationBulkEdit({
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, {
|
|
11
|
-
react_1.default.createElement("circle", { fill:
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationBulkEdit({ backgroundColor = "#33c69f", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "#47687d", clipRule: "evenodd", "data-component": "empty-illustration-bulk-edit", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("mask", { id: "bulkedit_mask0_19777_10931", style: { maskType: "alpha" }, fill: "none", width: "24", height: "11", maskUnits: "userSpaceOnUse", x: "14", y: "47" },
|
|
13
13
|
react_1.default.createElement("path", { fill: "#c4c4c4", clipRule: "evenodd", d: "M29.5676 47.5135H14v9.7297h15.5676zM37.3514 47.5135h-3.8919v9.7297h3.8919z", fillRule: "evenodd" })),
|
|
14
14
|
react_1.default.createElement("path", { strokeWidth: "1.94595", stroke: "#47687d", fill: "#7de6ca", d: "M36.3779 48.4862v7.7842H14.9727v-7.7842z" }),
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationClock({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationClock };
|
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationClock = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationClock({ ...props }) {
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104",
|
|
11
|
-
react_1.default.createElement("circle", { stroke: "none", fill:
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationClock({ backgroundColor = "#33c69f", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", strokeWidth: "3.16667", stroke: "#204156", fill: "none", "data-component": "empty-illustration-clock", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { stroke: "none", fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("rect", { stroke: "none", fill: "#fff", width: "76", height: "76", rx: "38", x: "14", y: "14" }),
|
|
13
13
|
react_1.default.createElement("circle", { strokeWidth: "2", stroke: "#47687d", cx: "52", cy: "52", r: "37" }),
|
|
14
14
|
react_1.default.createElement("circle", { stroke: "#7de6ca", cx: "52", cy: "52", r: "34.4167" }),
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationConfetti({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationConfetti };
|
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationConfetti = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationConfetti({ ...props }) {
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104",
|
|
11
|
-
react_1.default.createElement("circle", { stroke: "none", fill:
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationConfetti({ backgroundColor = "#29853d", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", strokeWidth: "2", stroke: "#47687d", fill: "none", "data-component": "empty-illustration-confetti", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { stroke: "none", fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("circle", { fill: "#54af68", cx: "53", cy: "49", r: "4" }),
|
|
13
13
|
react_1.default.createElement("path", { strokeWidth: "2.3451", stroke: "#8969bd", strokeLinecap: "round", strokeLinejoin: "round", d: "M59.1109 62.2331c-0.9023-6.2663 2.533-17.2951 23.4922-11.2799" }),
|
|
14
14
|
react_1.default.createElement("path", { stroke: "none", fill: "#fdb515", d: "M36.4255 33.1878c0.7485-1.5702 2.8859-1.8076 3.9607-0.44l25.2464 32.123c1.0105 1.2857 0.4279 3.1849-1.1297 3.6828L20.0342 82.7688c-3.2387 1.0353-6.1488-2.2984-4.6857-5.3675z" }),
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationDocs({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationDocs };
|
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationDocs = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationDocs({ ...props }) {
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "#dee7ee", ...props },
|
|
11
|
-
react_1.default.createElement("circle", { fill:
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationDocs({ backgroundColor = "#33c69f", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "#dee7ee", "data-component": "empty-illustration-docs", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", width: "41.2", height: "55.6", x: "37.3999", y: "30.4" }),
|
|
13
13
|
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", fill: "#f4f7f9", width: "41.2", height: "55.6", x: "30.2", y: "23.2" }),
|
|
14
14
|
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", fill: "#fff", width: "41.2", height: "55.6", x: "23", y: "16" }),
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationDone({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationDone };
|
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationDone = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationDone({ ...props }) {
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "#b9c8d2", ...props },
|
|
11
|
-
react_1.default.createElement("circle", { fill:
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationDone({ backgroundColor = "#29853d", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "#b9c8d2", "data-component": "empty-illustration-done", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", fill: "#fff", width: "69.3726", height: "77.5294", rx: "1", x: "16.2941", y: "13.2353" }),
|
|
13
13
|
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", fill: "#fff", width: "57.1373", height: "61.2157", rx: "1", x: "22.4117", y: "23.4315" }),
|
|
14
14
|
react_1.default.createElement("mask", { id: "done_path-4-inside-1_19777_4553", fill: "#fff" },
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationFound({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationFound };
|
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationFound = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationFound({ ...props }) {
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, { width: "108", height: "104", viewBox: "0 0 108 104", fill: "#dee7ee", "
|
|
11
|
-
react_1.default.createElement("circle", { fill:
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationFound({ backgroundColor = "#29853d", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "108", height: "104", viewBox: "0 0 108 104", fill: "#dee7ee", clipRule: "evenodd", "data-component": "empty-illustration-found", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("path", { fill: "#47687d", d: "M85.0789 40.4294v5.0179l-2.2784-2.2335v-2.6413c0-2.7177-2.2784-4.8632-4.8417-4.8632H39.2253c1.2817 1.2873 1.9937 3.0037 1.9937 4.8632v49.3467c0 2.7176 2.2784 4.8631 4.8417 4.8631 2.7056 0 4.8416-2.2885 4.8416-4.8631 0-0.4291 0-1.0013-0.1424-1.2873l-0.2848-1.1443 1.4241-0.143h30.9013V73.4703l2.2784 2.4315v11.2997h10.1106v1.0013 2.1455c0 3.7189-2.5632 6.4365-5.9809 6.4365H46.2031c-3.8449 0.143-6.9778-3.0037-6.9778-6.8656v-16.735H22.7067c-3.7025 0-6.8354-3.0037-6.8354-6.8656V19.5465H4.1943l0-2.5746c0-3.7189 3.1329-6.8656 6.9778-6.7226h0.5696v-0.143H55.032c3.7025 0 6.6929 3.1467 6.6929 6.8656v16.5919H78.386c3.7025 0 6.6929 3.1468 6.6929 6.8656z" }),
|
|
13
13
|
react_1.default.createElement("path", { fill: "#fff", d: "M51.8994 87.3449h30.9013V73.4706l2.2766 2.4199V45.4294l-2.2766-2.1972v-2.6594c0-2.7177-2.2784-4.8632-4.8416-4.8632H39.2256c1.2816 1.2873 1.9936 3.0037 1.9936 4.8632v49.3467c0 2.7176 2.2785 4.8631 4.8417 4.8631 2.7057 0 4.8417-2.2885 4.8417-4.8631 0-0.4291 0-1.0013-0.1424-1.2873l-0.2848-1.1443z" }),
|
|
14
14
|
react_1.default.createElement("path", { fill: "#fff", d: "M18.0075 62.7432v3.5759c0 2.7176 2.1361 4.8631 4.8417 4.8631 2.7057 0 4.8417-2.2885 4.8417-4.8631V40.573c0-3.7189 2.9905-6.8657 6.8353-6.8657h0.5696v-0.143h24.4933V16.9724c0-2.7177-2.2785-4.8632-4.8417-4.8632H16.0139c1.2816 1.2873 1.9936 3.0037 1.9936 4.8632z" }),
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export * from "./alert";
|
|
2
|
+
export * from "./books-check";
|
|
3
|
+
export * from "./bulk-edit";
|
|
4
|
+
export * from "./clock";
|
|
5
|
+
export * from "./confetti";
|
|
6
|
+
export * from "./docs";
|
|
7
|
+
export * from "./done";
|
|
8
|
+
export * from "./found";
|
|
9
|
+
export * from "./lightning";
|
|
10
|
+
export * from "./megaphone";
|
|
11
|
+
export * from "./network";
|
|
12
|
+
export * from "./network-nodes";
|
|
13
|
+
export * from "./no-results";
|
|
14
|
+
export * from "./open-questions";
|
|
15
|
+
export * from "./patterns";
|
|
16
|
+
export * from "./stopwatch";
|
|
17
|
+
export * from "./tags";
|
|
18
|
+
export * from "./team";
|
|
19
|
+
export * from "./todo";
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./alert"), exports);
|
|
18
|
+
__exportStar(require("./books-check"), exports);
|
|
19
|
+
__exportStar(require("./bulk-edit"), exports);
|
|
20
|
+
__exportStar(require("./clock"), exports);
|
|
21
|
+
__exportStar(require("./confetti"), exports);
|
|
22
|
+
__exportStar(require("./docs"), exports);
|
|
23
|
+
__exportStar(require("./done"), exports);
|
|
24
|
+
__exportStar(require("./found"), exports);
|
|
25
|
+
__exportStar(require("./lightning"), exports);
|
|
26
|
+
__exportStar(require("./megaphone"), exports);
|
|
27
|
+
__exportStar(require("./network"), exports);
|
|
28
|
+
__exportStar(require("./network-nodes"), exports);
|
|
29
|
+
__exportStar(require("./no-results"), exports);
|
|
30
|
+
__exportStar(require("./open-questions"), exports);
|
|
31
|
+
__exportStar(require("./patterns"), exports);
|
|
32
|
+
__exportStar(require("./stopwatch"), exports);
|
|
33
|
+
__exportStar(require("./tags"), exports);
|
|
34
|
+
__exportStar(require("./team"), exports);
|
|
35
|
+
__exportStar(require("./todo"), exports);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationLightning({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationLightning };
|
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationLightning = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationLightning({ ...props }) {
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "none", ...props },
|
|
11
|
-
react_1.default.createElement("circle", { fill:
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationLightning({ backgroundColor = "#33c69f", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "none", "data-component": "empty-illustration-lightning", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("path", { fill: "#fff", d: "M61.5127 16c0.3231-6e-3 0.6297 0.1447 0.8223 0.4043 0.1923 0.2595 0.2468 0.596 0.1474 0.9033l-6.9765 21.5479H76.002c0.3625 0 0.6964 0.1961 0.873 0.5127 0.1765 0.3166 0.1681 0.7042-0.0225 1.0127L46.4648 89.5264c-0.2451 0.3961-0.7317 0.57-1.1728 0.4199-0.4411-0.1502-0.7205-0.5853-0.6729-1.0488l3.0987-30.1709H29c-0.285 0-0.5564-0.1223-0.7461-0.335-0.1896-0.2127-0.2795-0.4962-0.2471-0.7793l4.6231-40.21c0.0573-0.4976 0.4747-0.8764 0.9756-0.8857z" }),
|
|
13
13
|
react_1.default.createElement("path", { fill: "#7de6ca", fillOpacity: "0.15", d: "M61.5127 16c0.3231-6e-3 0.6297 0.1447 0.8223 0.4043 0.1923 0.2595 0.2468 0.596 0.1474 0.9033l-6.9765 21.5479H76.002c0.3625 0 0.6964 0.1961 0.873 0.5127 0.1765 0.3166 0.1681 0.7042-0.0225 1.0127L46.4648 89.5264c-0.2451 0.3961-0.7317 0.57-1.1728 0.4199-0.4411-0.1502-0.7205-0.5853-0.6729-1.0488l3.0987-30.1709H29c-0.285 0-0.5564-0.1223-0.7461-0.335-0.1896-0.2127-0.2795-0.4962-0.2471-0.7793l4.6231-40.21c0.0573-0.4976 0.4747-0.8764 0.9756-0.8857z" }),
|
|
14
14
|
react_1.default.createElement("path", { strokeWidth: "2", stroke: "#47687d", strokeLinejoin: "round", d: "M61.5127 16c0.3231-6e-3 0.6297 0.1447 0.8223 0.4043 0.1923 0.2595 0.2468 0.596 0.1474 0.9033l-6.9765 21.5479H76.002c0.3625 0 0.6964 0.1961 0.873 0.5127 0.1765 0.3166 0.1681 0.7042-0.0225 1.0127L46.4648 89.5264c-0.2451 0.3961-0.7317 0.57-1.1728 0.4199-0.4411-0.1502-0.7205-0.5853-0.6729-1.0488l3.0987-30.1709H29c-0.285 0-0.5564-0.1223-0.7461-0.335-0.1896-0.2127-0.2795-0.4962-0.2471-0.7793l4.6231-40.21c0.0573-0.4976 0.4747-0.8764 0.9756-0.8857z" }),
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationMegaphone({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationMegaphone };
|
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationMegaphone = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationMegaphone({ ...props }) {
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "none", ...props },
|
|
11
|
-
react_1.default.createElement("circle", { fill:
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationMegaphone({ backgroundColor = "#33c69f", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "none", "data-component": "empty-illustration-megaphone", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("path", { strokeWidth: "2.4", stroke: "#47687d", fill: "#86a3b5", d: "M38.1745 86.5833 33.5328 62.4335l12.1783-0.2617 4.4039 22.1524z" }),
|
|
13
13
|
react_1.default.createElement("path", { strokeWidth: "4.41296", stroke: "#33c69f", strokeLinejoin: "round", d: "M74.101 30.2877l9.1936-9.0603" }),
|
|
14
14
|
react_1.default.createElement("path", { strokeWidth: "4.41296", stroke: "#33c69f", strokeLinejoin: "round", d: "M80.4433 40.7825l13.8569-1.8653" }),
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationNetworkNodes({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationNetworkNodes };
|
package/public/components/EmptyIllustration/{network-nodes.js → illustrations/network-nodes.js}
RENAMED
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationNetworkNodes = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationNetworkNodes({ ...props }) {
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", "stroke-width": "2", stroke: "#47687d", fill: "#86a3b5", ...props },
|
|
11
|
-
react_1.default.createElement("circle", { stroke: "none", fill:
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationNetworkNodes({ backgroundColor = "#33c69f", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", "stroke-width": "2", stroke: "#47687d", fill: "#86a3b5", "data-component": "empty-illustration-network-nodes", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { stroke: "none", fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("circle", { fillOpacity: "0.25", cx: "33.781", cy: "29.2018", r: "6.57895" }),
|
|
13
13
|
react_1.default.createElement("circle", { strokeWidth: "0.721805", cx: "33.6006", cy: "26.9461", r: "1.80451" }),
|
|
14
14
|
react_1.default.createElement("path", { strokeWidth: "0.721805", d: "M33.6002 30.1942c1.1549 0 2.1654-1.0827 2.1654-1.0827 0.4813 0.1203 1.4437 0.9384 1.4437 3.2482h-7.2181c0-1.0827 0.2887-3.2482 1.4436-3.2482 0.2406 0.3609 1.0105 1.0827 2.1654 1.0827z" }),
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationNetwork({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationNetwork };
|
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationNetwork = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationNetwork({ ...props }) {
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104",
|
|
11
|
-
react_1.default.createElement("circle", { stroke: "none", fill:
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationNetwork({ backgroundColor = "#33c69f", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", strokeWidth: "2", stroke: "#47687d", fill: "none", "data-component": "empty-illustration-network", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { stroke: "none", fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("circle", { fill: "#86a3b5", cx: "35.8462", cy: "28.9231", r: "5.92308" }),
|
|
13
13
|
react_1.default.createElement("path", { fill: "#86a3b5", d: "M35.8462 39.3077c3.6923 0 6.9231-3.4615 6.9231-3.4615 1.5384 0.3846 4.6154 3 4.6154 10.3846h-23.077c0-3.4616 0.9231-10.3846 4.6154-10.3846 0.7693 1.1538 3.2308 3.4615 6.9231 3.4615z" }),
|
|
14
14
|
react_1.default.createElement("circle", { fill: "#33c69f", cx: "68.1538", cy: "63.5385", r: "5.92308" }),
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationNoResults({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationNoResults };
|
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationNoResults = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationNoResults({ ...props }) {
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, { width: "108", height: "104", viewBox: "0 0 108 104", fill: "#dee7ee", "
|
|
11
|
-
react_1.default.createElement("circle", { fill:
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationNoResults({ backgroundColor = "#0052b1", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "108", height: "104", viewBox: "0 0 108 104", fill: "#dee7ee", clipRule: "evenodd", "data-component": "empty-illustration-no-results", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("path", { fill: "#47687d", d: "M85.0791 40.4294v5.0179l-2.2785-2.2335v-2.6413c0-2.7177-2.2784-4.8632-4.8417-4.8632H39.2255c1.2816 1.2873 1.9936 3.0037 1.9936 4.8632v49.3467c0 2.7176 2.2784 4.8631 4.8417 4.8631 2.7056 0 4.8417-2.2885 4.8417-4.8631 0-0.4291 0-1.0013-0.1424-1.2873l-0.2848-1.1443 1.424-0.143h30.9013V73.4703l2.2785 2.4315v11.2997h10.1106v1.0013 2.1455c0 3.7189-2.5633 6.4365-5.981 6.4365H46.2032c-3.8449 0.143-6.9777-3.0037-6.9777-6.8656v-16.735H22.7068c-3.7025 0-6.8353-3.0037-6.8353-6.8656V19.5465H4.1945l0-2.5746c0-3.7189 3.1328-6.8656 6.9777-6.7226h0.5696v-0.143h43.2903c3.7025 0 6.693 3.1467 6.693 6.8656v16.5919h16.661c3.7025 0 6.693 3.1468 6.693 6.8656z" }),
|
|
13
13
|
react_1.default.createElement("path", { fill: "#fff", d: "M51.8993 87.3449h30.9013V73.4706l2.2766 2.4199V45.4294l-2.2766-2.1972v-2.6594c0-2.7177-2.2784-4.8632-4.8417-4.8632H39.2255c1.2816 1.2873 1.9936 3.0037 1.9936 4.8632v49.3467c0 2.7176 2.2784 4.8631 4.8417 4.8631 2.7056 0 4.8417-2.2885 4.8417-4.8631 0-0.4291 0-1.0013-0.1424-1.2873l-0.2848-1.1443z" }),
|
|
14
14
|
react_1.default.createElement("path", { fill: "#fff", d: "M18.0075 62.7432v3.5759c0 2.7176 2.1361 4.8631 4.8417 4.8631 2.7057 0 4.8417-2.2885 4.8417-4.8631V40.573c0-3.7189 2.9905-6.8657 6.8353-6.8657h0.5696v-0.143h24.4933V16.9724c0-2.7177-2.2785-4.8632-4.8417-4.8632H16.0139c1.2816 1.2873 1.9936 3.0037 1.9936 4.8632z" }),
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationOpenQuestions({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationOpenQuestions };
|
package/public/components/EmptyIllustration/{open-questions.js → illustrations/open-questions.js}
RENAMED
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationOpenQuestions = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationOpenQuestions({ ...props }) {
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "#b9c8d2", ...props },
|
|
11
|
-
react_1.default.createElement("circle", { fill:
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationOpenQuestions({ backgroundColor = "#0052b1", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "#b9c8d2", "data-component": "empty-illustration-open-questions", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", fill: "#fff", width: "69.3726", height: "77.5294", rx: "1", x: "16.2941", y: "13.2353" }),
|
|
13
13
|
react_1.default.createElement("rect", { strokeWidth: "2", stroke: "#47687d", fill: "#fff", width: "57.1373", height: "61.2157", rx: "1", x: "22.4117", y: "23.4315" }),
|
|
14
14
|
react_1.default.createElement("mask", { id: "open_questions_path-4-inside-1_19777_4501", fill: "#fff" },
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationPatterns({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationPatterns };
|
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationPatterns = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationPatterns({ ...props }) {
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104",
|
|
11
|
-
react_1.default.createElement("circle", { stroke: "none", fill:
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationPatterns({ backgroundColor = "#33c69f", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", strokeWidth: "2", stroke: "#47687d", fill: "#fff", "data-component": "empty-illustration-patterns", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { stroke: "none", fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("g", { clipPath: "url(#patterns_clip0_19777_4424)" },
|
|
13
13
|
react_1.default.createElement("rect", { transform: "rotate(90 30.047 13.5668)", width: "14.4157", height: "14.4157", x: "30.047", y: "13.5668" }),
|
|
14
14
|
react_1.default.createElement("rect", { transform: "rotate(90 30.047 27.6372)", width: "14.4157", height: "14.4157", x: "30.047", y: "27.6372" }),
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg } from "../../Svg";
|
|
3
|
+
declare function EmptyIllustrationStopwatch({ backgroundColor, backgroundOpacity, ...props }: {
|
|
4
|
+
backgroundColor?: string;
|
|
5
|
+
backgroundOpacity?: number;
|
|
6
|
+
} & React.ComponentProps<typeof Svg>): React.JSX.Element;
|
|
7
|
+
export { EmptyIllustrationStopwatch };
|
|
@@ -5,10 +5,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.EmptyIllustrationStopwatch = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
-
const Svg_1 = require("
|
|
9
|
-
function EmptyIllustrationStopwatch({ ...props }) {
|
|
10
|
-
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "none", ...props },
|
|
11
|
-
react_1.default.createElement("circle", {
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
function EmptyIllustrationStopwatch({ backgroundColor = "#33c69f", backgroundOpacity = 0.15, ...props }) {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, { width: "104", height: "104", viewBox: "0 0 104 104", fill: "none", "data-component": "empty-illustration-stopwatch", ...props },
|
|
11
|
+
react_1.default.createElement("circle", { fill: backgroundColor, fillOpacity: backgroundOpacity, cx: "52", cy: "52", r: "52" }),
|
|
12
12
|
react_1.default.createElement("circle", { cx: "52", cy: "52", r: "35", fill: "white", stroke: "#47687D", strokeWidth: "2" }),
|
|
13
13
|
react_1.default.createElement("circle", { cx: "52.0001", cy: "52.0002", r: "28.5", fill: "#F4F7F9" }),
|
|
14
14
|
react_1.default.createElement("mask", { id: "mask0_19777_4473", style: { maskType: "alpha" }, maskUnits: "userSpaceOnUse", x: "23", y: "23", width: "58", height: "58" },
|