@startinblox/core 1.0.0-beta.4 → 1.0.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.
Files changed (2) hide show
  1. package/dist/index.js +7 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1951,6 +1951,13 @@ const Sib = {
1951
1951
  this.component = new component(this);
1952
1952
  this.component.created();
1953
1953
  }
1954
+ /** @deprecated use `component` instead */
1955
+ get _component() {
1956
+ return this.component;
1957
+ }
1958
+ set _component(_component) {
1959
+ this.component = _component;
1960
+ }
1954
1961
  static get observedAttributes() {
1955
1962
  return component.observedAttributes;
1956
1963
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startinblox/core",
3
- "version": "1.0.0-beta.4",
3
+ "version": "1.0.1",
4
4
  "description": "This is a series of web component respecting both the web components standards and the Linked Data Platform convention.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",