@sumaris-net/ngx-components 18.25.17 → 18.25.19
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/esm2022/src/app/core/table/entities-async-table-datasource.class.mjs +4 -1
- package/esm2022/src/app/core/table/entities-table-datasource.class.mjs +4 -1
- package/esm2022/src/app/shared/image/gallery/image-gallery.component.mjs +13 -7
- package/esm2022/src/app/shared/image/gallery/testing/gallery.testing.mjs +7 -3
- package/fesm2022/sumaris-net.ngx-components.mjs +24 -8
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/table/entities-async-table-datasource.class.d.ts +1 -0
- package/src/app/core/table/entities-table-datasource.class.d.ts +1 -0
- package/src/app/shared/image/gallery/image-gallery.component.d.ts +2 -1
- package/src/app/shared/image/gallery/testing/gallery.testing.d.ts +2 -0
- package/src/assets/i18n/en-US.json +1 -0
- package/src/assets/i18n/en.json +1 -0
- package/src/assets/i18n/fr.json +1 -0
- package/src/assets/manifest.json +1 -1
package/package.json
CHANGED
|
@@ -40,7 +40,7 @@ export declare class AppImageGalleryComponent<T extends Image> implements OnInit
|
|
|
40
40
|
protected zoomActive: boolean;
|
|
41
41
|
protected zoomScale: number;
|
|
42
42
|
/** Whether the inline slideshow overlay is currently shown (only relevant when zoomPresentation === 'inline'). */
|
|
43
|
-
protected
|
|
43
|
+
protected _slideshowVisible: boolean;
|
|
44
44
|
viewChange: BehaviorSubject<ListRange>;
|
|
45
45
|
cardColor: string | PredefinedColors;
|
|
46
46
|
debug: boolean;
|
|
@@ -96,6 +96,7 @@ export declare class AppImageGalleryComponent<T extends Image> implements OnInit
|
|
|
96
96
|
get enabled(): boolean;
|
|
97
97
|
get rows(): TableElement<T>[] | ReadonlyArray<TableElement<T>>;
|
|
98
98
|
get rowCount(): number;
|
|
99
|
+
get isSlideshowVisible(): boolean;
|
|
99
100
|
zoomModal: IonModal;
|
|
100
101
|
titlePopover: IonPopover;
|
|
101
102
|
onBeforeDeleteRows: EventEmitter<PromiseEvent<boolean, {
|
|
@@ -11,12 +11,14 @@ export declare class GalleryTestPage implements OnInit, OnDestroy {
|
|
|
11
11
|
private _subscription;
|
|
12
12
|
readonly dataSource: EntitiesTableDataSource<ImageAttachment, ImageAttachmentFilter>;
|
|
13
13
|
protected slideshowMode: ImageGallerySlideshowMode;
|
|
14
|
+
protected enableSlideshowLoop: boolean;
|
|
14
15
|
protected debug: boolean;
|
|
15
16
|
constructor(dataService: ImageAttachmentService, route: ActivatedRoute);
|
|
16
17
|
ngOnInit(): void;
|
|
17
18
|
ngOnDestroy(): void;
|
|
18
19
|
save(): void;
|
|
19
20
|
toggleZoomPresentation(): void;
|
|
21
|
+
toggleSlideshowLoop(): void;
|
|
20
22
|
toggleDebug(): void;
|
|
21
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<GalleryTestPage, never>;
|
|
22
24
|
static ɵcmp: i0.ɵɵComponentDeclaration<GalleryTestPage, "app-gallery-test-page", never, {}, {}, never, never, false, never>;
|
package/src/assets/i18n/en.json
CHANGED
package/src/assets/i18n/fr.json
CHANGED
|
@@ -670,6 +670,7 @@
|
|
|
670
670
|
"BTN_CROP_RESET": "Réinitialiser le recadrage",
|
|
671
671
|
"BTN_CANCEL_EDIT": "Annuler les modifications",
|
|
672
672
|
"BTN_ENABLE_MODAL_ZOOM": "Ouvrir dans une modale ?",
|
|
673
|
+
"BTN_ENABLE_LOOP": "Boucler le diaporama",
|
|
673
674
|
"ERROR_EDIT_IMAGE": "Impossible d'enregistrer l'image modifiée",
|
|
674
675
|
"TITLE": "Titre"
|
|
675
676
|
}
|
package/src/assets/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ngx-sumaris-components",
|
|
3
3
|
"short_name": "ngx-sumaris-components",
|
|
4
4
|
"manifest_version": 1,
|
|
5
|
-
"version": "18.25.
|
|
5
|
+
"version": "18.25.19",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|