@blockquote-web-components/blockquote-controller-rxjs 1.0.14 → 1.0.16
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": "@blockquote-web-components/blockquote-controller-rxjs",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.16",
|
|
4
4
|
"description": "Webcomponent blockquote-controller-rxjs following open-wc recommendations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lit",
|
|
@@ -131,11 +131,12 @@
|
|
|
131
131
|
"rxjs": "^7.5.5"
|
|
132
132
|
},
|
|
133
133
|
"devDependencies": {
|
|
134
|
-
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.
|
|
134
|
+
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.4.0",
|
|
135
|
+
"@blockquote-web-components/blockquote-base-embedded-webview": "^1.3.1"
|
|
135
136
|
},
|
|
136
137
|
"publishConfig": {
|
|
137
138
|
"access": "public"
|
|
138
139
|
},
|
|
139
140
|
"customElements": "custom-elements.json",
|
|
140
|
-
"gitHead": "
|
|
141
|
+
"gitHead": "70d188e9e1ca6e898209ac040f1e1354cb27fe42"
|
|
141
142
|
}
|
|
@@ -91,8 +91,9 @@ export class BlockquoteControllerRxjs {
|
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
// eslint-disable-next-line arrow-parens
|
|
94
|
-
const subscription = stream$.pipe(takeUntil(this[unsubscribe])).subscribe(
|
|
95
|
-
|
|
94
|
+
const subscription = stream$.pipe(takeUntil(this[unsubscribe])).subscribe(state => {
|
|
95
|
+
// eslint-disable-next-line no-unused-expressions
|
|
96
|
+
propKey in this.host && (this.host[propKey] = state);
|
|
96
97
|
this.host.requestUpdate();
|
|
97
98
|
});
|
|
98
99
|
|