@colijnit/product 256.1.2 → 256.1.4
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/app/components/product-addtocart/product-addtocart.component.d.ts +1 -0
- package/app/components/product-dialog/product-dialog.component.d.ts +27 -0
- package/app/components/product-dialog/product-dialog.module.d.ts +2 -0
- package/app/components/product-external-source/product-external-source.component.d.ts +16 -0
- package/app/components/product-hd/product-hd.component.d.ts +22 -0
- package/app/components/product-hd/product-hd.module.d.ts +2 -0
- package/app/components/product-page/product-page.component.d.ts +2 -0
- package/app/enum/icon.enum.d.ts +3 -0
- package/app/ione-product.component.d.ts +2 -0
- package/app/service/product-connector-adapter.service.d.ts +1 -1
- package/app/service/product-script-loader.service.d.ts +9 -0
- package/bundles/colijnit-product.umd.js +428 -61
- package/bundles/colijnit-product.umd.js.map +1 -1
- package/colijnit-product-256.1.3.tgz +0 -0
- package/colijnit-product.d.ts +6 -1
- package/colijnit-product.metadata.json +1 -1
- package/esm2015/app/components/product-addtocart/product-addtocart.component.js +4 -2
- package/esm2015/app/components/product-addtocart/product-addtocart.module.js +4 -2
- package/esm2015/app/components/product-dialog/product-dialog.component.js +86 -0
- package/esm2015/app/components/product-dialog/product-dialog.module.js +25 -0
- package/esm2015/app/components/product-external-source/product-external-source.component.js +82 -20
- package/esm2015/app/components/product-external-source/product-external-source.module.js +4 -2
- package/esm2015/app/components/product-hd/product-hd.component.js +99 -0
- package/esm2015/app/components/product-hd/product-hd.module.js +23 -0
- package/esm2015/app/components/product-page/product-page.component.js +8 -2
- package/esm2015/app/components/product-page/product-page.module.js +6 -2
- package/esm2015/app/components/product-related/product-related.component.js +25 -23
- package/esm2015/app/enum/icon.enum.js +4 -1
- package/esm2015/app/ione-product.component.js +8 -2
- package/esm2015/app/ione-product.module.js +15 -5
- package/esm2015/app/model/icon.js +4 -1
- package/esm2015/app/product-version.js +3 -3
- package/esm2015/app/service/product-connector-adapter.service.js +3 -3
- package/esm2015/app/service/product-script-loader.service.js +68 -0
- package/esm2015/assets/dictionary/text.properties.js +5 -3
- package/esm2015/colijnit-product.js +7 -2
- package/fesm2015/colijnit-product.js +448 -73
- package/fesm2015/colijnit-product.js.map +1 -1
- package/package.json +1 -1
|
Binary file
|
package/colijnit-product.d.ts
CHANGED
|
@@ -16,11 +16,15 @@ export { ProductDeliveryComponent as ɵz } from './app/components/product-delive
|
|
|
16
16
|
export { ProductDeliveryModule as ɵy } from './app/components/product-delivery/product-delivery.module';
|
|
17
17
|
export { ProductDescriptionComponent as ɵl } from './app/components/product-description/product-description.component';
|
|
18
18
|
export { ProductDescriptionModule as ɵk } from './app/components/product-description/product-description.module';
|
|
19
|
+
export { ProductDialogComponent as ɵbl } from './app/components/product-dialog/product-dialog.component';
|
|
20
|
+
export { ProductDialogModule as ɵbk } from './app/components/product-dialog/product-dialog.module';
|
|
19
21
|
export { ProductDocumentModule as ɵbf } from './app/components/product-documents/product-document.module';
|
|
20
22
|
export { ProductDocumentsComponent as ɵbg } from './app/components/product-documents/product-documents.component';
|
|
23
|
+
export { ProductHdComponent as ɵbo } from './app/components/product-hd/product-hd.component';
|
|
24
|
+
export { ProductHdModule as ɵbn } from './app/components/product-hd/product-hd.module';
|
|
21
25
|
export { ProductInfoTabsComponent as ɵbj } from './app/components/product-info-tabs/product-info-tabs.component';
|
|
22
26
|
export { ProductInfoTabsModule as ɵba } from './app/components/product-info-tabs/product-info-tabs.module';
|
|
23
|
-
export { ProductPageComponent as
|
|
27
|
+
export { ProductPageComponent as ɵbm } from './app/components/product-page/product-page.component';
|
|
24
28
|
export { ProductPageModule as ɵa } from './app/components/product-page/product-page.module';
|
|
25
29
|
export { ProductPriceComponent as ɵp } from './app/components/product-price/product-price.component';
|
|
26
30
|
export { ProductPriceModule as ɵo } from './app/components/product-price/product-price.module';
|
|
@@ -38,4 +42,5 @@ export { LocalizePipe as ɵd } from './app/pipe/localize.pipe';
|
|
|
38
42
|
export { PipeModule as ɵc } from './app/pipe/pipe.module';
|
|
39
43
|
export { DictionaryService as ɵe } from './app/service/dictionary.service';
|
|
40
44
|
export { IconCacheService as ɵh } from './app/service/icon-cache.service';
|
|
45
|
+
export { ProductScriptLoaderService as ɵbp } from './app/service/product-script-loader.service';
|
|
41
46
|
export { JsonUtilsService as ɵf } from './app/utils/json-utils.service';
|