@conveyorhq/arrow-ds 1.132.0 → 1.133.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 +1 -1
- package/public/components/Icon/Icon.d.ts +3 -0
- package/public/components/Icon/Icon.js +6 -0
- package/public/components/Icon/svg/InsertEnd.d.ts +2 -0
- package/public/components/Icon/svg/InsertEnd.js +15 -0
- package/public/components/Icon/svg/InsertMiddle.d.ts +2 -0
- package/public/components/Icon/svg/InsertMiddle.js +13 -0
- package/public/components/Icon/svg/InsertStart.d.ts +2 -0
- package/public/components/Icon/svg/InsertStart.js +15 -0
- package/public/components/Icon/svg/index.d.ts +3 -0
- package/public/components/Icon/svg/index.js +3 -0
- package/src/components/Icon/Icon.tsx +9 -0
- package/src/components/Icon/svg/InsertEnd.tsx +21 -0
- package/src/components/Icon/svg/InsertMiddle.tsx +13 -0
- package/src/components/Icon/svg/InsertStart.tsx +21 -0
- package/src/components/Icon/svg/index.ts +3 -0
package/package.json
CHANGED
|
@@ -10,6 +10,9 @@ export declare enum CUSTOM_ICON_TYPE {
|
|
|
10
10
|
CONVEYOR_LOGO = "conveyor-logo",
|
|
11
11
|
DIALOG_CHECK = "dialog-check",
|
|
12
12
|
FOLDERS = "folders",
|
|
13
|
+
INSERT_END = "insert-end",
|
|
14
|
+
INSERT_MIDDLE = "insert-middle",
|
|
15
|
+
INSERT_START = "insert-start",
|
|
13
16
|
SCROLL = "scroll",
|
|
14
17
|
SHIELD_CHECK = "shield-check",
|
|
15
18
|
SPARKLE = "sparkle",
|
|
@@ -229,6 +229,9 @@ var CUSTOM_ICON_TYPE;
|
|
|
229
229
|
CUSTOM_ICON_TYPE["CONVEYOR_LOGO"] = "conveyor-logo";
|
|
230
230
|
CUSTOM_ICON_TYPE["DIALOG_CHECK"] = "dialog-check";
|
|
231
231
|
CUSTOM_ICON_TYPE["FOLDERS"] = "folders";
|
|
232
|
+
CUSTOM_ICON_TYPE["INSERT_END"] = "insert-end";
|
|
233
|
+
CUSTOM_ICON_TYPE["INSERT_MIDDLE"] = "insert-middle";
|
|
234
|
+
CUSTOM_ICON_TYPE["INSERT_START"] = "insert-start";
|
|
232
235
|
CUSTOM_ICON_TYPE["SCROLL"] = "scroll";
|
|
233
236
|
CUSTOM_ICON_TYPE["SHIELD_CHECK"] = "shield-check";
|
|
234
237
|
CUSTOM_ICON_TYPE["SPARKLE"] = "sparkle";
|
|
@@ -244,6 +247,9 @@ const CustomIcons = {
|
|
|
244
247
|
[CUSTOM_ICON_TYPE.CONVEYOR_LOGO]: svg_1.ConveyorLogoIcon,
|
|
245
248
|
[CUSTOM_ICON_TYPE.DIALOG_CHECK]: svg_1.DialogCheck,
|
|
246
249
|
[CUSTOM_ICON_TYPE.FOLDERS]: svg_1.Folders,
|
|
250
|
+
[CUSTOM_ICON_TYPE.INSERT_END]: svg_1.InsertEnd,
|
|
251
|
+
[CUSTOM_ICON_TYPE.INSERT_MIDDLE]: svg_1.InsertMiddle,
|
|
252
|
+
[CUSTOM_ICON_TYPE.INSERT_START]: svg_1.InsertStart,
|
|
247
253
|
[CUSTOM_ICON_TYPE.SCROLL]: svg_1.Scroll,
|
|
248
254
|
[CUSTOM_ICON_TYPE.SHIELD_CHECK]: ShieldCheck_1.SheildCheck,
|
|
249
255
|
[CUSTOM_ICON_TYPE.SPARKLE]: svg_1.Sparkle,
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.InsertEnd = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
const InsertEnd = (props) => {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, Object.assign({ width: "13", height: "12", viewBox: "0 0 13 12", fill: "none" }, props),
|
|
11
|
+
react_1.default.createElement("path", { d: "M0.875 3.125C0.664062 3.125 0.5 2.96094 0.5 2.75V1.25C0.5 1.0625 0.664062 0.875 0.875 0.875H10.625C10.8125 0.875 11 1.0625 11 1.25V2.75C11 2.96094 10.8125 3.125 10.625 3.125H0.875Z", fill: "currentColor" }),
|
|
12
|
+
react_1.default.createElement("path", { d: "M0.875 7.25C0.664062 7.25 0.5 7.08594 0.5 6.875V5.375C0.5 5.1875 0.664062 5 0.875 5H10.625C10.8125 5 11 5.1875 11 5.375V6.875C11 7.08594 10.8125 7.25 10.625 7.25H0.875Z", fill: "currentColor" }),
|
|
13
|
+
react_1.default.createElement("path", { d: "M2.375 11.375C2.16406 11.375 2 11.2109 2 11V9.5C2 9.3125 2.16406 9.125 2.375 9.125H12.125C12.3125 9.125 12.5 9.3125 12.5 9.5V11C12.5 11.2109 12.3125 11.375 12.125 11.375H2.375Z", fill: "currentColor" })));
|
|
14
|
+
};
|
|
15
|
+
exports.InsertEnd = InsertEnd;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.InsertMiddle = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
const InsertMiddle = (props) => {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, Object.assign({ width: "13", height: "12", viewBox: "0 0 13 12", fill: "none" }, props),
|
|
11
|
+
react_1.default.createElement("path", { d: "M0.875 3.125C0.664062 3.125 0.5 2.96094 0.5 2.75V1.25C0.5 1.0625 0.664062 0.875 0.875 0.875H10.625C10.8125 0.875 11 1.0625 11 1.25V2.75C11 2.96094 10.8125 3.125 10.625 3.125H0.875ZM12.125 5C12.3125 5 12.5 5.1875 12.5 5.375V6.875C12.5 7.08594 12.3125 7.25 12.125 7.25H2.375C2.16406 7.25 2 7.08594 2 6.875V5.375C2 5.1875 2.16406 5 2.375 5H12.125ZM10.625 9.125C10.8125 9.125 11 9.3125 11 9.5V11C11 11.2109 10.8125 11.375 10.625 11.375H0.875C0.664062 11.375 0.5 11.2109 0.5 11V9.5C0.5 9.3125 0.664062 9.125 0.875 9.125H10.625Z", fill: "currentColor" })));
|
|
12
|
+
};
|
|
13
|
+
exports.InsertMiddle = InsertMiddle;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.InsertStart = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const Svg_1 = require("../../Svg");
|
|
9
|
+
const InsertStart = (props) => {
|
|
10
|
+
return (react_1.default.createElement(Svg_1.Svg, Object.assign({ width: "13", height: "12", viewBox: "0 0 13 12", fill: "none" }, props),
|
|
11
|
+
react_1.default.createElement("path", { d: "M2.375 3.125C2.16406 3.125 2 2.96094 2 2.75V1.25C2 1.0625 2.16406 0.875 2.375 0.875H12.125C12.3125 0.875 12.5 1.0625 12.5 1.25V2.75C12.5 2.96094 12.3125 3.125 12.125 3.125H2.375Z", fill: "currentColor" }),
|
|
12
|
+
react_1.default.createElement("path", { d: "M0.875 7.25C0.664062 7.25 0.5 7.08594 0.5 6.875V5.375C0.5 5.1875 0.664062 5 0.875 5H10.625C10.8125 5 11 5.1875 11 5.375V6.875C11 7.08594 10.8125 7.25 10.625 7.25H0.875Z", fill: "currentColor" }),
|
|
13
|
+
react_1.default.createElement("path", { d: "M0.875 11.375C0.664062 11.375 0.5 11.2109 0.5 11V9.5C0.5 9.3125 0.664062 9.125 0.875 9.125H10.625C10.8125 9.125 11 9.3125 11 9.5V11C11 11.2109 10.8125 11.375 10.625 11.375H0.875Z", fill: "currentColor" })));
|
|
14
|
+
};
|
|
15
|
+
exports.InsertStart = InsertStart;
|
|
@@ -6,6 +6,9 @@ export * from "./CommentAltCheck";
|
|
|
6
6
|
export * from "./ConveyorLogoIcon";
|
|
7
7
|
export * from "./DialogCheck";
|
|
8
8
|
export * from "./Folders";
|
|
9
|
+
export * from "./InsertEnd";
|
|
10
|
+
export * from "./InsertMiddle";
|
|
11
|
+
export * from "./InsertStart";
|
|
9
12
|
export * from "./Scroll";
|
|
10
13
|
export * from "./Sparkle";
|
|
11
14
|
export * from "./Triangle";
|
|
@@ -18,6 +18,9 @@ __exportStar(require("./CommentAltCheck"), exports);
|
|
|
18
18
|
__exportStar(require("./ConveyorLogoIcon"), exports);
|
|
19
19
|
__exportStar(require("./DialogCheck"), exports);
|
|
20
20
|
__exportStar(require("./Folders"), exports);
|
|
21
|
+
__exportStar(require("./InsertEnd"), exports);
|
|
22
|
+
__exportStar(require("./InsertMiddle"), exports);
|
|
23
|
+
__exportStar(require("./InsertStart"), exports);
|
|
21
24
|
__exportStar(require("./Scroll"), exports);
|
|
22
25
|
__exportStar(require("./Sparkle"), exports);
|
|
23
26
|
__exportStar(require("./Triangle"), exports);
|
|
@@ -202,6 +202,9 @@ import {
|
|
|
202
202
|
ConveyorLogoIcon,
|
|
203
203
|
DialogCheck,
|
|
204
204
|
Folders,
|
|
205
|
+
InsertEnd,
|
|
206
|
+
InsertMiddle,
|
|
207
|
+
InsertStart,
|
|
205
208
|
Scroll,
|
|
206
209
|
Sparkle,
|
|
207
210
|
TriangleDown,
|
|
@@ -413,6 +416,9 @@ export enum CUSTOM_ICON_TYPE {
|
|
|
413
416
|
CONVEYOR_LOGO = "conveyor-logo",
|
|
414
417
|
DIALOG_CHECK = "dialog-check",
|
|
415
418
|
FOLDERS = "folders",
|
|
419
|
+
INSERT_END = "insert-end",
|
|
420
|
+
INSERT_MIDDLE = "insert-middle",
|
|
421
|
+
INSERT_START = "insert-start",
|
|
416
422
|
SCROLL = "scroll",
|
|
417
423
|
SHIELD_CHECK = "shield-check",
|
|
418
424
|
SPARKLE = "sparkle",
|
|
@@ -433,6 +439,9 @@ const CustomIcons: CustomIconPaths = {
|
|
|
433
439
|
[CUSTOM_ICON_TYPE.CONVEYOR_LOGO]: ConveyorLogoIcon,
|
|
434
440
|
[CUSTOM_ICON_TYPE.DIALOG_CHECK]: DialogCheck,
|
|
435
441
|
[CUSTOM_ICON_TYPE.FOLDERS]: Folders,
|
|
442
|
+
[CUSTOM_ICON_TYPE.INSERT_END]: InsertEnd,
|
|
443
|
+
[CUSTOM_ICON_TYPE.INSERT_MIDDLE]: InsertMiddle,
|
|
444
|
+
[CUSTOM_ICON_TYPE.INSERT_START]: InsertStart,
|
|
436
445
|
[CUSTOM_ICON_TYPE.SCROLL]: Scroll,
|
|
437
446
|
[CUSTOM_ICON_TYPE.SHIELD_CHECK]: SheildCheck,
|
|
438
447
|
[CUSTOM_ICON_TYPE.SPARKLE]: Sparkle,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg, SvgProps } from "../../Svg";
|
|
3
|
+
|
|
4
|
+
export const InsertEnd = (props: SvgProps) => {
|
|
5
|
+
return (
|
|
6
|
+
<Svg width="13" height="12" viewBox="0 0 13 12" fill="none" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M0.875 3.125C0.664062 3.125 0.5 2.96094 0.5 2.75V1.25C0.5 1.0625 0.664062 0.875 0.875 0.875H10.625C10.8125 0.875 11 1.0625 11 1.25V2.75C11 2.96094 10.8125 3.125 10.625 3.125H0.875Z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
d="M0.875 7.25C0.664062 7.25 0.5 7.08594 0.5 6.875V5.375C0.5 5.1875 0.664062 5 0.875 5H10.625C10.8125 5 11 5.1875 11 5.375V6.875C11 7.08594 10.8125 7.25 10.625 7.25H0.875Z"
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
d="M2.375 11.375C2.16406 11.375 2 11.2109 2 11V9.5C2 9.3125 2.16406 9.125 2.375 9.125H12.125C12.3125 9.125 12.5 9.3125 12.5 9.5V11C12.5 11.2109 12.3125 11.375 12.125 11.375H2.375Z"
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
/>
|
|
19
|
+
</Svg>
|
|
20
|
+
);
|
|
21
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg, SvgProps } from "../../Svg";
|
|
3
|
+
|
|
4
|
+
export const InsertMiddle = (props: SvgProps) => {
|
|
5
|
+
return (
|
|
6
|
+
<Svg width="13" height="12" viewBox="0 0 13 12" fill="none" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M0.875 3.125C0.664062 3.125 0.5 2.96094 0.5 2.75V1.25C0.5 1.0625 0.664062 0.875 0.875 0.875H10.625C10.8125 0.875 11 1.0625 11 1.25V2.75C11 2.96094 10.8125 3.125 10.625 3.125H0.875ZM12.125 5C12.3125 5 12.5 5.1875 12.5 5.375V6.875C12.5 7.08594 12.3125 7.25 12.125 7.25H2.375C2.16406 7.25 2 7.08594 2 6.875V5.375C2 5.1875 2.16406 5 2.375 5H12.125ZM10.625 9.125C10.8125 9.125 11 9.3125 11 9.5V11C11 11.2109 10.8125 11.375 10.625 11.375H0.875C0.664062 11.375 0.5 11.2109 0.5 11V9.5C0.5 9.3125 0.664062 9.125 0.875 9.125H10.625Z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</Svg>
|
|
12
|
+
);
|
|
13
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Svg, SvgProps } from "../../Svg";
|
|
3
|
+
|
|
4
|
+
export const InsertStart = (props: SvgProps) => {
|
|
5
|
+
return (
|
|
6
|
+
<Svg width="13" height="12" viewBox="0 0 13 12" fill="none" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
d="M2.375 3.125C2.16406 3.125 2 2.96094 2 2.75V1.25C2 1.0625 2.16406 0.875 2.375 0.875H12.125C12.3125 0.875 12.5 1.0625 12.5 1.25V2.75C12.5 2.96094 12.3125 3.125 12.125 3.125H2.375Z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
d="M0.875 7.25C0.664062 7.25 0.5 7.08594 0.5 6.875V5.375C0.5 5.1875 0.664062 5 0.875 5H10.625C10.8125 5 11 5.1875 11 5.375V6.875C11 7.08594 10.8125 7.25 10.625 7.25H0.875Z"
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
d="M0.875 11.375C0.664062 11.375 0.5 11.2109 0.5 11V9.5C0.5 9.3125 0.664062 9.125 0.875 9.125H10.625C10.8125 9.125 11 9.3125 11 9.5V11C11 11.2109 10.8125 11.375 10.625 11.375H0.875Z"
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
/>
|
|
19
|
+
</Svg>
|
|
20
|
+
);
|
|
21
|
+
};
|
|
@@ -6,6 +6,9 @@ export * from "./CommentAltCheck";
|
|
|
6
6
|
export * from "./ConveyorLogoIcon";
|
|
7
7
|
export * from "./DialogCheck";
|
|
8
8
|
export * from "./Folders";
|
|
9
|
+
export * from "./InsertEnd";
|
|
10
|
+
export * from "./InsertMiddle";
|
|
11
|
+
export * from "./InsertStart";
|
|
9
12
|
export * from "./Scroll";
|
|
10
13
|
export * from "./Sparkle";
|
|
11
14
|
export * from "./Triangle";
|