@loomhq/lens 10.35.0 → 10.35.1

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.
@@ -13,6 +13,7 @@ interface ButtonProps {
13
13
  hasLoader?: boolean;
14
14
  htmlTag?: 'button' | 'a';
15
15
  href?: string;
16
+ target?: string;
16
17
  }
17
18
  interface ButtonWrapperProps {
18
19
  hasNoPaddingRight?: boolean;
@@ -0,0 +1,2 @@
1
+ export default SvgImport;
2
+ declare function SvgImport(props: any): JSX.Element;
@@ -0,0 +1,8 @@
1
+ import * as React from 'react';
2
+ function SvgImport(props) {
3
+ return (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", fill: "none" }, props),
4
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.42715 15.1435C8.23108 14.6272 8.49068 14.0497 9.00699 13.8537L12.3755 12.5745L11.0963 9.20601C10.9002 8.6897 11.1598 8.11221 11.6761 7.91614C12.1924 7.72007 12.7699 7.97968 12.966 8.49598L14.6002 12.7993C14.7963 13.3156 14.5367 13.8931 14.0203 14.0892L9.71702 15.7234C9.20071 15.9194 8.62322 15.6598 8.42715 15.1435Z", fill: "currentColor" }),
5
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.16554 4.76675C4.71782 4.76673 5.16556 5.21443 5.16558 5.76671L5.16562 6.97381C5.16564 7.34597 5.37233 7.68734 5.70209 7.85985L14.1291 12.2682C14.6185 12.5242 14.8077 13.1285 14.5517 13.6178C14.2957 14.1072 13.6914 14.2964 13.2021 14.0404L4.77503 9.63201C3.78573 9.11449 3.16567 8.09038 3.16562 6.97389L3.16558 5.76679C3.16556 5.2145 3.61325 4.76677 4.16554 4.76675Z", fill: "currentColor" }),
6
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6 19L18 19C18.5523 19 19 18.5523 19 18L19 6C19 5.44644 18.553 5 18.002 5L10.1538 5C9.60156 5 9.15385 4.55229 9.15385 4C9.15385 3.44772 9.60156 3 10.1538 3L18.002 3C19.6601 3 21 4.34443 21 6L21 18C21 19.6569 19.6569 21 18 21L6 21C4.34314 21 3 19.6569 3 18L3 15.3333C3 14.781 3.44771 14.3333 4 14.3333C4.55228 14.3333 5 14.781 5 15.3333L5 18C5 18.5523 5.44771 19 6 19Z", fill: "currentColor" })));
7
+ }
8
+ export default SvgImport;
@@ -76,6 +76,7 @@ export { default as SvgHighlightOff } from "./highlight-off.js";
76
76
  export { default as SvgImage } from "./image.js";
77
77
  export { default as SvgImage1 } from "./image1.js";
78
78
  export { default as SvgImage2 } from "./image2.js";
79
+ export { default as SvgImport } from "./import.js";
79
80
  export { default as SvgInfo } from "./info.js";
80
81
  export { default as SvgInfoFill } from "./info-fill.js";
81
82
  export { default as SvgInfoOutline } from "./info-outline.js";
@@ -76,6 +76,7 @@ export { default as SvgHighlightOff } from './highlight-off.js';
76
76
  export { default as SvgImage } from './image.js';
77
77
  export { default as SvgImage1 } from './image1.js';
78
78
  export { default as SvgImage2 } from './image2.js';
79
+ export { default as SvgImport } from './import.js';
79
80
  export { default as SvgInfo } from './info.js';
80
81
  export { default as SvgInfoFill } from './info-fill.js';
81
82
  export { default as SvgInfoOutline } from './info-outline.js';
@@ -10,6 +10,8 @@ declare type TextButtonProps = {
10
10
  size?: 'small' | 'medium';
11
11
  htmlTag?: 'button' | 'a';
12
12
  offsetSide?: 'left' | 'right';
13
+ href?: string;
14
+ target?: string;
13
15
  };
14
16
  declare type TextButtonWrapperProps = {
15
17
  icon?: React.ReactNode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loomhq/lens",
3
- "version": "10.35.0",
3
+ "version": "10.35.1",
4
4
  "scripts": {
5
5
  "dev": "next",
6
6
  "build:next": "next build",
@@ -11,6 +11,7 @@
11
11
  "deploy": "next export -o docs && touch docs/.nojekyll && cp ./CNAME docs/",
12
12
  "lint": "eslint src",
13
13
  "lint:ts": "tsc -p tsconfig.build.json --noEmit",
14
+ "lint:all": "yarn lint && yarn lint:ts",
14
15
  "test": "echo \"no tests\"",
15
16
  "semantic-release": "semantic-release"
16
17
  },