@blockquote-web-components/blockquote-base-embedded-webview 1.11.0 → 1.11.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 +10 -11
- package/package.json +2 -2
- package/src/BlockquoteBaseEmbeddedWebviewSize.js +10 -11
package/README.md
CHANGED
|
@@ -201,17 +201,16 @@ It will create a `select` tag with the provided demo HTML files and add the `[da
|
|
|
201
201
|
```html
|
|
202
202
|
<blockquote-base-embedded-webview-size
|
|
203
203
|
screen-sizes="[
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
]"
|
|
214
|
-
></blockquote-base-embedded-webview-size>
|
|
204
|
+
{ width: 360, height: 800, id: '360x800' },
|
|
205
|
+
{ width: 390, height: 864, id: '390x864' },
|
|
206
|
+
{ width: 414, height: 896, id: '414x896' },
|
|
207
|
+
{ width: 768, height: 1024, id: '768x1024' },
|
|
208
|
+
{ width: 810, height: 1080, id: '810x1080' },
|
|
209
|
+
{ width: 1280, height: 720, id: '1280x800' },
|
|
210
|
+
{ width: 1366, height: 768, id: '1366x768' },
|
|
211
|
+
{ width: 1536, height: 864, id: '1536x864' },
|
|
212
|
+
{ width: 1920, height: 1080, id: '1920x1080' },
|
|
213
|
+
]"></blockquote-base-embedded-webview-size>
|
|
215
214
|
```
|
|
216
215
|
|
|
217
216
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blockquote-web-components/blockquote-base-embedded-webview",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.1",
|
|
4
4
|
"description": "Webcomponent blockquote-base-embedded-webview following open-wc recommendations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lit",
|
|
@@ -134,5 +134,5 @@
|
|
|
134
134
|
"access": "public"
|
|
135
135
|
},
|
|
136
136
|
"customElements": "custom-elements.json",
|
|
137
|
-
"gitHead": "
|
|
137
|
+
"gitHead": "6fe48d5f8dc077b549d3c11ab3541a0a1fe84d58"
|
|
138
138
|
}
|
|
@@ -11,17 +11,16 @@ import { styles } from './styles/blockquote-base-embedded-webview-size-styles.cs
|
|
|
11
11
|
* ```html
|
|
12
12
|
* <blockquote-base-embedded-webview-size
|
|
13
13
|
* screen-sizes="[
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
* ]"
|
|
24
|
-
* ></blockquote-base-embedded-webview-size>
|
|
14
|
+
* { width: 360, height: 800, id: '360x800' },
|
|
15
|
+
* { width: 390, height: 864, id: '390x864' },
|
|
16
|
+
* { width: 414, height: 896, id: '414x896' },
|
|
17
|
+
* { width: 768, height: 1024, id: '768x1024' },
|
|
18
|
+
* { width: 810, height: 1080, id: '810x1080' },
|
|
19
|
+
* { width: 1280, height: 720, id: '1280x800' },
|
|
20
|
+
* { width: 1366, height: 768, id: '1366x768' },
|
|
21
|
+
* { width: 1536, height: 864, id: '1536x864' },
|
|
22
|
+
* { width: 1920, height: 1080, id: '1920x1080' },
|
|
23
|
+
* ]"></blockquote-base-embedded-webview-size>
|
|
25
24
|
* ```
|
|
26
25
|
*
|
|
27
26
|
* @attribute screen-sizes
|