@getflip/swirl-components-angular 0.155.2 → 0.156.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 +14 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +4 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2020/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
|
@@ -2320,7 +2320,7 @@ export declare class SwirlShellNavigationItem {
|
|
|
2320
2320
|
protected el: HTMLElement;
|
|
2321
2321
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2322
2322
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlShellNavigationItem, never>;
|
|
2323
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlShellNavigationItem, "swirl-shell-navigation-item", never, { "active": "active"; "badgeLabel": "badgeLabel"; "label": "label"; }, {}, never, ["*"], false>;
|
|
2323
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlShellNavigationItem, "swirl-shell-navigation-item", never, { "active": "active"; "badgeLabel": "badgeLabel"; "href": "href"; "label": "label"; "target": "target"; }, {}, never, ["*"], false>;
|
|
2324
2324
|
}
|
|
2325
2325
|
export declare interface SwirlSkeletonBox extends Components.SwirlSkeletonBox {
|
|
2326
2326
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.156.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^14.1.0",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^14.1.0",
|
|
16
16
|
"@angular/router": "^14.1.0",
|
|
17
|
-
"@getflip/swirl-components": "^0.
|
|
17
|
+
"@getflip/swirl-components": "^0.156.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -5140,13 +5140,13 @@ export declare interface SwirlShellNavigationItem extends Components.SwirlShellN
|
|
|
5140
5140
|
|
|
5141
5141
|
@ProxyCmp({
|
|
5142
5142
|
defineCustomElementFn: undefined,
|
|
5143
|
-
inputs: ['active', 'badgeLabel', 'label']
|
|
5143
|
+
inputs: ['active', 'badgeLabel', 'href', 'label', 'target']
|
|
5144
5144
|
})
|
|
5145
5145
|
@Component({
|
|
5146
5146
|
selector: 'swirl-shell-navigation-item',
|
|
5147
5147
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5148
5148
|
template: '<ng-content></ng-content>',
|
|
5149
|
-
inputs: ['active', 'badgeLabel', 'label']
|
|
5149
|
+
inputs: ['active', 'badgeLabel', 'href', 'label', 'target']
|
|
5150
5150
|
})
|
|
5151
5151
|
export class SwirlShellNavigationItem {
|
|
5152
5152
|
protected el: HTMLElement;
|