@getflip/swirl-components-angular 0.52.0 → 0.53.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 +2 -2
- package/CHANGELOG.md +35 -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
|
@@ -1650,7 +1650,7 @@ export declare class SwirlPopover {
|
|
|
1650
1650
|
protected el: HTMLElement;
|
|
1651
1651
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1652
1652
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlPopover, never>;
|
|
1653
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlPopover, "swirl-popover", never, { "animation": "animation"; "disableScrollLock": "disableScrollLock"; "enableFlip": "enableFlip"; "label": "label"; "maxHeight": "maxHeight"; "offset": "offset"; "placement": "placement"; "popoverId": "popoverId"; "trigger": "trigger"; "useContainerWidth": "useContainerWidth"; }, {}, never, ["*"], false>;
|
|
1653
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlPopover, "swirl-popover", never, { "animation": "animation"; "disableScrollLock": "disableScrollLock"; "enableFlip": "enableFlip"; "fullscreenBottomSheet": "fullscreenBottomSheet"; "label": "label"; "maxHeight": "maxHeight"; "offset": "offset"; "placement": "placement"; "popoverId": "popoverId"; "trigger": "trigger"; "useContainerWidth": "useContainerWidth"; }, {}, never, ["*"], false>;
|
|
1654
1654
|
}
|
|
1655
1655
|
export declare interface SwirlProgressIndicator extends Components.SwirlProgressIndicator {
|
|
1656
1656
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.53.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.54.1",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -3687,14 +3687,14 @@ export declare interface SwirlPopover extends Components.SwirlPopover {
|
|
|
3687
3687
|
|
|
3688
3688
|
@ProxyCmp({
|
|
3689
3689
|
defineCustomElementFn: undefined,
|
|
3690
|
-
inputs: ['animation', 'disableScrollLock', 'enableFlip', 'label', 'maxHeight', 'offset', 'placement', 'popoverId', 'trigger', 'useContainerWidth'],
|
|
3690
|
+
inputs: ['animation', 'disableScrollLock', 'enableFlip', 'fullscreenBottomSheet', 'label', 'maxHeight', 'offset', 'placement', 'popoverId', 'trigger', 'useContainerWidth'],
|
|
3691
3691
|
methods: ['close', 'open']
|
|
3692
3692
|
})
|
|
3693
3693
|
@Component({
|
|
3694
3694
|
selector: 'swirl-popover',
|
|
3695
3695
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3696
3696
|
template: '<ng-content></ng-content>',
|
|
3697
|
-
inputs: ['animation', 'disableScrollLock', 'enableFlip', 'label', 'maxHeight', 'offset', 'placement', 'popoverId', 'trigger', 'useContainerWidth']
|
|
3697
|
+
inputs: ['animation', 'disableScrollLock', 'enableFlip', 'fullscreenBottomSheet', 'label', 'maxHeight', 'offset', 'placement', 'popoverId', 'trigger', 'useContainerWidth']
|
|
3698
3698
|
})
|
|
3699
3699
|
export class SwirlPopover {
|
|
3700
3700
|
protected el: HTMLElement;
|