@colijnit/product 257.1.7 → 258.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/app/components/product-page/product-page.component.d.ts +1 -0
- package/app/components/product-selector-type/product-selector-type.component.d.ts +1 -0
- package/app/components/render-carousel/render-carousel.component.d.ts +40 -0
- package/app/components/render-carousel/render-carousel.module.d.ts +2 -0
- package/app/enum/icon.enum.d.ts +2 -0
- package/app/ione-product.component.d.ts +5 -11
- package/app/model/productSettings.d.ts +2 -14
- package/app/service/product-event.service.d.ts +2 -0
- package/bundles/colijnit-product.umd.js +552 -414
- package/bundles/colijnit-product.umd.js.map +1 -1
- package/colijnit-product.d.ts +6 -4
- package/colijnit-product.metadata.json +1 -1
- package/esm2015/app/components/product-page/product-page.component.js +8 -3
- package/esm2015/app/components/product-page/product-page.module.js +4 -2
- package/esm2015/app/components/product-selector-type/product-selector-type.component.js +10 -2
- package/esm2015/app/components/render-carousel/render-carousel.component.js +127 -0
- package/esm2015/app/components/render-carousel/render-carousel.module.js +25 -0
- package/esm2015/app/enum/icon.enum.js +3 -1
- package/esm2015/app/ione-product.component.js +26 -27
- package/esm2015/app/ione-product.module.js +3 -13
- package/esm2015/app/model/icon.js +3 -1
- package/esm2015/app/model/productSettings.js +4 -6
- package/esm2015/app/product-version.js +3 -3
- package/esm2015/app/service/product-event.service.js +3 -1
- package/esm2015/colijnit-product.js +7 -5
- package/fesm2015/colijnit-product.js +487 -333
- package/fesm2015/colijnit-product.js.map +1 -1
- package/package.json +8 -8
package/colijnit-product.d.ts
CHANGED
|
@@ -20,11 +20,11 @@ export { ProductDialogComponent as ɵbl } from './app/components/product-dialog/
|
|
|
20
20
|
export { ProductDialogModule as ɵbk } from './app/components/product-dialog/product-dialog.module';
|
|
21
21
|
export { ProductDocumentModule as ɵbf } from './app/components/product-documents/product-document.module';
|
|
22
22
|
export { ProductDocumentsComponent as ɵbg } from './app/components/product-documents/product-documents.component';
|
|
23
|
-
export { ProductHdComponent as
|
|
24
|
-
export { ProductHdModule as
|
|
23
|
+
export { ProductHdComponent as ɵbq } from './app/components/product-hd/product-hd.component';
|
|
24
|
+
export { ProductHdModule as ɵbp } from './app/components/product-hd/product-hd.module';
|
|
25
25
|
export { ProductInfoTabsComponent as ɵbj } from './app/components/product-info-tabs/product-info-tabs.component';
|
|
26
26
|
export { ProductInfoTabsModule as ɵba } from './app/components/product-info-tabs/product-info-tabs.module';
|
|
27
|
-
export { ProductPageComponent as
|
|
27
|
+
export { ProductPageComponent as ɵbo } from './app/components/product-page/product-page.component';
|
|
28
28
|
export { ProductPageModule as ɵa } from './app/components/product-page/product-page.module';
|
|
29
29
|
export { ProductPriceComponent as ɵp } from './app/components/product-price/product-price.component';
|
|
30
30
|
export { ProductPriceModule as ɵo } from './app/components/product-price/product-price.module';
|
|
@@ -38,9 +38,11 @@ export { ProductStockComponent as ɵx } from './app/components/product-stock/pro
|
|
|
38
38
|
export { ProductStockModule as ɵw } from './app/components/product-stock/product-stock.module';
|
|
39
39
|
export { ProductSymbolsComponent as ɵbi } from './app/components/product-symbols/product-symbols.component';
|
|
40
40
|
export { ProductSymbolsModule as ɵbh } from './app/components/product-symbols/product-symbols.module';
|
|
41
|
+
export { RenderCarouselComponent as ɵbn } from './app/components/render-carousel/render-carousel.component';
|
|
42
|
+
export { RenderCarouselModule as ɵbm } from './app/components/render-carousel/render-carousel.module';
|
|
41
43
|
export { LocalizePipe as ɵd } from './app/pipe/localize.pipe';
|
|
42
44
|
export { PipeModule as ɵc } from './app/pipe/pipe.module';
|
|
43
45
|
export { DictionaryService as ɵe } from './app/service/dictionary.service';
|
|
44
46
|
export { IconCacheService as ɵh } from './app/service/icon-cache.service';
|
|
45
|
-
export { ProductScriptLoaderService as
|
|
47
|
+
export { ProductScriptLoaderService as ɵbr } from './app/service/product-script-loader.service';
|
|
46
48
|
export { JsonUtilsService as ɵf } from './app/utils/json-utils.service';
|