@getflip/swirl-components-angular 0.430.0 → 0.431.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: 2026-01-
|
|
23
|
+
Build at: 2026-01-27T11:27:32.436Z - Time: 13845ms
|
|
24
24
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @getflip/swirl-components-angular
|
|
2
2
|
|
|
3
|
+
## 0.431.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1405](https://github.com/getflip/swirl/pull/1405)
|
|
8
|
+
[`213e0c9c1`](https://github.com/getflip/swirl/commit/213e0c9c19320f7c9e9f4ea0c59e73ad10e88e7c)
|
|
9
|
+
Thanks [@fabio-carvalho88](https://github.com/fabio-carvalho88)! - Add Icon
|
|
10
|
+
backgroundColor support
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
[[`213e0c9c1`](https://github.com/getflip/swirl/commit/213e0c9c19320f7c9e9f4ea0c59e73ad10e88e7c)]:
|
|
16
|
+
- @getflip/swirl-components@0.431.0
|
|
17
|
+
|
|
3
18
|
## 0.430.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -1536,11 +1536,11 @@ let SwirlIcon = class SwirlIcon {
|
|
|
1536
1536
|
this.el = r.nativeElement;
|
|
1537
1537
|
}
|
|
1538
1538
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SwirlIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1539
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SwirlIcon, isStandalone: false, selector: "swirl-icon", inputs: { color: "color", glyph: "glyph", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1539
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SwirlIcon, isStandalone: false, selector: "swirl-icon", inputs: { color: "color", glyph: "glyph", size: "size", wrapperColor: "wrapperColor", wrapperSize: "wrapperSize" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1540
1540
|
};
|
|
1541
1541
|
SwirlIcon = __decorate([
|
|
1542
1542
|
ProxyCmp({
|
|
1543
|
-
inputs: ['color', 'glyph', 'size']
|
|
1543
|
+
inputs: ['color', 'glyph', 'size', 'wrapperColor', 'wrapperSize']
|
|
1544
1544
|
})
|
|
1545
1545
|
], SwirlIcon);
|
|
1546
1546
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SwirlIcon, decorators: [{
|
|
@@ -1550,7 +1550,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
1550
1550
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1551
1551
|
template: '<ng-content></ng-content>',
|
|
1552
1552
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1553
|
-
inputs: ['color', { name: 'glyph', required: true }, 'size'],
|
|
1553
|
+
inputs: ['color', { name: 'glyph', required: true }, 'size', 'wrapperColor', 'wrapperSize'],
|
|
1554
1554
|
standalone: false
|
|
1555
1555
|
}]
|
|
1556
1556
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|