@colijnit/product 261.20.1 → 261.20.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/fesm2022/colijnit-product.mjs +186 -168
- package/fesm2022/colijnit-product.mjs.map +1 -1
- package/index.d.ts +7 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ import * as i2 from '@angular/common';
|
|
|
21
21
|
import { SafeHtml, DomSanitizer, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
|
|
22
22
|
import { ExternalSource } from '@colijnit/articleapi/build/model/external-source.bo';
|
|
23
23
|
import * as i3 from '@colijnit/corecomponents_v12';
|
|
24
|
+
import * as i4 from '@angular/cdk/overlay';
|
|
24
25
|
import * as i5 from '@colijnit/sharedcomponents';
|
|
25
26
|
import { ExternalSourceParameter } from '@colijnit/articleapi/build/model/external-source-parameter.bo';
|
|
26
27
|
import { CatalogDefinition } from '@colijnit/articleapi/build/model/catalog-definition.bo';
|
|
@@ -446,10 +447,12 @@ declare class ImageViewModel {
|
|
|
446
447
|
originalSource: string;
|
|
447
448
|
}
|
|
448
449
|
declare class ImageCarouselComponent implements OnDestroy {
|
|
450
|
+
iconCacheService: IconCacheService;
|
|
449
451
|
private _ione;
|
|
450
452
|
private _appEventService;
|
|
451
453
|
private _changeDetector;
|
|
452
454
|
private _domSanitizer;
|
|
455
|
+
readonly icons: typeof IconEnum;
|
|
453
456
|
carousel: ElementRef;
|
|
454
457
|
isPopupOpen: boolean;
|
|
455
458
|
selectedImage?: ImageViewModel;
|
|
@@ -471,7 +474,7 @@ declare class ImageCarouselComponent implements OnDestroy {
|
|
|
471
474
|
private _images;
|
|
472
475
|
private _subs;
|
|
473
476
|
private _resizeCanvasHeight;
|
|
474
|
-
constructor(_ione: ProductConnectorService, _appEventService: ProductEventService, _changeDetector: ChangeDetectorRef, _domSanitizer: DomSanitizer);
|
|
477
|
+
constructor(iconCacheService: IconCacheService, _ione: ProductConnectorService, _appEventService: ProductEventService, _changeDetector: ChangeDetectorRef, _domSanitizer: DomSanitizer);
|
|
475
478
|
ngOnDestroy(): void;
|
|
476
479
|
handleThumbClick(index: number): void;
|
|
477
480
|
onForceRenderImage(): void;
|
|
@@ -480,7 +483,7 @@ declare class ImageCarouselComponent implements OnDestroy {
|
|
|
480
483
|
private _filterValidImages;
|
|
481
484
|
private _loadAndRescaleImages;
|
|
482
485
|
private _resizeAndSanitizeSource;
|
|
483
|
-
private
|
|
486
|
+
private _handleMimeTypes;
|
|
484
487
|
private _scrollCarouselToIndex;
|
|
485
488
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageCarouselComponent, never>;
|
|
486
489
|
static ɵcmp: i0.ɵɵComponentDeclaration<ImageCarouselComponent, "app-image-carousel", never, { "showRefresh": { "alias": "showRefresh"; "required": false; }; "images": { "alias": "images"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -488,7 +491,7 @@ declare class ImageCarouselComponent implements OnDestroy {
|
|
|
488
491
|
|
|
489
492
|
declare class ImageCarouselModule {
|
|
490
493
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageCarouselModule, never>;
|
|
491
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ImageCarouselModule, [typeof ImageCarouselComponent], [typeof i2.CommonModule, typeof i3.LoaderModule, typeof i3.ScrollContainerModule], [typeof ImageCarouselComponent]>;
|
|
494
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ImageCarouselModule, [typeof ImageCarouselComponent], [typeof i2.CommonModule, typeof i3.LoaderModule, typeof i3.ScrollContainerModule, typeof i4.CdkConnectedOverlay, typeof i4.CdkOverlayOrigin, typeof i3.IconModule], [typeof ImageCarouselComponent]>;
|
|
492
495
|
static ɵinj: i0.ɵɵInjectorDeclaration<ImageCarouselModule>;
|
|
493
496
|
}
|
|
494
497
|
|
|
@@ -621,6 +624,7 @@ declare class ProductRelatedComponent {
|
|
|
621
624
|
handleThreeDButtonClick(article: ArticleListObject): void;
|
|
622
625
|
private _getJSONFromArticleObject;
|
|
623
626
|
private _loadImages;
|
|
627
|
+
private _handleImageData;
|
|
624
628
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProductRelatedComponent, never>;
|
|
625
629
|
static ɵcmp: i0.ɵɵComponentDeclaration<ProductRelatedComponent, "app-product-related", never, { "refType": { "alias": "refType"; "required": false; }; "label": { "alias": "label"; "required": false; }; "externalSource": { "alias": "externalSource"; "required": false; }; "isSmallModus": { "alias": "isSmallModus"; "required": false; }; "createFrozenArticle": { "alias": "createFrozenArticle"; "required": false; }; "articles": { "alias": "articles"; "required": false; }; }, {}, never, never, false, never>;
|
|
626
630
|
}
|