@getflip/swirl-components-angular 0.424.0 → 0.425.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 +21 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +1 -1
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +2 -0
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +5 -1
|
@@ -2995,6 +2995,8 @@ export declare class SwirlShellLayout {
|
|
|
2995
2995
|
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlShellLayout, "swirl-shell-layout", never, { "brandedHeader": { "alias": "brandedHeader"; "required": false; }; "browserBackButtonLabel": { "alias": "browserBackButtonLabel"; "required": false; }; "browserForwardButtonLabel": { "alias": "browserForwardButtonLabel"; "required": false; }; "collapseNavigationButtonLabel": { "alias": "collapseNavigationButtonLabel"; "required": false; }; "enableSecondaryNavGridLayout": { "alias": "enableSecondaryNavGridLayout"; "required": false; }; "expandNavigationButtonLabel": { "alias": "expandNavigationButtonLabel"; "required": false; }; "gridNavLayoutToggleLabel": { "alias": "gridNavLayoutToggleLabel"; "required": false; }; "hideMobileNavigationButtonLabel": { "alias": "hideMobileNavigationButtonLabel"; "required": false; }; "listNavLayoutToggleLabel": { "alias": "listNavLayoutToggleLabel"; "required": false; }; "navigationLabel": { "alias": "navigationLabel"; "required": false; }; "secondaryNavCollapseLabel": { "alias": "secondaryNavCollapseLabel"; "required": false; }; "secondaryNavExpandLabel": { "alias": "secondaryNavExpandLabel"; "required": false; }; "secondaryNavGridLayoutVariant": { "alias": "secondaryNavGridLayoutVariant"; "required": false; }; "skipLinkLabel": { "alias": "skipLinkLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2996
2996
|
}
|
|
2997
2997
|
export declare interface SwirlShellLayout extends Components.SwirlShellLayout {
|
|
2998
|
+
historyBackClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
2999
|
+
historyForwardClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
2998
3000
|
skipLinkClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
2999
3001
|
}
|
|
3000
3002
|
export declare class SwirlShellNavigationItem {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.425.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@angular/platform-browser": "19.2.17",
|
|
23
23
|
"@angular/platform-browser-dynamic": "19.2.17",
|
|
24
24
|
"@angular/router": "19.2.17",
|
|
25
|
-
"@getflip/swirl-components": "0.
|
|
25
|
+
"@getflip/swirl-components": "0.425.0",
|
|
26
26
|
"rxjs": "7.8.2",
|
|
27
27
|
"tslib": "2.4.0",
|
|
28
28
|
"zone.js": "0.15.0"
|
|
@@ -7669,13 +7669,17 @@ export class SwirlShellLayout {
|
|
|
7669
7669
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
7670
7670
|
c.detach();
|
|
7671
7671
|
this.el = r.nativeElement;
|
|
7672
|
-
proxyOutputs(this, this.el, ['skipLinkClick']);
|
|
7672
|
+
proxyOutputs(this, this.el, ['historyBackClick', 'historyForwardClick', 'skipLinkClick']);
|
|
7673
7673
|
}
|
|
7674
7674
|
}
|
|
7675
7675
|
|
|
7676
7676
|
|
|
7677
7677
|
export declare interface SwirlShellLayout extends Components.SwirlShellLayout {
|
|
7678
7678
|
|
|
7679
|
+
historyBackClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
7680
|
+
|
|
7681
|
+
historyForwardClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
7682
|
+
|
|
7679
7683
|
skipLinkClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
7680
7684
|
}
|
|
7681
7685
|
|