@getflip/swirl-components-angular 0.63.6 → 0.64.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 +5 -5
- package/CHANGELOG.md +18 -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
|
@@ -260,7 +260,7 @@ export declare class SwirlConsoleLayout {
|
|
|
260
260
|
protected el: HTMLElement;
|
|
261
261
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
262
262
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlConsoleLayout, never>;
|
|
263
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlConsoleLayout, "swirl-console-layout", never, { "appName": "appName"; "backButonLabel": "backButonLabel"; "heading": "heading"; "helpButonLabel": "helpButonLabel"; "hideNavigationButtonLabel": "hideNavigationButtonLabel"; "logoText": "logoText"; "navigationLabel": "navigationLabel"; "showBackButton": "showBackButton"; "showHelpButton": "showHelpButton"; "showNavigationButtonLabel": "showNavigationButtonLabel"; "subheading": "subheading"; }, {}, never, ["*"], false>;
|
|
263
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlConsoleLayout, "swirl-console-layout", never, { "appName": "appName"; "backButonLabel": "backButonLabel"; "heading": "heading"; "helpButonLabel": "helpButonLabel"; "hideNavigationButtonLabel": "hideNavigationButtonLabel"; "logoText": "logoText"; "maxContentWidth": "maxContentWidth"; "navigationLabel": "navigationLabel"; "showBackButton": "showBackButton"; "showHelpButton": "showHelpButton"; "showNavigationButtonLabel": "showNavigationButtonLabel"; "subheading": "subheading"; }, {}, never, ["*"], false>;
|
|
264
264
|
}
|
|
265
265
|
export declare interface SwirlDateInput extends Components.SwirlDateInput {
|
|
266
266
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.64.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.65.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -531,14 +531,14 @@ export declare interface SwirlConsoleLayout extends Components.SwirlConsoleLayou
|
|
|
531
531
|
|
|
532
532
|
@ProxyCmp({
|
|
533
533
|
defineCustomElementFn: undefined,
|
|
534
|
-
inputs: ['appName', 'backButonLabel', 'heading', 'helpButonLabel', 'hideNavigationButtonLabel', 'logoText', 'navigationLabel', 'showBackButton', 'showHelpButton', 'showNavigationButtonLabel', 'subheading'],
|
|
534
|
+
inputs: ['appName', 'backButonLabel', 'heading', 'helpButonLabel', 'hideNavigationButtonLabel', 'logoText', 'maxContentWidth', 'navigationLabel', 'showBackButton', 'showHelpButton', 'showNavigationButtonLabel', 'subheading'],
|
|
535
535
|
methods: ['toggleSidebar', 'showSidebar', 'hideSidebar']
|
|
536
536
|
})
|
|
537
537
|
@Component({
|
|
538
538
|
selector: 'swirl-console-layout',
|
|
539
539
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
540
540
|
template: '<ng-content></ng-content>',
|
|
541
|
-
inputs: ['appName', 'backButonLabel', 'heading', 'helpButonLabel', 'hideNavigationButtonLabel', 'logoText', 'navigationLabel', 'showBackButton', 'showHelpButton', 'showNavigationButtonLabel', 'subheading']
|
|
541
|
+
inputs: ['appName', 'backButonLabel', 'heading', 'helpButonLabel', 'hideNavigationButtonLabel', 'logoText', 'maxContentWidth', 'navigationLabel', 'showBackButton', 'showHelpButton', 'showNavigationButtonLabel', 'subheading']
|
|
542
542
|
})
|
|
543
543
|
export class SwirlConsoleLayout {
|
|
544
544
|
protected el: HTMLElement;
|