@colijnit/transaction 12.1.13 → 12.1.16
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/bundles/colijnit-transaction.umd.js +6256 -2331
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +130 -86
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +131 -87
- package/esm2015/lib/assets/dictionary/text.properties.js +98 -2
- package/esm2015/lib/component/avatar/avatar.component.js +64 -0
- package/esm2015/lib/component/avatar/avatar.module.js +21 -0
- package/esm2015/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.js +11 -1
- package/esm2015/lib/component/checkout/checkout.component.js +9 -8
- package/esm2015/lib/component/checkout/checkout.module.js +3 -3
- package/esm2015/lib/component/core/base/components/transaction-header-block/transaction-header-block.component.js +38 -0
- package/esm2015/lib/component/core/base/components/transaction-header-block/transaction-header-block.module.js +19 -0
- package/esm2015/lib/component/core/base/transaction-grid-base.component.js +53 -0
- package/esm2015/lib/component/core/core.module.js +3 -6
- package/esm2015/lib/component/core/icon/icon.component.js +1 -1
- package/esm2015/lib/component/core/relation/customer-groups.component.js +3 -3
- package/esm2015/lib/component/core/stock-status-indicator/stock-status-indicator.component.js +1 -1
- package/esm2015/lib/component/payment/payment.component.js +112 -30
- package/esm2015/lib/component/payment/payment.module.js +7 -3
- package/esm2015/lib/component/payment-tile/payment-tile.component.js +4 -2
- package/esm2015/lib/component/relation-address/relation-address.component.js +3 -3
- package/esm2015/lib/component/shopping-cart/shopping-cart.component.js +7 -2
- package/esm2015/lib/component/transaction/transaction.component.js +41 -39
- package/esm2015/lib/component/transaction/transaction.module.js +15 -9
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button.component.js +29 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar.component.js +54 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar.module.js +28 -0
- package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.js +2 -2
- package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.module.js +2 -2
- package/esm2015/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.component.js +52 -0
- package/esm2015/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.module.js +28 -0
- package/esm2015/lib/component/transaction-grid/transaction-grid/transaction-grid.component.js +85 -0
- package/esm2015/lib/component/transaction-grid/transaction-grid/transaction-grid.module.js +19 -0
- package/esm2015/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.component.js +64 -0
- package/esm2015/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.module.js +28 -0
- package/esm2015/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.component.js +76 -0
- package/esm2015/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.module.js +30 -0
- package/esm2015/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.component.js +51 -0
- package/esm2015/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.module.js +29 -0
- package/esm2015/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.component.js +156 -0
- package/esm2015/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.module.js +30 -0
- package/esm2015/lib/component/transaction-header/transaction-header/transaction-header.component.js +40 -0
- package/esm2015/lib/component/transaction-header/transaction-header/transaction-header.module.js +29 -0
- package/esm2015/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.js +75 -0
- package/esm2015/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.module.js +28 -0
- package/esm2015/lib/component/transaction-header/transaction-header-order/transaction-header-order.component.js +41 -0
- package/esm2015/lib/component/transaction-header/transaction-header-order/transaction-header-order.module.js +26 -0
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.js +58 -0
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.module.js +28 -0
- package/esm2015/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.component.js +36 -0
- package/esm2015/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.module.js +21 -0
- package/esm2015/lib/component/transaction-header/transaction-header.component.js +6 -11
- package/esm2015/lib/component/transaction-header/transaction-header.module.js +8 -6
- package/esm2015/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.js +16 -3
- package/esm2015/lib/component/transaction-line/transaction-line.component.js +26 -29
- package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.js +37 -33
- package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.module.js +6 -4
- package/esm2015/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.js +87 -0
- package/esm2015/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.module.js +31 -0
- package/esm2015/lib/component/transaction-lines/transaction-lines.component.js +8 -5
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.component.js +72 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.module.js +33 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.js +28 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.module.js +25 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.component.js +23 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.module.js +23 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.js +65 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.module.js +25 -0
- package/esm2015/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.component.js +138 -18
- package/esm2015/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.module.js +6 -2
- package/esm2015/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.js +57 -11
- package/esm2015/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.module.js +7 -4
- package/esm2015/lib/component/transaction-search/service/filter-request.service.js +117 -0
- package/esm2015/lib/component/transaction-search/service/transaction-search.service.js +33 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-filter.component.js +87 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-filter.module.js +34 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.component.js +42 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.module.js +19 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-article/transaction-filter-content-article.component.js +120 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-article/transaction-filter-content-article.module.js +25 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.component.js +242 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.module.js +28 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-order/transaction-filter-content-order.component.js +240 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-order/transaction-filter-content-order.module.js +30 -0
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.js +62 -0
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.js +30 -0
- package/esm2015/lib/component/transaction-search/transaction-search.component.js +55 -0
- package/esm2015/lib/component/transaction-search/transaction-search.module.js +25 -0
- package/esm2015/lib/component/transaction-search/transaction-tile/transaction-tile.component.js +77 -0
- package/esm2015/lib/component/transaction-search/transaction-tile/transaction-tile.module.js +28 -0
- package/esm2015/lib/component/transaction-search-grid/transaction-search-grid.component.js +86 -0
- package/esm2015/lib/component/transaction-search-grid/transaction-search-grid.module.js +26 -0
- package/esm2015/lib/component/view-mode-buttons/view-mode-buttons.component.js +61 -0
- package/esm2015/lib/component/view-mode-buttons/view-mode-buttons.module.js +23 -0
- package/esm2015/lib/enum/content-view-mode.enum.js +2 -1
- package/esm2015/lib/enum/icon.enum.js +18 -1
- package/esm2015/lib/enum/position-grid-row.enum.js +6 -0
- package/esm2015/lib/enum/status-type.enum.js +3 -1
- package/esm2015/lib/enum/transaction-type-category.enum.js +16 -0
- package/esm2015/lib/model/filter-item.viewmodel.js +9 -0
- package/esm2015/lib/model/filter-viewmodel.js +11 -0
- package/esm2015/lib/model/icon-svg.js +18 -1
- package/esm2015/lib/model/payment.viewmodel.js +6 -0
- package/esm2015/lib/model/received-goods-view-model.js +11 -0
- package/esm2015/lib/model/transaction-bar-button.js +3 -0
- package/esm2015/lib/service/article-connector.service.js +60 -0
- package/esm2015/lib/service/article.service.js +25 -0
- package/esm2015/lib/service/collection-cache.service.js +38 -0
- package/esm2015/lib/service/ione-connector-adapter.service.js +187 -18
- package/esm2015/lib/service/options.service.js +3 -1
- package/esm2015/lib/service/payment.service.js +51 -0
- package/esm2015/lib/service/pending-reason.service.js +5 -5
- package/esm2015/lib/service/shared-connector.service.js +53 -0
- package/esm2015/lib/service/shared.service.js +38 -0
- package/esm2015/lib/service/transaction-connector.service.js +1015 -0
- package/esm2015/lib/service/transaction-event.service.js +29 -0
- package/esm2015/lib/service/transaction-image.service.js +53 -0
- package/esm2015/lib/service/transaction-mapping.service.js +85 -0
- package/esm2015/lib/service/transaction.service.js +97 -117
- package/esm2015/public_api.js +15 -9
- package/fesm2015/colijnit-transaction.js +6270 -2159
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/{seller-information/seller-information.component.d.ts → avatar/avatar.component.d.ts} +5 -3
- package/lib/component/avatar/avatar.module.d.ts +2 -0
- package/lib/component/{seller-information → avatar}/style/_layout.scss +5 -5
- package/lib/component/avatar/style/_material-definition.scss +2 -0
- package/lib/component/avatar/style/_theme.scss +7 -0
- package/lib/component/{order-confirmation-grid → avatar}/style/material.scss +0 -1
- package/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.d.ts +2 -0
- package/lib/component/checkout/checkout-overview-delivery-edit/style/material.scss +0 -1
- package/lib/component/checkout/checkout-overview-relation-edit/style/material.scss +0 -1
- package/lib/component/checkout/checkout-relation-suggestions-list/style/material.scss +0 -1
- package/lib/component/checkout/checkout-relation-suggestions-list-item/style/material.scss +0 -1
- package/lib/component/checkout/style/material.scss +1 -2
- package/lib/component/confirmation-dialog/style/material.scss +0 -1
- package/lib/component/core/base/components/transaction-header-block/style/_layout.scss +53 -0
- package/lib/component/core/base/components/transaction-header-block/style/_material-definition.scss +20 -0
- package/lib/component/core/base/components/transaction-header-block/style/_theme.scss +11 -0
- package/lib/component/core/base/components/transaction-header-block/style/material.scss +4 -0
- package/lib/component/core/base/components/transaction-header-block/transaction-header-block.component.d.ts +8 -0
- package/lib/component/core/base/components/transaction-header-block/transaction-header-block.module.d.ts +2 -0
- package/lib/component/core/base/style/material.scss +0 -1
- package/lib/component/core/base/transaction-grid-base.component.d.ts +25 -0
- package/lib/component/core/characteristic-answer/characteristic-answer.component.scss +0 -1
- package/lib/component/core/icon/icon.component.scss +0 -1
- package/lib/component/core/image-display/style/material.scss +0 -1
- package/lib/component/core/relation/customer-groups.component.d.ts +2 -2
- package/lib/component/core/stock-status-indicator/stock-status-indicator.component.scss +0 -1
- package/lib/component/delivery-type-tile/style/material.scss +0 -1
- package/lib/component/order-confirmation-create/style/material.scss +0 -1
- package/lib/component/payment/payment.component.d.ts +22 -5
- package/lib/component/payment/style/_layout.scss +23 -1
- package/lib/component/payment/style/_material-definition.scss +0 -1
- package/lib/component/payment/style/_theme.scss +24 -0
- package/lib/component/payment/style/material.scss +0 -1
- package/lib/component/payment-tile/payment-tile.component.d.ts +1 -0
- package/lib/component/payment-tile/style/_layout.scss +2 -1
- package/lib/component/payment-tile/style/material.scss +0 -1
- package/lib/component/relation-address/relation-address.component.d.ts +2 -2
- package/lib/component/relation-address/style/material.scss +0 -1
- package/lib/component/relation-address-select/style/material.scss +0 -1
- package/lib/component/relation-address-tile/style/material.scss +0 -1
- package/lib/component/shared/transaction-article-text/style/material.scss +0 -1
- package/lib/component/shared/transaction-article-text-overview/style/material.scss +0 -1
- package/lib/component/shopping-cart/style/material.scss +0 -1
- package/lib/component/shopping-cart-OLD/shopping-cart-manager/shopping-cart-manager.component.scss +0 -1
- package/lib/component/shopping-cart-preview/style/material.scss +0 -1
- package/lib/component/stepper/style/material.scss +0 -1
- package/lib/component/tile/style/material.scss +0 -1
- package/lib/component/transaction/style/_layout.scss +13 -13
- package/lib/component/transaction/style/_material-definition.scss +2 -6
- package/lib/component/transaction/style/_theme.scss +0 -18
- package/lib/component/transaction/style/material.scss +5 -5
- package/lib/component/transaction/transaction.component.d.ts +9 -9
- package/lib/component/transaction-button-bar/style/_layout.scss +50 -0
- package/lib/component/transaction-button-bar/style/_material-definition.scss +12 -0
- package/lib/component/transaction-button-bar/style/_theme.scss +14 -0
- package/lib/component/{order-grid → transaction-button-bar}/style/material.scss +0 -1
- package/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button.component.d.ts +9 -0
- package/lib/component/transaction-button-bar/transaction-button-bar.component.d.ts +17 -0
- package/lib/component/transaction-button-bar/transaction-button-bar.module.d.ts +2 -0
- package/lib/component/transaction-confirmation-history/style/material.scss +0 -1
- package/lib/component/transaction-grid/transaction-base-grid/style/_layout.scss +33 -0
- package/lib/component/transaction-grid/transaction-base-grid/style/_material-definition.scss +8 -0
- package/lib/component/transaction-grid/transaction-base-grid/style/_theme.scss +12 -0
- package/lib/component/{seller-information → transaction-grid/transaction-base-grid}/style/material.scss +0 -1
- package/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.component.d.ts +8 -0
- package/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.module.d.ts +2 -0
- package/lib/component/transaction-grid/transaction-grid/style/_layout.scss +6 -0
- package/lib/component/{transaction-history-grid → transaction-grid/transaction-grid}/style/_material-definition.scss +0 -0
- package/lib/component/transaction-grid/transaction-grid/style/_theme.scss +6 -0
- package/lib/component/transaction-grid/transaction-grid/style/material.scss +5 -0
- package/lib/component/transaction-grid/transaction-grid/transaction-grid.component.d.ts +26 -0
- package/lib/component/transaction-grid/transaction-grid/transaction-grid.module.d.ts +2 -0
- package/lib/component/transaction-grid/transaction-history-grid/style/_layout.scss +15 -0
- package/lib/component/transaction-grid/transaction-history-grid/style/_material-definition.scss +1 -0
- package/lib/component/{transaction-history-grid → transaction-grid/transaction-history-grid}/style/_theme.scss +1 -1
- package/lib/component/{transaction-commit-bar → transaction-grid/transaction-history-grid}/style/material.scss +0 -1
- package/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.component.d.ts +19 -0
- package/lib/component/{transaction-history-grid → transaction-grid/transaction-history-grid}/transaction-history-grid.module.d.ts +0 -0
- package/lib/component/{transaction-lines-grid → transaction-grid/transaction-lines-grid}/style/_layout.scss +5 -1
- package/lib/component/{transaction-lines-grid → transaction-grid/transaction-lines-grid}/style/_material-definition.scss +3 -0
- package/lib/component/{transaction-lines-grid → transaction-grid/transaction-lines-grid}/style/_theme.scss +1 -1
- package/lib/component/transaction-grid/transaction-lines-grid/style/material.scss +4 -0
- package/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.component.d.ts +11 -0
- package/lib/component/{transaction-lines-grid → transaction-grid/transaction-lines-grid}/transaction-lines-grid.module.d.ts +0 -0
- package/lib/component/transaction-grid/transaction-order-confirmation-grid/style/_layout.scss +7 -0
- package/lib/component/{order-confirmation-grid → transaction-grid/transaction-order-confirmation-grid}/style/_material-definition.scss +0 -0
- package/lib/component/transaction-grid/transaction-order-confirmation-grid/style/_theme.scss +7 -0
- package/lib/component/transaction-grid/transaction-order-confirmation-grid/style/material.scss +3 -0
- package/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.component.d.ts +4 -0
- package/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.module.d.ts +2 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/style/_layout.scss +6 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/style/_material-definition.scss +0 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/style/_theme.scss +6 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/style/material.scss +4 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.component.d.ts +37 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.module.d.ts +2 -0
- package/lib/component/transaction-header/transaction-header/style/_layout.scss +40 -0
- package/lib/component/transaction-header/transaction-header/style/_material-definition.scss +9 -0
- package/lib/component/transaction-header/transaction-header/style/_theme.scss +11 -0
- package/lib/component/transaction-header/transaction-header/style/material.scss +7 -0
- package/lib/component/transaction-header/transaction-header/transaction-header.component.d.ts +10 -0
- package/lib/component/transaction-header/transaction-header/transaction-header.module.d.ts +2 -0
- package/lib/component/transaction-header/transaction-header-delivery/style/_layout.scss +38 -0
- package/lib/component/transaction-header/transaction-header-delivery/style/_material-definition.scss +7 -0
- package/lib/component/transaction-header/transaction-header-delivery/style/_theme.scss +25 -0
- package/lib/component/transaction-header/transaction-header-delivery/style/material.scss +3 -0
- package/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.d.ts +15 -0
- package/lib/component/{transaction-header-delivery → transaction-header/transaction-header-delivery}/transaction-header-delivery.module.d.ts +0 -0
- package/lib/component/transaction-header/transaction-header-order/style/_layout.scss +12 -0
- package/lib/component/transaction-header/transaction-header-order/style/_material-definition.scss +0 -0
- package/lib/component/transaction-header/transaction-header-order/style/_theme.scss +6 -0
- package/lib/component/transaction-header/transaction-header-order/style/material.scss +4 -0
- package/lib/component/transaction-header/transaction-header-order/transaction-header-order.component.d.ts +4 -0
- package/lib/component/transaction-header/transaction-header-order/transaction-header-order.module.d.ts +2 -0
- package/lib/component/transaction-header/transaction-header-payment/style/_layout.scss +14 -0
- package/lib/component/transaction-header/transaction-header-payment/style/_material-definition.scss +4 -0
- package/lib/component/transaction-header/transaction-header-payment/style/_theme.scss +12 -0
- package/lib/component/transaction-header/transaction-header-payment/style/material.scss +5 -0
- package/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.d.ts +6 -0
- package/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.module.d.ts +2 -0
- package/lib/component/transaction-header/transaction-header-relation/style/_layout.scss +7 -0
- package/lib/component/transaction-header/transaction-header-relation/style/_material-definition.scss +0 -0
- package/lib/component/transaction-header/transaction-header-relation/style/_theme.scss +6 -0
- package/lib/component/transaction-header/transaction-header-relation/style/material.scss +4 -0
- package/lib/component/{transaction-header-relation → transaction-header/transaction-header-relation}/transaction-header-relation.component.d.ts +1 -1
- package/lib/component/{transaction-header-relation → transaction-header/transaction-header-relation}/transaction-header-relation.module.d.ts +0 -0
- package/lib/component/transaction-header/transaction-header.component.d.ts +0 -2
- package/lib/component/transaction-history-grid-status/style/_layout.scss +7 -7
- package/lib/component/transaction-history-grid-status/style/_material-definition.scss +8 -0
- package/lib/component/transaction-history-grid-status/style/material.scss +0 -1
- package/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.d.ts +2 -0
- package/lib/component/transaction-line/style/_layout.scss +38 -1
- package/lib/component/transaction-line/style/_material-definition.scss +4 -3
- package/lib/component/transaction-line/style/_theme.scss +5 -0
- package/lib/component/transaction-line/style/material.scss +0 -1
- package/lib/component/transaction-line/transaction-line.component.d.ts +7 -4
- package/lib/component/transaction-line-grid/style/material.scss +0 -1
- package/lib/component/transaction-line-side-panel/style/_layout.scss +3 -2
- package/lib/component/transaction-line-side-panel/style/_material-definition.scss +2 -0
- package/lib/component/transaction-line-side-panel/style/material.scss +0 -1
- package/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.d.ts +13 -6
- package/lib/component/transaction-line-side-panel-default/style/material.scss +0 -1
- package/lib/component/transaction-line-side-panel-purchase/style/_layout.scss +6 -0
- package/lib/component/transaction-line-side-panel-purchase/style/_material-definition.scss +0 -0
- package/lib/component/transaction-line-side-panel-purchase/style/_theme.scss +6 -0
- package/lib/component/transaction-line-side-panel-purchase/style/material.scss +5 -0
- package/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.d.ts +21 -0
- package/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.module.d.ts +2 -0
- package/lib/component/transaction-lines/style/material.scss +0 -1
- package/lib/component/transaction-lines/transaction-lines.component.d.ts +3 -5
- package/lib/component/transaction-quick-access/transaction-quick-access/style/_layout.scss +11 -0
- package/lib/component/{transaction-commit-bar → transaction-quick-access/transaction-quick-access}/style/_material-definition.scss +0 -0
- package/lib/component/{transaction-commit-bar → transaction-quick-access/transaction-quick-access}/style/_theme.scss +1 -1
- package/lib/component/transaction-quick-access/transaction-quick-access/style/material.scss +6 -0
- package/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.component.d.ts +21 -0
- package/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.module.d.ts +2 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_layout.scss +9 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_material-definition.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_theme.scss +6 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/material.scss +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.d.ts +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.module.d.ts +2 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/style/_layout.scss +7 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/style/_material-definition.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/style/_theme.scss +6 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/style/material.scss +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.component.d.ts +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.module.d.ts +2 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/_layout.scss +9 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/_material-definition.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/_theme.scss +6 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/material.scss +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.d.ts +27 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.module.d.ts +2 -0
- package/lib/component/transaction-receiving-goods-details/style/_layout.scss +4 -4
- package/lib/component/transaction-receiving-goods-details/style/_material-definition.scss +3 -1
- package/lib/component/transaction-receiving-goods-details/style/material.scss +0 -1
- package/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.component.d.ts +28 -2
- package/lib/component/transaction-receiving-goods-history/style/material.scss +0 -1
- package/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.d.ts +14 -1
- package/lib/component/transaction-search/service/filter-request.service.d.ts +23 -0
- package/lib/component/transaction-search/service/transaction-search.service.d.ts +11 -0
- package/lib/component/transaction-search/style/_layout.scss +37 -0
- package/lib/component/transaction-search/style/_material-definition.scss +41 -0
- package/lib/component/transaction-search/style/_theme.scss +6 -0
- package/lib/component/transaction-search/style/material.scss +7 -0
- package/lib/component/transaction-search/transaction-filter/style/_layout.scss +53 -0
- package/lib/component/transaction-search/transaction-filter/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-filter/style/_theme.scss +8 -0
- package/lib/component/transaction-search/transaction-filter/style/material.scss +7 -0
- package/lib/component/transaction-search/transaction-filter/transaction-filter.component.d.ts +21 -0
- package/lib/component/transaction-search/transaction-filter/transaction-filter.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-categories/style/_layout.scss +23 -0
- package/lib/component/transaction-search/transaction-filter-categories/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-categories/style/_theme.scss +13 -0
- package/lib/component/transaction-search/transaction-filter-categories/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.component.d.ts +10 -0
- package/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-content-article/style/_layout.scss +13 -0
- package/lib/component/transaction-search/transaction-filter-content-article/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-filter-content-article/style/_theme.scss +6 -0
- package/lib/component/transaction-search/transaction-filter-content-article/style/material.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content-article/transaction-filter-content-article.component.d.ts +37 -0
- package/lib/component/transaction-search/transaction-filter-content-article/transaction-filter-content-article.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/style/_layout.scss +12 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/style/_theme.scss +6 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/style/material.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.component.d.ts +36 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-content-order/style/_layout.scss +12 -0
- package/lib/component/transaction-search/transaction-filter-content-order/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-filter-content-order/style/_theme.scss +6 -0
- package/lib/component/transaction-search/transaction-filter-content-order/style/material.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content-order/transaction-filter-content-order.component.d.ts +60 -0
- package/lib/component/transaction-search/transaction-filter-content-order/transaction-filter-content-order.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-search-result/style/_layout.scss +30 -0
- package/lib/component/transaction-search/transaction-search-result/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-search-result/style/_theme.scss +10 -0
- package/lib/component/transaction-search/transaction-search-result/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.d.ts +19 -0
- package/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-search.component.d.ts +12 -0
- package/lib/component/transaction-search/transaction-search.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-tile/style/_layout.scss +91 -0
- package/lib/component/transaction-search/transaction-tile/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-tile/style/_theme.scss +46 -0
- package/lib/component/transaction-search/transaction-tile/style/material.scss +5 -0
- package/lib/component/transaction-search/transaction-tile/transaction-tile.component.d.ts +13 -0
- package/lib/component/transaction-search/transaction-tile/transaction-tile.module.d.ts +2 -0
- package/lib/component/transaction-search-grid/style/_layout.scss +6 -0
- package/lib/component/transaction-search-grid/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search-grid/style/_theme.scss +6 -0
- package/lib/component/transaction-search-grid/style/material.scss +7 -0
- package/lib/component/transaction-search-grid/transaction-search-grid.component.d.ts +13 -0
- package/lib/component/transaction-search-grid/transaction-search-grid.module.d.ts +2 -0
- package/lib/component/transaction-totals/style/material.scss +0 -1
- package/lib/component/view-mode-buttons/style/_layout.scss +20 -0
- package/lib/component/view-mode-buttons/style/_material-definition.scss +5 -0
- package/lib/component/view-mode-buttons/style/_theme.scss +22 -0
- package/lib/component/view-mode-buttons/style/material.scss +3 -0
- package/lib/component/view-mode-buttons/view-mode-buttons.component.d.ts +17 -0
- package/lib/component/view-mode-buttons/view-mode-buttons.module.d.ts +2 -0
- package/lib/enum/content-view-mode.enum.d.ts +2 -1
- package/lib/enum/icon.enum.d.ts +17 -0
- package/lib/enum/position-grid-row.enum.d.ts +4 -0
- package/lib/enum/status-type.enum.d.ts +3 -1
- package/lib/enum/transaction-type-category.enum.d.ts +14 -0
- package/lib/model/filter-item.viewmodel.d.ts +7 -0
- package/lib/model/filter-viewmodel.d.ts +8 -0
- package/lib/model/payment.viewmodel.d.ts +6 -0
- package/lib/model/received-goods-view-model.d.ts +10 -0
- package/lib/model/transaction-bar-button.d.ts +7 -0
- package/lib/service/article-connector.service.d.ts +13 -0
- package/lib/service/article.service.d.ts +6 -0
- package/lib/service/collection-cache.service.d.ts +6 -0
- package/lib/service/ione-connector-adapter.service.d.ts +24 -3
- package/lib/service/options.service.d.ts +1 -0
- package/lib/service/payment.service.d.ts +9 -0
- package/lib/service/pending-reason.service.d.ts +3 -3
- package/lib/service/shared-connector.service.d.ts +12 -0
- package/lib/service/shared.service.d.ts +13 -0
- package/lib/service/transaction-connector.service.d.ts +119 -0
- package/lib/service/transaction-event.service.d.ts +65 -0
- package/lib/service/transaction-image.service.d.ts +10 -0
- package/lib/service/transaction-mapping.service.d.ts +14 -0
- package/lib/service/transaction.service.d.ts +48 -28
- package/lib/style/_variables.scss +41 -36
- package/lib/style/transaction-globals.scss +25 -0
- package/package.json +6 -3
- package/public_api.d.ts +14 -8
- package/esm2015/lib/component/core/base/default-ok-cancel-buttons.component.js +0 -41
- package/esm2015/lib/component/order-confirmation-grid/order-confirmation-grid.component.js +0 -70
- package/esm2015/lib/component/order-confirmation-grid/order-confirmation-grid.module.js +0 -29
- package/esm2015/lib/component/order-grid/order-grid.component.js +0 -99
- package/esm2015/lib/component/order-grid/order-grid.module.js +0 -28
- package/esm2015/lib/component/seller-information/seller-information.component.js +0 -61
- package/esm2015/lib/component/seller-information/seller-information.module.js +0 -21
- package/esm2015/lib/component/transaction-commit-bar/transaction-commit-bar.component.js +0 -46
- package/esm2015/lib/component/transaction-commit-bar/transaction-commit-bar.module.js +0 -27
- package/esm2015/lib/component/transaction-header-contact/transaction-header-contact.component.js +0 -34
- package/esm2015/lib/component/transaction-header-contact/transaction-header-contact.module.js +0 -19
- package/esm2015/lib/component/transaction-header-delivery/transaction-header-delivery.component.js +0 -60
- package/esm2015/lib/component/transaction-header-delivery/transaction-header-delivery.module.js +0 -21
- package/esm2015/lib/component/transaction-header-relation/transaction-header-relation.component.js +0 -35
- package/esm2015/lib/component/transaction-header-relation/transaction-header-relation.module.js +0 -19
- package/esm2015/lib/component/transaction-history-grid/transaction-history-grid.component.js +0 -47
- package/esm2015/lib/component/transaction-history-grid/transaction-history-grid.module.js +0 -27
- package/esm2015/lib/component/transaction-lines-grid/transaction-lines-grid.component.js +0 -64
- package/esm2015/lib/component/transaction-lines-grid/transaction-lines-grid.module.js +0 -27
- package/esm2015/lib/component/transaction-nav-bar/transaction-nav-bar-button/transaction-nav-bar-button.component.js +0 -29
- package/esm2015/lib/component/transaction-nav-bar/transaction-nav-bar.component.js +0 -65
- package/esm2015/lib/component/transaction-nav-bar/transaction-nav-bar.module.js +0 -26
- package/esm2015/lib/enum/tab-category.enum.js +0 -10
- package/lib/component/core/base/default-ok-cancel-buttons.component.d.ts +0 -13
- package/lib/component/order-confirmation-grid/order-confirmation-grid.component.d.ts +0 -15
- package/lib/component/order-confirmation-grid/order-confirmation-grid.module.d.ts +0 -2
- package/lib/component/order-confirmation-grid/style/_layout.scss +0 -5
- package/lib/component/order-confirmation-grid/style/_theme.scss +0 -5
- package/lib/component/order-grid/order-grid.component.d.ts +0 -23
- package/lib/component/order-grid/order-grid.module.d.ts +0 -2
- package/lib/component/order-grid/style/_layout.scss +0 -21
- package/lib/component/order-grid/style/_material-definition.scss +0 -2
- package/lib/component/order-grid/style/_theme.scss +0 -6
- package/lib/component/seller-information/seller-information.module.d.ts +0 -2
- package/lib/component/seller-information/style/_material-definition.scss +0 -2
- package/lib/component/seller-information/style/_theme.scss +0 -7
- package/lib/component/transaction-commit-bar/style/_layout.scss +0 -16
- package/lib/component/transaction-commit-bar/transaction-commit-bar.component.d.ts +0 -11
- package/lib/component/transaction-commit-bar/transaction-commit-bar.module.d.ts +0 -2
- package/lib/component/transaction-header-contact/style/_layout.scss +0 -25
- package/lib/component/transaction-header-contact/style/_material-definition.scss +0 -7
- package/lib/component/transaction-header-contact/style/_theme.scss +0 -11
- package/lib/component/transaction-header-contact/style/material.scss +0 -4
- package/lib/component/transaction-header-contact/transaction-header-contact.component.d.ts +0 -4
- package/lib/component/transaction-header-contact/transaction-header-contact.module.d.ts +0 -2
- package/lib/component/transaction-header-delivery/style/_layout.scss +0 -54
- package/lib/component/transaction-header-delivery/style/_material-definition.scss +0 -12
- package/lib/component/transaction-header-delivery/style/_theme.scss +0 -24
- package/lib/component/transaction-header-delivery/style/material.scss +0 -4
- package/lib/component/transaction-header-delivery/transaction-header-delivery.component.d.ts +0 -13
- package/lib/component/transaction-header-relation/style/_layout.scss +0 -25
- package/lib/component/transaction-header-relation/style/_material-definition.scss +0 -7
- package/lib/component/transaction-header-relation/style/_theme.scss +0 -11
- package/lib/component/transaction-header-relation/style/material.scss +0 -4
- package/lib/component/transaction-history-grid/style/_layout.scss +0 -7
- package/lib/component/transaction-history-grid/style/material.scss +0 -4
- package/lib/component/transaction-history-grid/transaction-history-grid.component.d.ts +0 -14
- package/lib/component/transaction-lines-grid/style/material.scss +0 -5
- package/lib/component/transaction-lines-grid/transaction-lines-grid.component.d.ts +0 -20
- package/lib/component/transaction-nav-bar/style/_layout.scss +0 -13
- package/lib/component/transaction-nav-bar/style/_material-definition.scss +0 -1
- package/lib/component/transaction-nav-bar/style/_theme.scss +0 -7
- package/lib/component/transaction-nav-bar/style/material.scss +0 -4
- package/lib/component/transaction-nav-bar/transaction-nav-bar-button/transaction-nav-bar-button.component.d.ts +0 -14
- package/lib/component/transaction-nav-bar/transaction-nav-bar-button/transaction-nav-bar-button.component.scss +0 -23
- package/lib/component/transaction-nav-bar/transaction-nav-bar.component.d.ts +0 -18
- package/lib/component/transaction-nav-bar/transaction-nav-bar.module.d.ts +0 -2
- package/lib/enum/tab-category.enum.d.ts +0 -8
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { NgModule } from "@angular/core";
|
|
2
|
-
import { CommonModule } from "@angular/common";
|
|
3
|
-
import { CoreModule } from "../core/core.module";
|
|
4
|
-
import { TransactionLinesGridComponent } from "./transaction-lines-grid.component";
|
|
5
|
-
import { ButtonModule, InputNumberPickerModule, SimpleGridModule } from "@colijnit/corecomponents_v12";
|
|
6
|
-
import { PipeModule } from "../../pipe/pipe.module";
|
|
7
|
-
export class TransactionLinesGridModule {
|
|
8
|
-
}
|
|
9
|
-
TransactionLinesGridModule.decorators = [
|
|
10
|
-
{ type: NgModule, args: [{
|
|
11
|
-
imports: [
|
|
12
|
-
CommonModule,
|
|
13
|
-
CoreModule,
|
|
14
|
-
SimpleGridModule,
|
|
15
|
-
InputNumberPickerModule,
|
|
16
|
-
PipeModule,
|
|
17
|
-
ButtonModule
|
|
18
|
-
],
|
|
19
|
-
declarations: [
|
|
20
|
-
TransactionLinesGridComponent
|
|
21
|
-
],
|
|
22
|
-
exports: [
|
|
23
|
-
TransactionLinesGridComponent
|
|
24
|
-
]
|
|
25
|
-
},] }
|
|
26
|
-
];
|
|
27
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tbGluZXMtZ3JpZC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1saW5lcy1ncmlkL3RyYW5zYWN0aW9uLWxpbmVzLWdyaWQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDdkMsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyxVQUFVLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUMvQyxPQUFPLEVBQUMsNkJBQTZCLEVBQUMsTUFBTSxvQ0FBb0MsQ0FBQztBQUNqRixPQUFPLEVBQUMsWUFBWSxFQUFFLHVCQUF1QixFQUFFLGdCQUFnQixFQUFDLE1BQU0sOEJBQThCLENBQUM7QUFDckcsT0FBTyxFQUFDLFVBQVUsRUFBQyxNQUFNLHdCQUF3QixDQUFDO0FBa0JsRCxNQUFNLE9BQU8sMEJBQTBCOzs7WUFoQnRDLFFBQVEsU0FBQztnQkFDTixPQUFPLEVBQUU7b0JBQ0wsWUFBWTtvQkFDWixVQUFVO29CQUNWLGdCQUFnQjtvQkFDaEIsdUJBQXVCO29CQUN2QixVQUFVO29CQUNWLFlBQVk7aUJBQ2Y7Z0JBQ0gsWUFBWSxFQUFFO29CQUNaLDZCQUE2QjtpQkFDOUI7Z0JBQ0QsT0FBTyxFQUFFO29CQUNQLDZCQUE2QjtpQkFDOUI7YUFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7TmdNb2R1bGV9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7Q29tbW9uTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvY29tbW9uXCI7XHJcbmltcG9ydCB7Q29yZU1vZHVsZX0gZnJvbSBcIi4uL2NvcmUvY29yZS5tb2R1bGVcIjtcclxuaW1wb3J0IHtUcmFuc2FjdGlvbkxpbmVzR3JpZENvbXBvbmVudH0gZnJvbSBcIi4vdHJhbnNhY3Rpb24tbGluZXMtZ3JpZC5jb21wb25lbnRcIjtcclxuaW1wb3J0IHtCdXR0b25Nb2R1bGUsIElucHV0TnVtYmVyUGlja2VyTW9kdWxlLCBTaW1wbGVHcmlkTW9kdWxlfSBmcm9tIFwiQGNvbGlqbml0L2NvcmVjb21wb25lbnRzX3YxMlwiO1xyXG5pbXBvcnQge1BpcGVNb2R1bGV9IGZyb20gXCIuLi8uLi9waXBlL3BpcGUubW9kdWxlXCI7XHJcblxyXG5ATmdNb2R1bGUoe1xyXG4gICAgaW1wb3J0czogW1xyXG4gICAgICAgIENvbW1vbk1vZHVsZSxcclxuICAgICAgICBDb3JlTW9kdWxlLFxyXG4gICAgICAgIFNpbXBsZUdyaWRNb2R1bGUsXHJcbiAgICAgICAgSW5wdXROdW1iZXJQaWNrZXJNb2R1bGUsXHJcbiAgICAgICAgUGlwZU1vZHVsZSxcclxuICAgICAgICBCdXR0b25Nb2R1bGVcclxuICAgIF0sXHJcbiAgZGVjbGFyYXRpb25zOiBbXHJcbiAgICBUcmFuc2FjdGlvbkxpbmVzR3JpZENvbXBvbmVudFxyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgVHJhbnNhY3Rpb25MaW5lc0dyaWRDb21wb25lbnRcclxuICBdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUcmFuc2FjdGlvbkxpbmVzR3JpZE1vZHVsZSB7XHJcbn1cclxuIl19
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { Component, Input } from "@angular/core";
|
|
2
|
-
import { Icon } from "../../../enum/icon.enum";
|
|
3
|
-
import { IconCacheService } from "../../../service/icon-cache.service";
|
|
4
|
-
export class TransactionNavBarButtonComponent {
|
|
5
|
-
constructor(iconCacheService) {
|
|
6
|
-
this.iconCacheService = iconCacheService;
|
|
7
|
-
this.icons = Icon;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
TransactionNavBarButtonComponent.decorators = [
|
|
11
|
-
{ type: Component, args: [{
|
|
12
|
-
selector: "co-transaction-nav-bar-button",
|
|
13
|
-
template: `
|
|
14
|
-
<div class="button-wrapper" [class.selected]="tabData.category === selectedCategory">
|
|
15
|
-
<co-icon [iconData]="iconCacheService.getIcon(tabData.iconName)"></co-icon>
|
|
16
|
-
<span class="button-title" [textContent]="tabData.title"></span>
|
|
17
|
-
</div>
|
|
18
|
-
`,
|
|
19
|
-
styles: [":host .button-wrapper{height:65px;min-width:65px;background:white;border-radius:10px;display:flex;flex-direction:column;align-items:center;justify-content:center;cursor:pointer}:host .button-wrapper .button-title{font-size:.8em;padding:0 7px 4px}:host .selected{box-shadow:0 0 0 1px #558be3 inset}\n"]
|
|
20
|
-
},] }
|
|
21
|
-
];
|
|
22
|
-
TransactionNavBarButtonComponent.ctorParameters = () => [
|
|
23
|
-
{ type: IconCacheService }
|
|
24
|
-
];
|
|
25
|
-
TransactionNavBarButtonComponent.propDecorators = {
|
|
26
|
-
tabData: [{ type: Input }],
|
|
27
|
-
selectedCategory: [{ type: Input }]
|
|
28
|
-
};
|
|
29
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tbmF2LWJhci1idXR0b24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdHJhbnNhY3Rpb24tbmF2LWJhci90cmFuc2FjdGlvbi1uYXYtYmFyLWJ1dHRvbi90cmFuc2FjdGlvbi1uYXYtYmFyLWJ1dHRvbi5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFNBQVMsRUFBRSxLQUFLLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDL0MsT0FBTyxFQUFFLElBQUksRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQy9DLE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHFDQUFxQyxDQUFDO0FBYXJFLE1BQU0sT0FBTyxnQ0FBZ0M7SUFTM0MsWUFDUyxnQkFBa0M7UUFBbEMscUJBQWdCLEdBQWhCLGdCQUFnQixDQUFrQjtRQVQzQixVQUFLLEdBQWdCLElBQUksQ0FBQztJQVV0QyxDQUFDOzs7WUFyQk4sU0FBUyxTQUFDO2dCQUNULFFBQVEsRUFBRSwrQkFBK0I7Z0JBQ3pDLFFBQVEsRUFBRTs7Ozs7R0FLVDs7YUFFRjs7O1lBWk8sZ0JBQWdCOzs7c0JBZ0JyQixLQUFLOytCQUdMLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgSW5wdXR9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IEljb24gfSBmcm9tIFwiLi4vLi4vLi4vZW51bS9pY29uLmVudW1cIjtcclxuaW1wb3J0IHtJY29uQ2FjaGVTZXJ2aWNlfSBmcm9tIFwiLi4vLi4vLi4vc2VydmljZS9pY29uLWNhY2hlLnNlcnZpY2VcIjtcclxuaW1wb3J0IHtUYWJDYXRlZ29yeX0gZnJvbSBcIi4uLy4uLy4uL2VudW0vdGFiLWNhdGVnb3J5LmVudW1cIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiBcImNvLXRyYW5zYWN0aW9uLW5hdi1iYXItYnV0dG9uXCIsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxkaXYgY2xhc3M9XCJidXR0b24td3JhcHBlclwiIFtjbGFzcy5zZWxlY3RlZF09XCJ0YWJEYXRhLmNhdGVnb3J5ID09PSBzZWxlY3RlZENhdGVnb3J5XCI+XHJcbiAgICAgIDxjby1pY29uIFtpY29uRGF0YV09XCJpY29uQ2FjaGVTZXJ2aWNlLmdldEljb24odGFiRGF0YS5pY29uTmFtZSlcIj48L2NvLWljb24+XHJcbiAgICAgIDxzcGFuIGNsYXNzPVwiYnV0dG9uLXRpdGxlXCIgW3RleHRDb250ZW50XT1cInRhYkRhdGEudGl0bGVcIj48L3NwYW4+XHJcbiAgICA8L2Rpdj5cclxuICBgLFxyXG4gIHN0eWxlVXJsczogW1wiLi90cmFuc2FjdGlvbi1uYXYtYmFyLWJ1dHRvbi5jb21wb25lbnQuc2Nzc1wiXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgVHJhbnNhY3Rpb25OYXZCYXJCdXR0b25Db21wb25lbnQge1xyXG4gIHB1YmxpYyByZWFkb25seSBpY29uczogdHlwZW9mIEljb24gPSBJY29uO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIHB1YmxpYyB0YWJEYXRhOiB7Y2F0ZWdvcnk6IFRhYkNhdGVnb3J5LCB0aXRsZTogc3RyaW5nLCBpY29uTmFtZTogSWNvbn07XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgcHVibGljIHNlbGVjdGVkQ2F0ZWdvcnk6IFRhYkNhdGVnb3J5O1xyXG5cclxuICBjb25zdHJ1Y3RvcihcclxuICAgIHB1YmxpYyBpY29uQ2FjaGVTZXJ2aWNlOiBJY29uQ2FjaGVTZXJ2aWNlXHJcbiAgKSB7IH1cclxufVxyXG4iXX0=
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import { Component, EventEmitter, HostBinding, Input, Output, ViewEncapsulation } from "@angular/core";
|
|
2
|
-
import { Icon } from "../../enum/icon.enum";
|
|
3
|
-
import { TabCategory } from "../../enum/tab-category.enum";
|
|
4
|
-
import { DictionaryService } from "../../service/dictionary.service";
|
|
5
|
-
export class TransactionNavBarComponent {
|
|
6
|
-
constructor(_dictionaryService) {
|
|
7
|
-
this._dictionaryService = _dictionaryService;
|
|
8
|
-
this.icons = Icon;
|
|
9
|
-
this.selectedTab = TabCategory.Overview;
|
|
10
|
-
this.tabClicked = new EventEmitter();
|
|
11
|
-
this.tabs = [
|
|
12
|
-
{ category: TabCategory.Overview,
|
|
13
|
-
title: this._dictionaryService.get('OVERVIEW'),
|
|
14
|
-
iconName: this.icons.Tag },
|
|
15
|
-
{ category: TabCategory.OrderConfirmation,
|
|
16
|
-
title: this._dictionaryService.get('CONFIRMATION'),
|
|
17
|
-
iconName: this.icons.DeliveryTruck },
|
|
18
|
-
{ category: TabCategory.Transport,
|
|
19
|
-
title: this._dictionaryService.get('TRANSPORT'),
|
|
20
|
-
iconName: this.icons.Txt },
|
|
21
|
-
{ category: TabCategory.ReceivedGoods,
|
|
22
|
-
title: this._dictionaryService.get('RECEIVED'),
|
|
23
|
-
iconName: this.icons.ThinLines },
|
|
24
|
-
{ category: TabCategory.InvoiceCheck,
|
|
25
|
-
title: this._dictionaryService.get('INVOICE_CHECK'),
|
|
26
|
-
iconName: this.icons.ThickLines },
|
|
27
|
-
{ category: TabCategory.Menu,
|
|
28
|
-
title: this._dictionaryService.get('MENU'),
|
|
29
|
-
iconName: this.icons.CalendarDay }
|
|
30
|
-
];
|
|
31
|
-
}
|
|
32
|
-
showClass() {
|
|
33
|
-
return true;
|
|
34
|
-
}
|
|
35
|
-
handleTabClick(category) {
|
|
36
|
-
this.selectedTab = category;
|
|
37
|
-
this.tabClicked.next(category);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
TransactionNavBarComponent.decorators = [
|
|
41
|
-
{ type: Component, args: [{
|
|
42
|
-
selector: "co-transaction-nav-bar",
|
|
43
|
-
template: `
|
|
44
|
-
<div class="nav-bar-wrapper">
|
|
45
|
-
<div class="custom-button-wrapper" *ngFor="let tab of tabs">
|
|
46
|
-
<co-transaction-nav-bar-button
|
|
47
|
-
[tabData]="tab"
|
|
48
|
-
[selectedCategory]="selectedTab"
|
|
49
|
-
(click)="handleTabClick(tab.category)"
|
|
50
|
-
></co-transaction-nav-bar-button>
|
|
51
|
-
</div>
|
|
52
|
-
</div>
|
|
53
|
-
`,
|
|
54
|
-
encapsulation: ViewEncapsulation.None
|
|
55
|
-
},] }
|
|
56
|
-
];
|
|
57
|
-
TransactionNavBarComponent.ctorParameters = () => [
|
|
58
|
-
{ type: DictionaryService }
|
|
59
|
-
];
|
|
60
|
-
TransactionNavBarComponent.propDecorators = {
|
|
61
|
-
selectedTab: [{ type: Input }],
|
|
62
|
-
tabClicked: [{ type: Output }],
|
|
63
|
-
showClass: [{ type: HostBinding, args: ["class.co-transaction-nav-bar",] }]
|
|
64
|
-
};
|
|
65
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tbmF2LWJhci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1uYXYtYmFyL3RyYW5zYWN0aW9uLW5hdi1iYXIuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsWUFBWSxFQUFFLFdBQVcsRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLGlCQUFpQixFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3JHLE9BQU8sRUFBQyxJQUFJLEVBQUMsTUFBTSxzQkFBc0IsQ0FBQztBQUMxQyxPQUFPLEVBQUMsV0FBVyxFQUFDLE1BQU0sOEJBQThCLENBQUM7QUFDekQsT0FBTyxFQUFDLGlCQUFpQixFQUFDLE1BQU0sa0NBQWtDLENBQUM7QUFpQm5FLE1BQU0sT0FBTywwQkFBMEI7SUFtQ3JDLFlBQ1Usa0JBQXFDO1FBQXJDLHVCQUFrQixHQUFsQixrQkFBa0IsQ0FBbUI7UUFuQy9CLFVBQUssR0FBZ0IsSUFBSSxDQUFDO1FBR25DLGdCQUFXLEdBQWdCLFdBQVcsQ0FBQyxRQUFRLENBQUM7UUFHaEQsZUFBVSxHQUE4QixJQUFJLFlBQVksRUFBZSxDQUFDO1FBT3hFLFNBQUksR0FBNkQ7WUFDdEUsRUFBRSxRQUFRLEVBQUUsV0FBVyxDQUFDLFFBQVE7Z0JBQzlCLEtBQUssRUFBRSxJQUFJLENBQUMsa0JBQWtCLENBQUMsR0FBRyxDQUFDLFVBQVUsQ0FBQztnQkFDOUMsUUFBUSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsR0FBRyxFQUFFO1lBQzVCLEVBQUUsUUFBUSxFQUFFLFdBQVcsQ0FBQyxpQkFBaUI7Z0JBQ3ZDLEtBQUssRUFBRSxJQUFJLENBQUMsa0JBQWtCLENBQUMsR0FBRyxDQUFDLGNBQWMsQ0FBQztnQkFDbEQsUUFBUSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxFQUFFO1lBQ3RDLEVBQUUsUUFBUSxFQUFFLFdBQVcsQ0FBQyxTQUFTO2dCQUMvQixLQUFLLEVBQUUsSUFBSSxDQUFDLGtCQUFrQixDQUFDLEdBQUcsQ0FBQyxXQUFXLENBQUM7Z0JBQy9DLFFBQVEsRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLEdBQUcsRUFBRTtZQUM1QixFQUFFLFFBQVEsRUFBRSxXQUFXLENBQUMsYUFBYTtnQkFDbkMsS0FBSyxFQUFFLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxHQUFHLENBQUMsVUFBVSxDQUFDO2dCQUM5QyxRQUFRLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxTQUFTLEVBQUU7WUFDbEMsRUFBRSxRQUFRLEVBQUUsV0FBVyxDQUFDLFlBQVk7Z0JBQ2xDLEtBQUssRUFBRSxJQUFJLENBQUMsa0JBQWtCLENBQUMsR0FBRyxDQUFDLGVBQWUsQ0FBQztnQkFDbkQsUUFBUSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsVUFBVSxFQUFFO1lBQ25DLEVBQUUsUUFBUSxFQUFFLFdBQVcsQ0FBQyxJQUFJO2dCQUMxQixLQUFLLEVBQUUsSUFBSSxDQUFDLGtCQUFrQixDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUM7Z0JBQzFDLFFBQVEsRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLFdBQVcsRUFBRTtTQUNyQyxDQUFBO0lBSUcsQ0FBQztJQTNCRSxTQUFTO1FBQ2QsT0FBTyxJQUFJLENBQUM7SUFDZCxDQUFDO0lBMkJNLGNBQWMsQ0FBQyxRQUFxQjtRQUN6QyxJQUFJLENBQUMsV0FBVyxHQUFHLFFBQVEsQ0FBQztRQUM1QixJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQztJQUNqQyxDQUFDOzs7WUF6REYsU0FBUyxTQUFDO2dCQUNULFFBQVEsRUFBRSx3QkFBd0I7Z0JBQ2xDLFFBQVEsRUFBRTs7Ozs7Ozs7OztHQVVUO2dCQUNELGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO2FBQ3RDOzs7WUFoQk8saUJBQWlCOzs7MEJBb0J0QixLQUFLO3lCQUdMLE1BQU07d0JBR04sV0FBVyxTQUFDLDhCQUE4QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIEhvc3RCaW5kaW5nLCBJbnB1dCwgT3V0cHV0LCBWaWV3RW5jYXBzdWxhdGlvbn0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHtJY29ufSBmcm9tIFwiLi4vLi4vZW51bS9pY29uLmVudW1cIjtcclxuaW1wb3J0IHtUYWJDYXRlZ29yeX0gZnJvbSBcIi4uLy4uL2VudW0vdGFiLWNhdGVnb3J5LmVudW1cIjtcclxuaW1wb3J0IHtEaWN0aW9uYXJ5U2VydmljZX0gZnJvbSBcIi4uLy4uL3NlcnZpY2UvZGljdGlvbmFyeS5zZXJ2aWNlXCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogXCJjby10cmFuc2FjdGlvbi1uYXYtYmFyXCIsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxkaXYgY2xhc3M9XCJuYXYtYmFyLXdyYXBwZXJcIj5cclxuICAgICAgPGRpdiBjbGFzcz1cImN1c3RvbS1idXR0b24td3JhcHBlclwiICpuZ0Zvcj1cImxldCB0YWIgb2YgdGFic1wiPlxyXG4gICAgICAgIDxjby10cmFuc2FjdGlvbi1uYXYtYmFyLWJ1dHRvblxyXG4gICAgICAgICAgW3RhYkRhdGFdPVwidGFiXCJcclxuICAgICAgICAgIFtzZWxlY3RlZENhdGVnb3J5XT1cInNlbGVjdGVkVGFiXCJcclxuICAgICAgICAgIChjbGljayk9XCJoYW5kbGVUYWJDbGljayh0YWIuY2F0ZWdvcnkpXCJcclxuICAgICAgICA+PC9jby10cmFuc2FjdGlvbi1uYXYtYmFyLWJ1dHRvbj5cclxuICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuICBgLFxyXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcclxufSlcclxuZXhwb3J0IGNsYXNzIFRyYW5zYWN0aW9uTmF2QmFyQ29tcG9uZW50IHtcclxuICBwdWJsaWMgcmVhZG9ubHkgaWNvbnM6IHR5cGVvZiBJY29uID0gSWNvbjtcclxuXHJcbiAgQElucHV0KClcclxuICBwdWJsaWMgc2VsZWN0ZWRUYWI6IFRhYkNhdGVnb3J5ID0gVGFiQ2F0ZWdvcnkuT3ZlcnZpZXc7XHJcblxyXG4gIEBPdXRwdXQoKVxyXG4gIHB1YmxpYyB0YWJDbGlja2VkOiBFdmVudEVtaXR0ZXI8VGFiQ2F0ZWdvcnk+ID0gbmV3IEV2ZW50RW1pdHRlcjxUYWJDYXRlZ29yeT4oKTtcclxuXHJcbiAgQEhvc3RCaW5kaW5nKFwiY2xhc3MuY28tdHJhbnNhY3Rpb24tbmF2LWJhclwiKVxyXG4gIHB1YmxpYyBzaG93Q2xhc3MoKTogYm9vbGVhbiB7XHJcbiAgICByZXR1cm4gdHJ1ZTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyB0YWJzOiB7Y2F0ZWdvcnk6IFRhYkNhdGVnb3J5LCB0aXRsZTogc3RyaW5nLCBpY29uTmFtZTogSWNvbn1bXSA9IFtcclxuICAgIHsgY2F0ZWdvcnk6IFRhYkNhdGVnb3J5Lk92ZXJ2aWV3LFxyXG4gICAgICB0aXRsZTogdGhpcy5fZGljdGlvbmFyeVNlcnZpY2UuZ2V0KCdPVkVSVklFVycpLFxyXG4gICAgICBpY29uTmFtZTogdGhpcy5pY29ucy5UYWcgfSxcclxuICAgIHsgY2F0ZWdvcnk6IFRhYkNhdGVnb3J5Lk9yZGVyQ29uZmlybWF0aW9uLFxyXG4gICAgICB0aXRsZTogdGhpcy5fZGljdGlvbmFyeVNlcnZpY2UuZ2V0KCdDT05GSVJNQVRJT04nKSxcclxuICAgICAgaWNvbk5hbWU6IHRoaXMuaWNvbnMuRGVsaXZlcnlUcnVjayB9LFxyXG4gICAgeyBjYXRlZ29yeTogVGFiQ2F0ZWdvcnkuVHJhbnNwb3J0LFxyXG4gICAgICB0aXRsZTogdGhpcy5fZGljdGlvbmFyeVNlcnZpY2UuZ2V0KCdUUkFOU1BPUlQnKSxcclxuICAgICAgaWNvbk5hbWU6IHRoaXMuaWNvbnMuVHh0IH0sXHJcbiAgICB7IGNhdGVnb3J5OiBUYWJDYXRlZ29yeS5SZWNlaXZlZEdvb2RzLFxyXG4gICAgICB0aXRsZTogdGhpcy5fZGljdGlvbmFyeVNlcnZpY2UuZ2V0KCdSRUNFSVZFRCcpLFxyXG4gICAgICBpY29uTmFtZTogdGhpcy5pY29ucy5UaGluTGluZXMgfSxcclxuICAgIHsgY2F0ZWdvcnk6IFRhYkNhdGVnb3J5Lkludm9pY2VDaGVjayxcclxuICAgICAgdGl0bGU6IHRoaXMuX2RpY3Rpb25hcnlTZXJ2aWNlLmdldCgnSU5WT0lDRV9DSEVDSycpLFxyXG4gICAgICBpY29uTmFtZTogdGhpcy5pY29ucy5UaGlja0xpbmVzIH0sXHJcbiAgICB7IGNhdGVnb3J5OiBUYWJDYXRlZ29yeS5NZW51LFxyXG4gICAgICB0aXRsZTogdGhpcy5fZGljdGlvbmFyeVNlcnZpY2UuZ2V0KCdNRU5VJyksXHJcbiAgICAgIGljb25OYW1lOiB0aGlzLmljb25zLkNhbGVuZGFyRGF5IH1cclxuICBdXHJcblxyXG4gIGNvbnN0cnVjdG9yKFxyXG4gICAgcHJpdmF0ZSBfZGljdGlvbmFyeVNlcnZpY2U6IERpY3Rpb25hcnlTZXJ2aWNlXHJcbiAgKSB7IH1cclxuXHJcbiAgcHVibGljIGhhbmRsZVRhYkNsaWNrKGNhdGVnb3J5OiBUYWJDYXRlZ29yeSk6IHZvaWQge1xyXG4gICAgdGhpcy5zZWxlY3RlZFRhYiA9IGNhdGVnb3J5O1xyXG4gICAgdGhpcy50YWJDbGlja2VkLm5leHQoY2F0ZWdvcnkpO1xyXG4gIH1cclxufVxyXG4iXX0=
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { NgModule } from "@angular/core";
|
|
2
|
-
import { CommonModule } from "@angular/common";
|
|
3
|
-
import { CoreModule } from "../core/core.module";
|
|
4
|
-
import { TransactionNavBarComponent } from "./transaction-nav-bar.component";
|
|
5
|
-
import { TransactionNavBarButtonComponent } from "./transaction-nav-bar-button/transaction-nav-bar-button.component";
|
|
6
|
-
import { IconModule } from "@colijnit/corecomponents_v12";
|
|
7
|
-
export class TransactionNavBarModule {
|
|
8
|
-
}
|
|
9
|
-
TransactionNavBarModule.decorators = [
|
|
10
|
-
{ type: NgModule, args: [{
|
|
11
|
-
imports: [
|
|
12
|
-
CommonModule,
|
|
13
|
-
CoreModule,
|
|
14
|
-
IconModule,
|
|
15
|
-
],
|
|
16
|
-
declarations: [
|
|
17
|
-
TransactionNavBarComponent,
|
|
18
|
-
TransactionNavBarButtonComponent
|
|
19
|
-
],
|
|
20
|
-
exports: [
|
|
21
|
-
TransactionNavBarComponent,
|
|
22
|
-
TransactionNavBarButtonComponent
|
|
23
|
-
]
|
|
24
|
-
},] }
|
|
25
|
-
];
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tbmF2LWJhci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1uYXYtYmFyL3RyYW5zYWN0aW9uLW5hdi1iYXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDdkMsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyxVQUFVLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUMvQyxPQUFPLEVBQUMsMEJBQTBCLEVBQUMsTUFBTSxpQ0FBaUMsQ0FBQztBQUMzRSxPQUFPLEVBQUMsZ0NBQWdDLEVBQUMsTUFBTSxtRUFBbUUsQ0FBQztBQUNuSCxPQUFPLEVBQUMsVUFBVSxFQUFDLE1BQU0sOEJBQThCLENBQUM7QUFpQnhELE1BQU0sT0FBTyx1QkFBdUI7OztZQWZuQyxRQUFRLFNBQUM7Z0JBQ1IsT0FBTyxFQUFFO29CQUNQLFlBQVk7b0JBQ1osVUFBVTtvQkFDVixVQUFVO2lCQUNYO2dCQUNELFlBQVksRUFBRTtvQkFDWiwwQkFBMEI7b0JBQzFCLGdDQUFnQztpQkFDakM7Z0JBQ0QsT0FBTyxFQUFFO29CQUNQLDBCQUEwQjtvQkFDMUIsZ0NBQWdDO2lCQUNqQzthQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHtDb21tb25Nb2R1bGV9IGZyb20gXCJAYW5ndWxhci9jb21tb25cIjtcclxuaW1wb3J0IHtDb3JlTW9kdWxlfSBmcm9tIFwiLi4vY29yZS9jb3JlLm1vZHVsZVwiO1xyXG5pbXBvcnQge1RyYW5zYWN0aW9uTmF2QmFyQ29tcG9uZW50fSBmcm9tIFwiLi90cmFuc2FjdGlvbi1uYXYtYmFyLmNvbXBvbmVudFwiO1xyXG5pbXBvcnQge1RyYW5zYWN0aW9uTmF2QmFyQnV0dG9uQ29tcG9uZW50fSBmcm9tIFwiLi90cmFuc2FjdGlvbi1uYXYtYmFyLWJ1dHRvbi90cmFuc2FjdGlvbi1uYXYtYmFyLWJ1dHRvbi5jb21wb25lbnRcIjtcclxuaW1wb3J0IHtJY29uTW9kdWxlfSBmcm9tIFwiQGNvbGlqbml0L2NvcmVjb21wb25lbnRzX3YxMlwiO1xyXG5cclxuQE5nTW9kdWxlKHtcclxuICBpbXBvcnRzOiBbXHJcbiAgICBDb21tb25Nb2R1bGUsXHJcbiAgICBDb3JlTW9kdWxlLFxyXG4gICAgSWNvbk1vZHVsZSxcclxuICBdLFxyXG4gIGRlY2xhcmF0aW9uczogW1xyXG4gICAgVHJhbnNhY3Rpb25OYXZCYXJDb21wb25lbnQsXHJcbiAgICBUcmFuc2FjdGlvbk5hdkJhckJ1dHRvbkNvbXBvbmVudFxyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgVHJhbnNhY3Rpb25OYXZCYXJDb21wb25lbnQsXHJcbiAgICBUcmFuc2FjdGlvbk5hdkJhckJ1dHRvbkNvbXBvbmVudFxyXG4gIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIFRyYW5zYWN0aW9uTmF2QmFyTW9kdWxlIHtcclxufVxyXG4iXX0=
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export var TabCategory;
|
|
2
|
-
(function (TabCategory) {
|
|
3
|
-
TabCategory[TabCategory["Overview"] = 0] = "Overview";
|
|
4
|
-
TabCategory[TabCategory["OrderConfirmation"] = 1] = "OrderConfirmation";
|
|
5
|
-
TabCategory[TabCategory["Transport"] = 2] = "Transport";
|
|
6
|
-
TabCategory[TabCategory["ReceivedGoods"] = 3] = "ReceivedGoods";
|
|
7
|
-
TabCategory[TabCategory["InvoiceCheck"] = 4] = "InvoiceCheck";
|
|
8
|
-
TabCategory[TabCategory["Menu"] = 5] = "Menu";
|
|
9
|
-
})(TabCategory || (TabCategory = {}));
|
|
10
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFiLWNhdGVnb3J5LmVudW0uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2VudW0vdGFiLWNhdGVnb3J5LmVudW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFOLElBQVksV0FPWDtBQVBELFdBQVksV0FBVztJQUNyQixxREFBUSxDQUFBO0lBQ1IsdUVBQWlCLENBQUE7SUFDakIsdURBQVMsQ0FBQTtJQUNULCtEQUFhLENBQUE7SUFDYiw2REFBWSxDQUFBO0lBQ1osNkNBQUksQ0FBQTtBQUNOLENBQUMsRUFQVyxXQUFXLEtBQVgsV0FBVyxRQU90QiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBlbnVtIFRhYkNhdGVnb3J5IHtcclxuICBPdmVydmlldyxcclxuICBPcmRlckNvbmZpcm1hdGlvbixcclxuICBUcmFuc3BvcnQsXHJcbiAgUmVjZWl2ZWRHb29kcyxcclxuICBJbnZvaWNlQ2hlY2ssXHJcbiAgTWVudVxyXG59XHJcbiJdfQ==
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from "@angular/core";
|
|
2
|
-
import { ButtonComponent } from "@colijnit/corecomponents_v12";
|
|
3
|
-
export declare class DefaultOkCancelButtonsComponent {
|
|
4
|
-
okButtonComp: ButtonComponent;
|
|
5
|
-
okDisabled: boolean;
|
|
6
|
-
hideCancel: boolean;
|
|
7
|
-
hideOk: boolean;
|
|
8
|
-
okLabel: string;
|
|
9
|
-
okClick: EventEmitter<MouseEvent>;
|
|
10
|
-
cancelClick: EventEmitter<MouseEvent>;
|
|
11
|
-
showClass(): boolean;
|
|
12
|
-
onOkClick(event: MouseEvent): void;
|
|
13
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from "@angular/core";
|
|
2
|
-
import { Icon } from "../../enum/icon.enum";
|
|
3
|
-
import { TransactionService } from "../../service/transaction.service";
|
|
4
|
-
import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
|
|
5
|
-
export declare class OrderConfirmationGridComponent implements OnInit {
|
|
6
|
-
private _transactionService;
|
|
7
|
-
readonly icons: typeof Icon;
|
|
8
|
-
orderLines: TransactionLineInfo[];
|
|
9
|
-
sidePanelClicked: EventEmitter<boolean>;
|
|
10
|
-
showClass(): boolean;
|
|
11
|
-
orderGridData: any[];
|
|
12
|
-
constructor(_transactionService: TransactionService);
|
|
13
|
-
ngOnInit(): void;
|
|
14
|
-
openSidePanel(): void;
|
|
15
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit, QueryList } from "@angular/core";
|
|
2
|
-
import { Icon } from "../../enum/icon.enum";
|
|
3
|
-
import { TransactionService } from "../../service/transaction.service";
|
|
4
|
-
import { ColumnAlign, SimpleGridColumnDirective } from "@colijnit/corecomponents_v12";
|
|
5
|
-
import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
|
|
6
|
-
export declare class OrderGridComponent implements OnInit {
|
|
7
|
-
private _transactionService;
|
|
8
|
-
readonly icons: typeof Icon;
|
|
9
|
-
readonly align: typeof ColumnAlign;
|
|
10
|
-
set content(columnComponents: QueryList<SimpleGridColumnDirective>);
|
|
11
|
-
showClass(): boolean;
|
|
12
|
-
sidePanelClicked: EventEmitter<boolean>;
|
|
13
|
-
orderLines: TransactionLineInfo[];
|
|
14
|
-
gridData: any[];
|
|
15
|
-
extraColumns: SimpleGridColumnDirective[];
|
|
16
|
-
constructor(_transactionService: TransactionService);
|
|
17
|
-
ngOnInit(): void;
|
|
18
|
-
handleDrop(data: {
|
|
19
|
-
from: number;
|
|
20
|
-
to: number;
|
|
21
|
-
}): void;
|
|
22
|
-
openSidePanel(): void;
|
|
23
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
@import "../../../style/mixin";
|
|
2
|
-
|
|
3
|
-
@include export-module('co-order-grid-layout') {
|
|
4
|
-
.co-order-grid {
|
|
5
|
-
font-family: $tp-co-order-grid-font-family;
|
|
6
|
-
font-size: $tp-co-order-grid-font-size;
|
|
7
|
-
}
|
|
8
|
-
.co-order-grid-location-icon-wrapper {
|
|
9
|
-
display: flex;
|
|
10
|
-
align-items: center;
|
|
11
|
-
}
|
|
12
|
-
.co-order-grid-menu-icon {
|
|
13
|
-
//text-align: center;
|
|
14
|
-
width: 30px;
|
|
15
|
-
height: 30px;
|
|
16
|
-
}
|
|
17
|
-
.co-order-grid-sidepanel-icon {
|
|
18
|
-
width: 40px;
|
|
19
|
-
height: 40px;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
@import "../../../style/mixin";
|
|
2
|
-
|
|
3
|
-
@include export-module('co-transaction-commit-bar') {
|
|
4
|
-
.co-transaction-commit-bar {
|
|
5
|
-
width: 36%;
|
|
6
|
-
|
|
7
|
-
.commit-bar-wrapper {
|
|
8
|
-
display: flex;
|
|
9
|
-
align-items: center;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.commit-bar-item {
|
|
13
|
-
margin-right: 12px;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from "@angular/core";
|
|
2
|
-
import { TabCategory } from "../../enum/tab-category.enum";
|
|
3
|
-
export declare class TransactionCommitBarComponent {
|
|
4
|
-
readonly tabCategory: typeof TabCategory;
|
|
5
|
-
activeCategory: TabCategory;
|
|
6
|
-
commitDate: Date;
|
|
7
|
-
commitReferenceId: number;
|
|
8
|
-
packingSlipId: number;
|
|
9
|
-
checkboxValueChanged: EventEmitter<boolean>;
|
|
10
|
-
showClass(): boolean;
|
|
11
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
@import "../../../style/mixin";
|
|
2
|
-
|
|
3
|
-
@include export-module('co-transaction-header-contact-layout') {
|
|
4
|
-
.co-transaction-header-contact {
|
|
5
|
-
font-family: $tp-transaction-header-contact-font-family;
|
|
6
|
-
font-size: $tp-transaction-header-contact-font-size;
|
|
7
|
-
display: flex;
|
|
8
|
-
flex-direction: column;
|
|
9
|
-
min-width: $tp-transaction-header-block-width;
|
|
10
|
-
padding: $tp-transaction-header-block-padding;
|
|
11
|
-
margin: $tp-transaction-header-block-margin;
|
|
12
|
-
overflow: hidden;
|
|
13
|
-
border: $tp-transaction-header-block-border;
|
|
14
|
-
border-width: $tp-transaction-header-block-border-width;
|
|
15
|
-
line-height: $tp-transaction-header-block-line-height;
|
|
16
|
-
.transaction-header-first-section {
|
|
17
|
-
display: flex;
|
|
18
|
-
flex-direction: row;
|
|
19
|
-
align-items: center;
|
|
20
|
-
font-family: $tp-transaction-header-contact-first-section-font-family;
|
|
21
|
-
font-size: $tp-transaction-header-contact-first-section-font-size;
|
|
22
|
-
font-weight: $tp-transaction-header-contact-first-section-font-weight;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
$tp-transaction-header-contact-font-family: $tp-transaction-header-font-family !default;
|
|
2
|
-
$tp-transaction-header-contact-font-size: $tp-transaction-header-font-size !default;
|
|
3
|
-
$tp-transaction-header-contact-font-color: $tp-transaction-header-font-color !default;
|
|
4
|
-
$tp-transaction-header-contact-first-section-font-family: $tp-transaction-header-first-section-font-family !default;
|
|
5
|
-
$tp-transaction-header-contact-first-section-font-size: $tp-transaction-header-first-section-font-size !default;
|
|
6
|
-
$tp-transaction-header-contact-first-section-font-weight: $tp-transaction-header-first-section-font-weight !default;
|
|
7
|
-
$tp-transaction-header-contact-first-section-font-color: $tp-transaction-header-first-section-font-color !default;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
@import "../../../style/mixin";
|
|
2
|
-
|
|
3
|
-
@include export-module('co-transaction-header-contact-theme') {
|
|
4
|
-
.co-transaction-header-contact {
|
|
5
|
-
color: $tp-transaction-header-contact-font-color;
|
|
6
|
-
border-color: $tp-transaction-header-block-border-color;
|
|
7
|
-
.transaction-header-first-section {
|
|
8
|
-
color: $tp-transaction-header-contact-first-section-font-color;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
@import "../../../style/mixin";
|
|
2
|
-
|
|
3
|
-
@include export-module('co-transaction-header-delivery-layout') {
|
|
4
|
-
.co-transaction-header-delivery {
|
|
5
|
-
font-family: $tp-transaction-header-delivery-font-family;
|
|
6
|
-
font-size: $tp-transaction-header-delivery-font-size;
|
|
7
|
-
display: flex;
|
|
8
|
-
flex-direction: column;
|
|
9
|
-
min-width: $tp-transaction-header-block-width;
|
|
10
|
-
padding: $tp-transaction-header-block-padding;
|
|
11
|
-
margin: $tp-transaction-header-block-margin;
|
|
12
|
-
overflow: hidden;
|
|
13
|
-
border: $tp-transaction-header-block-border;
|
|
14
|
-
border-width: $tp-transaction-header-block-border-width;
|
|
15
|
-
line-height: $tp-transaction-header-block-line-height;
|
|
16
|
-
.transaction-header-first-section {
|
|
17
|
-
position: relative;
|
|
18
|
-
display: flex;
|
|
19
|
-
flex-direction: row;
|
|
20
|
-
align-items: center;
|
|
21
|
-
font-family: $tp-transaction-header-delivery-first-section-font-family;
|
|
22
|
-
font-size: $tp-transaction-header-delivery-first-section-font-size;
|
|
23
|
-
font-weight: $tp-transaction-header-delivery-first-section-font-weight;
|
|
24
|
-
.transaction-header-delivery-icon {
|
|
25
|
-
position: absolute;
|
|
26
|
-
height: 40px;
|
|
27
|
-
width: 40px;
|
|
28
|
-
top: -12px;
|
|
29
|
-
left: -12px;
|
|
30
|
-
}
|
|
31
|
-
.transaction-header-delivery-date {
|
|
32
|
-
margin-left: 50px;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
.transaction-header-content {
|
|
36
|
-
display: flex;
|
|
37
|
-
flex-direction: row;
|
|
38
|
-
position: relative;
|
|
39
|
-
}
|
|
40
|
-
.transaction-header-planning-request-icon-wrapper {
|
|
41
|
-
position: absolute;
|
|
42
|
-
right: 0;
|
|
43
|
-
bottom: 0;
|
|
44
|
-
width: $tp-transaction-header-delivery-planning-request-button-width;
|
|
45
|
-
height: $tp-transaction-header-delivery-planning-request-button-width;
|
|
46
|
-
border: $tp-transaction-header-delivery-planning-request-button-border;
|
|
47
|
-
border-radius: $tp-transaction-header-delivery-planning-request-button-border-radius;
|
|
48
|
-
.transaction-header-planning-request-icon {
|
|
49
|
-
width: $tp-transaction-header-delivery-planning-request-button-width;
|
|
50
|
-
height: $tp-transaction-header-delivery-planning-request-button-width;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
$tp-transaction-header-delivery-font-family: $tp-transaction-header-font-family !default;
|
|
2
|
-
$tp-transaction-header-delivery-font-size: $tp-transaction-header-font-size !default;
|
|
3
|
-
$tp-transaction-header-delivery-font-color: $tp-transaction-header-font-color !default;
|
|
4
|
-
$tp-transaction-header-delivery-first-section-font-family: $tp-transaction-header-first-section-font-family !default;
|
|
5
|
-
$tp-transaction-header-delivery-first-section-font-size: $tp-transaction-header-first-section-font-size !default;
|
|
6
|
-
$tp-transaction-header-delivery-first-section-font-weight: $tp-transaction-header-first-section-font-weight !default;
|
|
7
|
-
$tp-transaction-header-delivery-first-section-font-color: $tp-transaction-header-first-section-font-color !default;
|
|
8
|
-
$tp-transaction-header-delivery-planning-request-button-width: 40px !default;
|
|
9
|
-
$tp-transaction-header-delivery-planning-request-button-color: $tp-color-active !default;
|
|
10
|
-
$tp-transaction-header-delivery-planning-request-button-border: 1px solid !default;
|
|
11
|
-
$tp-transaction-header-delivery-planning-request-button-border-color: $tp-color-border !default;
|
|
12
|
-
$tp-transaction-header-delivery-planning-request-button-border-radius: 5px !default;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
@import "../../../style/mixin";
|
|
2
|
-
|
|
3
|
-
@include export-module('co-transaction-header-delivery-theme') {
|
|
4
|
-
.co-transaction-header-delivery {
|
|
5
|
-
color: $tp-transaction-header-delivery-font-color;
|
|
6
|
-
border-color: $tp-transaction-header-block-border-color;
|
|
7
|
-
.transaction-header-first-section {
|
|
8
|
-
color: $tp-transaction-header-delivery-first-section-font-color;
|
|
9
|
-
.transaction-header-delivery-icon {
|
|
10
|
-
[fill] {
|
|
11
|
-
fill: $tp-transaction-header-delivery-first-section-font-color;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
.transaction-header-planning-request-icon-wrapper {
|
|
16
|
-
border-color: $tp-transaction-header-delivery-planning-request-button-border-color;
|
|
17
|
-
}
|
|
18
|
-
.transaction-header-planning-request-icon {
|
|
19
|
-
[fill] {
|
|
20
|
-
fill: $tp-transaction-header-delivery-planning-request-button-color;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|
package/lib/component/transaction-header-delivery/transaction-header-delivery.component.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { TransactionBaseComponent } from "../core/base/transaction-base.component";
|
|
2
|
-
import { Icon } from "../../enum/icon.enum";
|
|
3
|
-
import { TransactionService } from "../../service/transaction.service";
|
|
4
|
-
import { DeliveryMethod } from "@colijnit/transactionapi/build/model/delivery-method.bo";
|
|
5
|
-
export declare class TransactionHeaderDeliveryComponent extends TransactionBaseComponent {
|
|
6
|
-
protected service: TransactionService;
|
|
7
|
-
readonly icons: typeof Icon;
|
|
8
|
-
showClass(): boolean;
|
|
9
|
-
deliveryMethod: DeliveryMethod;
|
|
10
|
-
deliveryMethods: DeliveryMethod[];
|
|
11
|
-
constructor(service: TransactionService);
|
|
12
|
-
transactionSet(): void;
|
|
13
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
@import "../../../style/mixin";
|
|
2
|
-
|
|
3
|
-
@include export-module('co-transaction-header-relation-layout') {
|
|
4
|
-
.co-transaction-header-relation {
|
|
5
|
-
font-family: $tp-transaction-header-relation-font-family;
|
|
6
|
-
font-size: $tp-transaction-header-relation-font-size;
|
|
7
|
-
display: flex;
|
|
8
|
-
flex-direction: column;
|
|
9
|
-
min-width: $tp-transaction-header-block-width;
|
|
10
|
-
padding: $tp-transaction-header-block-padding;
|
|
11
|
-
margin: $tp-transaction-header-block-margin;
|
|
12
|
-
overflow: hidden;
|
|
13
|
-
border: $tp-transaction-header-block-border;
|
|
14
|
-
border-width: $tp-transaction-header-block-border-width;
|
|
15
|
-
line-height: $tp-transaction-header-block-line-height;
|
|
16
|
-
.transaction-header-first-section {
|
|
17
|
-
display: flex;
|
|
18
|
-
flex-direction: row;
|
|
19
|
-
align-items: center;
|
|
20
|
-
font-family: $tp-transaction-header-relation-first-section-font-family;
|
|
21
|
-
font-size: $tp-transaction-header-relation-first-section-font-size;
|
|
22
|
-
font-weight: $tp-transaction-header-relation-first-section-font-weight;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
$tp-transaction-header-relation-font-family: $tp-transaction-header-font-family !default;
|
|
2
|
-
$tp-transaction-header-relation-font-size: $tp-transaction-header-font-size !default;
|
|
3
|
-
$tp-transaction-header-relation-font-color: $tp-transaction-header-font-color !default;
|
|
4
|
-
$tp-transaction-header-relation-first-section-font-family: $tp-transaction-header-first-section-font-family !default;
|
|
5
|
-
$tp-transaction-header-relation-first-section-font-size: $tp-transaction-header-first-section-font-size !default;
|
|
6
|
-
$tp-transaction-header-relation-first-section-font-weight: $tp-transaction-header-first-section-font-weight !default;
|
|
7
|
-
$tp-transaction-header-relation-first-section-font-color: $tp-transaction-header-first-section-font-color !default;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
@import "../../../style/mixin";
|
|
2
|
-
|
|
3
|
-
@include export-module('co-transaction-header-relation-theme') {
|
|
4
|
-
.co-transaction-header-relation {
|
|
5
|
-
color: $tp-transaction-header-relation-font-color;
|
|
6
|
-
border-color: $tp-transaction-header-block-border-color;
|
|
7
|
-
.transaction-header-first-section {
|
|
8
|
-
color: $tp-transaction-header-relation-first-section-font-color;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { QueryList } from "@angular/core";
|
|
2
|
-
import { TabCategory } from "../../enum/tab-category.enum";
|
|
3
|
-
import { TransactionLineInfo } from "@colijnit/transactionapi/build/model/transaction-line-info.bo";
|
|
4
|
-
import { SimpleGridColumnDirective } from "@colijnit/corecomponents_v12";
|
|
5
|
-
import { StatusType } from "../../enum/status-type.enum";
|
|
6
|
-
export declare class TransactionHistoryGridComponent {
|
|
7
|
-
readonly tabCategory: typeof TabCategory;
|
|
8
|
-
readonly statusType: typeof StatusType;
|
|
9
|
-
set content(columnComponents: QueryList<SimpleGridColumnDirective>);
|
|
10
|
-
transactionLines: TransactionLineInfo[];
|
|
11
|
-
showClass(): boolean;
|
|
12
|
-
extraColumns: SimpleGridColumnDirective[];
|
|
13
|
-
handleSelectRow(row: any): void;
|
|
14
|
-
}
|