@getflip/swirl-components-angular 0.436.1 → 0.437.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 +28 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2022/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
|
@@ -2736,7 +2736,7 @@ export declare class SwirlLightbox {
|
|
|
2736
2736
|
protected el: HTMLSwirlLightboxElement;
|
|
2737
2737
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2738
2738
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlLightbox, never>;
|
|
2739
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlLightbox, "swirl-lightbox", never, { "closeButtonLabel": { "alias": "closeButtonLabel"; "required": false; }; "downloadButtonEnabled": { "alias": "downloadButtonEnabled"; "required": false; }; "downloadButtonLabel": { "alias": "downloadButtonLabel"; "required": false; }; "
|
|
2739
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlLightbox, "swirl-lightbox", never, { "closeButtonLabel": { "alias": "closeButtonLabel"; "required": false; }; "downloadButtonEnabled": { "alias": "downloadButtonEnabled"; "required": false; }; "downloadButtonLabel": { "alias": "downloadButtonLabel"; "required": false; }; "label": { "alias": "label"; "required": true; }; "nextSlideButtonLabel": { "alias": "nextSlideButtonLabel"; "required": false; }; "previousSlideButtonLabel": { "alias": "previousSlideButtonLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2740
2740
|
}
|
|
2741
2741
|
export declare interface SwirlLightbox extends Components.SwirlLightbox {
|
|
2742
2742
|
activeSlideChange: EventEmitter<CustomEvent<number>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.437.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@angular/platform-browser": "19.2.18",
|
|
23
23
|
"@angular/platform-browser-dynamic": "19.2.18",
|
|
24
24
|
"@angular/router": "19.2.18",
|
|
25
|
-
"@getflip/swirl-components": "0.
|
|
25
|
+
"@getflip/swirl-components": "0.437.0",
|
|
26
26
|
"rxjs": "7.8.2",
|
|
27
27
|
"tslib": "2.4.0",
|
|
28
28
|
"zone.js": "0.15.0"
|
|
@@ -7001,7 +7001,7 @@ export declare interface SwirlInlineStatus extends Components.SwirlInlineStatus
|
|
|
7001
7001
|
|
|
7002
7002
|
|
|
7003
7003
|
@ProxyCmp({
|
|
7004
|
-
inputs: ['closeButtonLabel', 'downloadButtonEnabled', 'downloadButtonLabel', '
|
|
7004
|
+
inputs: ['closeButtonLabel', 'downloadButtonEnabled', 'downloadButtonLabel', 'label', 'nextSlideButtonLabel', 'previousSlideButtonLabel'],
|
|
7005
7005
|
methods: ['open', 'close', 'activateSlide']
|
|
7006
7006
|
})
|
|
7007
7007
|
@Component({
|
|
@@ -7009,7 +7009,7 @@ export declare interface SwirlInlineStatus extends Components.SwirlInlineStatus
|
|
|
7009
7009
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7010
7010
|
template: '<ng-content></ng-content>',
|
|
7011
7011
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
7012
|
-
inputs: ['closeButtonLabel', 'downloadButtonEnabled', 'downloadButtonLabel',
|
|
7012
|
+
inputs: ['closeButtonLabel', 'downloadButtonEnabled', 'downloadButtonLabel', { name: 'label', required: true }, 'nextSlideButtonLabel', 'previousSlideButtonLabel'],
|
|
7013
7013
|
standalone: false
|
|
7014
7014
|
})
|
|
7015
7015
|
export class SwirlLightbox {
|