@getflip/swirl-components-angular 0.365.1 → 0.367.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.
@@ -128,7 +128,7 @@ export declare class SwirlAvatarGroup {
128
128
  protected el: HTMLSwirlAvatarGroupElement;
129
129
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
130
130
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlAvatarGroup, never>;
131
- static ɵcmp: i0.ɵɵComponentDeclaration<SwirlAvatarGroup, "swirl-avatar-group", never, { "badge": { "alias": "badge"; "required": false; }; }, {}, never, ["*"], false, never>;
131
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwirlAvatarGroup, "swirl-avatar-group", never, { "badge": { "alias": "badge"; "required": false; }; "label": { "alias": "label"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; }, {}, never, ["*"], false, never>;
132
132
  }
133
133
  export declare interface SwirlAvatarGroup extends Components.SwirlAvatarGroup {
134
134
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.365.1",
3
+ "version": "0.367.0",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "build": "ng build"
@@ -22,7 +22,7 @@
22
22
  "@angular/platform-browser": "19.2.3",
23
23
  "@angular/platform-browser-dynamic": "19.2.3",
24
24
  "@angular/router": "19.2.3",
25
- "@getflip/swirl-components": "^0.365.1",
25
+ "@getflip/swirl-components": "^0.367.0",
26
26
  "rxjs": "~7.8.0",
27
27
  "tslib": "^2.3.0",
28
28
  "zone.js": "0.15.0"
@@ -306,14 +306,14 @@ export declare interface SwirlAvatar extends Components.SwirlAvatar {
306
306
 
307
307
 
308
308
  @ProxyCmp({
309
- inputs: ['badge']
309
+ inputs: ['badge', 'label', 'layout']
310
310
  })
311
311
  @Component({
312
312
  selector: 'swirl-avatar-group',
313
313
  changeDetection: ChangeDetectionStrategy.OnPush,
314
314
  template: '<ng-content></ng-content>',
315
315
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
316
- inputs: ['badge'],
316
+ inputs: ['badge', 'label', 'layout'],
317
317
  standalone: false
318
318
  })
319
319
  export class SwirlAvatarGroup {