@lordfokas/yrframe 0.4.4 → 0.4.5

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/Facade.js +0 -18
  2. package/package.json +1 -1
package/dist/Facade.js CHANGED
@@ -40,24 +40,6 @@ export class Facade {
40
40
  return this.node;
41
41
  }
42
42
  }
43
- class FacadeEvents extends ComponentEvents {
44
- connected = false;
45
- constructor(component) {
46
- super(component);
47
- }
48
- connect() {
49
- if (this.connected)
50
- return;
51
- super.connect();
52
- this.connected = true;
53
- }
54
- disconnect() {
55
- if (!this.connected)
56
- return;
57
- super.disconnect();
58
- this.connected = false;
59
- }
60
- }
61
43
  (function FacadeMutationObserver() {
62
44
  new MutationObserver((records) => {
63
45
  for (const record of records) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lordfokas/yrframe",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "A Typescript class-based WebComponents library using Material Design.",
5
5
  "main": "dist/yrframe.js",
6
6
  "scripts": {