@colijnit/product 1.0.13 → 1.9.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/image-carousel/image-carousel.component.d.ts +11 -7
- package/app/components/product-additional-description/product-additional-description.component.d.ts +5 -4
- package/app/components/product-additional-info/product-additional-info.component.d.ts +5 -4
- package/app/components/product-addtocart/product-addtocart.component.d.ts +8 -5
- package/app/components/product-delivery/product-delivery.component.d.ts +3 -3
- package/app/components/product-description/product-description.component.d.ts +1 -1
- package/app/components/product-documents/product-documents.component.d.ts +1 -1
- package/app/components/product-info/product-info.component.d.ts +1 -1
- package/app/components/product-info-tabs/product-info-tabs.component.d.ts +4 -4
- package/app/components/product-page/product-page.component.d.ts +16 -12
- package/app/components/product-price/product-price.component.d.ts +3 -2
- package/app/components/product-properties/product-properties.component.d.ts +3 -2
- package/app/components/product-related/product-related.component.d.ts +6 -5
- package/app/components/product-stock/product-stock.component.d.ts +3 -3
- package/app/components/product-symbols/product-symbols.component.d.ts +2 -1
- package/app/ione-product.component.d.ts +13 -10
- package/app/ione-product.module.d.ts +2 -0
- package/app/model/article-quantity.model.d.ts +1 -1
- package/app/model/settings.d.ts +5 -0
- package/app/product-version.d.ts +6 -0
- package/app/service/dictionary.service.d.ts +2 -2
- package/app/service/icon-cache.service.d.ts +1 -1
- package/app/service/product-connector-adapter.service.d.ts +27 -0
- package/app/service/product-connector.service.d.ts +32 -0
- package/app/service/product-event.service.d.ts +18 -0
- package/app/service/product-initializer.service.d.ts +6 -0
- package/app/service/product-module.service.d.ts +9 -0
- package/app/service/{settings.service.d.ts → product-settings.service.d.ts} +6 -4
- package/app/style/_scrollbars.mixins.scss +18 -0
- package/app/style/_variables.scss +21 -0
- package/{css/styles.css → app/style/product-globals.scss} +102 -76
- package/bundles/colijnit-product.umd.js +544 -418
- package/bundles/colijnit-product.umd.js.map +1 -1
- package/bundles/colijnit-product.umd.min.js +2 -2
- package/bundles/colijnit-product.umd.min.js.map +1 -1
- package/colijnit-product.d.ts +6 -5
- package/colijnit-product.metadata.json +1 -1
- package/esm2015/app/components/core/header/header.component.js +4 -4
- package/esm2015/app/components/image-carousel/image-carousel.component.js +32 -26
- package/esm2015/app/components/product-additional-description/product-additional-description.component.js +7 -7
- package/esm2015/app/components/product-additional-info/product-additional-info.component.js +10 -10
- package/esm2015/app/components/product-addtocart/product-addtocart.component.js +33 -35
- package/esm2015/app/components/product-delivery/product-delivery.component.js +8 -8
- package/esm2015/app/components/product-description/product-description.component.js +5 -5
- package/esm2015/app/components/product-documents/product-documents.component.js +5 -5
- package/esm2015/app/components/product-info/product-info.component.js +5 -5
- package/esm2015/app/components/product-info-tabs/product-info-tabs.component.js +8 -8
- package/esm2015/app/components/product-page/product-page.component.js +38 -64
- package/esm2015/app/components/product-price/product-price.component.js +6 -6
- package/esm2015/app/components/product-properties/product-properties.component.js +6 -6
- package/esm2015/app/components/product-related/product-related.component.js +17 -13
- package/esm2015/app/components/product-selector-type/product-selector-type.component.js +8 -8
- package/esm2015/app/components/product-stock/product-stock.component.js +7 -7
- package/esm2015/app/components/product-symbols/product-symbols.component.js +4 -4
- package/esm2015/app/ione-product.component.js +34 -59
- package/esm2015/app/ione-product.module.js +24 -9
- package/esm2015/app/model/article-quantity.model.js +1 -1
- package/esm2015/app/model/settings.js +2 -1
- package/esm2015/app/pipe/localize.pipe.js +2 -2
- package/esm2015/app/product-version.js +10 -0
- package/esm2015/app/service/dictionary.service.js +6 -6
- package/esm2015/app/service/icon-cache.service.js +3 -3
- package/esm2015/app/service/product-connector-adapter.service.js +128 -0
- package/esm2015/app/service/product-connector.service.js +108 -0
- package/esm2015/app/service/product-event.service.js +41 -0
- package/esm2015/app/service/product-initializer.service.js +26 -0
- package/esm2015/app/service/product-module.service.js +39 -0
- package/esm2015/app/service/product-settings.service.js +142 -0
- package/esm2015/app/utils/json-utils.service.js +7 -8
- package/esm2015/colijnit-product.js +7 -6
- package/esm2015/public_api.js +2 -1
- package/esm5/app/components/core/header/header.component.js +4 -4
- package/esm5/app/components/image-carousel/image-carousel.component.js +32 -26
- package/esm5/app/components/product-additional-description/product-additional-description.component.js +7 -7
- package/esm5/app/components/product-additional-info/product-additional-info.component.js +15 -14
- package/esm5/app/components/product-addtocart/product-addtocart.component.js +38 -41
- package/esm5/app/components/product-delivery/product-delivery.component.js +8 -8
- package/esm5/app/components/product-description/product-description.component.js +5 -5
- package/esm5/app/components/product-documents/product-documents.component.js +5 -5
- package/esm5/app/components/product-info/product-info.component.js +5 -5
- package/esm5/app/components/product-info-tabs/product-info-tabs.component.js +8 -8
- package/esm5/app/components/product-page/product-page.component.js +40 -66
- package/esm5/app/components/product-price/product-price.component.js +6 -6
- package/esm5/app/components/product-properties/product-properties.component.js +6 -6
- package/esm5/app/components/product-related/product-related.component.js +17 -13
- package/esm5/app/components/product-selector-type/product-selector-type.component.js +8 -8
- package/esm5/app/components/product-stock/product-stock.component.js +7 -7
- package/esm5/app/components/product-symbols/product-symbols.component.js +4 -4
- package/esm5/app/ione-product.component.js +35 -66
- package/esm5/app/ione-product.module.js +24 -9
- package/esm5/app/model/article-quantity.model.js +1 -1
- package/esm5/app/model/settings.js +2 -1
- package/esm5/app/pipe/localize.pipe.js +5 -5
- package/esm5/app/product-version.js +12 -0
- package/esm5/app/service/dictionary.service.js +8 -8
- package/esm5/app/service/icon-cache.service.js +3 -3
- package/esm5/app/service/product-connector-adapter.service.js +197 -0
- package/esm5/app/service/product-connector.service.js +128 -0
- package/esm5/app/service/product-event.service.js +42 -0
- package/esm5/app/service/product-initializer.service.js +29 -0
- package/esm5/app/service/product-module.service.js +50 -0
- package/esm5/app/service/product-settings.service.js +165 -0
- package/esm5/app/utils/json-utils.service.js +8 -9
- package/esm5/colijnit-product.js +7 -6
- package/esm5/public_api.js +2 -1
- package/fesm2015/colijnit-product.js +376 -314
- package/fesm2015/colijnit-product.js.map +1 -1
- package/fesm5/colijnit-product.js +549 -422
- package/fesm5/colijnit-product.js.map +1 -1
- package/package.json +21 -44
- package/public_api.d.ts +1 -0
- package/app/service/app-event.service.d.ts +0 -13
- package/app/service/i-one-connector-adapter.service.d.ts +0 -24
- package/app/service/i-one-controller.service.d.ts +0 -35
- package/app/service/module.service.d.ts +0 -9
- package/app/utils/string-utils.d.ts +0 -21
- package/colijnit-product-1.0.13.tgz +0 -0
- package/esm2015/app/service/app-event.service.js +0 -37
- package/esm2015/app/service/i-one-connector-adapter.service.js +0 -52
- package/esm2015/app/service/i-one-controller.service.js +0 -104
- package/esm2015/app/service/module.service.js +0 -39
- package/esm2015/app/service/settings.service.js +0 -107
- package/esm2015/app/utils/string-utils.js +0 -51
- package/esm5/app/service/app-event.service.js +0 -38
- package/esm5/app/service/i-one-connector-adapter.service.js +0 -55
- package/esm5/app/service/i-one-controller.service.js +0 -118
- package/esm5/app/service/module.service.js +0 -50
- package/esm5/app/service/settings.service.js +0 -128
- package/esm5/app/utils/string-utils.js +0 -59
package/colijnit-product.d.ts
CHANGED
|
@@ -21,11 +21,12 @@ export { ProductStockComponent as ɵu } from './app/components/product-stock/pro
|
|
|
21
21
|
export { ProductSymbolsComponent as ɵv } from './app/components/product-symbols/product-symbols.component';
|
|
22
22
|
export { IoneProductComponent as ɵa } from './app/ione-product.component';
|
|
23
23
|
export { LocalizePipe as ɵt } from './app/pipe/localize.pipe';
|
|
24
|
-
export { AppEventService as ɵg } from './app/service/app-event.service';
|
|
25
24
|
export { DictionaryService as ɵb } from './app/service/dictionary.service';
|
|
26
|
-
export { IOneConnectorAdapterService as ɵe } from './app/service/i-one-connector-adapter.service';
|
|
27
|
-
export { IOneControllerService as ɵd } from './app/service/i-one-controller.service';
|
|
28
25
|
export { IconCacheService as ɵi } from './app/service/icon-cache.service';
|
|
29
|
-
export {
|
|
30
|
-
export {
|
|
26
|
+
export { ProductConnectorAdapterService as ɵe } from './app/service/product-connector-adapter.service';
|
|
27
|
+
export { ProductConnectorService as ɵd } from './app/service/product-connector.service';
|
|
28
|
+
export { ProductEventService as ɵg } from './app/service/product-event.service';
|
|
29
|
+
export { ProductInitializerService as ɵbb } from './app/service/product-initializer.service';
|
|
30
|
+
export { ProductModuleService as ɵq } from './app/service/product-module.service';
|
|
31
|
+
export { ProductSettingsService as ɵf } from './app/service/product-settings.service';
|
|
31
32
|
export { JsonUtilsService as ɵc } from './app/utils/json-utils.service';
|