@blockquote-web-components/blockquote-base-embedded-webview 1.11.2 → 1.11.3
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 +20 -20
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -72,17 +72,17 @@ It will create a `select` tag with the provided demo HTML files and add the `[da
|
|
|
72
72
|
| `heading` | public | `string` | `''` | The heading of the webview. | |
|
|
73
73
|
| `__resetResizing` | | `boolean` | `false` | | |
|
|
74
74
|
| `__selectArrow` | | | `` html` <svg aria-hidden="true" viewBox="0 0 24 24" stroke-width="2" stroke="currentcolor" fill="none" stroke-linecap="round" stroke-linejoin="round"> <polyline points="6 9 12 15 18 9" /> </svg> ` `` | | |
|
|
75
|
-
| `__readDataPos` | | `object` | `{
|
|
75
|
+
| `__readDataPos` | | `object` | `{x: '0', y: '0', resizing: false, cursor: ''}` | | |
|
|
76
76
|
| `limitHeight` | public | `boolean` | `false` | Limit height to 100% available | |
|
|
77
|
-
| `_sources` | | `array` | `[{
|
|
77
|
+
| `_sources` | | `array` | `[{src: '', option: '', description: ''}]` | | |
|
|
78
78
|
| `_embeddedResizeRef` | | | | | |
|
|
79
79
|
|
|
80
80
|
##### Methods
|
|
81
81
|
|
|
82
|
-
| Name | Privacy | Description | Parameters
|
|
83
|
-
| ---------------- | ------- | ----------- |
|
|
84
|
-
| `_litHtmlRender` | | |
|
|
85
|
-
| `_onChangeFile` | | | `{
|
|
82
|
+
| Name | Privacy | Description | Parameters | Return | Inherited From |
|
|
83
|
+
| ---------------- | ------- | ----------- | ---------- | ------ | -------------- |
|
|
84
|
+
| `_litHtmlRender` | | | | | |
|
|
85
|
+
| `_onChangeFile` | | | `{target}` | | |
|
|
86
86
|
|
|
87
87
|
##### Attributes
|
|
88
88
|
|
|
@@ -175,7 +175,7 @@ It will create a `select` tag with the provided demo HTML files and add the `[da
|
|
|
175
175
|
| Name | Privacy | Description | Parameters | Return | Inherited From |
|
|
176
176
|
| ------------------------ | ------- | ----------- | ------------------------------------ | ------ | -------------- |
|
|
177
177
|
| `_createResizer` | | | `DOMRect: !string, ev: PointerEvent` | | |
|
|
178
|
-
| `_resize` | | | `{
|
|
178
|
+
| `_resize` | | | `{detail}` | | |
|
|
179
179
|
| `_dispatchResizeEvent` | | | | | |
|
|
180
180
|
| `_getBoundingClientRect` | | | `DOMRect: !string` | | |
|
|
181
181
|
|
|
@@ -220,19 +220,19 @@ It will create a `select` tag with the provided demo HTML files and add the `[da
|
|
|
220
220
|
|
|
221
221
|
##### Fields
|
|
222
222
|
|
|
223
|
-
| Name | Privacy | Type | Default
|
|
224
|
-
| -------------------------- | ------- | --------- |
|
|
225
|
-
| `selectedSize` | | |
|
|
226
|
-
| `selectedDetail` | | |
|
|
227
|
-
| `computedStyleWidth` | | |
|
|
228
|
-
| `_toolbarTpl` | | |
|
|
229
|
-
| `_visualTextTpl` | | |
|
|
230
|
-
| `_onResize` | | |
|
|
231
|
-
| `showOverflowSize` | public | `boolean` | `false`
|
|
232
|
-
| `selected` | public | `number` | `0`
|
|
233
|
-
| `disabledSelectedSizeText` | public | `boolean` | `false`
|
|
234
|
-
| `screenSizes` | public | `array` | `[ {
|
|
235
|
-
| `widthInPercent` | public | `boolean` | `false`
|
|
223
|
+
| Name | Privacy | Type | Default | Description | Inherited From |
|
|
224
|
+
| -------------------------- | ------- | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------- | -------------- |
|
|
225
|
+
| `selectedSize` | | | | | |
|
|
226
|
+
| `selectedDetail` | | | | | |
|
|
227
|
+
| `computedStyleWidth` | | | | | |
|
|
228
|
+
| `_toolbarTpl` | | | | | |
|
|
229
|
+
| `_visualTextTpl` | | | | | |
|
|
230
|
+
| `_onResize` | | | | | |
|
|
231
|
+
| `showOverflowSize` | public | `boolean` | `false` | Show screen size options that are too large for the container | |
|
|
232
|
+
| `selected` | public | `number` | `0` | The screen size option selected | |
|
|
233
|
+
| `disabledSelectedSizeText` | public | `boolean` | `false` | If true, selected size text is disabled | |
|
|
234
|
+
| `screenSizes` | public | `array` | `[ {width: 360, height: 800, id: '360x800'}, {width: 390, height: 864, id: '390x864'}, {width: 414, height: 896, id: '414x896'}, {width: 768, height: 1024, id: '768x1024'}, {width: 810, height: 1080, id: '810x1080'}, {width: 1280, height: 720, id: '1280x800'}, {width: 1366, height: 768, id: '1366x768'}, {width: 1536, height: 864, id: '1536x864'}, {width: 1920, height: 1080, id: '1920x1080'}, ]` | The screen size options to display | |
|
|
235
|
+
| `widthInPercent` | public | `boolean` | `false` | Percentage value for the width | |
|
|
236
236
|
|
|
237
237
|
##### Methods
|
|
238
238
|
|
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.3",
|
|
4
4
|
"description": "Webcomponent blockquote-base-embedded-webview following open-wc recommendations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lit",
|
|
@@ -124,15 +124,15 @@
|
|
|
124
124
|
}
|
|
125
125
|
},
|
|
126
126
|
"dependencies": {
|
|
127
|
-
"lit": "^3.
|
|
127
|
+
"lit": "^3.2.0"
|
|
128
128
|
},
|
|
129
129
|
"devDependencies": {
|
|
130
|
-
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.9.
|
|
130
|
+
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.9.2",
|
|
131
131
|
"@blockquote-web-components/blockquote-foundations-sass": "^1.1.4"
|
|
132
132
|
},
|
|
133
133
|
"publishConfig": {
|
|
134
134
|
"access": "public"
|
|
135
135
|
},
|
|
136
136
|
"customElements": "custom-elements.json",
|
|
137
|
-
"gitHead": "
|
|
137
|
+
"gitHead": "dd2f576611bceb2c8e2b9456b8a22a704b8c6148"
|
|
138
138
|
}
|