@getflip/swirl-components-angular 0.388.0 → 0.389.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 +3 -3
- 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
|
@@ -11,8 +11,6 @@ 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
|
------------------------------------------------------------------------------
|
|
18
16
|
Built Angular Package
|
|
@@ -20,5 +18,7 @@ Built Angular Package
|
|
|
20
18
|
- to: /home/runner/work/swirl/swirl/packages/swirl-components-angular/dist/component-library
|
|
21
19
|
------------------------------------------------------------------------------
|
|
22
20
|
|
|
23
|
-
Build at: 2025-10-01T08:
|
|
21
|
+
Build at: 2025-10-01T08:14:50.176Z - Time: 13601ms
|
|
24
22
|
|
|
23
|
+
✔ Writing package manifest
|
|
24
|
+
✔ Built @getflip/swirl-components-angular
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @getflip/swirl-components-angular
|
|
2
2
|
|
|
3
|
+
## 0.389.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1259](https://github.com/getflip/swirl/pull/1259)
|
|
8
|
+
[`a1b0e6ee7`](https://github.com/getflip/swirl/commit/a1b0e6ee72fe5bcb71d3ed16a835e06cbca308ed)
|
|
9
|
+
Thanks [@AshleyBekemeier](https://github.com/AshleyBekemeier)! - Allow custom
|
|
10
|
+
Sizes for Shell Nav Items
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
[[`a1b0e6ee7`](https://github.com/getflip/swirl/commit/a1b0e6ee72fe5bcb71d3ed16a835e06cbca308ed)]:
|
|
16
|
+
- @getflip/swirl-components@0.389.0
|
|
17
|
+
|
|
3
18
|
## 0.388.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -8577,11 +8577,11 @@ let SwirlShellNavigationItem = class SwirlShellNavigationItem {
|
|
|
8577
8577
|
this.el = r.nativeElement;
|
|
8578
8578
|
}
|
|
8579
8579
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlShellNavigationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
8580
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlShellNavigationItem, isStandalone: false, selector: "swirl-shell-navigation-item", inputs: { active: "active", badgeLabel: "badgeLabel", boxed: "boxed", description: "description", filled: "filled", hideLabel: "hideLabel", href: "href", inlineLabel: "inlineLabel", inlineLabelColor: "inlineLabelColor", label: "label", markAsNew: "markAsNew", markAsNewLabel: "markAsNewLabel", target: "target", variant: "variant", withGradient: "withGradient" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
8580
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlShellNavigationItem, isStandalone: false, selector: "swirl-shell-navigation-item", inputs: { active: "active", badgeLabel: "badgeLabel", boxed: "boxed", description: "description", filled: "filled", hideLabel: "hideLabel", href: "href", inlineLabel: "inlineLabel", inlineLabelColor: "inlineLabelColor", label: "label", markAsNew: "markAsNew", markAsNewLabel: "markAsNewLabel", target: "target", useCustomIconSize: "useCustomIconSize", variant: "variant", withGradient: "withGradient" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
8581
8581
|
};
|
|
8582
8582
|
SwirlShellNavigationItem = __decorate([
|
|
8583
8583
|
ProxyCmp({
|
|
8584
|
-
inputs: ['active', 'badgeLabel', 'boxed', 'description', 'filled', 'hideLabel', 'href', 'inlineLabel', 'inlineLabelColor', 'label', 'markAsNew', 'markAsNewLabel', 'target', 'variant', 'withGradient']
|
|
8584
|
+
inputs: ['active', 'badgeLabel', 'boxed', 'description', 'filled', 'hideLabel', 'href', 'inlineLabel', 'inlineLabelColor', 'label', 'markAsNew', 'markAsNewLabel', 'target', 'useCustomIconSize', 'variant', 'withGradient']
|
|
8585
8585
|
})
|
|
8586
8586
|
], SwirlShellNavigationItem);
|
|
8587
8587
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlShellNavigationItem, decorators: [{
|
|
@@ -8591,7 +8591,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
|
|
|
8591
8591
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8592
8592
|
template: '<ng-content></ng-content>',
|
|
8593
8593
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
8594
|
-
inputs: ['active', 'badgeLabel', 'boxed', 'description', 'filled', 'hideLabel', 'href', 'inlineLabel', 'inlineLabelColor', { name: 'label', required: true }, 'markAsNew', 'markAsNewLabel', 'target', 'variant', 'withGradient'],
|
|
8594
|
+
inputs: ['active', 'badgeLabel', 'boxed', 'description', 'filled', 'hideLabel', 'href', 'inlineLabel', 'inlineLabelColor', { name: 'label', required: true }, 'markAsNew', 'markAsNewLabel', 'target', 'useCustomIconSize', 'variant', 'withGradient'],
|
|
8595
8595
|
standalone: false
|
|
8596
8596
|
}]
|
|
8597
8597
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|