@getflip/swirl-components-angular 0.462.0 → 0.463.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-03-
|
|
23
|
+
Build at: 2026-03-20T17:12:03.791Z - Time: 13974ms
|
|
24
24
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @getflip/swirl-components-angular
|
|
2
2
|
|
|
3
|
+
## 0.463.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1545](https://github.com/getflip/swirl/pull/1545)
|
|
8
|
+
[`b528acd56`](https://github.com/getflip/swirl/commit/b528acd5617c25368dbc8df5a93817c6608e4137)
|
|
9
|
+
Thanks [@matvlaovi-flip](https://github.com/matvlaovi-flip)! - Implement
|
|
10
|
+
icon-only swirl-toggle-button
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
[[`b528acd56`](https://github.com/getflip/swirl/commit/b528acd5617c25368dbc8df5a93817c6608e4137)]:
|
|
16
|
+
- @getflip/swirl-components@0.463.0
|
|
17
|
+
|
|
3
18
|
## 0.462.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -12703,11 +12703,11 @@ let SwirlToggleButton = class SwirlToggleButton {
|
|
|
12703
12703
|
this.el = r.nativeElement;
|
|
12704
12704
|
}
|
|
12705
12705
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SwirlToggleButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
12706
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: SwirlToggleButton, isStandalone: false, selector: "swirl-toggle-button", inputs: { icon: "icon", identifier: "identifier", isPressed: "isPressed", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
12706
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.19", type: SwirlToggleButton, isStandalone: false, selector: "swirl-toggle-button", inputs: { hideLabel: "hideLabel", icon: "icon", identifier: "identifier", isPressed: "isPressed", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
12707
12707
|
};
|
|
12708
12708
|
SwirlToggleButton = __decorate([
|
|
12709
12709
|
ProxyCmp({
|
|
12710
|
-
inputs: ['icon', 'identifier', 'isPressed', 'label']
|
|
12710
|
+
inputs: ['hideLabel', 'icon', 'identifier', 'isPressed', 'label']
|
|
12711
12711
|
})
|
|
12712
12712
|
], SwirlToggleButton);
|
|
12713
12713
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImport: i0, type: SwirlToggleButton, decorators: [{
|
|
@@ -12717,7 +12717,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.19", ngImpo
|
|
|
12717
12717
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
12718
12718
|
template: '<ng-content></ng-content>',
|
|
12719
12719
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
12720
|
-
inputs: ['icon', { name: 'identifier', required: true }, 'isPressed', { name: 'label', required: true }],
|
|
12720
|
+
inputs: ['hideLabel', 'icon', { name: 'identifier', required: true }, 'isPressed', { name: 'label', required: true }],
|
|
12721
12721
|
standalone: false
|
|
12722
12722
|
}]
|
|
12723
12723
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|