ng-easycommerce 0.0.685 → 0.0.686
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/README.md +11 -0
- package/bundles/ng-easycommerce.umd.js +811 -641
- package/bundles/ng-easycommerce.umd.js.map +1 -1
- package/bundles/ng-easycommerce.umd.min.js +1 -1
- package/bundles/ng-easycommerce.umd.min.js.map +1 -1
- package/esm2015/lib/ec-component/checkout-ec/checkout-ec.component.js +22 -9
- package/esm2015/lib/ec-component/checkout-ec/detail-checkout-block-ec/detail-checkout-block-ec.component.js +18 -5
- package/esm2015/lib/ec-component/checkout-ec/shipment-ec/shipment-ec.component.js +11 -6
- package/esm2015/lib/ec-component/checkout-ec/shipment-ec-single/shipment-ec-single.component.js +13 -4
- package/esm2015/lib/interfaces/shipping-option.js +1 -0
- package/esm2015/lib/services/checkout/checkout.service.js +25 -12
- package/esm2015/lib/services/checkout/shipment.service.js +36 -8
- package/esm2015/lib/utils/order-util.service.js +41 -1
- package/esm2015/lib/utils/shipping-price-display.service.js +47 -0
- package/esm2015/public-api.js +2 -1
- package/esm5/lib/ec-component/checkout-ec/checkout-ec.component.js +22 -9
- package/esm5/lib/ec-component/checkout-ec/detail-checkout-block-ec/detail-checkout-block-ec.component.js +18 -5
- package/esm5/lib/ec-component/checkout-ec/shipment-ec/shipment-ec.component.js +13 -6
- package/esm5/lib/ec-component/checkout-ec/shipment-ec-single/shipment-ec-single.component.js +13 -4
- package/esm5/lib/interfaces/shipping-option.js +1 -0
- package/esm5/lib/services/checkout/checkout.service.js +27 -12
- package/esm5/lib/services/checkout/shipment.service.js +40 -10
- package/esm5/lib/utils/order-util.service.js +41 -1
- package/esm5/lib/utils/shipping-price-display.service.js +51 -0
- package/esm5/public-api.js +2 -1
- package/fesm2015/ng-easycommerce.js +775 -616
- package/fesm2015/ng-easycommerce.js.map +1 -1
- package/fesm5/ng-easycommerce.js +811 -642
- package/fesm5/ng-easycommerce.js.map +1 -1
- package/lib/ec-component/checkout-ec/checkout-ec.component.d.ts +5 -1
- package/lib/ec-component/checkout-ec/detail-checkout-block-ec/detail-checkout-block-ec.component.d.ts +5 -1
- package/lib/ec-component/checkout-ec/shipment-ec/shipment-ec.component.d.ts +4 -1
- package/lib/ec-component/checkout-ec/shipment-ec-single/shipment-ec-single.component.d.ts +4 -0
- package/lib/interfaces/shipping-option.d.ts +53 -0
- package/lib/services/checkout/shipment.service.d.ts +6 -1
- package/lib/utils/order-util.service.d.ts +20 -0
- package/lib/utils/shipping-price-display.service.d.ts +16 -0
- package/ng-easycommerce.metadata.json +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ export * from './lib/interfaces/product';
|
|
|
49
49
|
export * from './lib/interfaces/step';
|
|
50
50
|
export * from './lib/interfaces/selection';
|
|
51
51
|
export * from './lib/interfaces/checkout-data';
|
|
52
|
+
export * from './lib/interfaces/shipping-option';
|
|
52
53
|
export * from './lib/interfaces/faqs';
|
|
53
54
|
export * from './lib/interfaces/store';
|
|
54
55
|
export * from './lib/interfaces/choose-options/options-of-product-list';
|
|
@@ -65,6 +66,7 @@ export * from './lib/guards/loggedin-guard.service';
|
|
|
65
66
|
export * from './lib/interceptors/auth.interceptor';
|
|
66
67
|
export * from './lib/utils/toast.service';
|
|
67
68
|
export * from './lib/utils/utils.service';
|
|
69
|
+
export * from './lib/utils/shipping-price-display.service';
|
|
68
70
|
export * from './lib/core.consts';
|
|
69
71
|
export * from './lib/strategies/standard.strategy';
|
|
70
72
|
export * from "./lib/ec-component/blocks-ec/block-banner-boxes-ec/block-banner-boxes-ec.component";
|