@getflip/swirl-components-angular 0.442.0 → 0.443.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.
@@ -327,7 +327,7 @@ export declare class SwirlDialog {
327
327
  protected el: HTMLSwirlDialogElement;
328
328
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
329
329
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlDialog, never>;
330
- static ɵcmp: i0.ɵɵComponentDeclaration<SwirlDialog, "swirl-dialog", never, { "hideLabel": { "alias": "hideLabel"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "label": { "alias": "label"; "required": true; }; "primaryActionLabel": { "alias": "primaryActionLabel"; "required": false; }; "secondaryActionLabel": { "alias": "secondaryActionLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
330
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwirlDialog, "swirl-dialog", never, { "hideLabel": { "alias": "hideLabel"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "label": { "alias": "label"; "required": true; }; "primaryActionLabel": { "alias": "primaryActionLabel"; "required": false; }; "returnFocusTo": { "alias": "returnFocusTo"; "required": false; }; "secondaryActionLabel": { "alias": "secondaryActionLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
331
331
  }
332
332
  export declare interface SwirlDialog extends Components.SwirlDialog {
333
333
  dialogClose: EventEmitter<CustomEvent<void>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.442.0",
3
+ "version": "0.443.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.442.0",
25
+ "@getflip/swirl-components": "0.443.0",
26
26
  "rxjs": "7.8.2",
27
27
  "tslib": "2.4.0",
28
28
  "zone.js": "0.15.0"
@@ -826,7 +826,7 @@ export declare interface SwirlDescriptionListItem extends Components.SwirlDescri
826
826
 
827
827
 
828
828
  @ProxyCmp({
829
- inputs: ['hideLabel', 'intent', 'label', 'primaryActionLabel', 'secondaryActionLabel'],
829
+ inputs: ['hideLabel', 'intent', 'label', 'primaryActionLabel', 'returnFocusTo', 'secondaryActionLabel'],
830
830
  methods: ['open', 'close']
831
831
  })
832
832
  @Component({
@@ -834,7 +834,7 @@ export declare interface SwirlDescriptionListItem extends Components.SwirlDescri
834
834
  changeDetection: ChangeDetectionStrategy.OnPush,
835
835
  template: '<ng-content></ng-content>',
836
836
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
837
- inputs: ['hideLabel', 'intent', { name: 'label', required: true }, 'primaryActionLabel', 'secondaryActionLabel'],
837
+ inputs: ['hideLabel', 'intent', { name: 'label', required: true }, 'primaryActionLabel', 'returnFocusTo', 'secondaryActionLabel'],
838
838
  standalone: false
839
839
  })
840
840
  export class SwirlDialog {