@blockquote-web-components/blockquote-base-embedded-webview 1.6.0 → 1.6.2
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
|
@@ -3,7 +3,11 @@
|
|
|
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.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
### Demo
|
|
7
|
+
|
|
8
|
+
[](https://stackblitz.com/github/oscarmarina/blockquote-web-components/tree/main/packages/base/blockquote-base-embedded-webview)
|
|
9
|
+
|
|
10
|
+
### Usage
|
|
7
11
|
|
|
8
12
|
```html
|
|
9
13
|
<blockquote-base-embedded-webview heading="My demo title">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blockquote-web-components/blockquote-base-embedded-webview",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
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",
|
|
@@ -180,7 +179,7 @@
|
|
|
180
179
|
"lit": "^3.1.0"
|
|
181
180
|
},
|
|
182
181
|
"devDependencies": {
|
|
183
|
-
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.
|
|
182
|
+
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.7.0",
|
|
184
183
|
"@blockquote-web-components/blockquote-foundations-sass": "^1.1.1",
|
|
185
184
|
"@polymer/iron-test-helpers": "^3.0.1"
|
|
186
185
|
},
|
|
@@ -188,5 +187,5 @@
|
|
|
188
187
|
"access": "public"
|
|
189
188
|
},
|
|
190
189
|
"customElements": "custom-elements.json",
|
|
191
|
-
"gitHead": "
|
|
190
|
+
"gitHead": "1e72d38b0abdb0fddc1ccc9412f83485e9f6b5b0"
|
|
192
191
|
}
|
|
@@ -39,7 +39,11 @@ const openExternallyIcon = html`
|
|
|
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.
|
|
41
41
|
*
|
|
42
|
-
*
|
|
42
|
+
* ### Demo
|
|
43
|
+
*
|
|
44
|
+
* [](https://stackblitz.com/github/oscarmarina/blockquote-web-components/tree/main/packages/base/blockquote-base-embedded-webview)
|
|
45
|
+
*
|
|
46
|
+
* ### Usage
|
|
43
47
|
*
|
|
44
48
|
* ```html
|
|
45
49
|
* <blockquote-base-embedded-webview heading="My demo title">
|