@getflip/swirl-components-angular 0.429.0-beta-20260122175942 → 0.429.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,9 +267,10 @@ export declare class SwirlDataCell {
267
267
  protected el: HTMLSwirlDataCellElement;
268
268
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
269
269
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlDataCell, never>;
270
- static ɵcmp: i0.ɵɵComponentDeclaration<SwirlDataCell, "swirl-data-cell", never, { "label": { "alias": "label"; "required": true; }; "tooltip": { "alias": "tooltip"; "required": false; }; "value": { "alias": "value"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, ["*"], false, never>;
270
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwirlDataCell, "swirl-data-cell", never, { "label": { "alias": "label"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "value": { "alias": "value"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, ["*"], false, never>;
271
271
  }
272
272
  export declare interface SwirlDataCell extends Components.SwirlDataCell {
273
+ valueChange: EventEmitter<CustomEvent<MouseEvent>>;
273
274
  }
274
275
  export declare class SwirlDataCellStack {
275
276
  protected z: NgZone;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.429.0-beta-20260122175942",
3
+ "version": "0.429.0",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "build": "ng build"
@@ -22,7 +22,7 @@
22
22
  "@angular/platform-browser": "19.2.18",
23
23
  "@angular/platform-browser-dynamic": "19.2.18",
24
24
  "@angular/router": "19.2.18",
25
- "@getflip/swirl-components": "0.429.0-beta-20260122175942",
25
+ "@getflip/swirl-components": "0.429.0",
26
26
  "rxjs": "7.8.2",
27
27
  "tslib": "2.4.0",
28
28
  "zone.js": "0.15.0"
@@ -681,7 +681,7 @@ export declare interface SwirlConsoleLayout extends Components.SwirlConsoleLayou
681
681
  changeDetection: ChangeDetectionStrategy.OnPush,
682
682
  template: '<ng-content></ng-content>',
683
683
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
684
- inputs: [{ name: 'label', required: true }, 'tooltip', 'value', 'vertical'],
684
+ inputs: ['label', 'tooltip', 'value', 'vertical'],
685
685
  standalone: false
686
686
  })
687
687
  export class SwirlDataCell {
@@ -689,11 +689,15 @@ export class SwirlDataCell {
689
689
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
690
690
  c.detach();
691
691
  this.el = r.nativeElement;
692
+ proxyOutputs(this, this.el, ['valueChange']);
692
693
  }
693
694
  }
694
695
 
695
696
 
696
- export declare interface SwirlDataCell extends Components.SwirlDataCell {}
697
+ export declare interface SwirlDataCell extends Components.SwirlDataCell {
698
+
699
+ valueChange: EventEmitter<CustomEvent<MouseEvent>>;
700
+ }
697
701
 
698
702
 
699
703
  @ProxyCmp({
@@ -7123,7 +7127,7 @@ export declare interface SwirlMenuItem extends Components.SwirlMenuItem {}
7123
7127
 
7124
7128
  @ProxyCmp({
7125
7129
  inputs: ['closable', 'closeButtonLabel', 'contentGap', 'fullscreenDisableButtonLabel', 'fullscreenEnableButtonLabel', 'hasSidebarCloseButton', 'height', 'hideCloseButton', 'hideLabel', 'hideScrolledHeaderBorder', 'hideSecondaryContent', 'hideSecondaryContentBorders', 'hideSidebarContent', 'label', 'maxHeight', 'maxWidth', 'minHeight', 'padded', 'primaryActionLabel', 'primaryContentFlex', 'primaryContentMaxWidth', 'secondaryActionLabel', 'secondaryContentFlex', 'secondaryContentMaxWidth', 'secondaryContentPadding', 'secondaryContentPaddingBlockEnd', 'secondaryContentPaddingBlockStart', 'secondaryContentPaddingInlineEnd', 'secondaryContentPaddingInlineStart', 'showFullscreenButton', 'sidebarCloseButtonLabel', 'sidebarFooterPadded', 'sidebarLabel', 'sidebarPadded', 'variant'],
7126
- methods: ['open', 'close', 'setFullscreen', 'getScrollContainer']
7130
+ methods: ['open', 'close', 'setFullscreen']
7127
7131
  })
7128
7132
  @Component({
7129
7133
  selector: 'swirl-modal',