@loomhq/lens 11.20.1 → 11.22.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 SvgArrowSlanted(props: any): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgCamera(props: any): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgFullScreen2(props: any): React.JSX.Element;
@@ -24,6 +24,7 @@ export { SvgArrowLeft } from './arrow-left';
24
24
  export { SvgArrowLeftAlt } from './arrow-left-alt';
25
25
  export { SvgArrowRight } from './arrow-right';
26
26
  export { SvgArrowRightAlt } from './arrow-right-alt';
27
+ export { SvgArrowSlanted } from './arrow-slanted';
27
28
  export { SvgArrowUpward } from './arrow-upward';
28
29
  export { SvgAtlassian } from './atlassian';
29
30
  export { SvgAtMention } from './at-mention';
@@ -44,6 +45,7 @@ export { SvgBorderColor } from './border-color';
44
45
  export { SvgBulb } from './bulb';
45
46
  export { SvgCalendly } from './calendly';
46
47
  export { SvgCallToAction } from './call-to-action';
48
+ export { SvgCamera } from './camera';
47
49
  export { SvgCamBubble } from './cam-bubble';
48
50
  export { SvgCamBubbleSmall } from './cam-bubble-small';
49
51
  export { SvgCanvas } from './canvas';
@@ -116,6 +118,7 @@ export { SvgForward5 } from './forward-5';
116
118
  export { SvgFrown } from './frown';
117
119
  export { SvgFullscreen } from './fullscreen';
118
120
  export { SvgFullscreenExit } from './fullscreen-exit';
121
+ export { SvgFullScreen2 } from './full-screen';
119
122
  export { SvgGlobe } from './globe';
120
123
  export { SvgGoogle } from './google';
121
124
  export { SvgGrid } from './grid';
@@ -227,6 +230,7 @@ export { SvgSlack } from './slack';
227
230
  export { SvgSmile } from './smile';
228
231
  export { SvgSmileAlt } from './smile-alt';
229
232
  export { SvgSmileSelect } from './smile-select';
233
+ export { SvgSquare } from './square';
230
234
  export { SvgSparkle } from './sparkle';
231
235
  export { SvgSpeedFast } from './speed-fast';
232
236
  export { SvgSpeedMedium } from './speed-medium';
@@ -281,6 +285,7 @@ export { SvgWatchLaterAdd } from './watch-later-add';
281
285
  export { SvgWatchLaterAdded } from './watch-later-added';
282
286
  export { SvgWatchLaterRemove } from './watch-later-remove';
283
287
  export { SvgWaveform } from './waveform';
288
+ export { SvgWindow } from './window';
284
289
  export { SvgWindows } from './windows';
285
290
  export { SvgWriteDocument } from './write-document';
286
291
  export { SvgWriteMessage } from './write-message';
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgSquare(props: any): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgWindow(props: any): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgArrowSlanted(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/arrow-slanted.tsx
19
+ import * as React from "react";
20
+ function SvgArrowSlanted(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: "M7 8C6.44772 8 6 7.55228 6 7C6 6.44772 6.44772 6 7 6H17C17.5523 6 18 6.44772 18 7V17C18 17.5523 17.5523 18 17 18C16.4477 18 16 17.5523 16 17V9.41421L7.70711 17.7071C7.31658 18.0976 6.68342 18.0976 6.29289 17.7071C5.90237 17.3166 5.90237 16.6834 6.29289 16.2929L14.5858 8H7Z",
27
+ fill: "currentColor"
28
+ }
29
+ ));
30
+ }
31
+ export {
32
+ SvgArrowSlanted
33
+ };
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgCamera(props: any): React.JSX.Element;
@@ -0,0 +1,43 @@
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/camera.tsx
19
+ import * as React from "react";
20
+ function SvgCamera(props) {
21
+ return /* @__PURE__ */ React.createElement(
22
+ "svg",
23
+ __spreadValues({
24
+ width: "24",
25
+ height: "24",
26
+ viewBox: "0 0 24 24",
27
+ fill: "none",
28
+ xmlns: "http://www.w3.org/2000/svg"
29
+ }, props),
30
+ /* @__PURE__ */ React.createElement(
31
+ "path",
32
+ {
33
+ fillRule: "evenodd",
34
+ clipRule: "evenodd",
35
+ d: "M8.66469 3.9453C8.85016 3.6671 9.16239 3.5 9.49674 3.5H14.4967C14.8311 3.5 15.1433 3.6671 15.3288 3.9453L16.6986 6H19.4967C20.204 6 20.8823 6.28095 21.3824 6.78105C21.8825 7.28115 22.1634 7.95942 22.1634 8.66667V17.8333C22.1634 18.5406 21.8825 19.2189 21.3824 19.719C20.8823 20.219 20.204 20.5 19.4967 20.5H4.49674C3.7895 20.5 3.11122 20.219 2.61113 19.719C2.11103 19.2189 1.83008 18.5406 1.83008 17.8333V8.66667C1.83008 7.95942 2.11103 7.28115 2.61113 6.78105C3.11122 6.28095 3.7895 6 4.49674 6H7.29489L8.66469 3.9453ZM10.0319 5.5L8.66213 7.5547C8.47666 7.8329 8.16443 8 7.83008 8H4.49674C4.31993 8 4.15036 8.07024 4.02534 8.19526C3.90032 8.32029 3.83008 8.48986 3.83008 8.66667V17.8333C3.83008 18.0101 3.90032 18.1797 4.02534 18.3047C4.15037 18.4298 4.31994 18.5 4.49674 18.5H19.4967C19.6736 18.5 19.8431 18.4298 19.9681 18.3047C20.0932 18.1797 20.1634 18.0101 20.1634 17.8333V8.66667C20.1634 8.48986 20.0932 8.32029 19.9681 8.19526C19.8431 8.07024 19.6736 8 19.4967 8H16.1634C15.8291 8 15.5168 7.8329 15.3314 7.5547L13.9616 5.5H10.0319ZM11.9967 10.5C10.708 10.5 9.66333 11.5447 9.66333 12.8333C9.66333 14.122 10.708 15.1667 11.9967 15.1667C13.2853 15.1667 14.33 14.122 14.33 12.8333C14.33 11.5447 13.2853 10.5 11.9967 10.5ZM7.66333 12.8333C7.66333 10.4401 9.60343 8.5 11.9967 8.5C14.3899 8.5 16.33 10.4401 16.33 12.8333C16.33 15.2266 14.3899 17.1667 11.9967 17.1667C9.60343 17.1667 7.66333 15.2266 7.66333 12.8333Z",
36
+ fill: "currentColor"
37
+ }
38
+ )
39
+ );
40
+ }
41
+ export {
42
+ SvgCamera
43
+ };
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgFullScreen2(props: any): React.JSX.Element;
@@ -0,0 +1,43 @@
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/full-screen.tsx
19
+ import * as React from "react";
20
+ function SvgFullScreen2(props) {
21
+ return /* @__PURE__ */ React.createElement(
22
+ "svg",
23
+ __spreadValues({
24
+ width: "24",
25
+ height: "24",
26
+ viewBox: "0 0 24 24",
27
+ fill: "none",
28
+ xmlns: "http://www.w3.org/2000/svg"
29
+ }, props),
30
+ /* @__PURE__ */ React.createElement(
31
+ "path",
32
+ {
33
+ fillRule: "evenodd",
34
+ clipRule: "evenodd",
35
+ d: "M3.5 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5H8.5C9.05228 3.5 9.5 3.94772 9.5 4.5C9.5 5.05228 9.05228 5.5 8.5 5.5H6.91421L10.2071 8.79289C10.5976 9.18342 10.5976 9.81658 10.2071 10.2071C9.81658 10.5976 9.18342 10.5976 8.79289 10.2071L5.5 6.91421V8.5C5.5 9.05228 5.05228 9.5 4.5 9.5C3.94772 9.5 3.5 9.05228 3.5 8.5V4.5ZM15.5 3.5H19.5C20.0523 3.5 20.5 3.94772 20.5 4.5V8.5C20.5 9.05228 20.0523 9.5 19.5 9.5C18.9477 9.5 18.5 9.05228 18.5 8.5V6.91421L15.2071 10.2071C14.8166 10.5976 14.1834 10.5976 13.7929 10.2071C13.4024 9.81658 13.4024 9.18342 13.7929 8.79289L17.0858 5.5H15.5C14.9477 5.5 14.5 5.05228 14.5 4.5C14.5 3.94772 14.9477 3.5 15.5 3.5ZM10.2071 13.7929C10.5976 14.1834 10.5976 14.8166 10.2071 15.2071L6.91421 18.5H8.5C9.05228 18.5 9.5 18.9477 9.5 19.5C9.5 20.0523 9.05228 20.5 8.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5V15.5C3.5 14.9477 3.94772 14.5 4.5 14.5C5.05228 14.5 5.5 14.9477 5.5 15.5V17.0858L8.79289 13.7929C9.18342 13.4024 9.81658 13.4024 10.2071 13.7929ZM13.7929 13.7929C14.1834 13.4024 14.8166 13.4024 15.2071 13.7929L18.5 17.0858V15.5C18.5 14.9477 18.9477 14.5 19.5 14.5C20.0523 14.5 20.5 14.9477 20.5 15.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H15.5C14.9477 20.5 14.5 20.0523 14.5 19.5C14.5 18.9477 14.9477 18.5 15.5 18.5H17.0858L13.7929 15.2071C13.4024 14.8166 13.4024 14.1834 13.7929 13.7929Z",
36
+ fill: "currentColor"
37
+ }
38
+ )
39
+ );
40
+ }
41
+ export {
42
+ SvgFullScreen2
43
+ };
@@ -24,6 +24,7 @@ export { SvgArrowLeft } from './arrow-left';
24
24
  export { SvgArrowLeftAlt } from './arrow-left-alt';
25
25
  export { SvgArrowRight } from './arrow-right';
26
26
  export { SvgArrowRightAlt } from './arrow-right-alt';
27
+ export { SvgArrowSlanted } from './arrow-slanted';
27
28
  export { SvgArrowUpward } from './arrow-upward';
28
29
  export { SvgAtlassian } from './atlassian';
29
30
  export { SvgAtMention } from './at-mention';
@@ -44,6 +45,7 @@ export { SvgBorderColor } from './border-color';
44
45
  export { SvgBulb } from './bulb';
45
46
  export { SvgCalendly } from './calendly';
46
47
  export { SvgCallToAction } from './call-to-action';
48
+ export { SvgCamera } from './camera';
47
49
  export { SvgCamBubble } from './cam-bubble';
48
50
  export { SvgCamBubbleSmall } from './cam-bubble-small';
49
51
  export { SvgCanvas } from './canvas';
@@ -116,6 +118,7 @@ export { SvgForward5 } from './forward-5';
116
118
  export { SvgFrown } from './frown';
117
119
  export { SvgFullscreen } from './fullscreen';
118
120
  export { SvgFullscreenExit } from './fullscreen-exit';
121
+ export { SvgFullScreen2 } from './full-screen';
119
122
  export { SvgGlobe } from './globe';
120
123
  export { SvgGoogle } from './google';
121
124
  export { SvgGrid } from './grid';
@@ -227,6 +230,7 @@ export { SvgSlack } from './slack';
227
230
  export { SvgSmile } from './smile';
228
231
  export { SvgSmileAlt } from './smile-alt';
229
232
  export { SvgSmileSelect } from './smile-select';
233
+ export { SvgSquare } from './square';
230
234
  export { SvgSparkle } from './sparkle';
231
235
  export { SvgSpeedFast } from './speed-fast';
232
236
  export { SvgSpeedMedium } from './speed-medium';
@@ -281,6 +285,7 @@ export { SvgWatchLaterAdd } from './watch-later-add';
281
285
  export { SvgWatchLaterAdded } from './watch-later-added';
282
286
  export { SvgWatchLaterRemove } from './watch-later-remove';
283
287
  export { SvgWaveform } from './waveform';
288
+ export { SvgWindow } from './window';
284
289
  export { SvgWindows } from './windows';
285
290
  export { SvgWriteDocument } from './write-document';
286
291
  export { SvgWriteMessage } from './write-message';