@zeedhi/teknisa-components-vuetify 1.94.0 → 1.95.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.
@@ -4574,6 +4574,9 @@ let TekImage = class TekImage extends ZdComponent {
4574
4574
  setFillHeight(this.$el);
4575
4575
  }
4576
4576
  }
4577
+ load(event) {
4578
+ this.instance.load(event, this.$el);
4579
+ }
4577
4580
  };
4578
4581
  __decorate([
4579
4582
  PropWatch({ type: String, default: '' })
@@ -7413,6 +7416,11 @@ var __vue_render__$8 = function () {
7413
7416
  _vm.$styleObject(_vm.instance.cssStyle)
7414
7417
  ),
7415
7418
  attrs: { src: _vm.instance.src },
7419
+ on: {
7420
+ load: function ($event) {
7421
+ return _vm.load($event)
7422
+ },
7423
+ },
7416
7424
  }),
7417
7425
  ],
7418
7426
  1
@@ -4574,6 +4574,9 @@
4574
4574
  vuetify.setFillHeight(this.$el);
4575
4575
  }
4576
4576
  }
4577
+ load(event) {
4578
+ this.instance.load(event, this.$el);
4579
+ }
4577
4580
  };
4578
4581
  __decorate([
4579
4582
  vuetify.PropWatch({ type: String, default: '' })
@@ -7413,6 +7416,11 @@
7413
7416
  _vm.$styleObject(_vm.instance.cssStyle)
7414
7417
  ),
7415
7418
  attrs: { src: _vm.instance.src },
7419
+ on: {
7420
+ load: function ($event) {
7421
+ return _vm.load($event)
7422
+ },
7423
+ },
7416
7424
  }),
7417
7425
  ],
7418
7426
  1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/teknisa-components-vuetify",
3
- "version": "1.94.0",
3
+ "version": "1.95.0",
4
4
  "description": "Teknisa Components based on Vuetify",
5
5
  "author": "Zeedhi <zeedhi@teknisa.com>",
6
6
  "license": "ISC",
@@ -44,5 +44,5 @@
44
44
  "vue": "2.7.*",
45
45
  "vuetify": "2.6.*"
46
46
  },
47
- "gitHead": "2df809b3be18f0f4e986276267c761fe500009cb"
47
+ "gitHead": "6662f4597ed49edeb062368e5989c32810cc7e21"
48
48
  }
@@ -16,4 +16,5 @@ export default class TekImage extends ZdComponent {
16
16
  instance: Image;
17
17
  instanceType: typeof Image;
18
18
  mounted(): void;
19
+ load(event?: Event): void;
19
20
  }