be-hive 0.0.81 → 0.0.82

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/be-hive.js CHANGED
@@ -2,7 +2,7 @@ export class BeHive extends HTMLElement {
2
2
  //#monitor?: IDisposable;
3
3
  constructor() {
4
4
  super();
5
- // this.registeredBehaviors = {};
5
+ this.registeredBehaviors = {};
6
6
  // this.refs = {};
7
7
  }
8
8
  async connectedCallback() {
@@ -18,11 +18,11 @@ export class BeHive extends HTMLElement {
18
18
  // const {IDMonitor} = await import('./IDMonitor.js');
19
19
  // this.#monitor = new IDMonitor(this);
20
20
  }
21
- disconnectedCallback() {
22
- // if(this.#monitor !== undefined){
23
- // this.#monitor.dispose();
24
- // }
25
- }
21
+ // disconnectedCallback(){
22
+ // // if(this.#monitor !== undefined){
23
+ // // this.#monitor.dispose();
24
+ // // }
25
+ // }
26
26
  #getInheritedBehaviors() {
27
27
  const rn = this.getRootNode();
28
28
  const host = rn.host;
package/be-hive.ts CHANGED
@@ -4,7 +4,7 @@ export class BeHive extends HTMLElement{
4
4
  //#monitor?: IDisposable;
5
5
  constructor(){
6
6
  super();
7
- // this.registeredBehaviors = {};
7
+ this.registeredBehaviors = {};
8
8
  // this.refs = {};
9
9
 
10
10
  }
@@ -21,11 +21,11 @@ export class BeHive extends HTMLElement{
21
21
  // this.#monitor = new IDMonitor(this);
22
22
  }
23
23
 
24
- disconnectedCallback(){
25
- // if(this.#monitor !== undefined){
26
- // this.#monitor.dispose();
27
- // }
28
- }
24
+ // disconnectedCallback(){
25
+ // // if(this.#monitor !== undefined){
26
+ // // this.#monitor.dispose();
27
+ // // }
28
+ // }
29
29
 
30
30
  #getInheritedBehaviors(){
31
31
  const rn = this.getRootNode();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "be-hive",
3
- "version": "0.0.81",
3
+ "version": "0.0.82",
4
4
  "keywords": [
5
5
  "web-components",
6
6
  "web-component",
@@ -25,7 +25,8 @@
25
25
  "serve": "node node_modules/may-it-serve/serve.js",
26
26
  "test": "playwright test",
27
27
  "package-check": "package-check",
28
- "doc": "custom-elements-manifest analyze"
28
+ "doc": "custom-elements-manifest analyze",
29
+ "safari": "npx playwright wk http://localhost:3030"
29
30
  },
30
31
  "devDependencies": {
31
32
  "@playwright/test": "1.30.0",