@paperless/angular 1.3.6 → 1.4.2

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.
@@ -1812,10 +1812,10 @@ let PTooltip = class PTooltip {
1812
1812
  }
1813
1813
  };
1814
1814
  PTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1815
- PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PTooltip, selector: "p-tooltip", inputs: { canManuallyClose: "canManuallyClose", enableUserInput: "enableUserInput", placement: "placement", popover: "popover", show: "show", strategy: "strategy", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1815
+ PTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: PTooltip, selector: "p-tooltip", inputs: { canManuallyClose: "canManuallyClose", content: "content", enableUserInput: "enableUserInput", placement: "placement", show: "show", strategy: "strategy", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1816
1816
  PTooltip = __decorate([
1817
1817
  ProxyCmp({
1818
- inputs: ['canManuallyClose', 'enableUserInput', 'placement', 'popover', 'show', 'strategy', 'variant']
1818
+ inputs: ['canManuallyClose', 'content', 'enableUserInput', 'placement', 'show', 'strategy', 'variant']
1819
1819
  })
1820
1820
  ], PTooltip);
1821
1821
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PTooltip, decorators: [{
@@ -1825,7 +1825,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
1825
1825
  changeDetection: ChangeDetectionStrategy.OnPush,
1826
1826
  template: '<ng-content></ng-content>',
1827
1827
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1828
- inputs: ['canManuallyClose', 'enableUserInput', 'placement', 'popover', 'show', 'strategy', 'variant'],
1828
+ inputs: ['canManuallyClose', 'content', 'enableUserInput', 'placement', 'show', 'strategy', 'variant'],
1829
1829
  }]
1830
1830
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1831
1831
 
@@ -3291,12 +3291,12 @@ let Table = class Table {
3291
3291
  target.type === 'checkbox') {
3292
3292
  return;
3293
3293
  }
3294
- const row = this._findRow($event.target);
3294
+ const row = this._findRow(target);
3295
+ const action = this._findRowAction(target);
3296
+ if (action) {
3297
+ return;
3298
+ }
3295
3299
  if (this.enableRowClick) {
3296
- const action = this._findRowAction($event.target);
3297
- if (action) {
3298
- return;
3299
- }
3300
3300
  const item = this.parsedItems[index];
3301
3301
  this.rowClick.emit({
3302
3302
  item,