@getflip/swirl-components-angular 0.16.0 → 0.17.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 +2 -2
- 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
|
@@ -1373,7 +1373,7 @@ export declare class SwirlModal {
|
|
|
1373
1373
|
protected el: HTMLElement;
|
|
1374
1374
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1375
1375
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlModal, never>;
|
|
1376
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlModal, "swirl-modal", never, { "closeButtonLabel": "closeButtonLabel"; "label": "label"; "primaryActionLabel": "primaryActionLabel"; "secondaryActionLabel": "secondaryActionLabel"; }, {}, never, ["*"], false>;
|
|
1376
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlModal, "swirl-modal", never, { "closeButtonLabel": "closeButtonLabel"; "hideCloseButton": "hideCloseButton"; "hideLabel": "hideLabel"; "label": "label"; "padded": "padded"; "primaryActionLabel": "primaryActionLabel"; "secondaryActionLabel": "secondaryActionLabel"; }, {}, never, ["*"], false>;
|
|
1377
1377
|
}
|
|
1378
1378
|
export declare interface SwirlOptionList extends Components.SwirlOptionList {
|
|
1379
1379
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.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.18.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -3093,14 +3093,14 @@ export declare interface SwirlModal extends Components.SwirlModal {
|
|
|
3093
3093
|
|
|
3094
3094
|
@ProxyCmp({
|
|
3095
3095
|
defineCustomElementFn: undefined,
|
|
3096
|
-
inputs: ['closeButtonLabel', 'label', 'primaryActionLabel', 'secondaryActionLabel'],
|
|
3096
|
+
inputs: ['closeButtonLabel', 'hideCloseButton', 'hideLabel', 'label', 'padded', 'primaryActionLabel', 'secondaryActionLabel'],
|
|
3097
3097
|
methods: ['open', 'close']
|
|
3098
3098
|
})
|
|
3099
3099
|
@Component({
|
|
3100
3100
|
selector: 'swirl-modal',
|
|
3101
3101
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3102
3102
|
template: '<ng-content></ng-content>',
|
|
3103
|
-
inputs: ['closeButtonLabel', 'label', 'primaryActionLabel', 'secondaryActionLabel']
|
|
3103
|
+
inputs: ['closeButtonLabel', 'hideCloseButton', 'hideLabel', 'label', 'padded', 'primaryActionLabel', 'secondaryActionLabel']
|
|
3104
3104
|
})
|
|
3105
3105
|
export class SwirlModal {
|
|
3106
3106
|
protected el: HTMLElement;
|