@getflip/swirl-components-angular 0.68.2 → 0.68.4
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 +24 -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
|
@@ -1778,7 +1778,7 @@ export declare class SwirlPopover {
|
|
|
1778
1778
|
protected el: HTMLElement;
|
|
1779
1779
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1780
1780
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlPopover, never>;
|
|
1781
|
-
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>;
|
|
1781
|
+
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"; "triggerContainer": "triggerContainer"; "useContainerWidth": "useContainerWidth"; }, {}, never, ["*"], false>;
|
|
1782
1782
|
}
|
|
1783
1783
|
export declare interface SwirlProgressIndicator extends Components.SwirlProgressIndicator {
|
|
1784
1784
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.68.
|
|
3
|
+
"version": "0.68.4",
|
|
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.69.
|
|
17
|
+
"@getflip/swirl-components": "^0.69.4",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -3973,14 +3973,14 @@ export declare interface SwirlPopover extends Components.SwirlPopover {
|
|
|
3973
3973
|
|
|
3974
3974
|
@ProxyCmp({
|
|
3975
3975
|
defineCustomElementFn: undefined,
|
|
3976
|
-
inputs: ['animation', 'disableScrollLock', 'enableFlip', 'fullscreenBottomSheet', 'label', 'maxHeight', 'offset', 'placement', 'popoverId', 'trigger', 'useContainerWidth'],
|
|
3976
|
+
inputs: ['animation', 'disableScrollLock', 'enableFlip', 'fullscreenBottomSheet', 'label', 'maxHeight', 'offset', 'placement', 'popoverId', 'trigger', 'triggerContainer', 'useContainerWidth'],
|
|
3977
3977
|
methods: ['close', 'open']
|
|
3978
3978
|
})
|
|
3979
3979
|
@Component({
|
|
3980
3980
|
selector: 'swirl-popover',
|
|
3981
3981
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3982
3982
|
template: '<ng-content></ng-content>',
|
|
3983
|
-
inputs: ['animation', 'disableScrollLock', 'enableFlip', 'fullscreenBottomSheet', 'label', 'maxHeight', 'offset', 'placement', 'popoverId', 'trigger', 'useContainerWidth']
|
|
3983
|
+
inputs: ['animation', 'disableScrollLock', 'enableFlip', 'fullscreenBottomSheet', 'label', 'maxHeight', 'offset', 'placement', 'popoverId', 'trigger', 'triggerContainer', 'useContainerWidth']
|
|
3984
3984
|
})
|
|
3985
3985
|
export class SwirlPopover {
|
|
3986
3986
|
protected el: HTMLElement;
|