@storybook/web-components 9.1.0-alpha.8 → 9.1.0-beta.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/web-components",
3
- "version": "9.1.0-alpha.8",
3
+ "version": "9.1.0-beta.0",
4
4
  "description": "Storybook web-components renderer",
5
5
  "keywords": [
6
6
  "lit",
@@ -66,7 +66,7 @@
66
66
  },
67
67
  "peerDependencies": {
68
68
  "lit": "^2.0.0 || ^3.0.0",
69
- "storybook": "^9.1.0-alpha.8"
69
+ "storybook": "^9.1.0-beta.0"
70
70
  },
71
71
  "engines": {
72
72
  "node": ">=20.0.0"
@@ -3,7 +3,6 @@ import { global as globalThis } from '@storybook/global';
3
3
  import { LitElement } from 'lit';
4
4
 
5
5
  const { customElements } = globalThis;
6
-
7
6
  /** @tag sb-html */
8
7
  export class SbHtml extends LitElement {
9
8
  static get properties() {
@@ -26,6 +25,5 @@ export class SbHtml extends LitElement {
26
25
  return this;
27
26
  }
28
27
  }
29
-
30
28
  export const HtmlTag = 'sb-html';
31
29
  customElements.define(HtmlTag, SbHtml);