@blockquote-web-components/blockquote-base-embedded-webview 1.5.3 → 1.6.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.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ![Lit](https://img.shields.io/badge/lit-2.0.0-blue)
1
+ ![Lit](https://img.shields.io/badge/lit-3.0.0-blue.svg)
2
2
 
3
3
  `blockquote-base-embedded-webview` offers a responsive display using individual HTML files as content with different use cases to be displayed.
4
4
  It will create a `select` tag with the provided demo HTML files and add the `[data-embedded]` attribute to the loaded body tag.
@@ -98,7 +98,7 @@ It will create a `select` tag with the provided demo HTML files and add the `[da
98
98
  | ---- | ------------------------------- | ----------------------------- | ------------------------------------- | ------- |
99
99
  | `js` | `BlockquoteBaseEmbeddedWebview` | BlockquoteBaseEmbeddedWebview | src/BlockquoteBaseEmbeddedWebview\.js | |
100
100
 
101
- ![Lit](https://img.shields.io/badge/lit-2.0.0-blue)
101
+ ![Lit](https://img.shields.io/badge/lit-3.0.0-blue.svg)
102
102
 
103
103
  `blockquote-base-embedded-webview-element` wraps an `iframe` or `object` and shows it through light dom.
104
104
 
@@ -142,7 +142,7 @@ It will create a `select` tag with the provided demo HTML files and add the `[da
142
142
  | ---- | -------------------------------------- | ------------------------------------ | ------------------------------------------- | ------- |
143
143
  | `js` | `BlockquoteBaseEmbeddedWebviewElement` | BlockquoteBaseEmbeddedWebviewElement | src/BlockquoteBaseEmbeddedWebviewElement.js | |
144
144
 
145
- ![Lit](https://img.shields.io/badge/lit-2.0.0-blue)
145
+ ![Lit](https://img.shields.io/badge/lit-3.0.0-blue.svg)
146
146
 
147
147
  `blockquote-base-embedded-webview-resize`
148
148
 
@@ -190,7 +190,7 @@ It will create a `select` tag with the provided demo HTML files and add the `[da
190
190
  | ---- | ------------------------------------- | ----------------------------------- | ------------------------------------------ | ------- |
191
191
  | `js` | `BlockquoteBaseEmbeddedWebviewResize` | BlockquoteBaseEmbeddedWebviewResize | src/BlockquoteBaseEmbeddedWebviewResize.js | |
192
192
 
193
- ![Lit](https://img.shields.io/badge/lit-2.0.0-blue)
193
+ ![Lit](https://img.shields.io/badge/lit-3.0.0-blue.svg)
194
194
 
195
195
  `blockquote-base-embedded-webview-size` provides a list of ideal screen sizes for responsive designs.
196
196
  <br>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockquote-web-components/blockquote-base-embedded-webview",
3
- "version": "1.5.3",
3
+ "version": "1.6.1",
4
4
  "description": "Webcomponent blockquote-base-embedded-webview following open-wc recommendations",
5
5
  "keywords": [
6
6
  "lit",
@@ -67,7 +67,6 @@
67
67
  ],
68
68
  "scripts": {
69
69
  "analyze": "cem analyze --litelement --globs \"{src,define}/**/*.{js,ts}\" \"index.js\"",
70
- "analyze:doc": "npm run analyze && npx web-component-analyzer \"{src,define}/**/*.{js,ts}\" \"index.js\" \"README.js\" --outFile README.md",
71
70
  "build": "echo \"This is not a TypeScript project, so no need to build.\"",
72
71
  "dev:vite": "vite build",
73
72
  "format": "npm run format:eslint && npm run format:prettier && npm run format:stylelint",
@@ -161,6 +160,7 @@
161
160
  ],
162
161
  "import/no-unresolved": "off",
163
162
  "import/prefer-default-export": "off",
163
+ "lit/no-classfield-shadowing": "off",
164
164
  "lit/no-native-attributes": "off"
165
165
  }
166
166
  },
@@ -176,10 +176,10 @@
176
176
  },
177
177
  "dependencies": {
178
178
  "@blockquote/polymer": "^3.4.1",
179
- "lit": "^2.8.0"
179
+ "lit": "^3.1.0"
180
180
  },
181
181
  "devDependencies": {
182
- "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.5.0",
182
+ "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.7.0",
183
183
  "@blockquote-web-components/blockquote-foundations-sass": "^1.1.1",
184
184
  "@polymer/iron-test-helpers": "^3.0.1"
185
185
  },
@@ -187,5 +187,5 @@
187
187
  "access": "public"
188
188
  },
189
189
  "customElements": "custom-elements.json",
190
- "gitHead": "1d99c84686394229dadc9d1e19f446588a33c8b6"
190
+ "gitHead": "e2417c85a1b9179b093333c0dd89f90fdbb4e91b"
191
191
  }
@@ -34,7 +34,7 @@ const openExternallyIcon = html`
34
34
  `;
35
35
 
36
36
  /**
37
- * ![Lit](https://img.shields.io/badge/lit-2.0.0-blue)
37
+ * ![Lit](https://img.shields.io/badge/lit-3.0.0-blue.svg)
38
38
  *
39
39
  * `blockquote-base-embedded-webview` offers a responsive display using individual HTML files as content with different use cases to be displayed.
40
40
  * It will create a `select` tag with the provided demo HTML files and add the `[data-embedded]` attribute to the loaded body tag.
@@ -2,7 +2,7 @@ import { html, LitElement, render as LitHtmlRender } from 'lit';
2
2
  import { styles } from './styles/blockquote-base-embedded-webview-element-styles.css.js';
3
3
 
4
4
  /**
5
- * ![Lit](https://img.shields.io/badge/lit-2.0.0-blue)
5
+ * ![Lit](https://img.shields.io/badge/lit-3.0.0-blue.svg)
6
6
  *
7
7
  * `blockquote-base-embedded-webview-element` wraps an `iframe` or `object` and shows it through light dom.
8
8
  *
@@ -8,7 +8,7 @@ import { styles } from './styles/blockquote-base-embedded-webview-resize-styles.
8
8
  // https://github.com/ChromeDevTools/devtools-frontend/blob/main/front_end/Images/src/resizeHorizontal.svg
9
9
 
10
10
  /**
11
- * ![Lit](https://img.shields.io/badge/lit-2.0.0-blue)
11
+ * ![Lit](https://img.shields.io/badge/lit-3.0.0-blue.svg)
12
12
  *
13
13
  * `blockquote-base-embedded-webview-resize`
14
14
  *
@@ -3,7 +3,7 @@ import { styles } from './styles/blockquote-base-embedded-webview-size-styles.cs
3
3
  // https://source.chromium.org/chromium/chromium/src/+/main:third_party/devtools-frontend/src/front_end/panels/emulation/DeviceModeView.ts;l=164
4
4
 
5
5
  /**
6
- * ![Lit](https://img.shields.io/badge/lit-2.0.0-blue)
6
+ * ![Lit](https://img.shields.io/badge/lit-3.0.0-blue.svg)
7
7
  *
8
8
  * `blockquote-base-embedded-webview-size` provides a list of ideal screen sizes for responsive designs.
9
9
  * <br>