@getflip/swirl-components-angular 0.366.0 → 0.368.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.
@@ -11,14 +11,14 @@ Building entry point '@getflip/swirl-components-angular'
11
11
  - Copying assets
12
12
  ✔ Copying assets
13
13
  - Writing package manifest
14
- ✔ Writing package manifest
15
- ✔ Built @getflip/swirl-components-angular
16
14
 
17
15
  ------------------------------------------------------------------------------
16
+ ✔ Writing package manifest
17
+ ✔ Built @getflip/swirl-components-angular
18
18
  Built Angular Package
19
19
  - from: /home/runner/work/swirl/swirl/packages/swirl-components-angular/projects/component-library
20
20
  - to: /home/runner/work/swirl/swirl/packages/swirl-components-angular/dist/component-library
21
21
  ------------------------------------------------------------------------------
22
22
 
23
- Build at: 2025-08-22T08:48:03.456Z - Time: 12417ms
23
+ Build at: 2025-08-22T10:39:52.868Z - Time: 11942ms
24
24
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # @getflip/swirl-components-angular
2
2
 
3
+ ## 0.368.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1195](https://github.com/getflip/swirl/pull/1195)
8
+ [`6f2f3af19`](https://github.com/getflip/swirl/commit/6f2f3af1911851df599e69be57fb923bcd5fe7a9)
9
+ Thanks [@Sqrrl](https://github.com/Sqrrl)! - Allow swirl-avatar-group to be
10
+ used with nested avatars (e.g. nested in a tooltip)
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+ [[`6f2f3af19`](https://github.com/getflip/swirl/commit/6f2f3af1911851df599e69be57fb923bcd5fe7a9)]:
16
+ - @getflip/swirl-components@0.368.0
17
+
18
+ ## 0.367.0
19
+
20
+ ### Minor Changes
21
+
22
+ - [#1193](https://github.com/getflip/swirl/pull/1193)
23
+ [`51c573cdb`](https://github.com/getflip/swirl/commit/51c573cdb45780619241fc81278e684b8de96484)
24
+ Thanks [@Sqrrl](https://github.com/Sqrrl)! - Add optional "label" prop to
25
+ swirl-avatar-group
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies
30
+ [[`51c573cdb`](https://github.com/getflip/swirl/commit/51c573cdb45780619241fc81278e684b8de96484)]:
31
+ - @getflip/swirl-components@0.367.0
32
+
3
33
  ## 0.366.0
4
34
 
5
35
  ### Minor Changes
@@ -372,11 +372,11 @@ let SwirlAvatarGroup = class SwirlAvatarGroup {
372
372
  this.el = r.nativeElement;
373
373
  }
374
374
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlAvatarGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
375
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlAvatarGroup, isStandalone: false, selector: "swirl-avatar-group", inputs: { badge: "badge", layout: "layout" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
375
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlAvatarGroup, isStandalone: false, selector: "swirl-avatar-group", inputs: { badge: "badge", label: "label", layout: "layout" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
376
376
  };
377
377
  SwirlAvatarGroup = __decorate([
378
378
  ProxyCmp({
379
- inputs: ['badge', 'layout']
379
+ inputs: ['badge', 'label', 'layout']
380
380
  })
381
381
  ], SwirlAvatarGroup);
382
382
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlAvatarGroup, decorators: [{
@@ -386,7 +386,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
386
386
  changeDetection: ChangeDetectionStrategy.OnPush,
387
387
  template: '<ng-content></ng-content>',
388
388
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
389
- inputs: ['badge', 'layout'],
389
+ inputs: ['badge', 'label', 'layout'],
390
390
  standalone: false
391
391
  }]
392
392
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });