@blockquote-web-components/blockquote-controller-rxjs 1.1.1 → 1.1.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 +5 -1
- package/package.json +5 -6
- package/src/BlockquoteControllerRxjs.js +5 -1
package/README.md
CHANGED
|
@@ -15,7 +15,11 @@ assign values to and the Observable we want to subscribe.
|
|
|
15
15
|
- It unsubscribes from the old observable if called again on the same property with a different Observable
|
|
16
16
|
- It unsubscribes when the component is removed
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
### Demo
|
|
19
|
+
|
|
20
|
+
[](https://stackblitz.com/github/oscarmarina/blockquote-web-components/tree/main/packages/controllers/blockquote-controller-rxjs)
|
|
21
|
+
|
|
22
|
+
### Usage
|
|
19
23
|
|
|
20
24
|
```js
|
|
21
25
|
class BlockquoteControllerRxjsDemo extends LitElement {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blockquote-web-components/blockquote-controller-rxjs",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Webcomponent blockquote-controller-rxjs following open-wc recommendations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lit",
|
|
@@ -135,7 +135,6 @@
|
|
|
135
135
|
"extends": "stylelint-config-standard-scss",
|
|
136
136
|
"rules": {
|
|
137
137
|
"custom-property-pattern": null,
|
|
138
|
-
"max-line-length": null,
|
|
139
138
|
"no-duplicate-selectors": null,
|
|
140
139
|
"color-function-notation": null,
|
|
141
140
|
"alpha-value-notation": null
|
|
@@ -143,15 +142,15 @@
|
|
|
143
142
|
},
|
|
144
143
|
"dependencies": {
|
|
145
144
|
"lit": "^3.1.0",
|
|
146
|
-
"rxjs": "^8.0.0-alpha.
|
|
145
|
+
"rxjs": "^8.0.0-alpha.13"
|
|
147
146
|
},
|
|
148
147
|
"devDependencies": {
|
|
149
|
-
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.7.
|
|
150
|
-
"@blockquote-web-components/blockquote-base-embedded-webview": "^1.6.
|
|
148
|
+
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.7.1",
|
|
149
|
+
"@blockquote-web-components/blockquote-base-embedded-webview": "^1.6.3"
|
|
151
150
|
},
|
|
152
151
|
"publishConfig": {
|
|
153
152
|
"access": "public"
|
|
154
153
|
},
|
|
155
154
|
"customElements": "custom-elements.json",
|
|
156
|
-
"gitHead": "
|
|
155
|
+
"gitHead": "f9d24d35c34c6c767feaaf0a03a743b6199d7740"
|
|
157
156
|
}
|
|
@@ -21,7 +21,11 @@ const subscriptions = Symbol('subscriptions');
|
|
|
21
21
|
* - It unsubscribes from the old observable if called again on the same property with a different Observable
|
|
22
22
|
* - It unsubscribes when the component is removed
|
|
23
23
|
*
|
|
24
|
-
*
|
|
24
|
+
* ### Demo
|
|
25
|
+
*
|
|
26
|
+
* [](https://stackblitz.com/github/oscarmarina/blockquote-web-components/tree/main/packages/controllers/blockquote-controller-rxjs)
|
|
27
|
+
*
|
|
28
|
+
* ### Usage
|
|
25
29
|
*
|
|
26
30
|
* ```js
|
|
27
31
|
* class BlockquoteControllerRxjsDemo extends LitElement {
|