@loomhq/lens 11.1.0 → 11.3.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.
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgBold(props: any): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgConfluenceNeutral(props: any): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgConfluence(props: any): React.JSX.Element;
@@ -33,6 +33,7 @@ export { SvgBellOff } from './bell-off';
33
33
  export { SvgBellRing } from './bell-ring';
34
34
  export { SvgBook } from './book';
35
35
  export { SvgBlur } from './blur';
36
+ export { SvgBold } from './bold';
36
37
  export { SvgBorderColor } from './border-color';
37
38
  export { SvgBulb } from './bulb';
38
39
  export { SvgCalendly } from './calendly';
@@ -61,6 +62,8 @@ export { SvgCollapseReplies } from './collapse-replies';
61
62
  export { SvgColorLens } from './color-lens';
62
63
  export { SvgComment } from './comment';
63
64
  export { SvgConfetti } from './confetti';
65
+ export { SvgConfluence } from './confluence';
66
+ export { SvgConfluenceNeutral } from './confluence-neutral';
64
67
  export { SvgContactSupport } from './contact-support';
65
68
  export { SvgCopy } from './copy';
66
69
  export { SvgCreate } from './create';
@@ -97,6 +100,8 @@ export { SvgGroupAdd } from './group-add';
97
100
  export { SvgHelp } from './help';
98
101
  export { SvgHelpCircle } from './help-circle';
99
102
  export { SvgHighlightOff } from './highlight-off';
103
+ export { SvgJira } from './jira';
104
+ export { SvgJiraNeutral } from './jira-neutral';
100
105
  export { SvgImage } from './image';
101
106
  export { SvgImage1 } from './image1';
102
107
  export { SvgImage2 } from './image2';
@@ -104,12 +109,14 @@ export { SvgImport } from './import';
104
109
  export { SvgInfo } from './info';
105
110
  export { SvgInfoFill } from './info-fill';
106
111
  export { SvgInfoOutline } from './info-outline';
112
+ export { SvgItalics } from './italics';
107
113
  export { SvgKeyboardArrowDown } from './keyboard-arrow-down';
108
114
  export { SvgKeyboardArrowLeft } from './keyboard-arrow-left';
109
115
  export { SvgKeyboardArrowRight } from './keyboard-arrow-right';
110
116
  export { SvgKeyboardArrowUp } from './keyboard-arrow-up';
111
117
  export { SvgLaunch } from './launch';
112
118
  export { SvgLightbulbOutline } from './lightbulb-outline';
119
+ export { SvgLinearDark } from './linearDark';
113
120
  export { SvgLink } from './link';
114
121
  export { SvgLinkedIn } from './linkedin';
115
122
  export { SvgLinkOff } from './link-off';
@@ -184,6 +191,7 @@ export { SvgTrashForever } from './trash-forever';
184
191
  export { SvgTimelineEditor } from './timeline-editor';
185
192
  export { SvgTune } from './tune';
186
193
  export { SvgUnarchive } from './unarchive';
194
+ export { SvgUnderline } from './underline';
187
195
  export { SvgUndo } from './undo';
188
196
  export { SvgRedo } from './redo';
189
197
  export { SvgUpload } from './upload';
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgItalics(props: any): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgJiraNeutral(props: any): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgJira(props: any): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgLinearDark(props: any): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgUnderline(props: any): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgBold(props: any): React.JSX.Element;
@@ -0,0 +1,33 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
3
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
4
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
5
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
6
+ var __spreadValues = (a, b) => {
7
+ for (var prop in b || (b = {}))
8
+ if (__hasOwnProp.call(b, prop))
9
+ __defNormalProp(a, prop, b[prop]);
10
+ if (__getOwnPropSymbols)
11
+ for (var prop of __getOwnPropSymbols(b)) {
12
+ if (__propIsEnum.call(b, prop))
13
+ __defNormalProp(a, prop, b[prop]);
14
+ }
15
+ return a;
16
+ };
17
+
18
+ // src/components/icon/available-icons/bold.tsx
19
+ import * as React from "react";
20
+ function SvgBold(props) {
21
+ return /* @__PURE__ */ React.createElement("svg", __spreadValues({ viewBox: "0 0 24 24", fill: "none" }, props), /* @__PURE__ */ React.createElement(
22
+ "path",
23
+ {
24
+ fillRule: "evenodd",
25
+ clipRule: "evenodd",
26
+ d: "M6 5C6 4.44772 6.44772 4 7 4H13.6667C14.8159 4 15.9181 4.45655 16.7308 5.2692C17.5435 6.08186 18 7.18406 18 8.33333C18 9.44978 17.5692 10.5218 16.7995 11.3271C17.0744 11.4992 17.3312 11.7029 17.5641 11.9359C18.3768 12.7485 18.8333 13.8507 18.8333 15C18.8333 16.1493 18.3768 17.2515 17.5641 18.0641C16.7515 18.8768 15.6493 19.3333 14.5 19.3333H7C6.44772 19.3333 6 18.8856 6 18.3333V5ZM8 6V10.6667H13.6667C14.2855 10.6667 14.879 10.4208 15.3166 9.98325C15.7542 9.54566 16 8.95217 16 8.33333C16 7.7145 15.7542 7.121 15.3166 6.68342C14.879 6.24583 14.2855 6 13.6667 6H8ZM8 12.6667V17.3333H14.5C15.1188 17.3333 15.7123 17.0875 16.1499 16.6499C16.5875 16.2123 16.8333 15.6188 16.8333 15C16.8333 14.3812 16.5875 13.7877 16.1499 13.3501C15.7123 12.9125 15.1188 12.6667 14.5 12.6667H8Z",
27
+ fill: "currentColor"
28
+ }
29
+ ));
30
+ }
31
+ export {
32
+ SvgBold
33
+ };
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgConfluenceNeutral(props: any): React.JSX.Element;
@@ -0,0 +1,37 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
3
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
4
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
5
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
6
+ var __spreadValues = (a, b) => {
7
+ for (var prop in b || (b = {}))
8
+ if (__hasOwnProp.call(b, prop))
9
+ __defNormalProp(a, prop, b[prop]);
10
+ if (__getOwnPropSymbols)
11
+ for (var prop of __getOwnPropSymbols(b)) {
12
+ if (__propIsEnum.call(b, prop))
13
+ __defNormalProp(a, prop, b[prop]);
14
+ }
15
+ return a;
16
+ };
17
+
18
+ // src/components/icon/available-icons/confluence-neutral.tsx
19
+ import * as React from "react";
20
+ function SvgConfluenceNeutral(props) {
21
+ return /* @__PURE__ */ React.createElement("svg", __spreadValues({ viewBox: "0 0 24 24", fill: "none" }, props), /* @__PURE__ */ React.createElement("g", { clipPath: "url(#clip0_11636_9715)" }, /* @__PURE__ */ React.createElement(
22
+ "path",
23
+ {
24
+ d: "M4.08166 16.021C3.92028 16.3055 3.70511 16.6159 3.54374 16.8745C3.38236 17.1072 3.46305 17.4176 3.73201 17.5728L7.22848 19.6417C7.49744 19.7969 7.82019 19.7193 7.98157 19.4607C8.11605 19.2279 8.30432 18.9435 8.49259 18.6331C9.89118 16.4348 11.2629 16.6935 13.7911 17.8572L17.2607 19.4348C17.5296 19.5641 17.8524 19.4348 17.9869 19.1762L19.6544 15.5555C19.762 15.2969 19.6544 14.9866 19.3855 14.8831C18.6593 14.5469 17.2069 13.9004 15.889 13.2797C11.1553 11.1072 7.14779 11.2366 4.08166 16.021Z",
25
+ fill: "currentColor"
26
+ }
27
+ ), /* @__PURE__ */ React.createElement(
28
+ "path",
29
+ {
30
+ d: "M19.7619 7.82287C19.9233 7.53838 20.1384 7.22804 20.2998 6.96942C20.4612 6.73666 20.3805 6.42631 20.1115 6.27114L16.6151 4.20218C16.3461 4.047 16.0234 4.12459 15.862 4.38321C15.7275 4.61597 15.5392 4.90045 15.351 5.2108C13.9524 7.40907 12.5807 7.15045 10.0525 5.98666L6.60977 4.38321C6.34081 4.2539 6.01806 4.38321 5.88358 4.64183L4.21603 8.26252C4.10845 8.52114 4.21603 8.83149 4.48499 8.93493C5.21118 9.27114 6.66356 9.91769 7.98146 10.5384C12.6883 12.7367 16.6958 12.6073 19.7619 7.82287Z",
31
+ fill: "currentColor"
32
+ }
33
+ )), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", { id: "clip0_11636_9715" }, /* @__PURE__ */ React.createElement("rect", { width: "24", height: "24", fill: "currentColor" }))));
34
+ }
35
+ export {
36
+ SvgConfluenceNeutral
37
+ };
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgConfluence(props: any): React.JSX.Element;
@@ -0,0 +1,63 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
3
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
4
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
5
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
6
+ var __spreadValues = (a, b) => {
7
+ for (var prop in b || (b = {}))
8
+ if (__hasOwnProp.call(b, prop))
9
+ __defNormalProp(a, prop, b[prop]);
10
+ if (__getOwnPropSymbols)
11
+ for (var prop of __getOwnPropSymbols(b)) {
12
+ if (__propIsEnum.call(b, prop))
13
+ __defNormalProp(a, prop, b[prop]);
14
+ }
15
+ return a;
16
+ };
17
+
18
+ // src/components/icon/available-icons/confluence.tsx
19
+ import * as React from "react";
20
+ function SvgConfluence(props) {
21
+ return /* @__PURE__ */ React.createElement("svg", __spreadValues({ viewBox: "0 0 24 24", fill: "none" }, props), /* @__PURE__ */ React.createElement("g", { clipPath: "url(#clip0_11637_9730)" }, /* @__PURE__ */ React.createElement(
22
+ "path",
23
+ {
24
+ d: "M4.08166 16.021C3.92028 16.3055 3.70511 16.6159 3.54374 16.8745C3.38236 17.1072 3.46305 17.4176 3.73201 17.5728L7.22848 19.6417C7.49744 19.7969 7.82019 19.7193 7.98157 19.4607C8.11605 19.2279 8.30432 18.9435 8.49259 18.6331C9.89118 16.4348 11.2629 16.6935 13.7911 17.8572L17.2607 19.4348C17.5296 19.5641 17.8524 19.4348 17.9869 19.1762L19.6544 15.5555C19.762 15.2969 19.6544 14.9866 19.3855 14.8831C18.6593 14.5469 17.2069 13.9004 15.889 13.2797C11.1553 11.1072 7.14779 11.2366 4.08166 16.021Z",
25
+ fill: "url(#paint0_linear_11637_9730)"
26
+ }
27
+ ), /* @__PURE__ */ React.createElement(
28
+ "path",
29
+ {
30
+ d: "M19.7619 7.82287C19.9233 7.53838 20.1384 7.22804 20.2998 6.96942C20.4612 6.73666 20.3805 6.42631 20.1115 6.27114L16.6151 4.20218C16.3461 4.047 16.0234 4.12459 15.862 4.38321C15.7275 4.61597 15.5392 4.90045 15.351 5.2108C13.9524 7.40907 12.5807 7.15045 10.0525 5.98666L6.60977 4.38321C6.34081 4.2539 6.01806 4.38321 5.88358 4.64183L4.21603 8.26252C4.10845 8.52114 4.21603 8.83149 4.48499 8.93493C5.21118 9.27114 6.66356 9.91769 7.98146 10.5384C12.6883 12.7367 16.6958 12.6073 19.7619 7.82287Z",
31
+ fill: "url(#paint1_linear_11637_9730)"
32
+ }
33
+ )), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement(
34
+ "linearGradient",
35
+ {
36
+ id: "paint0_linear_11637_9730",
37
+ x1: "19.5421",
38
+ y1: "20.7157",
39
+ x2: "9.17355",
40
+ y2: "14.5194",
41
+ gradientUnits: "userSpaceOnUse"
42
+ },
43
+ /* @__PURE__ */ React.createElement("stop", { stopColor: "#0052CC" }),
44
+ /* @__PURE__ */ React.createElement("stop", { offset: "0.9182", stopColor: "#2380FB" }),
45
+ /* @__PURE__ */ React.createElement("stop", { offset: "1", stopColor: "#2684FF" })
46
+ ), /* @__PURE__ */ React.createElement(
47
+ "linearGradient",
48
+ {
49
+ id: "paint1_linear_11637_9730",
50
+ x1: "4.31563",
51
+ y1: "3.12598",
52
+ x2: "14.6842",
53
+ y2: "9.32219",
54
+ gradientUnits: "userSpaceOnUse"
55
+ },
56
+ /* @__PURE__ */ React.createElement("stop", { stopColor: "#0052CC" }),
57
+ /* @__PURE__ */ React.createElement("stop", { offset: "0.9182", stopColor: "#2380FB" }),
58
+ /* @__PURE__ */ React.createElement("stop", { offset: "1", stopColor: "#2684FF" })
59
+ ), /* @__PURE__ */ React.createElement("clipPath", { id: "clip0_11637_9730" }, /* @__PURE__ */ React.createElement("rect", { width: "24", height: "24", fill: "white" }))));
60
+ }
61
+ export {
62
+ SvgConfluence
63
+ };
@@ -33,6 +33,7 @@ export { SvgBellOff } from './bell-off';
33
33
  export { SvgBellRing } from './bell-ring';
34
34
  export { SvgBook } from './book';
35
35
  export { SvgBlur } from './blur';
36
+ export { SvgBold } from './bold';
36
37
  export { SvgBorderColor } from './border-color';
37
38
  export { SvgBulb } from './bulb';
38
39
  export { SvgCalendly } from './calendly';
@@ -61,6 +62,8 @@ export { SvgCollapseReplies } from './collapse-replies';
61
62
  export { SvgColorLens } from './color-lens';
62
63
  export { SvgComment } from './comment';
63
64
  export { SvgConfetti } from './confetti';
65
+ export { SvgConfluence } from './confluence';
66
+ export { SvgConfluenceNeutral } from './confluence-neutral';
64
67
  export { SvgContactSupport } from './contact-support';
65
68
  export { SvgCopy } from './copy';
66
69
  export { SvgCreate } from './create';
@@ -97,6 +100,8 @@ export { SvgGroupAdd } from './group-add';
97
100
  export { SvgHelp } from './help';
98
101
  export { SvgHelpCircle } from './help-circle';
99
102
  export { SvgHighlightOff } from './highlight-off';
103
+ export { SvgJira } from './jira';
104
+ export { SvgJiraNeutral } from './jira-neutral';
100
105
  export { SvgImage } from './image';
101
106
  export { SvgImage1 } from './image1';
102
107
  export { SvgImage2 } from './image2';
@@ -104,12 +109,14 @@ export { SvgImport } from './import';
104
109
  export { SvgInfo } from './info';
105
110
  export { SvgInfoFill } from './info-fill';
106
111
  export { SvgInfoOutline } from './info-outline';
112
+ export { SvgItalics } from './italics';
107
113
  export { SvgKeyboardArrowDown } from './keyboard-arrow-down';
108
114
  export { SvgKeyboardArrowLeft } from './keyboard-arrow-left';
109
115
  export { SvgKeyboardArrowRight } from './keyboard-arrow-right';
110
116
  export { SvgKeyboardArrowUp } from './keyboard-arrow-up';
111
117
  export { SvgLaunch } from './launch';
112
118
  export { SvgLightbulbOutline } from './lightbulb-outline';
119
+ export { SvgLinearDark } from './linearDark';
113
120
  export { SvgLink } from './link';
114
121
  export { SvgLinkedIn } from './linkedin';
115
122
  export { SvgLinkOff } from './link-off';
@@ -184,6 +191,7 @@ export { SvgTrashForever } from './trash-forever';
184
191
  export { SvgTimelineEditor } from './timeline-editor';
185
192
  export { SvgTune } from './tune';
186
193
  export { SvgUnarchive } from './unarchive';
194
+ export { SvgUnderline } from './underline';
187
195
  export { SvgUndo } from './undo';
188
196
  export { SvgRedo } from './redo';
189
197
  export { SvgUpload } from './upload';