@getflip/swirl-components-angular 0.160.0 → 0.162.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 +28 -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
|
@@ -3199,7 +3199,7 @@ export declare class SwirlTreeNavigationItem {
|
|
|
3199
3199
|
protected el: HTMLElement;
|
|
3200
3200
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
3201
3201
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlTreeNavigationItem, never>;
|
|
3202
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTreeNavigationItem, "swirl-tree-navigation-item", never, { "active": "active"; "icon": "icon"; "label": "label"; }, {}, never, ["*"], false>;
|
|
3202
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTreeNavigationItem, "swirl-tree-navigation-item", never, { "active": "active"; "href": "href"; "icon": "icon"; "label": "label"; "target": "target"; }, {}, never, ["*"], false>;
|
|
3203
3203
|
}
|
|
3204
3204
|
export declare interface SwirlVideoThumbnail extends Components.SwirlVideoThumbnail {
|
|
3205
3205
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.162.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.162.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -7141,13 +7141,13 @@ export declare interface SwirlTreeNavigationItem extends Components.SwirlTreeNav
|
|
|
7141
7141
|
|
|
7142
7142
|
@ProxyCmp({
|
|
7143
7143
|
defineCustomElementFn: undefined,
|
|
7144
|
-
inputs: ['active', 'icon', 'label']
|
|
7144
|
+
inputs: ['active', 'href', 'icon', 'label', 'target']
|
|
7145
7145
|
})
|
|
7146
7146
|
@Component({
|
|
7147
7147
|
selector: 'swirl-tree-navigation-item',
|
|
7148
7148
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7149
7149
|
template: '<ng-content></ng-content>',
|
|
7150
|
-
inputs: ['active', 'icon', 'label']
|
|
7150
|
+
inputs: ['active', 'href', 'icon', 'label', 'target']
|
|
7151
7151
|
})
|
|
7152
7152
|
export class SwirlTreeNavigationItem {
|
|
7153
7153
|
protected el: HTMLElement;
|