@colijnit/transaction 12.0.2 → 12.1.0
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/component/core/base/default-ok-cancel-buttons.component.d.ts +13 -0
- package/app/component/core/base/transaction-base.component.d.ts +38 -0
- package/app/component/core/directive/template-wrapper.directive.d.ts +13 -0
- package/app/component/{shopping-cart → core}/stock-status-indicator/stock-status-indicator.component.d.ts +0 -0
- package/app/component/service-order/ione-service-order-module.d.ts +2 -0
- package/app/component/service-order/ione-service-order.component.d.ts +25 -0
- package/app/component/service-order/service-order.component.d.ts +48 -0
- package/app/component/service-order/summary/transaction-article-summary.component.d.ts +17 -0
- package/app/component/service-order/summary/transaction-delivery-summary.component.d.ts +20 -0
- package/app/component/service-order/summary/transaction-order-summary.component.d.ts +16 -0
- package/app/component/service-order/summary/transaction-payment-info.component.d.ts +14 -0
- package/app/component/service-order/summary/transaction-product-contract-summary.component.d.ts +7 -0
- package/app/component/service-order/summary/transaction-product-summary.component.d.ts +15 -0
- package/app/component/service-order/summary/transaction-service-status.component.d.ts +15 -0
- package/app/component/service-order/summary/transaction-service-summary.component.d.ts +15 -0
- package/app/component/service-order/summary/transaction-summary-block.component.d.ts +16 -0
- package/app/component/service-order/transaction-article-text/transaction-article-text.component.d.ts +24 -0
- package/app/component/service-order/transaction-header-block/transaction-header-block.component.d.ts +15 -0
- package/app/component/service-order/transaction-order-line-view/transaction-order-line-view.component.d.ts +16 -0
- package/app/component/service-order/transaction-order-lines/transaction-order-lines.component.d.ts +25 -0
- package/app/component/service-order/transaction-order-totals/transaction-order-totals.component.d.ts +7 -0
- package/app/component/service-order/transaction-relation/transaction-relation-address.component.d.ts +22 -0
- package/app/component/service-order/transaction-relation/transaction-relation-edit.component.d.ts +29 -0
- package/app/component/service-order/transaction-sidebar/transaction-line-accordion.component.d.ts +11 -0
- package/app/component/service-order/transaction-sidebar/transaction-sidebar-right.component.d.ts +26 -0
- package/app/component/shopping-cart/ione-shopping-cart.component.d.ts +20 -0
- package/app/component/shopping-cart/shopping-cart/shopping-cart.component.d.ts +7 -2
- package/app/component/shopping-cart/shopping-cart-manager/shopping-cart-manager.component.d.ts +7 -0
- package/app/service/ione-connector-adapter.service.d.ts +5 -1
- package/app/service/transaction-event.service.d.ts +29 -0
- package/app/service/transaction.service.d.ts +9 -2
- package/bundles/colijnit-transaction.umd.js +1930 -62
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +23 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/enum/position-grid-row.enum.d.ts +4 -0
- package/esm2015/app/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.js +3 -3
- package/esm2015/app/component/checkout/ione-checkout.module.js +1 -3
- package/esm2015/app/component/common/icon/icon.component.js +2 -1
- package/esm2015/app/component/core/base/default-ok-cancel-buttons.component.js +39 -0
- package/esm2015/app/component/core/base/transaction-base.component.js +121 -0
- package/esm2015/app/component/core/directive/template-wrapper.directive.js +69 -0
- package/esm2015/app/component/{shopping-cart → core}/stock-status-indicator/stock-status-indicator.component.js +1 -1
- package/esm2015/app/component/service-order/ione-service-order-module.js +103 -0
- package/esm2015/app/component/service-order/ione-service-order.component.js +98 -0
- package/esm2015/app/component/service-order/service-order.component.js +167 -0
- package/esm2015/app/component/service-order/summary/transaction-article-summary.component.js +55 -0
- package/esm2015/app/component/service-order/summary/transaction-delivery-summary.component.js +59 -0
- package/esm2015/app/component/service-order/summary/transaction-order-summary.component.js +43 -0
- package/esm2015/app/component/service-order/summary/transaction-payment-info.component.js +35 -0
- package/esm2015/app/component/service-order/summary/transaction-product-contract-summary.component.js +38 -0
- package/esm2015/app/component/service-order/summary/transaction-product-summary.component.js +41 -0
- package/esm2015/app/component/service-order/summary/transaction-service-status.component.js +37 -0
- package/esm2015/app/component/service-order/summary/transaction-service-summary.component.js +38 -0
- package/esm2015/app/component/service-order/summary/transaction-summary-block.component.js +53 -0
- package/esm2015/app/component/service-order/transaction-article-text/transaction-article-text.component.js +183 -0
- package/esm2015/app/component/service-order/transaction-header-block/transaction-header-block.component.js +83 -0
- package/esm2015/app/component/service-order/transaction-order-line-view/transaction-order-line-view.component.js +76 -0
- package/esm2015/app/component/service-order/transaction-order-lines/transaction-order-lines.component.js +71 -0
- package/esm2015/app/component/service-order/transaction-order-totals/transaction-order-totals.component.js +37 -0
- package/esm2015/app/component/service-order/transaction-relation/transaction-relation-address.component.js +116 -0
- package/esm2015/app/component/service-order/transaction-relation/transaction-relation-edit.component.js +225 -0
- package/esm2015/app/component/service-order/transaction-sidebar/transaction-line-accordion.component.js +172 -0
- package/esm2015/app/component/service-order/transaction-sidebar/transaction-sidebar-right.component.js +120 -0
- package/esm2015/app/component/shopping-cart/ione-shopping-cart.component.js +52 -7
- package/esm2015/app/component/shopping-cart/ione-shopping-cart.module.js +4 -6
- package/esm2015/app/component/shopping-cart/shopping-cart/shopping-cart.component.js +42 -9
- package/esm2015/app/component/shopping-cart/shopping-cart-line/shopping-cart-line.component.js +1 -1
- package/esm2015/app/component/shopping-cart/shopping-cart-manager/shopping-cart-manager.component.js +63 -3
- package/esm2015/app/service/ione-connector-adapter.service.js +60 -8
- package/esm2015/app/service/transaction-event.service.js +9 -1
- package/esm2015/app/service/transaction.service.js +87 -19
- package/esm2015/assets/dictionary/text.properties.js +43 -3
- package/esm2015/colijnit-transaction.js +24 -2
- package/esm2015/enum/position-grid-row.enum.js +6 -0
- package/esm2015/public_api.js +3 -1
- package/fesm2015/colijnit-transaction.js +2309 -50
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/package.json +17 -17
- package/public_api.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "12.0
|
|
3
|
+
"version": "12.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@angular/animations": "^12.2.7",
|
|
@@ -14,22 +14,22 @@
|
|
|
14
14
|
"@angular/platform-browser": "^12.2.7",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^12.2.7",
|
|
16
16
|
"@angular/router": "^12.2.7",
|
|
17
|
-
"@colijnit/corecomponents_v12": "12.0.
|
|
18
|
-
"@colijnit/transactionapi": "1.1.
|
|
19
|
-
"@syncfusion/ej2-angular-buttons": "
|
|
20
|
-
"@syncfusion/ej2-angular-calendars": "
|
|
21
|
-
"@syncfusion/ej2-angular-dropdowns": "
|
|
22
|
-
"@syncfusion/ej2-angular-grids": "
|
|
23
|
-
"@syncfusion/ej2-angular-inputs": "
|
|
24
|
-
"@syncfusion/ej2-angular-kanban": "
|
|
25
|
-
"@syncfusion/ej2-angular-lists": "
|
|
26
|
-
"@syncfusion/ej2-angular-navigations": "
|
|
27
|
-
"@syncfusion/ej2-angular-pivotview": "
|
|
28
|
-
"@syncfusion/ej2-angular-popups": "
|
|
29
|
-
"@syncfusion/ej2-angular-schedule": "
|
|
30
|
-
"@syncfusion/ej2-angular-splitbuttons": "
|
|
31
|
-
"@syncfusion/ej2-base": "
|
|
32
|
-
"@syncfusion/ej2-popups": "
|
|
17
|
+
"@colijnit/corecomponents_v12": "12.0.9",
|
|
18
|
+
"@colijnit/transactionapi": "file:C:/Develop/Workspaces/Trunk/TransactionAPI/colijnit-transactionapi-1.1.6.tgz",
|
|
19
|
+
"@syncfusion/ej2-angular-buttons": "~19.3.44",
|
|
20
|
+
"@syncfusion/ej2-angular-calendars": "~19.3.44",
|
|
21
|
+
"@syncfusion/ej2-angular-dropdowns": "~19.3.45",
|
|
22
|
+
"@syncfusion/ej2-angular-grids": "~19.3.45",
|
|
23
|
+
"@syncfusion/ej2-angular-inputs": "~19.3.44",
|
|
24
|
+
"@syncfusion/ej2-angular-kanban": "~19.3.45",
|
|
25
|
+
"@syncfusion/ej2-angular-lists": "~19.3.45",
|
|
26
|
+
"@syncfusion/ej2-angular-navigations": "~19.3.45",
|
|
27
|
+
"@syncfusion/ej2-angular-pivotview": "~19.3.44",
|
|
28
|
+
"@syncfusion/ej2-angular-popups": "~19.3.43",
|
|
29
|
+
"@syncfusion/ej2-angular-schedule": "~19.3.44",
|
|
30
|
+
"@syncfusion/ej2-angular-splitbuttons": "~19.3.45",
|
|
31
|
+
"@syncfusion/ej2-base": "~19.3.43",
|
|
32
|
+
"@syncfusion/ej2-popups": "~19.3.43",
|
|
33
33
|
"node-sass": "^4.14.1",
|
|
34
34
|
"reflect-metadata": "^0.1.12",
|
|
35
35
|
"rxjs": "~6.6.7",
|
package/public_api.d.ts
CHANGED
|
@@ -2,3 +2,5 @@ export * from "./app/component/checkout/ione-checkout.component";
|
|
|
2
2
|
export * from "./app/component/checkout/ione-checkout.module";
|
|
3
3
|
export * from "./app/component/shopping-cart/ione-shopping-cart.component";
|
|
4
4
|
export * from "./app/component/shopping-cart/ione-shopping-cart.module";
|
|
5
|
+
export * from "./app/component/service-order/ione-service-order.component";
|
|
6
|
+
export * from "./app/component/service-order/ione-service-order-module";
|