@getflip/swirl-components-angular 0.366.0 → 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.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +15 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +1 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -20,5 +20,5 @@ Built Angular Package
|
|
|
20
20
|
- to: /home/runner/work/swirl/swirl/packages/swirl-components-angular/dist/component-library
|
|
21
21
|
------------------------------------------------------------------------------
|
|
22
22
|
|
|
23
|
-
Build at: 2025-08-
|
|
23
|
+
Build at: 2025-08-22T09:13:59.658Z - Time: 12849ms
|
|
24
24
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @getflip/swirl-components-angular
|
|
2
2
|
|
|
3
|
+
## 0.367.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1193](https://github.com/getflip/swirl/pull/1193)
|
|
8
|
+
[`51c573cdb`](https://github.com/getflip/swirl/commit/51c573cdb45780619241fc81278e684b8de96484)
|
|
9
|
+
Thanks [@Sqrrl](https://github.com/Sqrrl)! - Add optional "label" prop to
|
|
10
|
+
swirl-avatar-group
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
[[`51c573cdb`](https://github.com/getflip/swirl/commit/51c573cdb45780619241fc81278e684b8de96484)]:
|
|
16
|
+
- @getflip/swirl-components@0.367.0
|
|
17
|
+
|
|
3
18
|
## 0.366.0
|
|
4
19
|
|
|
5
20
|
### 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 }] });
|