@conveyorhq/arrow-ds 1.188.0 → 1.189.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 CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@conveyorhq/arrow-ds",
3
3
  "author": "Conveyor",
4
4
  "license": "MIT",
5
- "version": "1.188.0",
5
+ "version": "1.189.0",
6
6
  "description": "Arrow Design System",
7
7
  "repository": "https://github.com/conveyor/arrow-ds",
8
8
  "publishConfig": {
@@ -17,6 +17,7 @@ export declare enum CUSTOM_ICON_TYPE {
17
17
  DIALOG_CHECK = "dialog-check",
18
18
  DO_NOT_ENTER = "do-not-enter",
19
19
  FOLDERS = "folders",
20
+ GLOBE = "globe",
20
21
  INSERT_END = "insert-end",
21
22
  INSERT_MIDDLE = "insert-middle",
22
23
  INSERT_START = "insert-start",
@@ -266,6 +266,7 @@ var CUSTOM_ICON_TYPE;
266
266
  CUSTOM_ICON_TYPE["DIALOG_CHECK"] = "dialog-check";
267
267
  CUSTOM_ICON_TYPE["DO_NOT_ENTER"] = "do-not-enter";
268
268
  CUSTOM_ICON_TYPE["FOLDERS"] = "folders";
269
+ CUSTOM_ICON_TYPE["GLOBE"] = "globe";
269
270
  CUSTOM_ICON_TYPE["INSERT_END"] = "insert-end";
270
271
  CUSTOM_ICON_TYPE["INSERT_MIDDLE"] = "insert-middle";
271
272
  CUSTOM_ICON_TYPE["INSERT_START"] = "insert-start";
@@ -291,6 +292,7 @@ const CustomIcons = {
291
292
  [CUSTOM_ICON_TYPE.DIALOG_CHECK]: svg_1.DialogCheck,
292
293
  [CUSTOM_ICON_TYPE.DO_NOT_ENTER]: svg_1.DoNotEnter,
293
294
  [CUSTOM_ICON_TYPE.FOLDERS]: svg_1.Folders,
295
+ [CUSTOM_ICON_TYPE.GLOBE]: svg_1.Globe,
294
296
  [CUSTOM_ICON_TYPE.INSERT_END]: svg_1.InsertEnd,
295
297
  [CUSTOM_ICON_TYPE.INSERT_MIDDLE]: svg_1.InsertMiddle,
296
298
  [CUSTOM_ICON_TYPE.INSERT_START]: svg_1.InsertStart,
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { SvgProps } from "../../Svg";
3
+ export declare const Globe: (props: SvgProps) => React.JSX.Element;
@@ -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.Globe = void 0;
7
+ const react_1 = __importDefault(require("react"));
8
+ const Svg_1 = require("../../Svg");
9
+ const Globe = (props) => {
10
+ return (react_1.default.createElement(Svg_1.Svg, { width: "14", height: "15", viewBox: "0 0 14 15", fill: "none", ...props },
11
+ react_1.default.createElement("path", { d: "M6.78125 0.96875C10.5273 0.96875 13.5625 4.00391 13.5625 7.75C13.5625 11.4961 10.5273 14.5312 6.78125 14.5312C3.03516 14.5312 0 11.4961 0 7.75C0 4.00391 3.03516 0.96875 6.78125 0.96875ZM11.6758 5.34375C11.1016 4.19531 10.1445 3.29297 8.96875 2.77344C9.35156 3.48438 9.65234 4.35938 9.84375 5.34375H11.6758ZM6.78125 2.28125C6.26172 2.28125 5.44141 3.42969 5.03125 5.34375H8.50391C8.09375 3.42969 7.27344 2.28125 6.78125 2.28125ZM1.3125 7.75C1.3125 8.13281 1.33984 8.51562 1.42188 8.84375H3.52734C3.5 8.48828 3.5 8.13281 3.5 7.75C3.5 7.39453 3.5 7.03906 3.52734 6.65625H1.42188C1.33984 7.01172 1.3125 7.39453 1.3125 7.75ZM1.85938 10.1562C2.43359 11.3047 3.39062 12.2344 4.56641 12.7539C4.18359 12.043 3.88281 11.168 3.69141 10.1562H1.85938ZM3.69141 5.34375C3.88281 4.35938 4.18359 3.48438 4.56641 2.77344C3.39062 3.29297 2.43359 4.19531 1.85938 5.34375H3.69141ZM6.78125 13.2188C7.27344 13.2188 8.09375 12.0977 8.50391 10.1562H5.03125C5.44141 12.0977 6.26172 13.2188 6.78125 13.2188ZM8.69531 8.84375C8.72266 8.51562 8.75 8.13281 8.75 7.75C8.75 7.36719 8.72266 7.01172 8.69531 6.65625H4.83984C4.8125 7.01172 4.8125 7.36719 4.8125 7.75C4.8125 8.13281 4.8125 8.51562 4.83984 8.84375H8.69531ZM8.96875 12.7539C10.1445 12.2344 11.1016 11.3047 11.6758 10.1562H9.84375C9.65234 11.168 9.35156 12.043 8.96875 12.7539ZM10.0078 8.84375H12.1406C12.1953 8.51562 12.25 8.13281 12.25 7.75C12.25 7.39453 12.1953 7.01172 12.1406 6.65625H10.0078C10.0352 7.03906 10.0625 7.39453 10.0625 7.75C10.0625 8.13281 10.0352 8.48828 10.0078 8.84375Z", fill: "currentColor" })));
12
+ };
13
+ exports.Globe = Globe;
@@ -12,6 +12,7 @@ export * from "./ConveyorLogoIcon";
12
12
  export * from "./DialogCheck";
13
13
  export * from "./DoNotEnter";
14
14
  export * from "./Folders";
15
+ export * from "./Globe";
15
16
  export * from "./InsertEnd";
16
17
  export * from "./InsertMiddle";
17
18
  export * from "./InsertStart";
@@ -28,6 +28,7 @@ __exportStar(require("./ConveyorLogoIcon"), exports);
28
28
  __exportStar(require("./DialogCheck"), exports);
29
29
  __exportStar(require("./DoNotEnter"), exports);
30
30
  __exportStar(require("./Folders"), exports);
31
+ __exportStar(require("./Globe"), exports);
31
32
  __exportStar(require("./InsertEnd"), exports);
32
33
  __exportStar(require("./InsertMiddle"), exports);
33
34
  __exportStar(require("./InsertStart"), exports);
@@ -233,6 +233,7 @@ import {
233
233
  DialogCheck,
234
234
  DoNotEnter,
235
235
  Folders,
236
+ Globe,
236
237
  InsertEnd,
237
238
  InsertMiddle,
238
239
  InsertStart,
@@ -480,6 +481,7 @@ export enum CUSTOM_ICON_TYPE {
480
481
  DIALOG_CHECK = "dialog-check",
481
482
  DO_NOT_ENTER = "do-not-enter",
482
483
  FOLDERS = "folders",
484
+ GLOBE = "globe",
483
485
  INSERT_END = "insert-end",
484
486
  INSERT_MIDDLE = "insert-middle",
485
487
  INSERT_START = "insert-start",
@@ -510,6 +512,7 @@ const CustomIcons: CustomIconPaths = {
510
512
  [CUSTOM_ICON_TYPE.DIALOG_CHECK]: DialogCheck,
511
513
  [CUSTOM_ICON_TYPE.DO_NOT_ENTER]: DoNotEnter,
512
514
  [CUSTOM_ICON_TYPE.FOLDERS]: Folders,
515
+ [CUSTOM_ICON_TYPE.GLOBE]: Globe,
513
516
  [CUSTOM_ICON_TYPE.INSERT_END]: InsertEnd,
514
517
  [CUSTOM_ICON_TYPE.INSERT_MIDDLE]: InsertMiddle,
515
518
  [CUSTOM_ICON_TYPE.INSERT_START]: InsertStart,
@@ -0,0 +1,13 @@
1
+ import React from "react";
2
+ import { Svg, SvgProps } from "../../Svg";
3
+
4
+ export const Globe = (props: SvgProps) => {
5
+ return (
6
+ <Svg width="14" height="15" viewBox="0 0 14 15" fill="none" {...props}>
7
+ <path
8
+ d="M6.78125 0.96875C10.5273 0.96875 13.5625 4.00391 13.5625 7.75C13.5625 11.4961 10.5273 14.5312 6.78125 14.5312C3.03516 14.5312 0 11.4961 0 7.75C0 4.00391 3.03516 0.96875 6.78125 0.96875ZM11.6758 5.34375C11.1016 4.19531 10.1445 3.29297 8.96875 2.77344C9.35156 3.48438 9.65234 4.35938 9.84375 5.34375H11.6758ZM6.78125 2.28125C6.26172 2.28125 5.44141 3.42969 5.03125 5.34375H8.50391C8.09375 3.42969 7.27344 2.28125 6.78125 2.28125ZM1.3125 7.75C1.3125 8.13281 1.33984 8.51562 1.42188 8.84375H3.52734C3.5 8.48828 3.5 8.13281 3.5 7.75C3.5 7.39453 3.5 7.03906 3.52734 6.65625H1.42188C1.33984 7.01172 1.3125 7.39453 1.3125 7.75ZM1.85938 10.1562C2.43359 11.3047 3.39062 12.2344 4.56641 12.7539C4.18359 12.043 3.88281 11.168 3.69141 10.1562H1.85938ZM3.69141 5.34375C3.88281 4.35938 4.18359 3.48438 4.56641 2.77344C3.39062 3.29297 2.43359 4.19531 1.85938 5.34375H3.69141ZM6.78125 13.2188C7.27344 13.2188 8.09375 12.0977 8.50391 10.1562H5.03125C5.44141 12.0977 6.26172 13.2188 6.78125 13.2188ZM8.69531 8.84375C8.72266 8.51562 8.75 8.13281 8.75 7.75C8.75 7.36719 8.72266 7.01172 8.69531 6.65625H4.83984C4.8125 7.01172 4.8125 7.36719 4.8125 7.75C4.8125 8.13281 4.8125 8.51562 4.83984 8.84375H8.69531ZM8.96875 12.7539C10.1445 12.2344 11.1016 11.3047 11.6758 10.1562H9.84375C9.65234 11.168 9.35156 12.043 8.96875 12.7539ZM10.0078 8.84375H12.1406C12.1953 8.51562 12.25 8.13281 12.25 7.75C12.25 7.39453 12.1953 7.01172 12.1406 6.65625H10.0078C10.0352 7.03906 10.0625 7.39453 10.0625 7.75C10.0625 8.13281 10.0352 8.48828 10.0078 8.84375Z"
9
+ fill="currentColor"
10
+ />
11
+ </Svg>
12
+ );
13
+ };
@@ -12,6 +12,7 @@ export * from "./ConveyorLogoIcon";
12
12
  export * from "./DialogCheck";
13
13
  export * from "./DoNotEnter";
14
14
  export * from "./Folders";
15
+ export * from "./Globe";
15
16
  export * from "./InsertEnd";
16
17
  export * from "./InsertMiddle";
17
18
  export * from "./InsertStart";