@blockquote-web-components/blockquote-controller-rxjs 1.0.24 → 1.1.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 +1 -1
- package/package.json +6 -6
- package/src/BlockquoteControllerRxjs.js +2 -2
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blockquote-web-components/blockquote-controller-rxjs",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Webcomponent blockquote-controller-rxjs following open-wc recommendations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lit",
|
|
@@ -34,7 +34,6 @@
|
|
|
34
34
|
],
|
|
35
35
|
"scripts": {
|
|
36
36
|
"analyze": "cem analyze --litelement --globs \"{src,define}/**/*.{js,ts}\" \"index.js\"",
|
|
37
|
-
"analyze:doc": "npm run analyze && npx web-component-analyzer \"{src,define}/**/*.{js,ts}\" \"index.js\" \"README.js\" --outFile README.md",
|
|
38
37
|
"build": "echo \"This is not a TypeScript project, so no need to build.\"",
|
|
39
38
|
"dev:vite": "vite build",
|
|
40
39
|
"format": "npm run format:eslint && npm run format:prettier && npm run format:stylelint",
|
|
@@ -128,6 +127,7 @@
|
|
|
128
127
|
],
|
|
129
128
|
"import/no-unresolved": "off",
|
|
130
129
|
"import/prefer-default-export": "off",
|
|
130
|
+
"lit/no-classfield-shadowing": "off",
|
|
131
131
|
"lit/no-native-attributes": "off"
|
|
132
132
|
}
|
|
133
133
|
},
|
|
@@ -142,16 +142,16 @@
|
|
|
142
142
|
}
|
|
143
143
|
},
|
|
144
144
|
"dependencies": {
|
|
145
|
-
"lit": "^
|
|
145
|
+
"lit": "^3.1.0",
|
|
146
146
|
"rxjs": "^8.0.0-alpha.12"
|
|
147
147
|
},
|
|
148
148
|
"devDependencies": {
|
|
149
|
-
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.
|
|
150
|
-
"@blockquote-web-components/blockquote-base-embedded-webview": "^1.
|
|
149
|
+
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.7.0",
|
|
150
|
+
"@blockquote-web-components/blockquote-base-embedded-webview": "^1.6.1"
|
|
151
151
|
},
|
|
152
152
|
"publishConfig": {
|
|
153
153
|
"access": "public"
|
|
154
154
|
},
|
|
155
155
|
"customElements": "custom-elements.json",
|
|
156
|
-
"gitHead": "
|
|
156
|
+
"gitHead": "e2417c85a1b9179b093333c0dd89f90fdbb4e91b"
|
|
157
157
|
}
|
|
@@ -6,7 +6,7 @@ const subscriptions = Symbol('subscriptions');
|
|
|
6
6
|
/**
|
|
7
7
|
* # BlockquoteControllerRxjs
|
|
8
8
|
*
|
|
9
|
-
* 
|
|
10
10
|
*
|
|
11
11
|
* `BlockquoteControllerRxjs` is a Reactive Controller.
|
|
12
12
|
*
|
|
@@ -100,6 +100,6 @@ export class BlockquoteControllerRxjs {
|
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
hostDisconnected() {
|
|
103
|
-
this[unsubscribe].next();
|
|
103
|
+
this[unsubscribe].next(null);
|
|
104
104
|
}
|
|
105
105
|
}
|