@wizishop/angular-components 0.0.232 → 0.0.234

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.
@@ -4329,7 +4329,7 @@
4329
4329
  TokenCheckComponent.decorators = [
4330
4330
  { type: i0.Component, args: [{
4331
4331
  selector: 'wac-token-check',
4332
- template: "<div class=\"wac-token-check\">\n <span [innerHTML]=\"label\"></span> : <span [innerHTML]=\"value\" [ngClass]=\"{'warning': value > max}\"></span> / <strong [innerHTML]=\"max\"></strong>\n</div>\n"
4332
+ template: "<div class=\"wac-token-check\">\n <span [innerHTML]=\"label\"></span> : <span [innerHTML]=\"value\" [ngClass]=\"{'warning': value > max}\"></span>/<strong [innerHTML]=\"max\"></strong>\n</div>\n"
4333
4333
  },] }
4334
4334
  ];
4335
4335
  TokenCheckComponent.ctorParameters = function () { return []; };
@@ -4515,6 +4515,8 @@
4515
4515
  function ContentWithButtonsComponent() {
4516
4516
  this.iconCopy = 'fa-duotone fa-copy';
4517
4517
  this.iconTranslate = 'fa-regular fa-globe';
4518
+ this.tooltipCopy = '';
4519
+ this.tooltipTranslate = '';
4518
4520
  this.count = true;
4519
4521
  this.countCharacterLabel = 'caractères';
4520
4522
  this.countWordsLabel = 'mots';
@@ -4549,12 +4551,14 @@
4549
4551
  ContentWithButtonsComponent.decorators = [
4550
4552
  { type: i0.Component, args: [{
4551
4553
  selector: 'wac-content-with-buttons',
4552
- template: "<div class=\"wac-content-with-buttons\">\n <div class=\"wac-content-with-buttons__text\">\n <div id=\"{{randomLabelName}}\">\n <ng-content></ng-content>\n </div>\n <div class=\"wac-content-with-buttons__text__count\" *ngIf=\"count && countIsReady\">\n <span>{{ countWords }} {{ countWordsLabel }} - {{ countCharacter }} {{ countCharacterLabel }}</span>\n <span><wac-link (click)=\"$event.preventDefault();\" (mousedown)=\"$event.preventDefault();eventReport();\" fontSize=\"12px\">{{ reportLabel }}</wac-link></span>\n </div>\n </div>\n <div class=\"wac-content-with-buttons__cta\">\n <div><wac-button extraClasses=\"is-blue opacity static-width\" [iconFontSize]=\"18\" [icon]=\"iconCopy\" (click)=\"eventCopy()\"></wac-button></div>\n <div><wac-button extraClasses=\"is-green opacity static-width\" [iconFontSize]=\"18\" [icon]=\"iconTranslate\" (click)=\"eventTranslate()\"></wac-button></div>\n </div>\n</div>\n"
4554
+ template: "<div class=\"wac-content-with-buttons\">\n <div class=\"wac-content-with-buttons__text\">\n <div id=\"{{randomLabelName}}\">\n <ng-content></ng-content>\n </div>\n <div class=\"wac-content-with-buttons__text__count\" *ngIf=\"count && countIsReady\">\n <span>{{ countWords }} {{ countWordsLabel }} - {{ countCharacter }} {{ countCharacterLabel }}</span>\n <span><wac-link (click)=\"$event.preventDefault();\" (mousedown)=\"$event.preventDefault();eventReport();\" fontSize=\"12px\">{{ reportLabel }}</wac-link></span>\n </div>\n </div>\n <div class=\"wac-content-with-buttons__cta\">\n <div><wac-button extraClasses=\"is-blue opacity static-width\" [iconFontSize]=\"18\" [icon]=\"iconCopy\" (click)=\"eventCopy()\" [tooltip]=\"tooltipCopy\" [tooltipPosition]=\"'top-center'\" [tooltipWidth]=\"'150px'\"></wac-button></div>\n <div><wac-button extraClasses=\"is-green opacity static-width\" [iconFontSize]=\"18\" [icon]=\"iconTranslate\" [tooltip]=\"tooltipTranslate\" [tooltipPosition]=\"'top-center'\" [tooltipWidth]=\"'150px'\" (click)=\"eventTranslate()\"></wac-button></div>\n </div>\n</div>\n"
4553
4555
  },] }
4554
4556
  ];
4555
4557
  ContentWithButtonsComponent.propDecorators = {
4556
4558
  iconCopy: [{ type: i0.Input }],
4557
4559
  iconTranslate: [{ type: i0.Input }],
4560
+ tooltipCopy: [{ type: i0.Input }],
4561
+ tooltipTranslate: [{ type: i0.Input }],
4558
4562
  count: [{ type: i0.Input }],
4559
4563
  countCharacterLabel: [{ type: i0.Input }],
4560
4564
  countWordsLabel: [{ type: i0.Input }],