@blockquote-web-components/blockquote-controller-rxjs 1.1.1 → 1.1.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
@@ -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
- ## Usage
18
+ ### Demo
19
+
20
+ [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](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.1",
3
+ "version": "1.1.2",
4
4
  "description": "Webcomponent blockquote-controller-rxjs following open-wc recommendations",
5
5
  "keywords": [
6
6
  "lit",
@@ -147,11 +147,11 @@
147
147
  },
148
148
  "devDependencies": {
149
149
  "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.7.0",
150
- "@blockquote-web-components/blockquote-base-embedded-webview": "^1.6.1"
150
+ "@blockquote-web-components/blockquote-base-embedded-webview": "^1.6.2"
151
151
  },
152
152
  "publishConfig": {
153
153
  "access": "public"
154
154
  },
155
155
  "customElements": "custom-elements.json",
156
- "gitHead": "e2417c85a1b9179b093333c0dd89f90fdbb4e91b"
156
+ "gitHead": "1e72d38b0abdb0fddc1ccc9412f83485e9f6b5b0"
157
157
  }
@@ -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
- * ## Usage
24
+ * ### Demo
25
+ *
26
+ * [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](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 {