@colijnit/transaction 12.1.2 → 12.1.6
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/checkout/{retail-transaction-checkout/retail-transaction-checkout.component.d.ts → checkout-transaction/checkout-transaction.component.d.ts} +1 -1
- package/app/component/checkout/ione-checkout.component.d.ts +0 -2
- package/app/component/core/base/transaction-base.component.d.ts +10 -0
- package/app/component/{shopping-cart → core}/characteristic-answer/characteristic-answer.component.d.ts +0 -0
- package/app/component/{common → core}/icon/icon.component.d.ts +0 -0
- package/app/component/{common → core}/image-display/image-display.component.d.ts +0 -0
- package/app/component/{common → core}/no-image-display/no-image-display.component.d.ts +0 -0
- package/app/component/service-order/service-order.component.d.ts +13 -9
- package/app/component/service-order/transaction-article-text/transaction-article-text.component.d.ts +22 -13
- package/app/component/service-order/transaction-article-text-overview/transaction-article-text-overview.component.d.ts +23 -0
- package/app/component/service-order/transaction-edit-article-text/transaction-edit-article-text.component.d.ts +19 -0
- package/app/component/service-order/transaction-manager/transaction-manager.component.d.ts +64 -0
- package/app/component/service-order/warehouse/warehouse.component.d.ts +35 -0
- package/app/component/shopping-cart/ione-shopping-cart.component.d.ts +1 -1
- package/app/component/shopping-cart/shopping-cart-manager/shopping-cart-manager.component.d.ts +2 -2
- package/{enum → app/enum}/position-grid-row.enum.d.ts +0 -0
- package/app/model/standard-text.d.ts +5 -0
- package/app/model/transaction-add-text-line-request.d.ts +9 -0
- package/app/service/dictionary.service.d.ts +1 -0
- package/app/service/ione-connector-adapter.service.d.ts +3 -0
- package/app/service/transaction-event.service.d.ts +1 -1
- package/app/service/transaction.service.d.ts +18 -8
- package/bundles/colijnit-transaction.umd.js +1535 -533
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +45 -41
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/app/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.js +2 -2
- package/esm2015/app/component/checkout/checkout-transaction/checkout-transaction.component.js +53 -0
- package/esm2015/app/component/checkout/ione-checkout.component.js +2 -4
- package/esm2015/app/component/checkout/ione-checkout.module.js +5 -3
- package/esm2015/app/component/core/base/transaction-base.component.js +35 -12
- package/esm2015/app/component/core/characteristic-answer/characteristic-answer.component.js +100 -0
- package/esm2015/app/component/core/core.module.js +4 -4
- package/esm2015/app/component/{common → core}/icon/icon.component.js +1 -1
- package/esm2015/app/component/core/image-display/image-display.component.js +41 -0
- package/esm2015/app/component/core/no-image-display/no-image-display.component.js +26 -0
- package/esm2015/app/component/service-order/ione-service-order-module.js +15 -4
- package/esm2015/app/component/service-order/service-order.component.js +53 -20
- package/esm2015/app/component/service-order/transaction-article-text/transaction-article-text.component.js +107 -150
- package/esm2015/app/component/service-order/transaction-article-text-overview/transaction-article-text-overview.component.js +105 -0
- package/esm2015/app/component/service-order/transaction-edit-article-text/transaction-edit-article-text.component.js +73 -0
- package/esm2015/app/component/service-order/transaction-manager/transaction-manager.component.js +314 -0
- package/esm2015/app/component/service-order/transaction-order-lines/transaction-order-lines.component.js +2 -2
- package/esm2015/app/component/service-order/warehouse/warehouse.component.js +133 -0
- package/esm2015/app/component/shopping-cart/ione-shopping-cart.component.js +2 -2
- package/esm2015/app/component/shopping-cart/ione-shopping-cart.module.js +3 -3
- package/esm2015/app/component/shopping-cart/shopping-cart/shopping-cart.component.js +3 -3
- 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 +3 -3
- package/esm2015/app/enum/position-grid-row.enum.js +6 -0
- package/esm2015/app/model/standard-text.js +3 -0
- package/esm2015/app/model/transaction-add-text-line-request.js +11 -0
- package/esm2015/app/service/dictionary.service.js +20 -9
- package/esm2015/app/service/ione-connector-adapter.service.js +30 -1
- package/esm2015/app/service/transaction-event.service.js +1 -1
- package/esm2015/app/service/transaction.service.js +98 -23
- package/esm2015/assets/dictionary/text.properties.js +13 -1
- package/esm2015/colijnit-transaction.js +46 -42
- package/fesm2015/colijnit-transaction.js +1512 -757
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/package.json +4 -3
- package/esm2015/app/component/checkout/retail-transaction-checkout/retail-transaction-checkout.component.js +0 -53
- package/esm2015/app/component/common/image-display/image-display.component.js +0 -41
- package/esm2015/app/component/common/no-image-display/no-image-display.component.js +0 -26
- package/esm2015/app/component/shopping-cart/characteristic-answer/characteristic-answer.component.js +0 -99
- package/esm2015/enum/position-grid-row.enum.js +0 -6
|
@@ -2,56 +2,60 @@
|
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
4
|
export * from './public_api';
|
|
5
|
-
export { CheckoutLoginComponent as
|
|
6
|
-
export { CheckoutOverviewBlockComponent as
|
|
5
|
+
export { CheckoutLoginComponent as ɵa } from './app/component/checkout/checkout-login/checkout-login.component';
|
|
6
|
+
export { CheckoutOverviewBlockComponent as ɵs } from './app/component/checkout/checkout-overview-block/checkout-overview-block.component';
|
|
7
7
|
export { CheckoutOverviewDeliveryAddressComponent as ɵx } from './app/component/checkout/checkout-overview-delivery-address/checkout-overview-delivery-address.component';
|
|
8
|
-
export { CheckoutOverviewDeliveryEditComponent as
|
|
9
|
-
export { CheckoutOverviewRelationAddressComponent as
|
|
10
|
-
export { CheckoutOverviewRelationEditComponent as
|
|
11
|
-
export { CheckoutOverviewComponent as
|
|
8
|
+
export { CheckoutOverviewDeliveryEditComponent as ɵu } from './app/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component';
|
|
9
|
+
export { CheckoutOverviewRelationAddressComponent as ɵv } from './app/component/checkout/checkout-overview-relation-address/checkout-overview-relation-address.component';
|
|
10
|
+
export { CheckoutOverviewRelationEditComponent as ɵt } from './app/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component';
|
|
11
|
+
export { CheckoutOverviewComponent as ɵr } from './app/component/checkout/checkout-overview/checkout-overview.component';
|
|
12
12
|
export { CheckOutRelationSuggestionsListItemComponent as ɵz } from './app/component/checkout/checkout-relation-suggestions-list-item/checkout-relation-suggestions-list-item.component';
|
|
13
13
|
export { CheckOutRelationSuggestionsListComponent as ɵy } from './app/component/checkout/checkout-relation-suggestions-list/checkout-relation-suggestions-list.component';
|
|
14
|
-
export {
|
|
15
|
-
export {
|
|
16
|
-
export { IconComponent as ɵv } from './app/component/common/icon/icon.component';
|
|
17
|
-
export { ImageDisplayComponent as ɵt } from './app/component/common/image-display/image-display.component';
|
|
18
|
-
export { NoImageDisplayComponent as ɵu } from './app/component/common/no-image-display/no-image-display.component';
|
|
14
|
+
export { CheckoutTransactionComponent as ɵw } from './app/component/checkout/checkout-transaction/checkout-transaction.component';
|
|
15
|
+
export { CheckoutComponent as ɵq } from './app/component/checkout/checkout/checkout.component';
|
|
19
16
|
export { DefaultOkCancelButtonsComponent as ɵbg } from './app/component/core/base/default-ok-cancel-buttons.component';
|
|
20
17
|
export { TransactionBaseComponent as ɵbi } from './app/component/core/base/transaction-base.component';
|
|
21
|
-
export {
|
|
18
|
+
export { CharacteristicAnswerComponent as ɵbe } from './app/component/core/characteristic-answer/characteristic-answer.component';
|
|
19
|
+
export { CoreModule as ɵg } from './app/component/core/core.module';
|
|
22
20
|
export { TemplateWrapperDirective as ɵbf } from './app/component/core/directive/template-wrapper.directive';
|
|
21
|
+
export { IconComponent as ɵp } from './app/component/core/icon/icon.component';
|
|
22
|
+
export { ImageDisplayComponent as ɵn } from './app/component/core/image-display/image-display.component';
|
|
23
|
+
export { NoImageDisplayComponent as ɵo } from './app/component/core/no-image-display/no-image-display.component';
|
|
23
24
|
export { StockStatusIndicatorComponent as ɵbd } from './app/component/core/stock-status-indicator/stock-status-indicator.component';
|
|
24
25
|
export { ServiceOrderComponent as ɵbh } from './app/component/service-order/service-order.component';
|
|
25
|
-
export { TransactionArticleSummaryComponent as
|
|
26
|
-
export { TransactionDeliverySummaryComponent as
|
|
27
|
-
export { TransactionOrderSummaryComponent as
|
|
28
|
-
export { TransactionPaymentInfoComponent as
|
|
29
|
-
export { TransactionProductContractSummaryComponent as
|
|
30
|
-
export { TransactionProductSummaryComponent as
|
|
31
|
-
export { TransactionServiceStatusComponent as
|
|
32
|
-
export { TransactionServiceSummaryComponent as
|
|
33
|
-
export { TransactionSummaryBlockComponent as
|
|
26
|
+
export { TransactionArticleSummaryComponent as ɵca } from './app/component/service-order/summary/transaction-article-summary.component';
|
|
27
|
+
export { TransactionDeliverySummaryComponent as ɵcb } from './app/component/service-order/summary/transaction-delivery-summary.component';
|
|
28
|
+
export { TransactionOrderSummaryComponent as ɵby } from './app/component/service-order/summary/transaction-order-summary.component';
|
|
29
|
+
export { TransactionPaymentInfoComponent as ɵbz } from './app/component/service-order/summary/transaction-payment-info.component';
|
|
30
|
+
export { TransactionProductContractSummaryComponent as ɵcc } from './app/component/service-order/summary/transaction-product-contract-summary.component';
|
|
31
|
+
export { TransactionProductSummaryComponent as ɵcd } from './app/component/service-order/summary/transaction-product-summary.component';
|
|
32
|
+
export { TransactionServiceStatusComponent as ɵbx } from './app/component/service-order/summary/transaction-service-status.component';
|
|
33
|
+
export { TransactionServiceSummaryComponent as ɵbv } from './app/component/service-order/summary/transaction-service-summary.component';
|
|
34
|
+
export { TransactionSummaryBlockComponent as ɵbw } from './app/component/service-order/summary/transaction-summary-block.component';
|
|
35
|
+
export { TransactionArticleTextOverviewComponent as ɵbp } from './app/component/service-order/transaction-article-text-overview/transaction-article-text-overview.component';
|
|
34
36
|
export { TransactionArticleTextComponent as ɵbj } from './app/component/service-order/transaction-article-text/transaction-article-text.component';
|
|
35
|
-
export {
|
|
36
|
-
export {
|
|
37
|
-
export {
|
|
38
|
-
export {
|
|
39
|
-
export {
|
|
40
|
-
export {
|
|
41
|
-
export {
|
|
42
|
-
export {
|
|
43
|
-
export {
|
|
37
|
+
export { TransactionEditArticleTextComponent as ɵbq } from './app/component/service-order/transaction-edit-article-text/transaction-edit-article-text.component';
|
|
38
|
+
export { TransactionHeaderBlockComponent as ɵbt } from './app/component/service-order/transaction-header-block/transaction-header-block.component';
|
|
39
|
+
export { TransactionManagerComponent as ɵbk } from './app/component/service-order/transaction-manager/transaction-manager.component';
|
|
40
|
+
export { TransactionOrderLineViewComponent as ɵbm } from './app/component/service-order/transaction-order-line-view/transaction-order-line-view.component';
|
|
41
|
+
export { TransactionOrderLinesComponent as ɵbn } from './app/component/service-order/transaction-order-lines/transaction-order-lines.component';
|
|
42
|
+
export { TransactionOrderTotalsComponent as ɵbl } from './app/component/service-order/transaction-order-totals/transaction-order-totals.component';
|
|
43
|
+
export { TransactionRelationAddressComponent as ɵbo } from './app/component/service-order/transaction-relation/transaction-relation-address.component';
|
|
44
|
+
export { TransactionRelationEditComponent as ɵbu } from './app/component/service-order/transaction-relation/transaction-relation-edit.component';
|
|
45
|
+
export { TransactionLineAccordionComponent as ɵbs } from './app/component/service-order/transaction-sidebar/transaction-line-accordion.component';
|
|
46
|
+
export { TransactionSidebarRightComponent as ɵbr } from './app/component/service-order/transaction-sidebar/transaction-sidebar-right.component';
|
|
47
|
+
export { WarehouseComponent as ɵce } from './app/component/service-order/warehouse/warehouse.component';
|
|
44
48
|
export { ShoppingCartLineComponent as ɵbc } from './app/component/shopping-cart/shopping-cart-line/shopping-cart-line.component';
|
|
45
49
|
export { ShoppingCartManagerComponent as ɵba } from './app/component/shopping-cart/shopping-cart-manager/shopping-cart-manager.component';
|
|
46
50
|
export { ShoppingCartComponent as ɵbb } from './app/component/shopping-cart/shopping-cart/shopping-cart.component';
|
|
47
|
-
export { AppendPipe as
|
|
48
|
-
export { CoCurrencyPipe as
|
|
49
|
-
export { DateDurationPipe as
|
|
50
|
-
export { DeliveryTimePipe as
|
|
51
|
-
export { LocalizePipe as
|
|
52
|
-
export { SafeStylePipe as
|
|
53
|
-
export { DictionaryService as
|
|
54
|
-
export { IOneConnectorAdapterService as
|
|
55
|
-
export { OptionsService as
|
|
56
|
-
export { TransactionEventService as
|
|
57
|
-
export { TransactionService as
|
|
51
|
+
export { AppendPipe as ɵh } from './app/pipe/append.pipe';
|
|
52
|
+
export { CoCurrencyPipe as ɵl } from './app/pipe/co-currency.pipe';
|
|
53
|
+
export { DateDurationPipe as ɵj } from './app/pipe/date-duration.pipe';
|
|
54
|
+
export { DeliveryTimePipe as ɵi } from './app/pipe/delivery-time.pipe';
|
|
55
|
+
export { LocalizePipe as ɵk } from './app/pipe/localize.pipe';
|
|
56
|
+
export { SafeStylePipe as ɵm } from './app/pipe/safe-style-pipe';
|
|
57
|
+
export { DictionaryService as ɵd } from './app/service/dictionary.service';
|
|
58
|
+
export { IOneConnectorAdapterService as ɵc } from './app/service/ione-connector-adapter.service';
|
|
59
|
+
export { OptionsService as ɵb } from './app/service/options.service';
|
|
60
|
+
export { TransactionEventService as ɵf } from './app/service/transaction-event.service';
|
|
61
|
+
export { TransactionService as ɵe } from './app/service/transaction.service';
|