@colijnit/product 262.1.5 → 262.1.7
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/index.d.ts
CHANGED
|
@@ -446,10 +446,14 @@ declare class ImageCarouselComponent implements OnDestroy {
|
|
|
446
446
|
private _appEventService;
|
|
447
447
|
private _changeDetector;
|
|
448
448
|
private _domSanitizer;
|
|
449
|
+
iconCache: IconCacheService;
|
|
449
450
|
readonly icons: typeof IconEnum;
|
|
450
451
|
carousel: ElementRef;
|
|
452
|
+
thumbScroller?: ElementRef<HTMLElement>;
|
|
451
453
|
isPopupOpen: boolean;
|
|
452
454
|
selectedImage?: ImageViewModel;
|
|
455
|
+
canScrollThumbsLeft: boolean;
|
|
456
|
+
canScrollThumbsRight: boolean;
|
|
453
457
|
onEsc(): void;
|
|
454
458
|
showRefresh: boolean;
|
|
455
459
|
set images(value: (CoDocument | string)[]);
|
|
@@ -468,17 +472,21 @@ declare class ImageCarouselComponent implements OnDestroy {
|
|
|
468
472
|
private _images;
|
|
469
473
|
private _subs;
|
|
470
474
|
private _resizeCanvasHeight;
|
|
471
|
-
constructor(iconCacheService: IconCacheService, _ione: ProductConnectorService, _appEventService: ProductEventService, _changeDetector: ChangeDetectorRef, _domSanitizer: DomSanitizer);
|
|
475
|
+
constructor(iconCacheService: IconCacheService, _ione: ProductConnectorService, _appEventService: ProductEventService, _changeDetector: ChangeDetectorRef, _domSanitizer: DomSanitizer, iconCache: IconCacheService);
|
|
472
476
|
ngOnDestroy(): void;
|
|
473
477
|
handleThumbClick(index: number): void;
|
|
474
478
|
onForceRenderImage(): void;
|
|
475
479
|
handleShowImage(imageViewModel: ImageViewModel): void;
|
|
476
480
|
closePopup(): void;
|
|
481
|
+
scrollThumbs(direction: -1 | 1): void;
|
|
482
|
+
private scrollActiveThumbIntoView;
|
|
483
|
+
updateThumbScrollState(): void;
|
|
477
484
|
private _filterValidImages;
|
|
478
485
|
private _loadAndRescaleImages;
|
|
479
486
|
private _resizeAndSanitizeSource;
|
|
480
487
|
private _handleMimeTypes;
|
|
481
488
|
private _scrollCarouselToIndex;
|
|
489
|
+
protected readonly icon: typeof IconEnum;
|
|
482
490
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageCarouselComponent, never>;
|
|
483
491
|
static ɵcmp: i0.ɵɵComponentDeclaration<ImageCarouselComponent, "app-image-carousel", never, { "showRefresh": { "alias": "showRefresh"; "required": false; }; "images": { "alias": "images"; "required": false; }; }, {}, never, never, false, never>;
|
|
484
492
|
}
|
|
@@ -911,6 +919,7 @@ declare class ProductExternalSourceComponent implements OnInit, OnDestroy {
|
|
|
911
919
|
private _appEventService;
|
|
912
920
|
sku: string;
|
|
913
921
|
catalogDefinition: CatalogDefinition;
|
|
922
|
+
ownSettings: any;
|
|
914
923
|
set externalSource(value: ExternalSource);
|
|
915
924
|
get externalSource(): ExternalSource;
|
|
916
925
|
set externalCatalogStartupInfo(value: ExternalCatalogStartupInfo);
|
|
@@ -946,7 +955,7 @@ declare class ProductExternalSourceComponent implements OnInit, OnDestroy {
|
|
|
946
955
|
private switchToConfigurator;
|
|
947
956
|
private switchToSource;
|
|
948
957
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProductExternalSourceComponent, never>;
|
|
949
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProductExternalSourceComponent, "co-product-external-source", never, { "sku": { "alias": "sku"; "required": false; }; "catalogDefinition": { "alias": "catalogDefinition"; "required": false; }; "externalSource": { "alias": "externalSource"; "required": false; }; "externalCatalogStartupInfo": { "alias": "externalCatalogStartupInfo"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "addToCart": "addToCart"; "addToQuote": "addToQuote"; "alternativeClick": "alternativeClick"; "configuratorFinished": "configuratorFinished"; }, never, never, false, never>;
|
|
958
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProductExternalSourceComponent, "co-product-external-source", never, { "sku": { "alias": "sku"; "required": false; }; "catalogDefinition": { "alias": "catalogDefinition"; "required": false; }; "ownSettings": { "alias": "ownSettings"; "required": false; }; "externalSource": { "alias": "externalSource"; "required": false; }; "externalCatalogStartupInfo": { "alias": "externalCatalogStartupInfo"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "addToCart": "addToCart"; "addToQuote": "addToQuote"; "alternativeClick": "alternativeClick"; "configuratorFinished": "configuratorFinished"; }, never, never, false, never>;
|
|
950
959
|
}
|
|
951
960
|
|
|
952
961
|
declare class ProductExternalSourceModule {
|
package/package.json
CHANGED
|
Binary file
|