@ks89/angular-modal-gallery 11.1.1 → 11.1.2
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/CHANGELOG.md +7 -0
- package/README.md +1 -0
- package/esm2022/lib/components/accessible.component.mjs +6 -7
- package/esm2022/lib/components/carousel/carousel-previews/carousel-previews.component.mjs +6 -7
- package/esm2022/lib/components/carousel/carousel.component.mjs +7 -8
- package/esm2022/lib/components/current-image/current-image.component.mjs +7 -8
- package/esm2022/lib/components/current-image/loading-spinner/loading-spinner.component.mjs +5 -6
- package/esm2022/lib/components/dots/dots.component.mjs +6 -7
- package/esm2022/lib/components/modal-gallery/attach-to-overlay.service.mjs +6 -7
- package/esm2022/lib/components/modal-gallery/modal-gallery.component.mjs +7 -8
- package/esm2022/lib/components/modal-gallery/modal-gallery.service.mjs +6 -7
- package/esm2022/lib/components/plain-gallery/plain-gallery.component.mjs +7 -8
- package/esm2022/lib/components/previews/previews.component.mjs +6 -7
- package/esm2022/lib/components/upper-buttons/upper-buttons.component.mjs +6 -7
- package/esm2022/lib/directives/a-tag-bg-image.directive.mjs +6 -7
- package/esm2022/lib/directives/click-outside.directive.mjs +5 -6
- package/esm2022/lib/directives/description.directive.mjs +6 -7
- package/esm2022/lib/directives/direction.directive.mjs +6 -7
- package/esm2022/lib/directives/fallback-image.directive.mjs +6 -7
- package/esm2022/lib/directives/keyboard-navigation.directive.mjs +5 -6
- package/esm2022/lib/directives/margin.directive.mjs +6 -7
- package/esm2022/lib/directives/max-size.directive.mjs +6 -7
- package/esm2022/lib/directives/size.directive.mjs +6 -7
- package/esm2022/lib/directives/swipe.directive.mjs +5 -6
- package/esm2022/lib/directives/wrap.directive.mjs +6 -7
- package/esm2022/lib/modal-gallery.module.mjs +6 -7
- package/esm2022/lib/services/config.service.mjs +5 -6
- package/esm2022/lib/services/id-validator.service.mjs +5 -6
- package/fesm2022/ks89-angular-modal-gallery.mjs +103 -103
- package/fesm2022/ks89-angular-modal-gallery.mjs.map +1 -1
- package/lib/components/components.d.ts +1 -1
- package/package.json +1 -1
|
@@ -12,4 +12,4 @@ import { ModalGalleryComponent } from './modal-gallery/modal-gallery.component';
|
|
|
12
12
|
/**
|
|
13
13
|
* Array of all components.
|
|
14
14
|
*/
|
|
15
|
-
export declare const COMPONENTS: (typeof
|
|
15
|
+
export declare const COMPONENTS: (typeof CarouselPreviewsComponent | typeof AccessibleComponent | typeof LoadingSpinnerComponent | typeof PlainGalleryComponent | typeof CarouselComponent | typeof UpperButtonsComponent | typeof DotsComponent | typeof PreviewsComponent | typeof CurrentImageComponent | typeof ModalGalleryComponent)[];
|