@getflip/swirl-components-angular 0.199.0 → 0.200.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/esm2022/lib/stencil-generated/components.mjs +4 -4
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2022/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
|
@@ -66,7 +66,7 @@ export declare class SwirlAppBar {
|
|
|
66
66
|
protected el: HTMLElement;
|
|
67
67
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
68
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlAppBar, never>;
|
|
69
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlAppBar, "swirl-app-bar", never, { "backButtonLabel": { "alias": "backButtonLabel"; "required": false; }; "closeButtonIcon": { "alias": "closeButtonIcon"; "required": false; }; "closeButtonLabel": { "alias": "closeButtonLabel"; "required": false; }; "showBackButton": { "alias": "showBackButton"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showStepperControls": { "alias": "showStepperControls"; "required": false; }; "stepDownButtonLabel": { "alias": "stepDownButtonLabel"; "required": false; }; "stepUpButtonLabel": { "alias": "stepUpButtonLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
69
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlAppBar, "swirl-app-bar", never, { "backButtonLabel": { "alias": "backButtonLabel"; "required": false; }; "closeButtonIcon": { "alias": "closeButtonIcon"; "required": false; }; "closeButtonLabel": { "alias": "closeButtonLabel"; "required": false; }; "paddingInlineEnd": { "alias": "paddingInlineEnd"; "required": false; }; "paddingInlineStart": { "alias": "paddingInlineStart"; "required": false; }; "showBackButton": { "alias": "showBackButton"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showStepperControls": { "alias": "showStepperControls"; "required": false; }; "stepDownButtonLabel": { "alias": "stepDownButtonLabel"; "required": false; }; "stepUpButtonLabel": { "alias": "stepUpButtonLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
70
70
|
}
|
|
71
71
|
export declare interface SwirlAppBar extends Components.SwirlAppBar {
|
|
72
72
|
backButtonClick: EventEmitter<CustomEvent<MouseEvent>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.200.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^16.2.12",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^16.2.12",
|
|
16
16
|
"@angular/router": "^16.2.12",
|
|
17
|
-
"@getflip/swirl-components": "^0.
|
|
17
|
+
"@getflip/swirl-components": "^0.200.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -147,14 +147,14 @@ export declare interface SwirlActionListSection extends Components.SwirlActionLi
|
|
|
147
147
|
|
|
148
148
|
|
|
149
149
|
@ProxyCmp({
|
|
150
|
-
inputs: ['backButtonLabel', 'closeButtonIcon', 'closeButtonLabel', 'showBackButton', 'showCloseButton', 'showStepperControls', 'stepDownButtonLabel', 'stepUpButtonLabel']
|
|
150
|
+
inputs: ['backButtonLabel', 'closeButtonIcon', 'closeButtonLabel', 'paddingInlineEnd', 'paddingInlineStart', 'showBackButton', 'showCloseButton', 'showStepperControls', 'stepDownButtonLabel', 'stepUpButtonLabel']
|
|
151
151
|
})
|
|
152
152
|
@Component({
|
|
153
153
|
selector: 'swirl-app-bar',
|
|
154
154
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
155
155
|
template: '<ng-content></ng-content>',
|
|
156
156
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
157
|
-
inputs: ['backButtonLabel', 'closeButtonIcon', 'closeButtonLabel', 'showBackButton', 'showCloseButton', 'showStepperControls', 'stepDownButtonLabel', 'stepUpButtonLabel'],
|
|
157
|
+
inputs: ['backButtonLabel', 'closeButtonIcon', 'closeButtonLabel', 'paddingInlineEnd', 'paddingInlineStart', 'showBackButton', 'showCloseButton', 'showStepperControls', 'stepDownButtonLabel', 'stepUpButtonLabel'],
|
|
158
158
|
})
|
|
159
159
|
export class SwirlAppBar {
|
|
160
160
|
protected el: HTMLElement;
|