matcha-components 20.169.0 → 20.170.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.
@@ -11310,6 +11310,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
11310
11310
  }] } });
11311
11311
 
11312
11312
  class MatchaTooltipDirective {
11313
+ get tooltipText() { return this._tooltipText; }
11314
+ set tooltipText(v) {
11315
+ this._tooltipText = v;
11316
+ }
11317
+ get tooltipTextAttr() {
11318
+ return this.tooltipText;
11319
+ }
11313
11320
  get tooltipDisabled() { return this._tooltipDisabled; }
11314
11321
  set tooltipDisabled(v) { this._tooltipDisabled = v === 'false' ? false : !!v; }
11315
11322
  get tooltipDisabledAttr() {
@@ -11343,7 +11350,7 @@ class MatchaTooltipDirective {
11343
11350
  constructor(el, renderer) {
11344
11351
  this.el = el;
11345
11352
  this.renderer = renderer;
11346
- this.tooltipText = '';
11353
+ this._tooltipText = '';
11347
11354
  this._tooltipDisabled = false;
11348
11355
  this._preferAbove = false;
11349
11356
  this._preferBelow = false;
@@ -11495,7 +11502,7 @@ class MatchaTooltipDirective {
11495
11502
  this.destroyTooltip();
11496
11503
  }
11497
11504
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: MatchaTooltipDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
11498
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.0", type: MatchaTooltipDirective, isStandalone: false, selector: "[matchaTooltip]", inputs: { tooltipText: ["matchaTooltip", "tooltipText"], tooltipDisabled: ["matchaTooltipDisabled", "tooltipDisabled"], preferAbove: ["matchaTooltipAbove", "preferAbove"], preferBelow: ["matchaTooltipBelow", "preferBelow"], preferLeft: ["matchaTooltipLeft", "preferLeft"], preferRight: ["matchaTooltipRight", "preferRight"], tooltipEnableClose: ["matchaTooltipEnableClose", "tooltipEnableClose"] }, host: { listeners: { "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()", "click": "onClick($event)" }, properties: { "attr.tooltip-disabled": "this.tooltipDisabledAttr", "attr.tooltip-above": "this.preferAboveAttr", "attr.tooltip-below": "this.preferBelowAttr", "attr.tooltip-left": "this.preferLeftAttr", "attr.tooltip-right": "this.preferRightAttr", "attr.tooltip-enable-close": "this.tooltipEnableCloseAttr" } }, ngImport: i0 }); }
11505
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.0", type: MatchaTooltipDirective, isStandalone: false, selector: "[matchaTooltip]", inputs: { tooltipText: ["matchaTooltip", "tooltipText"], tooltipDisabled: ["matchaTooltipDisabled", "tooltipDisabled"], preferAbove: ["matchaTooltipAbove", "preferAbove"], preferBelow: ["matchaTooltipBelow", "preferBelow"], preferLeft: ["matchaTooltipLeft", "preferLeft"], preferRight: ["matchaTooltipRight", "preferRight"], tooltipEnableClose: ["matchaTooltipEnableClose", "tooltipEnableClose"] }, host: { listeners: { "mouseenter": "onMouseEnter()", "mouseleave": "onMouseLeave()", "click": "onClick($event)" }, properties: { "attr.matchaTooltip": "this.tooltipTextAttr", "attr.tooltip-disabled": "this.tooltipDisabledAttr", "attr.tooltip-above": "this.preferAboveAttr", "attr.tooltip-below": "this.preferBelowAttr", "attr.tooltip-left": "this.preferLeftAttr", "attr.tooltip-right": "this.preferRightAttr", "attr.tooltip-enable-close": "this.tooltipEnableCloseAttr" } }, ngImport: i0 }); }
11499
11506
  }
11500
11507
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: MatchaTooltipDirective, decorators: [{
11501
11508
  type: Directive,
@@ -11506,6 +11513,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
11506
11513
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }], propDecorators: { tooltipText: [{
11507
11514
  type: Input,
11508
11515
  args: ['matchaTooltip']
11516
+ }], tooltipTextAttr: [{
11517
+ type: HostBinding,
11518
+ args: ['attr.matchaTooltip']
11509
11519
  }], tooltipDisabled: [{
11510
11520
  type: Input,
11511
11521
  args: ['matchaTooltipDisabled']