@loomhq/lens 10.63.4 → 10.63.6

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/README.md CHANGED
@@ -60,14 +60,16 @@ navigate to: http://localhost:3000
60
60
 
61
61
  ## Contributing
62
62
 
63
+ Please surface any urgent pull requests in [#lens-designsystem](https://useloom.slack.com/archives/CJ52CKB27).
64
+
63
65
  ### Use conventional commits
64
66
 
65
67
  Use [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) to kick off publishing a new version of Lens when PR is merged.
66
68
 
67
-
68
69
  ### Upgrading Lens versions
69
70
 
70
71
  #### loom
72
+
71
73
  From the root of the [main Loom repo](http://github.com/loomhq/loom)
72
74
 
73
75
  1. Move into the webapp-client directory.
@@ -83,6 +85,7 @@ pnpm up @loomhq/lens
83
85
  ```
84
86
 
85
87
  3. From the root, fix dependencies and upgrade Lens globally
88
+
86
89
  ```
87
90
  cd ... && pnpm deps:fix && pnpm i
88
91
  ```
@@ -104,13 +107,13 @@ pnpm changeset
104
107
  6. Skip major bump. Hit Enter to bypass.
105
108
 
106
109
  ```
107
- 🦋 Which packages should have a major bump? …
110
+ 🦋 Which packages should have a major bump? …
108
111
  ```
109
112
 
110
113
  7. Skip minor bump. Hit Enter to bypass.
111
114
 
112
115
  ```
113
- 🦋 Which packages should have a minor bump? …
116
+ 🦋 Which packages should have a minor bump? …
114
117
  ```
115
118
 
116
119
  8. For patch bump, you will be prompted to write a description.
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
2
  function SvgPinFill(props) {
3
- return (React.createElement("svg", Object.assign({ style: { '--shapeWidth': 16 }, viewBox: "0 0 24 24", fill: "none" }, props),
3
+ return (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", fill: "none" }, props),
4
4
  React.createElement("path", { clipRule: "evenodd", d: "m17.6715 3.98605-1.5123 2.7192v2.54571c1.7588.78714 3.0316 2.13554 3.3321 4.25134.0777.5468-.3797.9977-.932.9977h-3.805l-1.7928 6.2747c-.1227.4293-.515.7253-.9615.7253s-.8389-.296-.9615-.7253l-1.79283-6.2747h-3.80502c-.55229 0-1.00969-.4509-.93202-.9977.31058-2.1863 1.65931-3.55321 3.50969-4.32819v-2.46852l-1.51251-2.71954c-.37071-.66654.11124-1.48605.87393-1.48605h9.41776c.7627 0 1.2447.81951.874 1.48605z", fill: "currentColor", fillRule: "evenodd" })));
5
5
  }
6
6
  export default SvgPinFill;
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
2
  function SvgPin(props) {
3
- return (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", fill: "none", style: { '--shapeWidth': 16 } }, props),
3
+ return (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", fill: "none" }, props),
4
4
  React.createElement("path", { clipRule: "evenodd", d: "m15.0971 4.5-.9379 1.6865v4.3605l1.183.5295c.7848.3512 1.3635.8089 1.7325 1.4235h-10.14909c.38822-.6465 1.00982-1.1228 1.86533-1.4812l1.22736-.514v-4.31796l-.93814-1.68684zm2.5744-.51395-1.5123 2.7192v2.54571c1.7588.78714 3.0316 2.13554 3.3321 4.25134.0777.5468-.3797.9977-.932.9977h-3.805l-1.7928 6.2747c-.1227.4293-.515.7253-.9615.7253s-.8389-.296-.9615-.7253l-1.79283-6.2747h-3.80502c-.55229 0-1.00969-.4509-.93202-.9977.31058-2.1863 1.65931-3.55321 3.50969-4.32819v-2.46852l-1.51251-2.71954c-.37071-.66654.11124-1.48605.87393-1.48605h9.41776c.7627 0 1.2447.81951.874 1.48605zm-6.3458 10.51395.6743 2.3599.6742-2.3599z", fill: "currentColor", fillRule: "evenodd" })));
5
5
  }
6
6
  export default SvgPin;
@@ -18,7 +18,7 @@ declare type TooltipProps = {
18
18
  children?: React.ReactNode;
19
19
  container?: HTMLElement | (() => HTMLElement) | string;
20
20
  content?: React.ReactNode;
21
- shortcut?: [];
21
+ shortcut?: string[];
22
22
  isDisabled?: boolean;
23
23
  isInline?: boolean;
24
24
  keepOpen?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loomhq/lens",
3
- "version": "10.63.4",
3
+ "version": "10.63.6",
4
4
  "scripts": {
5
5
  "dev": "next",
6
6
  "build:next": "next build",