@getflip/swirl-components-angular 0.81.0 → 0.83.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.
@@ -267,6 +267,10 @@ export declare class SwirlConsoleLayout {
267
267
  static ɵcmp: i0.ɵɵComponentDeclaration<SwirlConsoleLayout, "swirl-console-layout", never, { "appName": "appName"; "backButonLabel": "backButonLabel"; "heading": "heading"; "helpButonLabel": "helpButonLabel"; "hideNavigationButtonLabel": "hideNavigationButtonLabel"; "logoText": "logoText"; "maxContentWidth": "maxContentWidth"; "navigationLabel": "navigationLabel"; "showBackButton": "showBackButton"; "showHelpButton": "showHelpButton"; "showNavigationButtonLabel": "showNavigationButtonLabel"; "subheading": "subheading"; }, {}, never, ["*"], false>;
268
268
  }
269
269
  export declare interface SwirlDateInput extends Components.SwirlDateInput {
270
+ /**
271
+ *
272
+ */
273
+ invalidInput: EventEmitter<CustomEvent<string>>;
270
274
  /**
271
275
  *
272
276
  */
@@ -1715,7 +1719,7 @@ export declare class SwirlLightbox {
1715
1719
  protected el: HTMLElement;
1716
1720
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1717
1721
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlLightbox, never>;
1718
- static ɵcmp: i0.ɵɵComponentDeclaration<SwirlLightbox, "swirl-lightbox", never, { "closeButtonLabel": "closeButtonLabel"; "downloadButtonLabel": "downloadButtonLabel"; "label": "label"; "menuLabel": "menuLabel"; "menuTriggerLabel": "menuTriggerLabel"; "nextSlideButtonLabel": "nextSlideButtonLabel"; "previousSlideButtonLabel": "previousSlideButtonLabel"; }, {}, never, ["*"], false>;
1722
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwirlLightbox, "swirl-lightbox", never, { "closeButtonLabel": "closeButtonLabel"; "downloadButtonLabel": "downloadButtonLabel"; "hideMenu": "hideMenu"; "label": "label"; "menuLabel": "menuLabel"; "menuTriggerLabel": "menuTriggerLabel"; "nextSlideButtonLabel": "nextSlideButtonLabel"; "previousSlideButtonLabel": "previousSlideButtonLabel"; }, {}, never, ["*"], false>;
1719
1723
  }
1720
1724
  export declare interface SwirlLink extends Components.SwirlLink {
1721
1725
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.81.0",
3
+ "version": "0.83.0",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "build": "ng build"
@@ -14,7 +14,7 @@
14
14
  "@angular/platform-browser": "^14.1.0",
15
15
  "@angular/platform-browser-dynamic": "^14.1.0",
16
16
  "@angular/router": "^14.1.0",
17
- "@getflip/swirl-components": "^0.82.0",
17
+ "@getflip/swirl-components": "^0.84.0",
18
18
  "rxjs": "~7.5.0",
19
19
  "tslib": "^2.3.0",
20
20
  "zone.js": "~0.11.4"
@@ -558,6 +558,10 @@ export class SwirlConsoleLayout {
558
558
 
559
559
 
560
560
  export declare interface SwirlDateInput extends Components.SwirlDateInput {
561
+ /**
562
+ *
563
+ */
564
+ invalidInput: EventEmitter<CustomEvent<string>>;
561
565
  /**
562
566
  *
563
567
  */
@@ -580,7 +584,7 @@ export class SwirlDateInput {
580
584
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
581
585
  c.detach();
582
586
  this.el = r.nativeElement;
583
- proxyOutputs(this, this.el, ['valueChange']);
587
+ proxyOutputs(this, this.el, ['invalidInput', 'valueChange']);
584
588
  }
585
589
  }
586
590
 
@@ -3887,14 +3891,14 @@ export declare interface SwirlLightbox extends Components.SwirlLightbox {}
3887
3891
 
3888
3892
  @ProxyCmp({
3889
3893
  defineCustomElementFn: undefined,
3890
- inputs: ['closeButtonLabel', 'downloadButtonLabel', 'label', 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel'],
3894
+ inputs: ['closeButtonLabel', 'downloadButtonLabel', 'hideMenu', 'label', 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel'],
3891
3895
  methods: ['open', 'close', 'activateSlide']
3892
3896
  })
3893
3897
  @Component({
3894
3898
  selector: 'swirl-lightbox',
3895
3899
  changeDetection: ChangeDetectionStrategy.OnPush,
3896
3900
  template: '<ng-content></ng-content>',
3897
- inputs: ['closeButtonLabel', 'downloadButtonLabel', 'label', 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel']
3901
+ inputs: ['closeButtonLabel', 'downloadButtonLabel', 'hideMenu', 'label', 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel']
3898
3902
  })
3899
3903
  export class SwirlLightbox {
3900
3904
  protected el: HTMLElement;