@getflip/swirl-components-angular 0.136.0 → 0.138.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 +33 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +7 -7
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +6 -6
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +6 -6
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +2 -2
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +4 -4
|
@@ -1884,7 +1884,7 @@ export declare class SwirlImageGridItem {
|
|
|
1884
1884
|
protected el: HTMLElement;
|
|
1885
1885
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1886
1886
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlImageGridItem, never>;
|
|
1887
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlImageGridItem, "swirl-image-grid-item", never, { "alt": "alt"; "icon": "icon"; "interactive": "interactive"; "overlay": "overlay"; "src": "src"; }, {}, never, ["*"], false>;
|
|
1887
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlImageGridItem, "swirl-image-grid-item", never, { "alt": "alt"; "icon": "icon"; "interactive": "interactive"; "loading": "loading"; "overlay": "overlay"; "src": "src"; }, {}, never, ["*"], false>;
|
|
1888
1888
|
}
|
|
1889
1889
|
export declare interface SwirlInlineError extends Components.SwirlInlineError {
|
|
1890
1890
|
}
|
|
@@ -2089,7 +2089,7 @@ export declare class SwirlPopover {
|
|
|
2089
2089
|
protected el: HTMLElement;
|
|
2090
2090
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2091
2091
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlPopover, never>;
|
|
2092
|
-
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"; "returnFocusToTrigger": "returnFocusToTrigger"; "trigger": "trigger"; "triggerContainer": "triggerContainer"; "useContainerWidth": "useContainerWidth"; }, {}, never, ["*"], false>;
|
|
2092
|
+
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"; "returnFocusToTrigger": "returnFocusToTrigger"; "transparent": "transparent"; "trigger": "trigger"; "triggerContainer": "triggerContainer"; "useContainerWidth": "useContainerWidth"; }, {}, never, ["*"], false>;
|
|
2093
2093
|
}
|
|
2094
2094
|
export declare interface SwirlPopoverTrigger extends Components.SwirlPopoverTrigger {
|
|
2095
2095
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.138.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.138.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -4256,13 +4256,13 @@ export declare interface SwirlImageGridItem extends Components.SwirlImageGridIte
|
|
|
4256
4256
|
|
|
4257
4257
|
@ProxyCmp({
|
|
4258
4258
|
defineCustomElementFn: undefined,
|
|
4259
|
-
inputs: ['alt', 'icon', 'interactive', 'overlay', 'src']
|
|
4259
|
+
inputs: ['alt', 'icon', 'interactive', 'loading', 'overlay', 'src']
|
|
4260
4260
|
})
|
|
4261
4261
|
@Component({
|
|
4262
4262
|
selector: 'swirl-image-grid-item',
|
|
4263
4263
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4264
4264
|
template: '<ng-content></ng-content>',
|
|
4265
|
-
inputs: ['alt', 'icon', 'interactive', 'overlay', 'src']
|
|
4265
|
+
inputs: ['alt', 'icon', 'interactive', 'loading', 'overlay', 'src']
|
|
4266
4266
|
})
|
|
4267
4267
|
export class SwirlImageGridItem {
|
|
4268
4268
|
protected el: HTMLElement;
|
|
@@ -4658,14 +4658,14 @@ export declare interface SwirlPopover extends Components.SwirlPopover {
|
|
|
4658
4658
|
|
|
4659
4659
|
@ProxyCmp({
|
|
4660
4660
|
defineCustomElementFn: undefined,
|
|
4661
|
-
inputs: ['animation', 'disableScrollLock', 'enableFlip', 'fullscreenBottomSheet', 'label', 'maxHeight', 'offset', 'placement', 'popoverId', 'returnFocusToTrigger', 'trigger', 'triggerContainer', 'useContainerWidth'],
|
|
4661
|
+
inputs: ['animation', 'disableScrollLock', 'enableFlip', 'fullscreenBottomSheet', 'label', 'maxHeight', 'offset', 'placement', 'popoverId', 'returnFocusToTrigger', 'transparent', 'trigger', 'triggerContainer', 'useContainerWidth'],
|
|
4662
4662
|
methods: ['close', 'open']
|
|
4663
4663
|
})
|
|
4664
4664
|
@Component({
|
|
4665
4665
|
selector: 'swirl-popover',
|
|
4666
4666
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4667
4667
|
template: '<ng-content></ng-content>',
|
|
4668
|
-
inputs: ['animation', 'disableScrollLock', 'enableFlip', 'fullscreenBottomSheet', 'label', 'maxHeight', 'offset', 'placement', 'popoverId', 'returnFocusToTrigger', 'trigger', 'triggerContainer', 'useContainerWidth']
|
|
4668
|
+
inputs: ['animation', 'disableScrollLock', 'enableFlip', 'fullscreenBottomSheet', 'label', 'maxHeight', 'offset', 'placement', 'popoverId', 'returnFocusToTrigger', 'transparent', 'trigger', 'triggerContainer', 'useContainerWidth']
|
|
4669
4669
|
})
|
|
4670
4670
|
export class SwirlPopover {
|
|
4671
4671
|
protected el: HTMLElement;
|