@loomhq/lens 11.8.0 → 11.10.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 SvgHighlightText(props: any): React.JSX.Element;
@@ -101,6 +101,7 @@ export { SvgGroupAdd } from './group-add';
101
101
  export { SvgHelp } from './help';
102
102
  export { SvgHelpCircle } from './help-circle';
103
103
  export { SvgHighlightOff } from './highlight-off';
104
+ export { SvgHighlightText } from './highlight-text';
104
105
  export { SvgJira } from './jira';
105
106
  export { SvgJiraNeutral } from './jira-neutral';
106
107
  export { SvgImage } from './image';
@@ -4,7 +4,7 @@ declare const Loader: ({ color, size, ...props }: LoaderProps & React.ComponentP
4
4
  export declare const availableSizes: string[];
5
5
  type LoaderProps = {
6
6
  color?: string;
7
- size?: 'medium' | 'large';
7
+ size?: 'small' | 'medium' | 'large';
8
8
  };
9
9
  type LoaderWrapperProps = {
10
10
  size?: string;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare function SvgHighlightText(props: any): React.JSX.Element;
@@ -0,0 +1,75 @@
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/highlight-text.tsx
19
+ import * as React from "react";
20
+ function SvgHighlightText(props) {
21
+ return /* @__PURE__ */ React.createElement("svg", __spreadValues({ viewBox: "0 0 24 24", fill: "none" }, props), /* @__PURE__ */ React.createElement(
22
+ "path",
23
+ {
24
+ d: "M5 4H6C6.79565 4 7.55871 4.31607 8.12132 4.87868C8.68393 5.44129 9 6.20435 9 7C9 6.20435 9.31607 5.44129 9.87868 4.87868C10.4413 4.31607 11.2044 4 12 4H13",
25
+ stroke: "#111019",
26
+ fill: "currentColor",
27
+ strokeWidth: "2",
28
+ strokeLinecap: "round",
29
+ strokeLinejoin: "round"
30
+ }
31
+ ), /* @__PURE__ */ React.createElement(
32
+ "path",
33
+ {
34
+ d: "M13 20H12C11.2044 20 10.4413 19.6839 9.87868 19.1213C9.31607 18.5587 9 17.7956 9 17C9 17.7956 8.68393 18.5587 8.12132 19.1213C7.55871 19.6839 6.79565 20 6 20H5",
35
+ stroke: "#111019",
36
+ fill: "currentColor",
37
+ strokeWidth: "2",
38
+ strokeLinecap: "round",
39
+ strokeLinejoin: "round"
40
+ }
41
+ ), /* @__PURE__ */ React.createElement(
42
+ "path",
43
+ {
44
+ d: "M5 16H4C3.46957 16 2.96086 15.7893 2.58579 15.4142C2.21071 15.0391 2 14.5304 2 14V10C2 9.46957 2.21071 8.96086 2.58579 8.58579C2.96086 8.21071 3.46957 8 4 8H5",
45
+ stroke: "#111019",
46
+ fill: "none",
47
+ strokeWidth: "2",
48
+ strokeLinecap: "round",
49
+ strokeLinejoin: "round"
50
+ }
51
+ ), /* @__PURE__ */ React.createElement(
52
+ "path",
53
+ {
54
+ d: "M13 8H20C20.5304 8 21.0391 8.21071 21.4142 8.58579C21.7893 8.96086 22 9.46957 22 10V14C22 14.5304 21.7893 15.0391 21.4142 15.4142C21.0391 15.7893 20.5304 16 20 16H13",
55
+ stroke: "#111019",
56
+ fill: "none",
57
+ strokeWidth: "2",
58
+ strokeLinecap: "round",
59
+ strokeLinejoin: "round"
60
+ }
61
+ ), /* @__PURE__ */ React.createElement(
62
+ "path",
63
+ {
64
+ d: "M9 7V17",
65
+ stroke: "#111019",
66
+ fill: "currentColor",
67
+ strokeWidth: "2",
68
+ strokeLinecap: "round",
69
+ strokeLinejoin: "round"
70
+ }
71
+ ));
72
+ }
73
+ export {
74
+ SvgHighlightText
75
+ };
@@ -101,6 +101,7 @@ export { SvgGroupAdd } from './group-add';
101
101
  export { SvgHelp } from './help';
102
102
  export { SvgHelpCircle } from './help-circle';
103
103
  export { SvgHighlightOff } from './highlight-off';
104
+ export { SvgHighlightText } from './highlight-text';
104
105
  export { SvgJira } from './jira';
105
106
  export { SvgJiraNeutral } from './jira-neutral';
106
107
  export { SvgImage } from './image';