@blockquote-web-components/blockquote-base-meta 1.0.23 → 1.1.0

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
@@ -1,4 +1,4 @@
1
- ![Lit](https://img.shields.io/badge/lit-2.0.0-blue)
1
+ ![Lit](https://img.shields.io/badge/lit-3.0.0-blue.svg)
2
2
 
3
3
  `BlockquoteBaseMeta` is based on Polymer's `iron-meta`, and it is a generic class that you can use for sharing information across the DOM tree.
4
4
  It uses [monostate pattern](http://c2.com/cgi/wiki?MonostatePattern) pattern such that any instance of it has access to the shared information.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockquote-web-components/blockquote-base-meta",
3
- "version": "1.0.23",
3
+ "version": "1.1.0",
4
4
  "description": "Webcomponent blockquote-base-meta following open-wc recommendations",
5
5
  "keywords": [
6
6
  "lit",
@@ -126,6 +126,7 @@
126
126
  ],
127
127
  "import/no-unresolved": "off",
128
128
  "import/prefer-default-export": "off",
129
+ "lit/no-classfield-shadowing": "off",
129
130
  "lit/no-native-attributes": "off"
130
131
  }
131
132
  },
@@ -139,15 +140,15 @@
139
140
  }
140
141
  },
141
142
  "dependencies": {
142
- "lit": "^2.8.0"
143
+ "lit": "^3.1.0"
143
144
  },
144
145
  "devDependencies": {
145
- "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.5.0",
146
- "@blockquote-web-components/blockquote-base-embedded-webview": "^1.5.3"
146
+ "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.6.0",
147
+ "@blockquote-web-components/blockquote-base-embedded-webview": "^1.6.0"
147
148
  },
148
149
  "publishConfig": {
149
150
  "access": "public"
150
151
  },
151
152
  "customElements": "custom-elements.json",
152
- "gitHead": "1d99c84686394229dadc9d1e19f446588a33c8b6"
153
+ "gitHead": "c65690b8e735c0607858f3a14a381088721dc807"
153
154
  }
@@ -27,7 +27,7 @@ window[BLOCKQUOTE] = blockquote;
27
27
  // https://www.keithcirkel.co.uk/metaprogramming-in-es6-symbols/
28
28
 
29
29
  /**
30
- * ![Lit](https://img.shields.io/badge/lit-2.0.0-blue)
30
+ * ![Lit](https://img.shields.io/badge/lit-3.0.0-blue.svg)
31
31
  *
32
32
  * `BlockquoteBaseMeta` is based on Polymer's `iron-meta`, and it is a generic class that you can use for sharing information across the DOM tree.
33
33
  * It uses [monostate pattern](http://c2.com/cgi/wiki?MonostatePattern) pattern such that any instance of it has access to the shared information.