@colijnit/product 300.1.0 → 300.1.1
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
|
@@ -22,7 +22,7 @@ import * as i17 from '@colijnit/configurator';
|
|
|
22
22
|
import { ConfiguratorConnectorService, ConfiguratorEventService, ConfiguringService, ConfigurationResultObject } from '@colijnit/configurator';
|
|
23
23
|
import * as i2 from '@angular/common';
|
|
24
24
|
import { SafeHtml, DomSanitizer, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
|
|
25
|
-
import {
|
|
25
|
+
import { ExternalSourceInfo } from '@colijnit/articleapi/build/model/external-source-info.bo';
|
|
26
26
|
import * as i3 from '@colijnit/corecomponents_v12';
|
|
27
27
|
import * as i4 from '@angular/cdk/overlay';
|
|
28
28
|
import * as i5 from '@colijnit/sharedcomponents';
|
|
@@ -348,7 +348,7 @@ declare class ProductPageComponent implements OnInit, OnDestroy {
|
|
|
348
348
|
set sku(value: string);
|
|
349
349
|
get sku(): string;
|
|
350
350
|
set settings(value: any);
|
|
351
|
-
externalSource:
|
|
351
|
+
externalSource: ExternalSourceInfo;
|
|
352
352
|
createFrozenArticle: boolean;
|
|
353
353
|
isReturn: boolean;
|
|
354
354
|
enableRenderCarousel: boolean;
|
|
@@ -572,7 +572,7 @@ declare class ProductAddtocartComponent implements OnInit, OnDestroy {
|
|
|
572
572
|
readonly icon: typeof IconEnum;
|
|
573
573
|
addToCartButton: ElementRef;
|
|
574
574
|
article: ArticleFullObject;
|
|
575
|
-
externalSource:
|
|
575
|
+
externalSource: ExternalSourceInfo;
|
|
576
576
|
createFrozenArticle: boolean;
|
|
577
577
|
configurable: boolean;
|
|
578
578
|
configuring: boolean;
|
|
@@ -614,7 +614,7 @@ declare class ProductRelatedComponent {
|
|
|
614
614
|
private _settingsService;
|
|
615
615
|
refType: number;
|
|
616
616
|
label: string;
|
|
617
|
-
externalSource:
|
|
617
|
+
externalSource: ExternalSourceInfo;
|
|
618
618
|
isSmallModus: boolean;
|
|
619
619
|
createFrozenArticle: boolean;
|
|
620
620
|
set articles(value: ArticleListObject[]);
|
|
@@ -922,8 +922,8 @@ declare class ProductExternalSourceComponent implements OnInit, OnDestroy {
|
|
|
922
922
|
sku: string;
|
|
923
923
|
catalogDefinition: CatalogDefinition;
|
|
924
924
|
ownSettings: any;
|
|
925
|
-
set externalSource(value:
|
|
926
|
-
get externalSource():
|
|
925
|
+
set externalSource(value: ExternalSourceInfo);
|
|
926
|
+
get externalSource(): ExternalSourceInfo;
|
|
927
927
|
set externalCatalogStartupInfo(value: ExternalCatalogStartupInfo);
|
|
928
928
|
get externalCatalogStartupInfo(): ExternalCatalogStartupInfo;
|
|
929
929
|
options: {};
|