@getflip/swirl-components-angular 0.167.3 → 0.168.1
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 +26 -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
|
@@ -124,7 +124,7 @@ export declare class SwirlAppLayout {
|
|
|
124
124
|
protected el: HTMLElement;
|
|
125
125
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
126
126
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlAppLayout, never>;
|
|
127
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlAppLayout, "swirl-app-layout", never, { "appName": "appName"; "backToNavigationViewButtonLabel": "backToNavigationViewButtonLabel"; "ctaIcon": "ctaIcon"; "ctaLabel": "ctaLabel"; "hideAppBar": "hideAppBar"; "navigationBackButtonLabel": "navigationBackButtonLabel"; "navigationLabel": "navigationLabel"; "showNavigationBackButton": "showNavigationBackButton"; "sidebarCloseButtonLabel": "sidebarCloseButtonLabel"; "sidebarHeading": "sidebarHeading"; "transitionStyle": "transitionStyle"; }, {}, never, ["*"], false>;
|
|
127
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlAppLayout, "swirl-app-layout", never, { "appName": "appName"; "backToNavigationViewButtonLabel": "backToNavigationViewButtonLabel"; "ctaIcon": "ctaIcon"; "ctaLabel": "ctaLabel"; "hasNavigation": "hasNavigation"; "hideAppBar": "hideAppBar"; "navigationBackButtonLabel": "navigationBackButtonLabel"; "navigationLabel": "navigationLabel"; "showNavigationBackButton": "showNavigationBackButton"; "sidebarCloseButtonLabel": "sidebarCloseButtonLabel"; "sidebarHeading": "sidebarHeading"; "transitionStyle": "transitionStyle"; }, {}, never, ["*"], false>;
|
|
128
128
|
}
|
|
129
129
|
export declare interface SwirlAutocomplete extends Components.SwirlAutocomplete {
|
|
130
130
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.168.1",
|
|
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.168.1",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -227,14 +227,14 @@ export declare interface SwirlAppLayout extends Components.SwirlAppLayout {
|
|
|
227
227
|
|
|
228
228
|
@ProxyCmp({
|
|
229
229
|
defineCustomElementFn: undefined,
|
|
230
|
-
inputs: ['appName', 'backToNavigationViewButtonLabel', 'ctaIcon', 'ctaLabel', 'hideAppBar', 'navigationBackButtonLabel', 'navigationLabel', 'showNavigationBackButton', 'sidebarCloseButtonLabel', 'sidebarHeading', 'transitionStyle'],
|
|
230
|
+
inputs: ['appName', 'backToNavigationViewButtonLabel', 'ctaIcon', 'ctaLabel', 'hasNavigation', 'hideAppBar', 'navigationBackButtonLabel', 'navigationLabel', 'showNavigationBackButton', 'sidebarCloseButtonLabel', 'sidebarHeading', 'transitionStyle'],
|
|
231
231
|
methods: ['showSidebar', 'hideSidebar', 'toggleSidebar', 'changeMobileView']
|
|
232
232
|
})
|
|
233
233
|
@Component({
|
|
234
234
|
selector: 'swirl-app-layout',
|
|
235
235
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
236
236
|
template: '<ng-content></ng-content>',
|
|
237
|
-
inputs: ['appName', 'backToNavigationViewButtonLabel', 'ctaIcon', 'ctaLabel', 'hideAppBar', 'navigationBackButtonLabel', 'navigationLabel', 'showNavigationBackButton', 'sidebarCloseButtonLabel', 'sidebarHeading', 'transitionStyle']
|
|
237
|
+
inputs: ['appName', 'backToNavigationViewButtonLabel', 'ctaIcon', 'ctaLabel', 'hasNavigation', 'hideAppBar', 'navigationBackButtonLabel', 'navigationLabel', 'showNavigationBackButton', 'sidebarCloseButtonLabel', 'sidebarHeading', 'transitionStyle']
|
|
238
238
|
})
|
|
239
239
|
export class SwirlAppLayout {
|
|
240
240
|
protected el: HTMLElement;
|