@getflip/swirl-components-angular 0.244.0 → 0.246.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 +30 -0
- package/dist/component-library/esm2022/lib/stencil-generated/components.mjs +4 -4
- 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
|
@@ -2475,7 +2475,7 @@ export declare class SwirlShellNavigationItem {
|
|
|
2475
2475
|
protected el: HTMLElement;
|
|
2476
2476
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2477
2477
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlShellNavigationItem, never>;
|
|
2478
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlShellNavigationItem, "swirl-shell-navigation-item", never, { "active": { "alias": "active"; "required": false; }; "badgeLabel": { "alias": "badgeLabel"; "required": false; }; "boxed": { "alias": "boxed"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "href": { "alias": "href"; "required": false; }; "label": { "alias": "label"; "required": false; }; "target": { "alias": "target"; "required": false; }; "tiled": { "alias": "tiled"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2478
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlShellNavigationItem, "swirl-shell-navigation-item", never, { "active": { "alias": "active"; "required": false; }; "badgeLabel": { "alias": "badgeLabel"; "required": false; }; "boxed": { "alias": "boxed"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "href": { "alias": "href"; "required": false; }; "inlineLabel": { "alias": "inlineLabel"; "required": false; }; "inlineLabelColor": { "alias": "inlineLabelColor"; "required": false; }; "label": { "alias": "label"; "required": false; }; "target": { "alias": "target"; "required": false; }; "tiled": { "alias": "tiled"; "required": false; }; "withGradient": { "alias": "withGradient"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2479
2479
|
}
|
|
2480
2480
|
export declare interface SwirlShellNavigationItem extends Components.SwirlShellNavigationItem {
|
|
2481
2481
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.246.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^16.2.12",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^16.2.12",
|
|
16
16
|
"@angular/router": "^16.2.12",
|
|
17
|
-
"@getflip/swirl-components": "^0.
|
|
17
|
+
"@getflip/swirl-components": "^0.246.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -6075,14 +6075,14 @@ export declare interface SwirlShellLayout extends Components.SwirlShellLayout {
|
|
|
6075
6075
|
|
|
6076
6076
|
|
|
6077
6077
|
@ProxyCmp({
|
|
6078
|
-
inputs: ['active', 'badgeLabel', 'boxed', 'hideLabel', 'href', 'label', 'target', 'tiled']
|
|
6078
|
+
inputs: ['active', 'badgeLabel', 'boxed', 'hideLabel', 'href', 'inlineLabel', 'inlineLabelColor', 'label', 'target', 'tiled', 'withGradient']
|
|
6079
6079
|
})
|
|
6080
6080
|
@Component({
|
|
6081
6081
|
selector: 'swirl-shell-navigation-item',
|
|
6082
6082
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6083
6083
|
template: '<ng-content></ng-content>',
|
|
6084
6084
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
6085
|
-
inputs: ['active', 'badgeLabel', 'boxed', 'hideLabel', 'href', 'label', 'target', 'tiled'],
|
|
6085
|
+
inputs: ['active', 'badgeLabel', 'boxed', 'hideLabel', 'href', 'inlineLabel', 'inlineLabelColor', 'label', 'target', 'tiled', 'withGradient'],
|
|
6086
6086
|
})
|
|
6087
6087
|
export class SwirlShellNavigationItem {
|
|
6088
6088
|
protected el: HTMLElement;
|