@getflip/swirl-components-angular 0.225.0 → 0.225.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.
@@ -424,7 +424,7 @@ export declare class SwirlFileViewerFallback {
424
424
  protected el: HTMLElement;
425
425
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
426
426
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlFileViewerFallback, never>;
427
- static ɵcmp: i0.ɵɵComponentDeclaration<SwirlFileViewerFallback, "swirl-file-viewer-fallback", never, { "downloadButtonLabel": { "alias": "downloadButtonLabel"; "required": false; }; "file": { "alias": "file"; "required": false; }; "fileName": { "alias": "fileName"; "required": false; }; }, {}, never, ["*"], false, never>;
427
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwirlFileViewerFallback, "swirl-file-viewer-fallback", never, { "disableDownload": { "alias": "disableDownload"; "required": false; }; "downloadButtonLabel": { "alias": "downloadButtonLabel"; "required": false; }; "file": { "alias": "file"; "required": false; }; "fileName": { "alias": "fileName"; "required": false; }; }, {}, never, ["*"], false, never>;
428
428
  }
429
429
  export declare interface SwirlFileViewerFallback extends Components.SwirlFileViewerFallback {
430
430
  activate: EventEmitter<CustomEvent<HTMLElement>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.225.0",
3
+ "version": "0.225.2",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "build": "ng build"
@@ -14,7 +14,7 @@
14
14
  "@angular/platform-browser": "^16.2.12",
15
15
  "@angular/platform-browser-dynamic": "^16.2.12",
16
16
  "@angular/router": "^16.2.12",
17
- "@getflip/swirl-components": "^0.225.0",
17
+ "@getflip/swirl-components": "^0.225.2",
18
18
  "rxjs": "~7.5.0",
19
19
  "tslib": "^2.3.0",
20
20
  "zone.js": "~0.13.3"
@@ -1051,14 +1051,14 @@ export declare interface SwirlFileViewerCsv extends Components.SwirlFileViewerCs
1051
1051
 
1052
1052
 
1053
1053
  @ProxyCmp({
1054
- inputs: ['downloadButtonLabel', 'file', 'fileName']
1054
+ inputs: ['disableDownload', 'downloadButtonLabel', 'file', 'fileName']
1055
1055
  })
1056
1056
  @Component({
1057
1057
  selector: 'swirl-file-viewer-fallback',
1058
1058
  changeDetection: ChangeDetectionStrategy.OnPush,
1059
1059
  template: '<ng-content></ng-content>',
1060
1060
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1061
- inputs: ['downloadButtonLabel', 'file', 'fileName'],
1061
+ inputs: ['disableDownload', 'downloadButtonLabel', 'file', 'fileName'],
1062
1062
  })
1063
1063
  export class SwirlFileViewerFallback {
1064
1064
  protected el: HTMLElement;