@getflip/swirl-components-angular 0.56.1 → 0.57.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 +26 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +1 -1
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +4 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +2 -2
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
2
|
import { Components } from '@getflip/swirl-components';
|
|
3
3
|
import type { SwirlAppLayoutMobileView as ISwirlAppLayoutSwirlAppLayoutMobileView } from '@getflip/swirl-components';
|
|
4
|
+
import type { ComputePositionReturn as ISwirlPopoverComputePositionReturn } from '@getflip/swirl-components';
|
|
4
5
|
import type { SwirlThemeChangeEventData as ISwirlThemeProviderSwirlThemeChangeEventData } from '@getflip/swirl-components';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare interface FileManager extends Components.FileManager {
|
|
@@ -1643,7 +1644,9 @@ export declare interface SwirlPopover extends Components.SwirlPopover {
|
|
|
1643
1644
|
/**
|
|
1644
1645
|
*
|
|
1645
1646
|
*/
|
|
1646
|
-
popoverOpen: EventEmitter<CustomEvent<
|
|
1647
|
+
popoverOpen: EventEmitter<CustomEvent<{
|
|
1648
|
+
position: ISwirlPopoverComputePositionReturn;
|
|
1649
|
+
}>>;
|
|
1647
1650
|
}
|
|
1648
1651
|
export declare class SwirlPopover {
|
|
1649
1652
|
protected z: NgZone;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.57.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.58.1",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -3672,7 +3672,7 @@ export class SwirlPdfReader {
|
|
|
3672
3672
|
}
|
|
3673
3673
|
}
|
|
3674
3674
|
|
|
3675
|
-
|
|
3675
|
+
import type { ComputePositionReturn as ISwirlPopoverComputePositionReturn } from '@getflip/swirl-components';
|
|
3676
3676
|
export declare interface SwirlPopover extends Components.SwirlPopover {
|
|
3677
3677
|
/**
|
|
3678
3678
|
*
|
|
@@ -3681,7 +3681,7 @@ export declare interface SwirlPopover extends Components.SwirlPopover {
|
|
|
3681
3681
|
/**
|
|
3682
3682
|
*
|
|
3683
3683
|
*/
|
|
3684
|
-
popoverOpen: EventEmitter<CustomEvent<
|
|
3684
|
+
popoverOpen: EventEmitter<CustomEvent<{ position: ISwirlPopoverComputePositionReturn }>>;
|
|
3685
3685
|
|
|
3686
3686
|
}
|
|
3687
3687
|
|