@getflip/swirl-components-angular 0.144.0 → 0.145.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 +14 -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
|
@@ -1920,7 +1920,7 @@ export declare class SwirlLightbox {
|
|
|
1920
1920
|
protected el: HTMLElement;
|
|
1921
1921
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1922
1922
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlLightbox, never>;
|
|
1923
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlLightbox, "swirl-lightbox", never, { "closeButtonLabel": "closeButtonLabel"; "downloadButtonLabel": "downloadButtonLabel"; "hideMenu": "hideMenu"; "label": "label"; "menuLabel": "menuLabel"; "menuTriggerLabel": "menuTriggerLabel"; "nextSlideButtonLabel": "nextSlideButtonLabel"; "previousSlideButtonLabel": "previousSlideButtonLabel"; }, {}, never, ["*"], false>;
|
|
1923
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlLightbox, "swirl-lightbox", never, { "closeButtonLabel": "closeButtonLabel"; "downloadButtonEnabled": "downloadButtonEnabled"; "downloadButtonLabel": "downloadButtonLabel"; "hideMenu": "hideMenu"; "label": "label"; "menuLabel": "menuLabel"; "menuTriggerLabel": "menuTriggerLabel"; "nextSlideButtonLabel": "nextSlideButtonLabel"; "previousSlideButtonLabel": "previousSlideButtonLabel"; }, {}, never, ["*"], false>;
|
|
1924
1924
|
}
|
|
1925
1925
|
export declare interface SwirlLink extends Components.SwirlLink {
|
|
1926
1926
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.145.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.145.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -4340,14 +4340,14 @@ export declare interface SwirlLightbox extends Components.SwirlLightbox {}
|
|
|
4340
4340
|
|
|
4341
4341
|
@ProxyCmp({
|
|
4342
4342
|
defineCustomElementFn: undefined,
|
|
4343
|
-
inputs: ['closeButtonLabel', 'downloadButtonLabel', 'hideMenu', 'label', 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel'],
|
|
4343
|
+
inputs: ['closeButtonLabel', 'downloadButtonEnabled', 'downloadButtonLabel', 'hideMenu', 'label', 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel'],
|
|
4344
4344
|
methods: ['open', 'close', 'activateSlide']
|
|
4345
4345
|
})
|
|
4346
4346
|
@Component({
|
|
4347
4347
|
selector: 'swirl-lightbox',
|
|
4348
4348
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4349
4349
|
template: '<ng-content></ng-content>',
|
|
4350
|
-
inputs: ['closeButtonLabel', 'downloadButtonLabel', 'hideMenu', 'label', 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel']
|
|
4350
|
+
inputs: ['closeButtonLabel', 'downloadButtonEnabled', 'downloadButtonLabel', 'hideMenu', 'label', 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel']
|
|
4351
4351
|
})
|
|
4352
4352
|
export class SwirlLightbox {
|
|
4353
4353
|
protected el: HTMLElement;
|