@colijnit/product 256.1.3 → 256.1.5
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-external-source/product-external-source.component.d.ts +18 -0
- package/app/components/product-hd/product-hd.component.d.ts +25 -0
- package/app/components/product-hd/product-hd.module.d.ts +2 -0
- package/app/ione-product.component.d.ts +1 -0
- package/app/service/product-script-loader.service.d.ts +9 -0
- package/bundles/colijnit-product.umd.js +341 -34
- package/bundles/colijnit-product.umd.js.map +1 -1
- package/colijnit-product.d.ts +3 -0
- package/colijnit-product.metadata.json +1 -1
- package/esm2015/app/components/product-external-source/product-external-source.component.js +87 -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 +124 -0
- package/esm2015/app/components/product-hd/product-hd.module.js +23 -0
- package/esm2015/app/ione-product.component.js +4 -2
- package/esm2015/app/ione-product.module.js +14 -6
- package/esm2015/app/product-version.js +3 -3
- package/esm2015/app/service/product-script-loader.service.js +68 -0
- package/esm2015/colijnit-product.js +4 -1
- package/fesm2015/colijnit-product.js +326 -44
- package/fesm2015/colijnit-product.js.map +1 -1
- package/package.json +3 -3
- package/colijnit-product-256.1.2.tgz +0 -0
package/colijnit-product.d.ts
CHANGED
|
@@ -20,6 +20,8 @@ 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 ɵbo } from './app/components/product-hd/product-hd.component';
|
|
24
|
+
export { ProductHdModule as ɵbn } from './app/components/product-hd/product-hd.module';
|
|
23
25
|
export { ProductInfoTabsComponent as ɵbj } from './app/components/product-info-tabs/product-info-tabs.component';
|
|
24
26
|
export { ProductInfoTabsModule as ɵba } from './app/components/product-info-tabs/product-info-tabs.module';
|
|
25
27
|
export { ProductPageComponent as ɵbm } from './app/components/product-page/product-page.component';
|
|
@@ -40,4 +42,5 @@ export { LocalizePipe as ɵd } from './app/pipe/localize.pipe';
|
|
|
40
42
|
export { PipeModule as ɵc } from './app/pipe/pipe.module';
|
|
41
43
|
export { DictionaryService as ɵe } from './app/service/dictionary.service';
|
|
42
44
|
export { IconCacheService as ɵh } from './app/service/icon-cache.service';
|
|
45
|
+
export { ProductScriptLoaderService as ɵbp } from './app/service/product-script-loader.service';
|
|
43
46
|
export { JsonUtilsService as ɵf } from './app/utils/json-utils.service';
|