@colijnit/transaction 12.1.79 → 12.1.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -13
- package/bundles/colijnit-transaction.umd.js +25560 -0
- package/bundles/colijnit-transaction.umd.js.map +1 -0
- package/colijnit-transaction.d.ts +350 -0
- package/colijnit-transaction.metadata.json +1 -0
- package/esm2015/colijnit-transaction.js +351 -0
- package/esm2015/lib/assets/dictionary/text.properties.js +751 -0
- package/esm2015/lib/cache/cache-field.js +75 -0
- package/esm2015/lib/cache/parameter-cache-field.js +54 -0
- package/esm2015/lib/cache/service/business-object-cache-manager.service.js +150 -0
- package/esm2015/lib/cache/service/select-multiple-cache.service.js +38 -0
- package/esm2015/lib/cache/service/select-multiple-parameterized-cache.service.js +47 -0
- package/esm2015/lib/cache/service/select-single-cache.service.js +30 -0
- package/esm2015/lib/component/animated-checkbox/animated-checkbox.component.js +27 -0
- package/esm2015/lib/component/animated-checkbox/animated-checkbox.module.js +21 -0
- package/esm2015/lib/component/avatar/avatar.component.js +106 -0
- package/esm2015/lib/component/avatar/avatar.module.js +21 -0
- package/esm2015/lib/component/checkout/checkout-login/checkout-login.component.js +106 -0
- package/esm2015/lib/component/checkout/checkout-overview-delivery-address/checkout-overview-delivery-address.component.js +47 -0
- package/esm2015/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.js +267 -0
- package/esm2015/lib/component/checkout/checkout-overview-payment/checkout-overview-payment.component.js +101 -0
- package/esm2015/lib/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.js +235 -0
- package/esm2015/lib/component/checkout/checkout.component.js +180 -0
- package/esm2015/lib/component/checkout/checkout.module.js +124 -0
- package/esm2015/lib/component/confirmation-dialog/confirmation-dialog.component.js +67 -0
- package/esm2015/lib/component/confirmation-dialog/confirmation-dialog.module.js +25 -0
- package/esm2015/lib/component/core/base/components/characteristic-answer/characteristic-answer.component.js +83 -0
- package/esm2015/lib/component/core/base/components/characteristic-answer/characteristic-answer.module.js +26 -0
- package/esm2015/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.component.js +41 -0
- package/esm2015/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.module.js +21 -0
- package/esm2015/lib/component/core/base/components/transaction-header-block/transaction-header-block.component.js +47 -0
- package/esm2015/lib/component/core/base/components/transaction-header-block/transaction-header-block.module.js +19 -0
- package/esm2015/lib/component/core/base/components/warehouse/warehouse.component.js +64 -0
- package/esm2015/lib/component/core/base/components/warehouse/warehouse.module.js +26 -0
- package/esm2015/lib/component/core/base/dialog-base.component.js +6 -0
- package/esm2015/lib/component/core/base/dialog-transaction-base.component.js +40 -0
- package/esm2015/lib/component/core/base/dynamic-base-component.js +8 -0
- package/esm2015/lib/component/core/base/transaction-base.component.js +160 -0
- package/esm2015/lib/component/core/base/transaction-filter-base.component.js +61 -0
- package/esm2015/lib/component/core/base/transaction-filter-content-base.component.js +44 -0
- package/esm2015/lib/component/core/base/transaction-filter-popup-base.component.js +103 -0
- package/esm2015/lib/component/core/base/transaction-grid-base.component.js +51 -0
- package/esm2015/lib/component/core/base/transaction-input-field-base.component.js +55 -0
- package/esm2015/lib/component/core/base/transaction-search-grid-base.component.js +25 -0
- package/esm2015/lib/component/core/base/transaction-search-tile-base.component.js +28 -0
- package/esm2015/lib/component/core/core.module.js +50 -0
- package/esm2015/lib/component/core/directive/lazy-render-master.directive.js +43 -0
- package/esm2015/lib/component/core/directive/lazy-render.directive.js +29 -0
- package/esm2015/lib/component/core/enum/app-popup-button-type.enum.js +11 -0
- package/esm2015/lib/component/core/enum/app-popup-type.enum.js +8 -0
- package/esm2015/lib/component/core/icon/icon.component.js +31 -0
- package/esm2015/lib/component/core/image-display/image-display.component.js +29 -0
- package/esm2015/lib/component/core/relation/customer-groups.component.js +46 -0
- package/esm2015/lib/component/core/stock-status-indicator/stock-status-indicator.component.js +24 -0
- package/esm2015/lib/component/delivery-type-tile/delivery-type-tile.component.js +47 -0
- package/esm2015/lib/component/delivery-type-tile/delivery-type-tile.module.js +26 -0
- package/esm2015/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.component.js +47 -0
- package/esm2015/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.module.js +23 -0
- package/esm2015/lib/component/dialog/dialog-header-search/dialog-header-search.component.js +37 -0
- package/esm2015/lib/component/dialog/dialog-header-search/dialog-header-search.module.js +23 -0
- package/esm2015/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/dialog-transaction-header-delivery-method.component.js +37 -0
- package/esm2015/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/dialog-transaction-header-delivery-method.module.js +28 -0
- package/esm2015/lib/component/dialog/transaction-header/dialog-transaction-header-discount/dialog-transaction-header-discount.component.js +78 -0
- package/esm2015/lib/component/dialog/transaction-header/dialog-transaction-header-discount/dialog-transaction-header-discount.module.js +29 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.component.js +36 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.module.js +28 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/dialog-transaction-line-delivery-method.component.js +37 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/dialog-transaction-line-delivery-method.module.js +28 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-discount/dialog-transaction-line-discount.component.js +95 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-discount/dialog-transaction-line-discount.module.js +36 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/dialog-transaction-line-price-list.component.js +36 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/dialog-transaction-line-price-list.module.js +28 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-supplier/dialog-transaction-line-supplier.component.js +37 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-supplier/dialog-transaction-line-supplier.module.js +28 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-vat/dialog-transaction-line-vat.component.js +37 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-vat/dialog-transaction-line-vat.module.js +28 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/dialog-transaction-line-warehouse.component.js +37 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/dialog-transaction-line-warehouse.module.js +28 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/dialog-transaction-line-warehouse-cc.component.js +80 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/dialog-transaction-line-warehouse-cc.module.js +31 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.component.js +44 -0
- package/esm2015/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.module.js +28 -0
- package/esm2015/lib/component/discount/discount.component.js +110 -0
- package/esm2015/lib/component/discount/discount.module.js +29 -0
- package/esm2015/lib/component/down-payment/down-payment.component.js +71 -0
- package/esm2015/lib/component/down-payment/down-payment.module.js +27 -0
- package/esm2015/lib/component/editable-label/editable-label.component.js +65 -0
- package/esm2015/lib/component/editable-label/editable-label.module.js +21 -0
- package/esm2015/lib/component/loader/loader.component.js +51 -0
- package/esm2015/lib/component/loader/loader.module.js +19 -0
- package/esm2015/lib/component/payment/payment.component.js +242 -0
- package/esm2015/lib/component/payment/payment.module.js +37 -0
- package/esm2015/lib/component/payment-qr-code/payment-qr-code.component.js +23 -0
- package/esm2015/lib/component/payment-qr-code/payment-qr-code.module.js +23 -0
- package/esm2015/lib/component/payment-tile/payment-tile.component.js +34 -0
- package/esm2015/lib/component/payment-tile/payment-tile.module.js +25 -0
- package/esm2015/lib/component/quick-send-button/quick-send-button.component.js +50 -0
- package/esm2015/lib/component/quick-send-button/quick-send-button.module.js +27 -0
- package/esm2015/lib/component/relation/relation-address/relation-address.component.js +111 -0
- package/esm2015/lib/component/relation/relation-address/relation-address.module.js +29 -0
- package/esm2015/lib/component/relation/relation-address-select/relation-address-select.component.js +145 -0
- package/esm2015/lib/component/relation/relation-address-select/relation-address-select.module.js +33 -0
- package/esm2015/lib/component/relation/relation-address-tile/relation-address-tile.component.js +65 -0
- package/esm2015/lib/component/relation/relation-address-tile/relation-address-tile.module.js +32 -0
- package/esm2015/lib/component/relation/relation-addresses/relation-addresses.component.js +112 -0
- package/esm2015/lib/component/relation/relation-addresses/relation-addresses.module.js +34 -0
- package/esm2015/lib/component/relation/relation-base.component.js +31 -0
- package/esm2015/lib/component/relation/relation-contact-details/relation-contact-details.component.js +65 -0
- package/esm2015/lib/component/relation/relation-contact-details/relation-contact-details.module.js +24 -0
- package/esm2015/lib/component/relation/relation-general/relation-general.component.js +231 -0
- package/esm2015/lib/component/relation/relation-general/relation-general.module.js +27 -0
- package/esm2015/lib/component/relation/relation-preferences/relation-preferences.component.js +68 -0
- package/esm2015/lib/component/relation/relation-preferences/relation-preferences.module.js +21 -0
- package/esm2015/lib/component/relation/relation-suggestions-list/relation-suggestions-list.component.js +30 -0
- package/esm2015/lib/component/relation/relation-suggestions-list/relation-suggestions-list.module.js +21 -0
- package/esm2015/lib/component/relation/relation-suggestions-list-item/relation-suggestions-list-item.component.js +33 -0
- package/esm2015/lib/component/relation/relation-suggestions-list-item/relation-suggestions-list-item.module.js +19 -0
- package/esm2015/lib/component/relation/relation-type/relation-type.component.js +47 -0
- package/esm2015/lib/component/relation/relation-type/relation-type.module.js +23 -0
- package/esm2015/lib/component/shared/transaction-article-text/transaction-article-text.component.js +165 -0
- package/esm2015/lib/component/shared/transaction-article-text/transaction-article-text.module.js +34 -0
- package/esm2015/lib/component/shared/transaction-article-text-overview/transaction-article-text-overview.component.js +126 -0
- package/esm2015/lib/component/shared/transaction-article-text-overview/transaction-article-text-overview.module.js +30 -0
- package/esm2015/lib/component/shopping-cart/shopping-cart.component.js +69 -0
- package/esm2015/lib/component/shopping-cart/shopping-cart.module.js +27 -0
- package/esm2015/lib/component/shopping-cart-preview/shopping-cart-preview.component.js +58 -0
- package/esm2015/lib/component/shopping-cart-preview/shopping-cart-preview.module.js +29 -0
- package/esm2015/lib/component/stepper/component/stepper-step.component.js +40 -0
- package/esm2015/lib/component/stepper/stepper.component.js +126 -0
- package/esm2015/lib/component/stepper/stepper.module.js +29 -0
- package/esm2015/lib/component/tile/tile.component.js +32 -0
- package/esm2015/lib/component/tile/tile.module.js +19 -0
- package/esm2015/lib/component/toast/toast.component.js +36 -0
- package/esm2015/lib/component/toast/toast.module.js +19 -0
- package/esm2015/lib/component/transaction/transaction.component.js +174 -0
- package/esm2015/lib/component/transaction/transaction.module.js +67 -0
- package/esm2015/lib/component/transaction-allocate-goods-history/transaction-allocate-goods-history.component.js +81 -0
- package/esm2015/lib/component/transaction-allocate-goods-history/transaction-allocate-goods-history.module.js +25 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button-base.component.js +37 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button.component.js +73 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-purchase-button-bar-button.component.js +40 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar.component.js +57 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar.module.js +35 -0
- package/esm2015/lib/component/transaction-confirmation-details/transaction-confirmation-details.component.js +137 -0
- package/esm2015/lib/component/transaction-confirmation-details/transaction-confirmation-details.module.js +34 -0
- package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.js +113 -0
- package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.module.js +33 -0
- package/esm2015/lib/component/transaction-grid/transaction-available-stock-grid/transaction-available-stock-grid.component.js +94 -0
- package/esm2015/lib/component/transaction-grid/transaction-available-stock-grid/transaction-available-stock-grid.module.js +24 -0
- package/esm2015/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.component.js +55 -0
- package/esm2015/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.module.js +30 -0
- package/esm2015/lib/component/transaction-grid/transaction-grid/transaction-grid.component.js +82 -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 +90 -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 +117 -0
- package/esm2015/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.module.js +48 -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 +155 -0
- package/esm2015/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.module.js +34 -0
- package/esm2015/lib/component/transaction-header/transaction-header/transaction-header.component.js +50 -0
- package/esm2015/lib/component/transaction-header/transaction-header/transaction-header.module.js +31 -0
- package/esm2015/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.js +135 -0
- package/esm2015/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.module.js +48 -0
- package/esm2015/lib/component/transaction-header/transaction-header-order/transaction-header-order.component.js +56 -0
- package/esm2015/lib/component/transaction-header/transaction-header-order/transaction-header-order.module.js +33 -0
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.js +122 -0
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.module.js +35 -0
- package/esm2015/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.component.js +229 -0
- package/esm2015/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.module.js +46 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-administrative-relation.component.js +62 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-administrative-relation.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-branch.component.js +78 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-branch.module.js +26 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-definitive.component.js +48 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-definitive.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-delivery-date.component.js +53 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-delivery-date.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-delivery-method.component.js +97 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-delivery-method.module.js +29 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-delivery-options/transaction-header-delivery-options.component.js +74 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-delivery-options/transaction-header-delivery-options.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-amount.component.js +59 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-amount.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-button.component.js +57 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-button.module.js +25 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-percentage.component.js +59 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-percentage.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.component.js +60 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-downpayment-amount.component.js +58 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-downpayment-amount.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.component.js +58 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-marketing.component.js +51 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-marketing.module.js +26 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-partial-delivery.component.js +54 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-partial-delivery.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-preferred-delivery-date.component.js +61 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-preferred-delivery-date.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-reference.component.js +57 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-reference.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-relation-reference.component.js +57 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-relation-reference.module.js +23 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-remarks.component.js +57 -0
- package/esm2015/lib/component/transaction-header-fields/transaction-header-remarks.module.js +23 -0
- package/esm2015/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.js +49 -0
- package/esm2015/lib/component/transaction-history-grid-status/transaction-history-grid-status.module.js +23 -0
- package/esm2015/lib/component/transaction-line/transaction-base-line/transaction-base-line.component.js +92 -0
- package/esm2015/lib/component/transaction-line/transaction-base-line/transaction-base-line.module.js +26 -0
- package/esm2015/lib/component/transaction-line/transaction-goods-allocation-line/service/transaction-allocate-goods.service.js +63 -0
- package/esm2015/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.component.js +111 -0
- package/esm2015/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.module.js +33 -0
- package/esm2015/lib/component/transaction-line/transaction-line/transaction-line.component.js +110 -0
- package/esm2015/lib/component/transaction-line/transaction-line/transaction-line.module.js +21 -0
- package/esm2015/lib/component/transaction-line/transaction-order-delivery-line/service/transaction-order-delivery.service.js +15 -0
- package/esm2015/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.component.js +124 -0
- package/esm2015/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.module.js +36 -0
- package/esm2015/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.component.js +93 -0
- package/esm2015/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.module.js +63 -0
- package/esm2015/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.component.js +103 -0
- package/esm2015/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.module.js +46 -0
- package/esm2015/lib/component/transaction-line/transaction-receive-goods-line/service/transaction-receive-goods.service.js +68 -0
- package/esm2015/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.component.js +122 -0
- package/esm2015/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.module.js +36 -0
- package/esm2015/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.component.js +192 -0
- package/esm2015/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.module.js +30 -0
- package/esm2015/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.component.js +55 -0
- package/esm2015/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.module.js +25 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-amount.component.js +52 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-amount.module.js +21 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-commission-button.component.js +57 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-commission-button.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-commission-code.component.js +56 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-commission-code.module.js +26 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-button.component.js +63 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-button.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-date-button.component.js +33 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-date-button.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-date.component.js +64 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-date.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-method.component.js +53 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-method.module.js +26 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-description.component.js +68 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-description.module.js +24 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-discount-amount.component.js +57 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-discount-amount.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-discount-button.component.js +58 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-discount-button.module.js +25 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-line-discount.component.js +57 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-line-discount.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.component.js +90 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price-list.component.js +52 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-price-list.module.js +26 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-quantity.component.js +41 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-quantity.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-quantum-discount.component.js +57 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-quantum-discount.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-reference.component.js +55 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-reference.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-special-discount.component.js +57 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-special-discount.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-supplier-button.component.js +60 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-supplier-button.module.js +28 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-supplier.component.js +57 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-supplier.module.js +25 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-vat-button.component.js +60 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-vat-button.module.js +21 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-vat.component.js +49 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-vat.module.js +28 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-button.component.js +65 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-button.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.component.js +58 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.module.js +21 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-location.component.js +48 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse-location.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse.component.js +52 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-line-warehouse.module.js +27 -0
- package/esm2015/lib/component/transaction-line-grid/transaction-line-grid.component.js +23 -0
- package/esm2015/lib/component/transaction-line-grid/transaction-line-grid.module.js +21 -0
- package/esm2015/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.component.js +99 -0
- package/esm2015/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.module.js +27 -0
- package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.js +118 -0
- package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.module.js +41 -0
- package/esm2015/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.component.js +114 -0
- package/esm2015/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.module.js +60 -0
- package/esm2015/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.js +119 -0
- package/esm2015/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.module.js +35 -0
- package/esm2015/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-sales.component.js +81 -0
- package/esm2015/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-sales.module.js +25 -0
- package/esm2015/lib/component/transaction-line-statusbar/transaction-line-statusbar.component.js +95 -0
- package/esm2015/lib/component/transaction-line-statusbar/transaction-line-statusbar.module.js +23 -0
- package/esm2015/lib/component/transaction-lines/transaction-lines.component.js +172 -0
- package/esm2015/lib/component/transaction-lines/transaction-lines.module.js +32 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.component.js +87 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.module.js +41 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation/transaction-quick-access-goods-allocation.component.js +69 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation/transaction-quick-access-goods-allocation.module.js +25 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.js +44 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.module.js +29 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.component.js +65 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.module.js +28 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-purchase/transaction-quick-access-order-purchase.component.js +56 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-purchase/transaction-quick-access-order-purchase.module.js +28 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.component.js +137 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.module.js +31 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.component.js +128 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.module.js +29 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.js +91 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.module.js +27 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-send-method-base.component.js +110 -0
- package/esm2015/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.js +78 -0
- package/esm2015/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.module.js +30 -0
- package/esm2015/lib/component/transaction-search/service/filter-request.service.js +172 -0
- package/esm2015/lib/component/transaction-search/service/transaction-search.service.js +114 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.component.js +96 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.module.js +19 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.component.js +56 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.module.js +34 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.component.js +56 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-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/enum/search-placeholder.enum.js +27 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.component.js +143 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.module.js +29 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.component.js +236 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.module.js +35 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.component.js +225 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.module.js +34 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.component.js +133 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.module.js +29 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.component.js +235 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.module.js +35 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.component.js +248 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.module.js +34 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-historic-state/transaction-filter-historic-state.component.js +55 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-historic-state/transaction-filter-historic-state.module.js +26 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-item/transaction-filter-item.component.js +64 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-item/transaction-filter-item.module.js +23 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.component.js +81 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.module.js +19 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.component.js +84 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.module.js +25 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.component.js +84 -0
- package/esm2015/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.module.js +27 -0
- package/esm2015/lib/component/transaction-search/transaction-search-header/transaction-search-header.component.js +126 -0
- package/esm2015/lib/component/transaction-search/transaction-search-header/transaction-search-header.module.js +27 -0
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.js +119 -0
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.js +44 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.component.js +67 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.module.js +29 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.component.js +74 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.module.js +32 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.component.js +89 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.module.js +19 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-statusbar/transaction-statusbar.component.js +79 -0
- package/esm2015/lib/component/transaction-search/transaction-search-tile/transaction-statusbar/transaction-statusbar.module.js +23 -0
- package/esm2015/lib/component/transaction-search/transaction-search.component.js +146 -0
- package/esm2015/lib/component/transaction-search/transaction-search.module.js +32 -0
- package/esm2015/lib/component/transaction-side-panel-edit-request-details/components/allocation-request.component.js +139 -0
- package/esm2015/lib/component/transaction-side-panel-edit-request-details/components/receive-goods-request.component.js +194 -0
- package/esm2015/lib/component/transaction-side-panel-edit-request-details/transaction-side-panel-edit-request-details.component.js +51 -0
- package/esm2015/lib/component/transaction-side-panel-edit-request-details/transaction-side-panel-edit-request-details.module.js +35 -0
- package/esm2015/lib/component/transaction-tile/transaction-tile.component.js +116 -0
- package/esm2015/lib/component/transaction-tile/transaction-tile.module.js +30 -0
- package/esm2015/lib/component/transaction-totals/transaction-totals.component.js +59 -0
- package/esm2015/lib/component/transaction-totals/transaction-totals.module.js +25 -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 +11 -0
- package/esm2015/lib/enum/direction.enum.js +9 -0
- package/esm2015/lib/enum/icon.enum.js +84 -0
- package/esm2015/lib/enum/language-code.enum.js +8 -0
- package/esm2015/lib/enum/order-discount-type.enum.js +7 -0
- package/esm2015/lib/enum/position-grid-row.enum.js +6 -0
- package/esm2015/lib/enum/search-view-mode.enum.js +7 -0
- package/esm2015/lib/enum/searchbar-view-mode.enum.js +7 -0
- package/esm2015/lib/enum/status-type.enum.js +7 -0
- package/esm2015/lib/enum/time-size.type.js +10 -0
- package/esm2015/lib/enum/transaction-type-category.enum.js +17 -0
- package/esm2015/lib/interface/dialog-response.interface.js +2 -0
- package/esm2015/lib/model/down-payment-view-model.js +7 -0
- package/esm2015/lib/model/extended-transaction-line-view-model.js +4 -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 +83 -0
- package/esm2015/lib/model/payment.viewmodel.js +6 -0
- package/esm2015/lib/model/received-goods-view-model.js +11 -0
- package/esm2015/lib/model/relation-any-type.js +3 -0
- package/esm2015/lib/model/standard-text.js +3 -0
- package/esm2015/lib/model/text-value-container.js +3 -0
- package/esm2015/lib/model/transaction-bar-button.js +2 -0
- package/esm2015/lib/model/transaction-search-result.js +3 -0
- package/esm2015/lib/pipe/append.pipe.js +17 -0
- package/esm2015/lib/pipe/co-currency.pipe.js +47 -0
- package/esm2015/lib/pipe/date-duration.pipe.js +57 -0
- package/esm2015/lib/pipe/delivery-time.pipe.js +36 -0
- package/esm2015/lib/pipe/localize.pipe.js +28 -0
- package/esm2015/lib/pipe/pipe.module.js +37 -0
- package/esm2015/lib/pipe/safe-html.pipe.js +19 -0
- package/esm2015/lib/pipe/safe-style.pipe.js +19 -0
- package/esm2015/lib/service/article-connector.service.js +106 -0
- package/esm2015/lib/service/article.service.js +33 -0
- package/esm2015/lib/service/dialog.service.js +137 -0
- package/esm2015/lib/service/dictionary.service.js +76 -0
- package/esm2015/lib/service/dynamic-component.service.js +93 -0
- package/esm2015/lib/service/error.service.js +68 -0
- package/esm2015/lib/service/icon-cache.service.js +51 -0
- package/esm2015/lib/service/options.service.js +71 -0
- package/esm2015/lib/service/payment.service.js +105 -0
- package/esm2015/lib/service/pending-reason.service.js +337 -0
- package/esm2015/lib/service/relation-connector.service.js +222 -0
- package/esm2015/lib/service/relation.service.js +158 -0
- package/esm2015/lib/service/shared-connector.service.js +53 -0
- package/esm2015/lib/service/shared.service.js +42 -0
- package/esm2015/lib/service/transaction-connector-adapter.service.js +1830 -0
- package/esm2015/lib/service/transaction-connector.service.js +670 -0
- package/esm2015/lib/service/transaction-event.service.js +35 -0
- package/esm2015/lib/service/transaction-image.service.js +53 -0
- package/esm2015/lib/service/transaction-mapping.service.js +178 -0
- package/esm2015/lib/service/transaction.service.js +793 -0
- package/esm2015/public_api.js +46 -0
- package/fesm2015/colijnit-transaction.js +25050 -0
- package/fesm2015/colijnit-transaction.js.map +1 -0
- package/lib/assets/dictionary/text.properties.d.ts +3 -0
- package/lib/cache/cache-field.d.ts +25 -0
- package/lib/cache/parameter-cache-field.d.ts +11 -0
- package/lib/cache/service/business-object-cache-manager.service.d.ts +58 -0
- package/lib/cache/service/select-multiple-cache.service.d.ts +15 -0
- package/lib/cache/service/select-multiple-parameterized-cache.service.d.ts +19 -0
- package/lib/cache/service/select-single-cache.service.d.ts +12 -0
- package/lib/component/animated-checkbox/animated-checkbox.component.d.ts +5 -0
- package/lib/component/animated-checkbox/animated-checkbox.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/animated-checkbox/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/animated-checkbox/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/animated-checkbox/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/animated-checkbox/style/material.scss +0 -0
- package/lib/component/avatar/avatar.component.d.ts +31 -0
- package/lib/component/avatar/avatar.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/avatar/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/avatar/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/avatar/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/avatar/style/material.scss +0 -0
- package/lib/component/checkout/checkout-login/checkout-login.component.d.ts +21 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-login/checkout-login.component.scss +0 -0
- package/lib/component/checkout/checkout-overview-delivery-address/checkout-overview-delivery-address.component.d.ts +11 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-delivery-address/checkout-overview-delivery-address.component.scss +0 -0
- package/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.d.ts +65 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-delivery-edit/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-delivery-edit/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-delivery-edit/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-delivery-edit/style/material.scss +0 -0
- package/lib/component/checkout/checkout-overview-payment/checkout-overview-payment.component.d.ts +21 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-payment/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-payment/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-payment/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-payment/style/material.scss +0 -0
- package/lib/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.d.ts +44 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-relation-edit/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-relation-edit/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-relation-edit/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/checkout-overview-relation-edit/style/material.scss +0 -0
- package/lib/component/checkout/checkout.component.d.ts +48 -0
- package/lib/component/checkout/checkout.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/checkout/style/material.scss +0 -0
- package/lib/component/confirmation-dialog/confirmation-dialog.component.d.ts +18 -0
- package/lib/component/confirmation-dialog/confirmation-dialog.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/confirmation-dialog/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/confirmation-dialog/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/confirmation-dialog/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/confirmation-dialog/style/material.scss +0 -0
- package/lib/component/core/base/components/characteristic-answer/characteristic-answer.component.d.ts +21 -0
- package/lib/component/core/base/components/characteristic-answer/characteristic-answer.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/characteristic-answer/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/characteristic-answer/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/characteristic-answer/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/characteristic-answer/style/material.scss +0 -0
- package/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.component.d.ts +13 -0
- package/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/default-ok-cancel-buttons/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/default-ok-cancel-buttons/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/default-ok-cancel-buttons/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/default-ok-cancel-buttons/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/transaction-header-block/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/transaction-header-block/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/transaction-header-block/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/transaction-header-block/style/material.scss +0 -0
- package/lib/component/core/base/components/transaction-header-block/transaction-header-block.component.d.ts +10 -0
- package/lib/component/core/base/components/transaction-header-block/transaction-header-block.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/warehouse/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/warehouse/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/warehouse/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/base/components/warehouse/style/material.scss +0 -0
- package/lib/component/core/base/components/warehouse/warehouse.component.d.ts +20 -0
- package/lib/component/core/base/components/warehouse/warehouse.module.d.ts +2 -0
- package/lib/component/core/base/dialog-base.component.d.ts +4 -0
- package/lib/component/core/base/dialog-transaction-base.component.d.ts +16 -0
- package/lib/component/core/base/dynamic-base-component.d.ts +3 -0
- package/lib/component/core/base/transaction-base.component.d.ts +56 -0
- package/lib/component/core/base/transaction-filter-base.component.d.ts +26 -0
- package/lib/component/core/base/transaction-filter-content-base.component.d.ts +21 -0
- package/lib/component/core/base/transaction-filter-popup-base.component.d.ts +40 -0
- package/lib/component/core/base/transaction-grid-base.component.d.ts +25 -0
- package/lib/component/core/base/transaction-input-field-base.component.d.ts +15 -0
- package/lib/component/core/base/transaction-search-grid-base.component.d.ts +11 -0
- package/lib/component/core/base/transaction-search-tile-base.component.d.ts +13 -0
- package/lib/component/core/core.module.d.ts +2 -0
- package/lib/component/core/directive/lazy-render-master.directive.d.ts +10 -0
- package/lib/component/core/directive/lazy-render.directive.d.ts +10 -0
- package/lib/component/core/enum/app-popup-button-type.enum.d.ts +9 -0
- package/lib/component/core/enum/app-popup-type.enum.d.ts +6 -0
- package/lib/component/core/icon/icon.component.d.ts +12 -0
- package/{projects/transaction/src/lib → lib}/component/core/icon/icon.component.scss +0 -0
- package/lib/component/core/image-display/image-display.component.d.ts +5 -0
- package/{projects/transaction/src/lib → lib}/component/core/image-display/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/image-display/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/image-display/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/core/image-display/style/material.scss +0 -0
- package/lib/component/core/relation/customer-groups.component.d.ts +14 -0
- package/{projects/transaction/src/lib → lib}/component/core/relation/relation-customer-groups.component.scss +0 -0
- package/lib/component/core/stock-status-indicator/stock-status-indicator.component.d.ts +5 -0
- package/{projects/transaction/src/lib → lib}/component/core/stock-status-indicator/stock-status-indicator.component.scss +0 -0
- package/lib/component/delivery-type-tile/delivery-type-tile.component.d.ts +10 -0
- package/lib/component/delivery-type-tile/delivery-type-tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/delivery-type-tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/delivery-type-tile/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/delivery-type-tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/delivery-type-tile/style/material.scss +0 -0
- package/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.component.d.ts +15 -0
- package/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/catalog/dialog-catalog/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/catalog/dialog-catalog/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/catalog/dialog-catalog/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/catalog/dialog-catalog/style/material.scss +0 -0
- package/lib/component/dialog/dialog-header-search/dialog-header-search.component.d.ts +10 -0
- package/lib/component/dialog/dialog-header-search/dialog-header-search.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/dialog-header-search/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/dialog-header-search/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/dialog-header-search/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/dialog-header-search/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-branch/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-branch/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-branch/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-branch/style/material.scss +0 -0
- package/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/dialog-transaction-header-delivery-method.component.d.ts +4 -0
- package/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/dialog-transaction-header-delivery-method.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-delivery-method/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-delivery-method/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-delivery-method/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-delivery-method/style/material.scss +0 -0
- package/lib/component/dialog/transaction-header/dialog-transaction-header-discount/dialog-transaction-header-discount.component.d.ts +8 -0
- package/lib/component/dialog/transaction-header/dialog-transaction-header-discount/dialog-transaction-header-discount.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-discount/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-discount/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-discount/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-header/dialog-transaction-header-discount/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.component.d.ts +4 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-commission-code/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-commission-code/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-commission-code/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-commission-code/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/dialog-transaction-line-delivery-method.component.d.ts +4 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/dialog-transaction-line-delivery-method.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-delivery-method/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-delivery-method/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-delivery-method/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-delivery-method/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-discount/dialog-transaction-line-discount.component.d.ts +14 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-discount/dialog-transaction-line-discount.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-discount/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-discount/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-discount/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-discount/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/dialog-transaction-line-price-list.component.d.ts +4 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/dialog-transaction-line-price-list.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-price-list/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-price-list/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-price-list/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-price-list/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-supplier/dialog-transaction-line-supplier.component.d.ts +4 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-supplier/dialog-transaction-line-supplier.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-supplier/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-supplier/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-supplier/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-supplier/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-vat/dialog-transaction-line-vat.component.d.ts +4 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-vat/dialog-transaction-line-vat.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-vat/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-vat/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-vat/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-vat/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/dialog-transaction-line-warehouse.component.d.ts +4 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/dialog-transaction-line-warehouse.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/dialog-transaction-line-warehouse-cc.component.d.ts +12 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/dialog-transaction-line-warehouse-cc.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/style/material.scss +0 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.component.d.ts +6 -0
- package/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/style/material.scss +0 -0
- package/lib/component/discount/discount.component.d.ts +19 -0
- package/lib/component/discount/discount.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/discount/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/discount/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/discount/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/discount/style/material.scss +0 -0
- package/lib/component/down-payment/down-payment.component.d.ts +16 -0
- package/lib/component/down-payment/down-payment.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/down-payment/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/down-payment/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/down-payment/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/down-payment/style/material.scss +0 -0
- package/lib/component/editable-label/editable-label.component.d.ts +16 -0
- package/lib/component/editable-label/editable-label.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/editable-label/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/editable-label/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/editable-label/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/editable-label/style/material.scss +0 -0
- package/lib/component/loader/loader.component.d.ts +3 -0
- package/lib/component/loader/loader.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/loader/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/loader/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/loader/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/loader/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/order-confirmation-create/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/order-confirmation-create/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/order-confirmation-create/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/order-confirmation-create/style/material.scss +0 -0
- package/lib/component/payment/payment.component.d.ts +58 -0
- package/lib/component/payment/payment.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/payment/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment/style/material.scss +0 -0
- package/lib/component/payment-qr-code/payment-qr-code.component.d.ts +4 -0
- package/lib/component/payment-qr-code/payment-qr-code.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/payment-qr-code/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment-qr-code/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment-qr-code/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment-qr-code/style/material.scss +0 -0
- package/lib/component/payment-tile/payment-tile.component.d.ts +10 -0
- package/lib/component/payment-tile/payment-tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/payment-tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment-tile/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment-tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/payment-tile/style/material.scss +0 -0
- package/lib/component/quick-send-button/quick-send-button.component.d.ts +15 -0
- package/lib/component/quick-send-button/quick-send-button.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/quick-send-button/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/quick-send-button/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/quick-send-button/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/quick-send-button/style/material.scss +0 -0
- package/lib/component/relation/relation-address/relation-address.component.d.ts +25 -0
- package/lib/component/relation/relation-address/relation-address.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address/style/material.scss +0 -0
- package/lib/component/relation/relation-address-select/relation-address-select.component.d.ts +33 -0
- package/lib/component/relation/relation-address-select/relation-address-select.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-select/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-select/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-select/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-select/style/material.scss +0 -0
- package/lib/component/relation/relation-address-tile/relation-address-tile.component.d.ts +15 -0
- package/lib/component/relation/relation-address-tile/relation-address-tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-tile/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-address-tile/style/material.scss +0 -0
- package/lib/component/relation/relation-addresses/relation-addresses.component.d.ts +27 -0
- package/lib/component/relation/relation-addresses/relation-addresses.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-addresses/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-addresses/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-addresses/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-addresses/style/material.scss +0 -0
- package/lib/component/relation/relation-base.component.d.ts +11 -0
- package/lib/component/relation/relation-contact-details/relation-contact-details.component.d.ts +12 -0
- package/lib/component/relation/relation-contact-details/relation-contact-details.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-contact-details/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-contact-details/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-contact-details/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-contact-details/style/material.scss +0 -0
- package/lib/component/relation/relation-general/relation-general.component.d.ts +33 -0
- package/lib/component/relation/relation-general/relation-general.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-general/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-general/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-general/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-general/style/material.scss +0 -0
- package/lib/component/relation/relation-preferences/relation-preferences.component.d.ts +15 -0
- package/lib/component/relation/relation-preferences/relation-preferences.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-preferences/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-preferences/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-preferences/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-preferences/style/material.scss +0 -0
- package/lib/component/relation/relation-suggestions-list/relation-suggestions-list.component.d.ts +7 -0
- package/lib/component/relation/relation-suggestions-list/relation-suggestions-list.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list/style/material.scss +0 -0
- package/lib/component/relation/relation-suggestions-list-item/relation-suggestions-list-item.component.d.ts +8 -0
- package/lib/component/relation/relation-suggestions-list-item/relation-suggestions-list-item.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list-item/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list-item/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list-item/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-suggestions-list-item/style/material.scss +0 -0
- package/lib/component/relation/relation-type/relation-type.component.d.ts +11 -0
- package/lib/component/relation/relation-type/relation-type.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-type/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-type/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-type/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/relation/relation-type/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text/style/material.scss +0 -0
- package/lib/component/shared/transaction-article-text/transaction-article-text.component.d.ts +44 -0
- package/lib/component/shared/transaction-article-text/transaction-article-text.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text-overview/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text-overview/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text-overview/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shared/transaction-article-text-overview/style/material.scss +0 -0
- package/lib/component/shared/transaction-article-text-overview/transaction-article-text-overview.component.d.ts +29 -0
- package/lib/component/shared/transaction-article-text-overview/transaction-article-text-overview.module.d.ts +2 -0
- package/lib/component/shopping-cart/shopping-cart.component.d.ts +17 -0
- package/lib/component/shopping-cart/shopping-cart.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart-OLD/shopping-cart-manager/shopping-cart-manager.component.scss +0 -0
- package/lib/component/shopping-cart-preview/shopping-cart-preview.component.d.ts +13 -0
- package/lib/component/shopping-cart-preview/shopping-cart-preview.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart-preview/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart-preview/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart-preview/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/shopping-cart-preview/style/material.scss +0 -0
- package/lib/component/stepper/component/stepper-step.component.d.ts +12 -0
- package/lib/component/stepper/stepper.component.d.ts +36 -0
- package/lib/component/stepper/stepper.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/stepper/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/stepper/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/stepper/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/stepper/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/tile/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/tile/style/material.scss +0 -0
- package/lib/component/tile/tile.component.d.ts +6 -0
- package/lib/component/tile/tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/toast/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/toast/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/toast/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/toast/style/material.scss +0 -0
- package/lib/component/toast/toast.component.d.ts +6 -0
- package/lib/component/toast/toast.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction/style/material.scss +0 -0
- package/lib/component/transaction/transaction.component.d.ts +45 -0
- package/lib/component/transaction/transaction.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-allocate-goods-history/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-allocate-goods-history/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-allocate-goods-history/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-allocate-goods-history/style/material.scss +0 -0
- package/lib/component/transaction-allocate-goods-history/transaction-allocate-goods-history.component.d.ts +18 -0
- package/lib/component/transaction-allocate-goods-history/transaction-allocate-goods-history.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-button-bar/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-button-bar/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-button-bar/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-button-bar/style/material.scss +0 -0
- package/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button-base.component.d.ts +16 -0
- package/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button.component.d.ts +18 -0
- package/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-purchase-button-bar-button.component.d.ts +12 -0
- package/lib/component/transaction-button-bar/transaction-button-bar.component.d.ts +19 -0
- package/lib/component/transaction-button-bar/transaction-button-bar.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-details/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-details/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-details/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-details/style/material.scss +0 -0
- package/lib/component/transaction-confirmation-details/transaction-confirmation-details.component.d.ts +24 -0
- package/lib/component/transaction-confirmation-details/transaction-confirmation-details.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-history/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-history/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-history/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-confirmation-history/style/material.scss +0 -0
- package/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.d.ts +30 -0
- package/lib/component/transaction-confirmation-history/transaction-confirmation-history.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-available-stock-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-available-stock-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-available-stock-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-available-stock-grid/style/material.scss +0 -0
- package/lib/component/transaction-grid/transaction-available-stock-grid/transaction-available-stock-grid.component.d.ts +26 -0
- package/lib/component/transaction-grid/transaction-available-stock-grid/transaction-available-stock-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-base-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-base-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-base-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-base-grid/style/material.scss +0 -0
- 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/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-grid/style/material.scss +0 -0
- package/lib/component/transaction-grid/transaction-grid/transaction-grid.component.d.ts +24 -0
- package/lib/component/transaction-grid/transaction-grid/transaction-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-history-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-history-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-history-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-history-grid/style/material.scss +0 -0
- package/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.component.d.ts +19 -0
- package/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-lines-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-lines-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-lines-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-lines-grid/style/material.scss +0 -0
- package/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.component.d.ts +21 -0
- package/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-order-confirmation-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-order-confirmation-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-order-confirmation-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-order-confirmation-grid/style/material.scss +0 -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/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-received-goods-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-received-goods-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-received-goods-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-grid/transaction-received-goods-grid/style/material.scss +0 -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/{projects/transaction/src/lib → lib}/component/transaction-header/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header/style/material.scss +0 -0
- package/lib/component/transaction-header/transaction-header/transaction-header.component.d.ts +12 -0
- package/lib/component/transaction-header/transaction-header/transaction-header.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-delivery/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-delivery/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-delivery/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-delivery/style/material.scss +0 -0
- package/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.d.ts +21 -0
- package/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-order/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-order/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-order/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-order/style/material.scss +0 -0
- package/lib/component/transaction-header/transaction-header-order/transaction-header-order.component.d.ts +11 -0
- package/lib/component/transaction-header/transaction-header-order/transaction-header-order.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-payment/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-payment/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-payment/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-payment/style/material.scss +0 -0
- package/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.d.ts +20 -0
- package/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-relation/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-relation/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-relation/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header/transaction-header-relation/style/material.scss +0 -0
- package/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.component.d.ts +39 -0
- package/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-administrative-relation.component.d.ts +14 -0
- package/lib/component/transaction-header-fields/transaction-header-administrative-relation.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-branch.component.d.ts +17 -0
- package/lib/component/transaction-header-fields/transaction-header-branch.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-definitive.component.d.ts +9 -0
- package/lib/component/transaction-header-fields/transaction-header-definitive.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-delivery-date.component.d.ts +7 -0
- package/lib/component/transaction-header-fields/transaction-header-delivery-date.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-delivery-method.component.d.ts +20 -0
- package/lib/component/transaction-header-fields/transaction-header-delivery-method.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header-fields/transaction-header-delivery-options/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header-fields/transaction-header-delivery-options/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header-fields/transaction-header-delivery-options/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-header-fields/transaction-header-delivery-options/style/material.scss +0 -0
- package/lib/component/transaction-header-fields/transaction-header-delivery-options/transaction-header-delivery-options.component.d.ts +21 -0
- package/lib/component/transaction-header-fields/transaction-header-delivery-options/transaction-header-delivery-options.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-amount.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-amount.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-button.component.d.ts +16 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-button.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-percentage.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-percentage.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.component.d.ts +11 -0
- package/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-downpayment-amount.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-downpayment-amount.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-marketing.component.d.ts +14 -0
- package/lib/component/transaction-header-fields/transaction-header-marketing.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-partial-delivery.component.d.ts +11 -0
- package/lib/component/transaction-header-fields/transaction-header-partial-delivery.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-preferred-delivery-date.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-preferred-delivery-date.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-reference.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-reference.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-relation-reference.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-relation-reference.module.d.ts +2 -0
- package/lib/component/transaction-header-fields/transaction-header-remarks.component.d.ts +10 -0
- package/lib/component/transaction-header-fields/transaction-header-remarks.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-history-grid-status/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-history-grid-status/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-history-grid-status/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-history-grid-status/style/material.scss +0 -0
- package/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.d.ts +11 -0
- package/lib/component/transaction-history-grid-status/transaction-history-grid-status.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-base-line/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-base-line/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-base-line/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-base-line/style/material.scss +0 -0
- package/lib/component/transaction-line/transaction-base-line/transaction-base-line.component.d.ts +21 -0
- package/lib/component/transaction-line/transaction-base-line/transaction-base-line.module.d.ts +2 -0
- package/lib/component/transaction-line/transaction-goods-allocation-line/service/transaction-allocate-goods.service.d.ts +12 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-goods-allocation-line/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-goods-allocation-line/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-goods-allocation-line/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-goods-allocation-line/style/material.scss +0 -0
- package/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.component.d.ts +29 -0
- package/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-line/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-line/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-line/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-line/style/material.scss +0 -0
- package/lib/component/transaction-line/transaction-line/transaction-line.component.d.ts +27 -0
- package/lib/component/transaction-line/transaction-line/transaction-line.module.d.ts +2 -0
- package/lib/component/transaction-line/transaction-order-delivery-line/service/transaction-order-delivery.service.d.ts +4 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-order-delivery-line/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-order-delivery-line/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-order-delivery-line/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-order-delivery-line/style/material.scss +0 -0
- package/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.component.d.ts +27 -0
- package/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-overview-line/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-overview-line/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-overview-line/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-overview-line/style/material.scss +0 -0
- package/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.component.d.ts +26 -0
- package/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-purchase-line/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-purchase-line/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-purchase-line/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-purchase-line/style/material.scss +0 -0
- package/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.component.d.ts +21 -0
- package/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.module.d.ts +2 -0
- package/lib/component/transaction-line/transaction-receive-goods-line/service/transaction-receive-goods.service.d.ts +19 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-receive-goods-line/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-receive-goods-line/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-receive-goods-line/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line/transaction-receive-goods-line/style/material.scss +0 -0
- package/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.component.d.ts +32 -0
- package/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-action-buttons/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-action-buttons/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-action-buttons/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-action-buttons/style/material.scss +0 -0
- package/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.component.d.ts +49 -0
- package/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-checkbox-list/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-checkbox-list/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-checkbox-list/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-checkbox-list/style/material.scss +0 -0
- package/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.component.d.ts +20 -0
- package/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-amount.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-amount.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-commission-button.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-commission-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-commission-code.component.d.ts +15 -0
- package/lib/component/transaction-line-fields/transaction-line-commission-code.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-button.component.d.ts +14 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-date-button.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-date-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-date.component.d.ts +11 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-date.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-method.component.d.ts +14 -0
- package/lib/component/transaction-line-fields/transaction-line-delivery-method.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-description.component.d.ts +15 -0
- package/lib/component/transaction-line-fields/transaction-line-description.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-discount-amount.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-discount-amount.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-discount-button.component.d.ts +12 -0
- package/lib/component/transaction-line-fields/transaction-line-discount-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-line-discount.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-line-discount.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-fields/transaction-line-price/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-fields/transaction-line-price/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-fields/transaction-line-price/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-fields/transaction-line-price/style/material.scss +0 -0
- package/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.component.d.ts +18 -0
- package/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-price-list.component.d.ts +14 -0
- package/lib/component/transaction-line-fields/transaction-line-price-list.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-quantity.component.d.ts +7 -0
- package/lib/component/transaction-line-fields/transaction-line-quantity.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-quantum-discount.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-quantum-discount.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-reference.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-reference.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-special-discount.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-line-special-discount.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-supplier-button.component.d.ts +12 -0
- package/lib/component/transaction-line-fields/transaction-line-supplier-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-supplier.component.d.ts +16 -0
- package/lib/component/transaction-line-fields/transaction-line-supplier.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-vat-button.component.d.ts +12 -0
- package/lib/component/transaction-line-fields/transaction-line-vat-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-vat.component.d.ts +13 -0
- package/lib/component/transaction-line-fields/transaction-line-vat.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse-button.component.d.ts +15 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.component.d.ts +18 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse-location.component.d.ts +15 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse-location.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse.component.d.ts +14 -0
- package/lib/component/transaction-line-fields/transaction-line-warehouse.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-grid/style/material.scss +0 -0
- package/lib/component/transaction-line-grid/transaction-line-grid.component.d.ts +5 -0
- package/lib/component/transaction-line-grid/transaction-line-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-image-and-description/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-image-and-description/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-image-and-description/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-image-and-description/style/material.scss +0 -0
- package/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.component.d.ts +29 -0
- package/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel/style/material.scss +0 -0
- package/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.d.ts +27 -0
- package/lib/component/transaction-line-side-panel/transaction-line-side-panel.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-default/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-default/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-default/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-default/style/material.scss +0 -0
- package/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.component.d.ts +21 -0
- package/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-purchase/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-purchase/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-purchase/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-purchase/style/material.scss +0 -0
- package/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.d.ts +28 -0
- package/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-sales/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-sales/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-sales/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-side-panel-sales/style/material.scss +0 -0
- package/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-sales.component.d.ts +20 -0
- package/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-sales.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-statusbar/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-statusbar/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-statusbar/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-line-statusbar/style/material.scss +0 -0
- package/lib/component/transaction-line-statusbar/transaction-line-statusbar.component.d.ts +26 -0
- package/lib/component/transaction-line-statusbar/transaction-line-statusbar.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-lines/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-lines/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-lines/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-lines/style/material.scss +0 -0
- package/lib/component/transaction-lines/transaction-lines.component.d.ts +42 -0
- package/lib/component/transaction-lines/transaction-lines.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.component.d.ts +28 -0
- package/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-goods-allocation/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-goods-allocation/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-goods-allocation/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-goods-allocation/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation/transaction-quick-access-goods-allocation.component.d.ts +20 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation/transaction-quick-access-goods-allocation.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.d.ts +7 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-delivery/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-delivery/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-delivery/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-delivery/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.component.d.ts +19 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-purchase/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-purchase/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-purchase/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-order-purchase/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-purchase/transaction-quick-access-order-purchase.component.d.ts +14 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-purchase/transaction-quick-access-order-purchase.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-overview/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-overview/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-overview/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-overview/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.component.d.ts +34 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.component.d.ts +33 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-received-goods/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-received-goods/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-received-goods/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-quick-access/transaction-quick-access-received-goods/style/material.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.d.ts +34 -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-quick-access/transaction-quick-access-send-method-base.component.d.ts +43 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-receiving-goods-history/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-receiving-goods-history/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-receiving-goods-history/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-receiving-goods-history/style/material.scss +0 -0
- package/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.d.ts +17 -0
- package/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.module.d.ts +2 -0
- package/lib/component/transaction-search/service/filter-request.service.d.ts +87 -0
- package/lib/component/transaction-search/service/transaction-search.service.d.ts +37 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-filter/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-filter/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-filter/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-filter/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.component.d.ts +26 -0
- package/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-purchase-order-filter/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.component.d.ts +9 -0
- package/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter/transaction-sales-order-filter/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.component.d.ts +9 -0
- package/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-categories/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-categories/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-categories/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-categories/style/material.scss +0 -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/enum/search-placeholder.enum.d.ts +25 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.component.d.ts +40 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.component.d.ts +36 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.component.d.ts +50 -0
- package/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.component.d.ts +40 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.component.d.ts +36 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.component.d.ts +57 -0
- package/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-content/style/material.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-historic-state/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-historic-state/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-historic-state/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-historic-state/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-historic-state/transaction-filter-historic-state.component.d.ts +24 -0
- package/lib/component/transaction-search/transaction-filter-historic-state/transaction-filter-historic-state.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-item/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-item/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-item/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-filter-item/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-item/transaction-filter-item.component.d.ts +21 -0
- package/lib/component/transaction-search/transaction-filter-item/transaction-filter-item.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-grid/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.component.d.ts +22 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.component.d.ts +7 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.component.d.ts +7 -0
- package/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-header/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-header/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-header/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-header/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-header/transaction-search-header.component.d.ts +36 -0
- package/lib/component/transaction-search/transaction-search-header/transaction-search-header.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-result/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-result/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-result/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-result/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.d.ts +32 -0
- package/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.component.d.ts +3 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.component.d.ts +6 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-search-tile/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.component.d.ts +25 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-statusbar/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-statusbar/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-statusbar/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-search/transaction-search-tile/transaction-statusbar/style/material.scss +0 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-statusbar/transaction-statusbar.component.d.ts +22 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-statusbar/transaction-statusbar.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-search.component.d.ts +32 -0
- package/lib/component/transaction-search/transaction-search.module.d.ts +2 -0
- package/lib/component/transaction-side-panel-edit-request-details/components/allocation-request.component.d.ts +28 -0
- package/lib/component/transaction-side-panel-edit-request-details/components/receive-goods-request.component.d.ts +43 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-side-panel-edit-request-details/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-side-panel-edit-request-details/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-side-panel-edit-request-details/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-side-panel-edit-request-details/style/material.scss +0 -0
- package/lib/component/transaction-side-panel-edit-request-details/transaction-side-panel-edit-request-details.component.d.ts +15 -0
- package/lib/component/transaction-side-panel-edit-request-details/transaction-side-panel-edit-request-details.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-tile/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-tile/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-tile/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-tile/style/material.scss +0 -0
- package/lib/component/transaction-tile/transaction-tile.component.d.ts +20 -0
- package/lib/component/transaction-tile/transaction-tile.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-totals/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-totals/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-totals/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/transaction-totals/style/material.scss +0 -0
- package/lib/component/transaction-totals/transaction-totals.component.d.ts +10 -0
- package/lib/component/transaction-totals/transaction-totals.module.d.ts +2 -0
- package/{projects/transaction/src/lib → lib}/component/view-mode-buttons/style/_layout.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/view-mode-buttons/style/_material-definition.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/view-mode-buttons/style/_theme.scss +0 -0
- package/{projects/transaction/src/lib → lib}/component/view-mode-buttons/style/material.scss +0 -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 +8 -0
- package/lib/enum/direction.enum.d.ts +6 -0
- package/lib/enum/icon.enum.d.ts +82 -0
- package/lib/enum/language-code.enum.d.ts +6 -0
- package/lib/enum/order-discount-type.enum.d.ts +5 -0
- package/lib/enum/position-grid-row.enum.d.ts +4 -0
- package/lib/enum/search-view-mode.enum.d.ts +4 -0
- package/lib/enum/searchbar-view-mode.enum.d.ts +4 -0
- package/lib/enum/status-type.enum.d.ts +5 -0
- package/lib/enum/time-size.type.d.ts +7 -0
- package/lib/enum/transaction-type-category.enum.d.ts +15 -0
- package/lib/interface/dialog-response.interface.d.ts +5 -0
- package/lib/model/down-payment-view-model.d.ts +7 -0
- package/lib/model/extended-transaction-line-view-model.d.ts +10 -0
- package/lib/model/filter-item.viewmodel.d.ts +7 -0
- package/lib/model/filter-viewmodel.d.ts +8 -0
- package/lib/model/icon-svg.d.ts +4 -0
- package/lib/model/payment.viewmodel.d.ts +6 -0
- package/lib/model/received-goods-view-model.d.ts +10 -0
- package/lib/model/relation-any-type.d.ts +3 -0
- package/lib/model/standard-text.d.ts +5 -0
- package/lib/model/text-value-container.d.ts +4 -0
- package/lib/model/transaction-bar-button.d.ts +10 -0
- package/lib/model/transaction-search-result.d.ts +5 -0
- package/lib/pipe/append.pipe.d.ts +4 -0
- package/lib/pipe/co-currency.pipe.d.ts +10 -0
- package/lib/pipe/date-duration.pipe.d.ts +10 -0
- package/lib/pipe/delivery-time.pipe.d.ts +12 -0
- package/lib/pipe/localize.pipe.d.ts +7 -0
- package/lib/pipe/pipe.module.d.ts +2 -0
- package/lib/pipe/safe-html.pipe.d.ts +7 -0
- package/lib/pipe/safe-style.pipe.d.ts +7 -0
- package/lib/service/article-connector.service.d.ts +20 -0
- package/lib/service/article.service.d.ts +8 -0
- package/lib/service/dialog.service.d.ts +29 -0
- package/lib/service/dictionary.service.d.ts +21 -0
- package/lib/service/dynamic-component.service.d.ts +12 -0
- package/lib/service/error.service.d.ts +12 -0
- package/lib/service/icon-cache.service.d.ts +18 -0
- package/lib/service/options.service.d.ts +13 -0
- package/lib/service/payment.service.d.ts +23 -0
- package/lib/service/pending-reason.service.d.ts +63 -0
- package/lib/service/relation-connector.service.d.ts +36 -0
- package/lib/service/relation.service.d.ts +44 -0
- package/lib/service/shared-connector.service.d.ts +12 -0
- package/lib/service/shared.service.d.ts +15 -0
- package/lib/service/transaction-connector-adapter.service.d.ts +207 -0
- package/lib/service/transaction-connector.service.d.ts +198 -0
- package/lib/service/transaction-event.service.d.ts +67 -0
- package/lib/service/transaction-image.service.d.ts +10 -0
- package/lib/service/transaction-mapping.service.d.ts +25 -0
- package/lib/service/transaction.service.d.ts +175 -0
- package/{projects/transaction/src/lib → lib}/style/_mixin.scss +0 -0
- package/{projects/transaction/src/lib → lib}/style/_variables.scss +0 -0
- package/{projects/transaction/src/lib → lib}/style/transaction-globals.scss +0 -0
- package/package.json +45 -92
- package/public_api.d.ts +45 -0
- package/.browserslistrc +0 -18
- package/.editorconfig +0 -16
- package/.eslintrc.json +0 -49
- package/angular.json +0 -165
- package/custom_webpack.config.js +0 -6
- package/e2e/protractor.conf.js +0 -32
- package/e2e/src/app.e2e-spec.ts +0 -23
- package/e2e/src/app.po.ts +0 -11
- package/e2e/tsconfig.json +0 -13
- package/import.bat +0 -8
- package/karma.conf.js +0 -32
- package/move-assets.js +0 -14
- package/projects/transaction/README.md +0 -24
- package/projects/transaction/karma.conf.js +0 -44
- package/projects/transaction/ng-package.json +0 -13
- package/projects/transaction/package.json +0 -44
- package/projects/transaction/src/lib/assets/.gitkeep +0 -0
- package/projects/transaction/src/lib/assets/dictionary/text.properties.ts +0 -748
- package/projects/transaction/src/lib/assets/icons/arrow_point_down.svg +0 -6
- package/projects/transaction/src/lib/assets/icons/arrow_point_left.svg +0 -8
- package/projects/transaction/src/lib/assets/icons/arrow_point_right.svg +0 -8
- package/projects/transaction/src/lib/assets/icons/article.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/at_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/barcode_regular.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/barcode_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/bars_filter.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/calendar_day.svg +0 -37
- package/projects/transaction/src/lib/assets/icons/calendar_day_regular.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/cancel.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/cart_check.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/cart_flatbed_boxes_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/cart_shopping_solid.svg +0 -5
- package/projects/transaction/src/lib/assets/icons/cash_register.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/credit_card_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/delivery_truck.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/edit_pencil.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/ellipsis_light.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/ellipsis_vertical_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/expand_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/file_circle_info_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/file_export_regular.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/file_export_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/file_pdf_regular.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/file_pdf_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/gear_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/grip_dots_vertical_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/ideal_logo.svg +0 -38
- package/projects/transaction/src/lib/assets/icons/inbox_in_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/list_regular.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/list_view.svg +0 -8
- package/projects/transaction/src/lib/assets/icons/location_dot_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/lock.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/lock_keyhole_open_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/lock_keyhole_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/magnifier.svg +0 -12
- package/projects/transaction/src/lib/assets/icons/map_marker.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/master_detail.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/memo_circle_check_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/menu.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/message_sms_regular.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/message_sms_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/object_intersect_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/pallet_boxes_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/pdf.svg +0 -15
- package/projects/transaction/src/lib/assets/icons/percent_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/plus_round.svg +0 -9
- package/projects/transaction/src/lib/assets/icons/plus_simple.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/print_regular.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/print_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/purchase.svg +0 -15
- package/projects/transaction/src/lib/assets/icons/resize.svg +0 -3
- package/projects/transaction/src/lib/assets/icons/share_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/shelves_light.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/shelves_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/side_panel.svg +0 -7
- package/projects/transaction/src/lib/assets/icons/slide_in.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/square_full.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/square_full_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/sync_alt.svg +0 -3
- package/projects/transaction/src/lib/assets/icons/tag.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/text_size_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/text_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/thick_lines.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/thin_lines.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/trash_bin.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/trash_can_light.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/triangle_down.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/triangle_up.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/truck.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/truck_arrow_right_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/truck_container_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/truck_fast_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/truck_moving_solid.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/txt.svg +0 -9
- package/projects/transaction/src/lib/assets/icons/unlock.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/warehouse.svg +0 -1
- package/projects/transaction/src/lib/assets/icons/x_solid.svg +0 -1
- package/projects/transaction/src/lib/cache/cache-field.ts +0 -91
- package/projects/transaction/src/lib/cache/parameter-cache-field.ts +0 -63
- package/projects/transaction/src/lib/cache/service/business-object-cache-manager.service.ts +0 -194
- package/projects/transaction/src/lib/cache/service/select-multiple-cache.service.ts +0 -36
- package/projects/transaction/src/lib/cache/service/select-multiple-parameterized-cache.service.ts +0 -46
- package/projects/transaction/src/lib/cache/service/select-single-cache.service.ts +0 -28
- package/projects/transaction/src/lib/component/animated-checkbox/animated-checkbox.component.ts +0 -26
- package/projects/transaction/src/lib/component/animated-checkbox/animated-checkbox.module.ts +0 -19
- package/projects/transaction/src/lib/component/avatar/avatar.component.ts +0 -120
- package/projects/transaction/src/lib/component/avatar/avatar.module.ts +0 -20
- package/projects/transaction/src/lib/component/checkout/checkout-login/checkout-login.component.ts +0 -115
- package/projects/transaction/src/lib/component/checkout/checkout-overview-delivery-address/checkout-overview-delivery-address.component.ts +0 -50
- package/projects/transaction/src/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.ts +0 -296
- package/projects/transaction/src/lib/component/checkout/checkout-overview-payment/checkout-overview-payment.component.ts +0 -107
- package/projects/transaction/src/lib/component/checkout/checkout-overview-relation-edit/checkout-overview-relation-edit.component.ts +0 -256
- package/projects/transaction/src/lib/component/checkout/checkout.component.ts +0 -205
- package/projects/transaction/src/lib/component/checkout/checkout.module.ts +0 -144
- package/projects/transaction/src/lib/component/confirmation-dialog/confirmation-dialog.component.ts +0 -72
- package/projects/transaction/src/lib/component/confirmation-dialog/confirmation-dialog.module.ts +0 -23
- package/projects/transaction/src/lib/component/core/base/components/characteristic-answer/characteristic-answer.component.ts +0 -87
- package/projects/transaction/src/lib/component/core/base/components/characteristic-answer/characteristic-answer.module.ts +0 -25
- package/projects/transaction/src/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.component.ts +0 -46
- package/projects/transaction/src/lib/component/core/base/components/default-ok-cancel-buttons/default-ok-cancel-buttons.module.ts +0 -20
- package/projects/transaction/src/lib/component/core/base/components/transaction-header-block/transaction-header-block.component.ts +0 -51
- package/projects/transaction/src/lib/component/core/base/components/transaction-header-block/transaction-header-block.module.ts +0 -17
- package/projects/transaction/src/lib/component/core/base/components/warehouse/warehouse.component.ts +0 -65
- package/projects/transaction/src/lib/component/core/base/components/warehouse/warehouse.module.ts +0 -24
- package/projects/transaction/src/lib/component/core/base/dialog-base.component.ts +0 -8
- package/projects/transaction/src/lib/component/core/base/dialog-transaction-base.component.ts +0 -44
- package/projects/transaction/src/lib/component/core/base/dynamic-base-component.ts +0 -8
- package/projects/transaction/src/lib/component/core/base/transaction-base.component.ts +0 -188
- package/projects/transaction/src/lib/component/core/base/transaction-filter-base.component.ts +0 -70
- package/projects/transaction/src/lib/component/core/base/transaction-filter-content-base.component.ts +0 -49
- package/projects/transaction/src/lib/component/core/base/transaction-filter-popup-base.component.ts +0 -113
- package/projects/transaction/src/lib/component/core/base/transaction-grid-base.component.ts +0 -54
- package/projects/transaction/src/lib/component/core/base/transaction-header-filter-popup-base.component.ts +0 -124
- package/projects/transaction/src/lib/component/core/base/transaction-input-field-base.component.ts +0 -54
- package/projects/transaction/src/lib/component/core/base/transaction-lines-grid-view-base.component.ts +0 -6
- package/projects/transaction/src/lib/component/core/base/transaction-lines-list-view-base.component.ts +0 -6
- package/projects/transaction/src/lib/component/core/base/transaction-search-grid-base.component.ts +0 -24
- package/projects/transaction/src/lib/component/core/base/transaction-search-tile-base.component.ts +0 -30
- package/projects/transaction/src/lib/component/core/characteristic-answer/characteristic-answer.component.ts +0 -104
- package/projects/transaction/src/lib/component/core/core.module.ts +0 -47
- package/projects/transaction/src/lib/component/core/directive/lazy-render-master.directive.ts +0 -47
- package/projects/transaction/src/lib/component/core/directive/lazy-render.directive.ts +0 -37
- package/projects/transaction/src/lib/component/core/directive/template-wrapper.directive.ts +0 -72
- package/projects/transaction/src/lib/component/core/enum/app-popup-button-type.enum.ts +0 -9
- package/projects/transaction/src/lib/component/core/enum/app-popup-type.enum.ts +0 -6
- package/projects/transaction/src/lib/component/core/icon/icon.component.ts +0 -33
- package/projects/transaction/src/lib/component/core/image-display/image-display.component.ts +0 -27
- package/projects/transaction/src/lib/component/core/relation/customer-groups.component.ts +0 -47
- package/projects/transaction/src/lib/component/core/stock-status-indicator/stock-status-indicator.component.ts +0 -25
- package/projects/transaction/src/lib/component/delivery-type-tile/delivery-type-tile.component.ts +0 -48
- package/projects/transaction/src/lib/component/delivery-type-tile/delivery-type-tile.module.ts +0 -25
- package/projects/transaction/src/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.component.ts +0 -53
- package/projects/transaction/src/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.module.ts +0 -21
- package/projects/transaction/src/lib/component/dialog/dialog-header-search/dialog-header-search.component.ts +0 -40
- package/projects/transaction/src/lib/component/dialog/dialog-header-search/dialog-header-search.module.ts +0 -21
- package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-branch/dialog-transaction-header-branch.component.ts +0 -24
- package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-branch/dialog-transaction-header-branch.module.ts +0 -23
- package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/dialog-transaction-header-delivery-method.component.ts +0 -35
- package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-delivery-method/dialog-transaction-header-delivery-method.module.ts +0 -26
- package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-discount/dialog-transaction-header-discount.component.ts +0 -70
- package/projects/transaction/src/lib/component/dialog/transaction-header/dialog-transaction-header-discount/dialog-transaction-header-discount.module.ts +0 -27
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.component.ts +0 -33
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-commission-code/dialog-transaction-line-commission-code.module.ts +0 -26
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/dialog-transaction-line-delivery-method.component.ts +0 -34
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-delivery-method/dialog-transaction-line-delivery-method.module.ts +0 -26
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-discount/dialog-transaction-line-discount.component.ts +0 -93
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-discount/dialog-transaction-line-discount.module.ts +0 -34
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/dialog-transaction-line-price-list.component.ts +0 -34
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-price-list/dialog-transaction-line-price-list.module.ts +0 -26
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-supplier/dialog-transaction-line-supplier.component.ts +0 -34
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-supplier/dialog-transaction-line-supplier.module.ts +0 -26
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-vat/dialog-transaction-line-vat.component.ts +0 -35
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-vat/dialog-transaction-line-vat.module.ts +0 -26
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/dialog-transaction-line-warehouse.component.ts +0 -33
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse/dialog-transaction-line-warehouse.module.ts +0 -26
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/dialog-transaction-line-warehouse-cc.component.ts +0 -84
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-cc/dialog-transaction-line-warehouse-cc.module.ts +0 -29
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.component.ts +0 -42
- package/projects/transaction/src/lib/component/dialog/transaction-line/dialog-transaction-line-warehouse-location/dialog-transaction-line-warehouse-location.module.ts +0 -26
- package/projects/transaction/src/lib/component/discount/discount.component.ts +0 -120
- package/projects/transaction/src/lib/component/discount/discount.module.ts +0 -26
- package/projects/transaction/src/lib/component/down-payment/down-payment.component.ts +0 -77
- package/projects/transaction/src/lib/component/down-payment/down-payment.module.ts +0 -25
- package/projects/transaction/src/lib/component/editable-label/editable-label.component.ts +0 -74
- package/projects/transaction/src/lib/component/editable-label/editable-label.module.ts +0 -18
- package/projects/transaction/src/lib/component/loader/loader.component.ts +0 -49
- package/projects/transaction/src/lib/component/loader/loader.module.ts +0 -17
- package/projects/transaction/src/lib/component/order-confirmation-create/order-confirmation-create.component.ts +0 -42
- package/projects/transaction/src/lib/component/order-confirmation-create/order-confirmation-create.module.ts +0 -26
- package/projects/transaction/src/lib/component/payment/payment.component.ts +0 -264
- package/projects/transaction/src/lib/component/payment/payment.module.ts +0 -36
- package/projects/transaction/src/lib/component/payment-qr-code/payment-qr-code.component.ts +0 -24
- package/projects/transaction/src/lib/component/payment-qr-code/payment-qr-code.module.ts +0 -21
- package/projects/transaction/src/lib/component/payment-tile/payment-tile.component.ts +0 -38
- package/projects/transaction/src/lib/component/payment-tile/payment-tile.module.ts +0 -24
- package/projects/transaction/src/lib/component/quick-send-button/quick-send-button.component.ts +0 -60
- package/projects/transaction/src/lib/component/quick-send-button/quick-send-button.module.ts +0 -25
- package/projects/transaction/src/lib/component/relation/relation-address/relation-address.component.ts +0 -113
- package/projects/transaction/src/lib/component/relation/relation-address/relation-address.module.ts +0 -28
- package/projects/transaction/src/lib/component/relation/relation-address-select/relation-address-select.component.ts +0 -158
- package/projects/transaction/src/lib/component/relation/relation-address-select/relation-address-select.module.ts +0 -32
- package/projects/transaction/src/lib/component/relation/relation-address-tile/relation-address-tile.component.ts +0 -70
- package/projects/transaction/src/lib/component/relation/relation-address-tile/relation-address-tile.module.ts +0 -31
- package/projects/transaction/src/lib/component/relation/relation-addresses/relation-addresses.component.ts +0 -123
- package/projects/transaction/src/lib/component/relation/relation-addresses/relation-addresses.module.ts +0 -32
- package/projects/transaction/src/lib/component/relation/relation-base.component.ts +0 -33
- package/projects/transaction/src/lib/component/relation/relation-contact-details/relation-contact-details.component.ts +0 -65
- package/projects/transaction/src/lib/component/relation/relation-contact-details/relation-contact-details.module.ts +0 -22
- package/projects/transaction/src/lib/component/relation/relation-general/relation-general.component.ts +0 -237
- package/projects/transaction/src/lib/component/relation/relation-general/relation-general.module.ts +0 -25
- package/projects/transaction/src/lib/component/relation/relation-preferences/relation-preferences.component.ts +0 -64
- package/projects/transaction/src/lib/component/relation/relation-preferences/relation-preferences.module.ts +0 -19
- package/projects/transaction/src/lib/component/relation/relation-suggestions-list/relation-suggestions-list.component.ts +0 -28
- package/projects/transaction/src/lib/component/relation/relation-suggestions-list/relation-suggestions-list.module.ts +0 -19
- package/projects/transaction/src/lib/component/relation/relation-suggestions-list-item/relation-suggestions-list-item.component.ts +0 -33
- package/projects/transaction/src/lib/component/relation/relation-suggestions-list-item/relation-suggestions-list-item.module.ts +0 -17
- package/projects/transaction/src/lib/component/relation/relation-type/relation-type.component.ts +0 -48
- package/projects/transaction/src/lib/component/relation/relation-type/relation-type.module.ts +0 -21
- package/projects/transaction/src/lib/component/shared/transaction-article-text/transaction-article-text.component.ts +0 -181
- package/projects/transaction/src/lib/component/shared/transaction-article-text/transaction-article-text.module.ts +0 -40
- package/projects/transaction/src/lib/component/shared/transaction-article-text-overview/transaction-article-text-overview.component.ts +0 -145
- package/projects/transaction/src/lib/component/shared/transaction-article-text-overview/transaction-article-text-overview.module.ts +0 -27
- package/projects/transaction/src/lib/component/shopping-cart/shopping-cart.component.ts +0 -73
- package/projects/transaction/src/lib/component/shopping-cart/shopping-cart.module.ts +0 -25
- package/projects/transaction/src/lib/component/shopping-cart-OLD/ione-shopping-cart.component.ts +0 -190
- package/projects/transaction/src/lib/component/shopping-cart-OLD/ione-shopping-cart.module.ts +0 -81
- package/projects/transaction/src/lib/component/shopping-cart-OLD/shopping-cart-manager/shopping-cart-manager.component.ts +0 -508
- package/projects/transaction/src/lib/component/shopping-cart-preview/shopping-cart-preview.component.ts +0 -59
- package/projects/transaction/src/lib/component/shopping-cart-preview/shopping-cart-preview.module.ts +0 -27
- package/projects/transaction/src/lib/component/stepper/component/stepper-step.component.ts +0 -45
- package/projects/transaction/src/lib/component/stepper/stepper.component.ts +0 -148
- package/projects/transaction/src/lib/component/stepper/stepper.module.ts +0 -28
- package/projects/transaction/src/lib/component/tile/tile.component.ts +0 -31
- package/projects/transaction/src/lib/component/tile/tile.module.ts +0 -18
- package/projects/transaction/src/lib/component/toast/toast.component.ts +0 -35
- package/projects/transaction/src/lib/component/toast/toast.module.ts +0 -17
- package/projects/transaction/src/lib/component/transaction/transaction.component.ts +0 -207
- package/projects/transaction/src/lib/component/transaction/transaction.module.ts +0 -66
- package/projects/transaction/src/lib/component/transaction-allocate-goods-history/transaction-allocate-goods-history.component.ts +0 -95
- package/projects/transaction/src/lib/component/transaction-allocate-goods-history/transaction-allocate-goods-history.module.ts +0 -26
- package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button-base.component.ts +0 -45
- package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button.component.ts +0 -76
- package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-sales-purchase-button-bar-button.component.ts +0 -40
- package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar.component.ts +0 -63
- package/projects/transaction/src/lib/component/transaction-button-bar/transaction-button-bar.module.ts +0 -33
- package/projects/transaction/src/lib/component/transaction-confirmation-details/transaction-confirmation-details.component.ts +0 -148
- package/projects/transaction/src/lib/component/transaction-confirmation-details/transaction-confirmation-details.module.ts +0 -40
- package/projects/transaction/src/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.ts +0 -129
- package/projects/transaction/src/lib/component/transaction-confirmation-history/transaction-confirmation-history.module.ts +0 -38
- package/projects/transaction/src/lib/component/transaction-grid/transaction-available-stock-grid/transaction-available-stock-grid.component.ts +0 -107
- package/projects/transaction/src/lib/component/transaction-grid/transaction-available-stock-grid/transaction-available-stock-grid.module.ts +0 -23
- package/projects/transaction/src/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.module.ts +0 -31
- package/projects/transaction/src/lib/component/transaction-grid/transaction-grid/transaction-grid.component.ts +0 -91
- package/projects/transaction/src/lib/component/transaction-grid/transaction-grid/transaction-grid.module.ts +0 -17
- package/projects/transaction/src/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.component.ts +0 -102
- package/projects/transaction/src/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.module.ts +0 -26
- package/projects/transaction/src/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.component.ts +0 -119
- package/projects/transaction/src/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.module.ts +0 -48
- package/projects/transaction/src/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.component.ts +0 -48
- package/projects/transaction/src/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.module.ts +0 -28
- package/projects/transaction/src/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.component.ts +0 -165
- package/projects/transaction/src/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.module.ts +0 -41
- package/projects/transaction/src/lib/component/transaction-header/transaction-header/transaction-header.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-header/transaction-header/transaction-header.module.ts +0 -28
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.ts +0 -128
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.module.ts +0 -45
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-order/transaction-header-order.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-order/transaction-header-order.module.ts +0 -30
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.ts +0 -118
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.module.ts +0 -33
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.component.ts +0 -235
- package/projects/transaction/src/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.module.ts +0 -43
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-administrative-relation.component.ts +0 -60
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-administrative-relation.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-branch.component.ts +0 -76
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-branch.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-definitive.component.ts +0 -41
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-definitive.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-date.component.ts +0 -46
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-date.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-method.component.ts +0 -94
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-method.module.ts +0 -27
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-options/transaction-header-delivery-options.component.ts +0 -77
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-delivery-options/transaction-header-delivery-options.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-amount.component.ts +0 -50
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-amount.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-button.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-button.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-percentage.component.ts +0 -50
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-percentage.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-discount-transaction-total.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-downpayment-amount.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-downpayment-amount.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-downpayment-percentage.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-marketing.component.ts +0 -48
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-marketing.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-partial-delivery.component.ts +0 -47
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-partial-delivery.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-preferred-delivery-date.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-preferred-delivery-date.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-reference.component.ts +0 -48
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-reference.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-relation-reference.component.ts +0 -48
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-relation-reference.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-remarks.component.ts +0 -48
- package/projects/transaction/src/lib/component/transaction-header-fields/transaction-header-remarks.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-history-grid-status/transaction-history-grid-status.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line/transaction-base-line/transaction-base-line.component.ts +0 -93
- package/projects/transaction/src/lib/component/transaction-line/transaction-base-line/transaction-base-line.module.ts +0 -28
- package/projects/transaction/src/lib/component/transaction-line/transaction-goods-allocation-line/service/transaction-allocate-goods.service.ts +0 -67
- package/projects/transaction/src/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.component.ts +0 -115
- package/projects/transaction/src/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.module.ts +0 -35
- package/projects/transaction/src/lib/component/transaction-line/transaction-line/transaction-line.component.ts +0 -143
- package/projects/transaction/src/lib/component/transaction-line/transaction-line/transaction-line.module.ts +0 -20
- package/projects/transaction/src/lib/component/transaction-line/transaction-order-delivery-line/service/transaction-order-delivery.service.ts +0 -11
- package/projects/transaction/src/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.component.ts +0 -134
- package/projects/transaction/src/lib/component/transaction-line/transaction-order-delivery-line/transaction-order-delivery-line.module.ts +0 -41
- package/projects/transaction/src/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.component.ts +0 -95
- package/projects/transaction/src/lib/component/transaction-line/transaction-overview-line/transaction-overview-line.module.ts +0 -60
- package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.component.ts +0 -105
- package/projects/transaction/src/lib/component/transaction-line/transaction-purchase-line/transaction-purchase-line.module.ts +0 -44
- package/projects/transaction/src/lib/component/transaction-line/transaction-receive-goods-line/service/transaction-receive-goods.service.ts +0 -73
- package/projects/transaction/src/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.component.ts +0 -130
- package/projects/transaction/src/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.module.ts +0 -46
- package/projects/transaction/src/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.component.ts +0 -224
- package/projects/transaction/src/lib/component/transaction-line-action-buttons/transaction-line-action-buttons.module.ts +0 -30
- package/projects/transaction/src/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.component.ts +0 -58
- package/projects/transaction/src/lib/component/transaction-line-checkbox-list/transaction-line-checkbox-list.module.ts +0 -23
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-amount.component.ts +0 -46
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-amount.module.ts +0 -19
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-assembly-time.component.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-assembly-time.module.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-collection-code.component.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-collection-code.module.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-commission-button.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-commission-button.module.ts +0 -22
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-commission-code.component.ts +0 -55
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-commission-code.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-button.component.ts +0 -58
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-button.module.ts +0 -22
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-date-button.component.ts +0 -34
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-date-button.module.ts +0 -22
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-date.component.ts +0 -56
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-date.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-method.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-delivery-method.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-description.component.ts +0 -61
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-description.module.ts +0 -22
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-discount-amount.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-discount-amount.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-discount-button.component.ts +0 -53
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-discount-button.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-edit-time.component.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-edit-time.module.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-line-discount.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-line-discount.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.component.ts +0 -90
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-price/transaction-line-price.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-price-list.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-price-list.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-quantity.component.ts +0 -35
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-quantity.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-quantum-discount.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-quantum-discount.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-reference.component.ts +0 -47
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-reference.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-special-discount.component.ts +0 -49
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-special-discount.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-article-number.component.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-article-number.module.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-button.component.ts +0 -56
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier-button.module.ts +0 -27
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier.component.ts +0 -56
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-supplier.module.ts +0 -23
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-vat-button.component.ts +0 -55
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-vat-button.module.ts +0 -20
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-vat.component.ts +0 -45
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-vat.module.ts +0 -26
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-button.component.ts +0 -61
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-button.module.ts +0 -22
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.component.ts +0 -57
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-location-button.module.ts +0 -20
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-location.component.ts +0 -46
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse-location.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse.component.ts +0 -48
- package/projects/transaction/src/lib/component/transaction-line-fields/transaction-line-warehouse.module.ts +0 -25
- package/projects/transaction/src/lib/component/transaction-line-grid/transaction-line-grid.component.ts +0 -20
- package/projects/transaction/src/lib/component/transaction-line-grid/transaction-line-grid.module.ts +0 -19
- package/projects/transaction/src/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.component.ts +0 -102
- package/projects/transaction/src/lib/component/transaction-line-image-and-description/transaction-line-image-and-description.module.ts +0 -26
- package/projects/transaction/src/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.ts +0 -125
- package/projects/transaction/src/lib/component/transaction-line-side-panel/transaction-line-side-panel.module.ts +0 -43
- package/projects/transaction/src/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.component.ts +0 -120
- package/projects/transaction/src/lib/component/transaction-line-side-panel-default/transaction-line-side-panel-default.module.ts +0 -58
- package/projects/transaction/src/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.ts +0 -123
- package/projects/transaction/src/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.module.ts +0 -39
- package/projects/transaction/src/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-sales.component.ts +0 -85
- package/projects/transaction/src/lib/component/transaction-line-side-panel-sales/transaction-line-side-panel-sales.module.ts +0 -30
- package/projects/transaction/src/lib/component/transaction-line-statusbar/transaction-line-statusbar.component.ts +0 -108
- package/projects/transaction/src/lib/component/transaction-line-statusbar/transaction-line-statusbar.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-lines/transaction-lines.component.ts +0 -180
- package/projects/transaction/src/lib/component/transaction-lines/transaction-lines.module.ts +0 -30
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.component.ts +0 -107
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.module.ts +0 -42
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation/transaction-quick-access-goods-allocation.component.ts +0 -68
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-goods-allocation/transaction-quick-access-goods-allocation.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.ts +0 -41
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.module.ts +0 -27
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.component.ts +0 -70
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-delivery/transaction-quick-access-order-delivery.module.ts +0 -26
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-purchase/transaction-quick-access-order-purchase.component.ts +0 -54
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-order-purchase/transaction-quick-access-order-purchase.module.ts +0 -26
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.component.ts +0 -139
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.module.ts +0 -29
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.component.ts +0 -133
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-purchase-order-overview/transaction-quick-access-purchase-order-overview.module.ts +0 -27
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.ts +0 -96
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.module.ts +0 -31
- package/projects/transaction/src/lib/component/transaction-quick-access/transaction-quick-access-send-method-base.component.ts +0 -132
- package/projects/transaction/src/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.ts +0 -90
- package/projects/transaction/src/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.module.ts +0 -28
- package/projects/transaction/src/lib/component/transaction-search/service/filter-request.service.ts +0 -194
- package/projects/transaction/src/lib/component/transaction-search/service/transaction-search.service.ts +0 -134
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.component.ts +0 -119
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.module.ts +0 -17
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.module.ts +0 -40
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.component.ts +0 -51
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.module.ts +0 -38
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.component.ts +0 -44
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.module.ts +0 -17
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/enum/search-placeholder.enum.ts +0 -25
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.component.ts +0 -155
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-article/transaction-purchase-order-filter-content-article.module.ts +0 -27
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.component.ts +0 -249
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-logistics/transaction-purchase-order-filter-content-logistics.module.ts +0 -33
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.component.ts +0 -246
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/purchase-order-filter-content/transaction-purchase-order-filter-content-order/transaction-purchase-order-filter-content-order.module.ts +0 -38
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.component.ts +0 -145
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-article/transaction-sales-order-filter-content-article.module.ts +0 -27
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.component.ts +0 -248
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-logistics/transaction-sales-order-filter-content-logistics.module.ts +0 -33
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.component.ts +0 -274
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-content/sales-order-filter-content/transaction-sales-order-filter-content-order/transaction-sales-order-filter-content-order.module.ts +0 -38
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-historic-state/transaction-filter-historic-state.component.ts +0 -70
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-historic-state/transaction-filter-historic-state.module.ts +0 -24
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-item/transaction-filter-item.component.ts +0 -71
- package/projects/transaction/src/lib/component/transaction-search/transaction-filter-item/transaction-filter-item.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.component.ts +0 -104
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-grid/transaction-search-grid.module.ts +0 -17
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.component.ts +0 -80
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-purchase-order-grid/transaction-search-purchase-order-grid.module.ts +0 -23
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.component.ts +0 -80
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-grid/transaction-search-sales-order-grid/transaction-search-sales-order-grid.module.ts +0 -25
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-header/transaction-search-header.component.ts +0 -135
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-header/transaction-search-header.module.ts +0 -25
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.ts +0 -136
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.ts +0 -42
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.component.ts +0 -65
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-purchase-order-tile/transaction-search-purchase-order-tile.module.ts +0 -27
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.component.ts +0 -72
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-order-tile/transaction-search-sales-order-tile.module.ts +0 -30
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.component.ts +0 -118
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/transaction-search-tile.module.ts +0 -17
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-statusbar/transaction-statusbar.component.ts +0 -90
- package/projects/transaction/src/lib/component/transaction-search/transaction-search-tile/transaction-statusbar/transaction-statusbar.module.ts +0 -21
- package/projects/transaction/src/lib/component/transaction-search/transaction-search.component.ts +0 -166
- package/projects/transaction/src/lib/component/transaction-search/transaction-search.module.ts +0 -34
- package/projects/transaction/src/lib/component/transaction-side-panel-edit-request-details/components/allocation-request.component.ts +0 -143
- package/projects/transaction/src/lib/component/transaction-side-panel-edit-request-details/components/confirm-request.component.ts +0 -0
- package/projects/transaction/src/lib/component/transaction-side-panel-edit-request-details/components/receive-goods-request.component.ts +0 -207
- package/projects/transaction/src/lib/component/transaction-side-panel-edit-request-details/transaction-side-panel-edit-request-details.component.ts +0 -63
- package/projects/transaction/src/lib/component/transaction-side-panel-edit-request-details/transaction-side-panel-edit-request-details.module.ts +0 -42
- package/projects/transaction/src/lib/component/transaction-tile/transaction-tile.component.ts +0 -117
- package/projects/transaction/src/lib/component/transaction-tile/transaction-tile.module.ts +0 -27
- package/projects/transaction/src/lib/component/transaction-totals/transaction-totals.component.ts +0 -55
- package/projects/transaction/src/lib/component/transaction-totals/transaction-totals.module.ts +0 -23
- package/projects/transaction/src/lib/component/view-mode-buttons/view-mode-buttons.component.ts +0 -63
- package/projects/transaction/src/lib/component/view-mode-buttons/view-mode-buttons.module.ts +0 -21
- package/projects/transaction/src/lib/enum/content-view-mode.enum.ts +0 -9
- package/projects/transaction/src/lib/enum/direction.enum.ts +0 -7
- package/projects/transaction/src/lib/enum/icon.enum.ts +0 -83
- package/projects/transaction/src/lib/enum/language-code.enum.ts +0 -6
- package/projects/transaction/src/lib/enum/order-discount-type.enum.ts +0 -5
- package/projects/transaction/src/lib/enum/position-grid-row.enum.ts +0 -4
- package/projects/transaction/src/lib/enum/search-view-mode.enum.ts +0 -5
- package/projects/transaction/src/lib/enum/searchbar-view-mode.enum.ts +0 -5
- package/projects/transaction/src/lib/enum/status-type.enum.ts +0 -5
- package/projects/transaction/src/lib/enum/time-size.type.ts +0 -8
- package/projects/transaction/src/lib/enum/transaction-type-category.enum.ts +0 -15
- package/projects/transaction/src/lib/interface/dialog-response.interface.ts +0 -6
- package/projects/transaction/src/lib/model/Settings.ts +0 -20
- package/projects/transaction/src/lib/model/article-characteristic-text-question-answer.ts +0 -8
- package/projects/transaction/src/lib/model/delivery-type.ts +0 -8
- package/projects/transaction/src/lib/model/down-payment-view-model.ts +0 -13
- package/projects/transaction/src/lib/model/extended-transaction-line-view-model.ts +0 -11
- package/projects/transaction/src/lib/model/filter-item.viewmodel.ts +0 -13
- package/projects/transaction/src/lib/model/filter-viewmodel.ts +0 -11
- package/projects/transaction/src/lib/model/icon-svg.ts +0 -83
- package/projects/transaction/src/lib/model/payment.viewmodel.ts +0 -10
- package/projects/transaction/src/lib/model/received-goods-view-model.ts +0 -17
- package/projects/transaction/src/lib/model/relation-any-type.ts +0 -5
- package/projects/transaction/src/lib/model/standard-text.ts +0 -5
- package/projects/transaction/src/lib/model/text-value-container.ts +0 -4
- package/projects/transaction/src/lib/model/transaction-bar-button.ts +0 -11
- package/projects/transaction/src/lib/model/transaction-search-result.ts +0 -6
- package/projects/transaction/src/lib/pipe/append.pipe.ts +0 -17
- package/projects/transaction/src/lib/pipe/co-currency.pipe.ts +0 -45
- package/projects/transaction/src/lib/pipe/date-duration.pipe.ts +0 -51
- package/projects/transaction/src/lib/pipe/delivery-time.pipe.ts +0 -34
- package/projects/transaction/src/lib/pipe/localize.pipe.ts +0 -23
- package/projects/transaction/src/lib/pipe/pipe.module.ts +0 -34
- package/projects/transaction/src/lib/pipe/safe-html.pipe.ts +0 -14
- package/projects/transaction/src/lib/pipe/safe-style.pipe.ts +0 -14
- package/projects/transaction/src/lib/provider/token/all-icons.token.ts +0 -4
- package/projects/transaction/src/lib/service/article-connector.service.ts +0 -93
- package/projects/transaction/src/lib/service/article.service.ts +0 -22
- package/projects/transaction/src/lib/service/dialog.service.ts +0 -143
- package/projects/transaction/src/lib/service/dictionary.service.ts +0 -86
- package/projects/transaction/src/lib/service/dynamic-component.service.ts +0 -101
- package/projects/transaction/src/lib/service/error.service.ts +0 -63
- package/projects/transaction/src/lib/service/icon-cache.service.ts +0 -51
- package/projects/transaction/src/lib/service/options.service.ts +0 -66
- package/projects/transaction/src/lib/service/payment.service.ts +0 -93
- package/projects/transaction/src/lib/service/pending-reason.service.ts +0 -323
- package/projects/transaction/src/lib/service/relation-connector.service.ts +0 -202
- package/projects/transaction/src/lib/service/relation.service.ts +0 -168
- package/projects/transaction/src/lib/service/shared-connector.service.ts +0 -47
- package/projects/transaction/src/lib/service/shared.service.ts +0 -40
- package/projects/transaction/src/lib/service/transaction-connector-adapter.service.ts +0 -1632
- package/projects/transaction/src/lib/service/transaction-connector.service.ts +0 -623
- package/projects/transaction/src/lib/service/transaction-event.service.ts +0 -35
- package/projects/transaction/src/lib/service/transaction-image.service.ts +0 -42
- package/projects/transaction/src/lib/service/transaction-initializer.service.ts +0 -29
- package/projects/transaction/src/lib/service/transaction-mapping.service.ts +0 -203
- package/projects/transaction/src/lib/service/transaction.service.ts +0 -815
- package/projects/transaction/src/public_api.ts +0 -50
- package/projects/transaction/src/test.ts +0 -25
- package/projects/transaction/tsconfig.lib.json +0 -20
- package/projects/transaction/tsconfig.lib.prod.json +0 -16
- package/projects/transaction/tsconfig.spec.json +0 -17
- package/publish.bat +0 -7
- package/script/merge-icons.js +0 -39
- package/src/app/app-transaction.component.ts +0 -18
- package/src/app/app.component.scss +0 -45
- package/src/app/app.component.ts +0 -332
- package/src/app/app.module.ts +0 -62
- package/src/environments/environment.prod.ts +0 -3
- package/src/environments/environment.ts +0 -16
- package/src/favicon.ico +0 -0
- package/src/index.html +0 -15
- package/src/main.ts +0 -14
- package/src/polyfills.ts +0 -63
- package/src/styles.scss +0 -93
- package/src/test.ts +0 -25
- package/src/transaction.unit.test.ts +0 -60
- package/tsconfig.app.json +0 -15
- package/tsconfig.json +0 -42
- package/tsconfig.spec.json +0 -18
- package/webpack.config.js +0 -18
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
// Class represents a value that is to be loaded only once, lazily, by its .loadFunction, despite how many times or how fast its getValue() is called.
|
|
3
|
+
export class CacheField {
|
|
4
|
+
constructor() {
|
|
5
|
+
this.onLoad = new EventEmitter();
|
|
6
|
+
this._isLoaded = false;
|
|
7
|
+
}
|
|
8
|
+
// The value of this cache field. Warning: might not have been loaded yet. Call ensureLoaded() or getvalue() for true value.
|
|
9
|
+
get value() {
|
|
10
|
+
return this._value;
|
|
11
|
+
}
|
|
12
|
+
set value(value) {
|
|
13
|
+
this._value = value;
|
|
14
|
+
this._promiseValue = Promise.resolve(value);
|
|
15
|
+
this._isLoaded = true;
|
|
16
|
+
}
|
|
17
|
+
// Whether the value has been loaded or not.
|
|
18
|
+
get isLoaded() {
|
|
19
|
+
return this._isLoaded;
|
|
20
|
+
}
|
|
21
|
+
// Whether the value is currently loading or not.
|
|
22
|
+
get isLoading() {
|
|
23
|
+
return !this._isLoaded && (this._promiseValue !== null && this._promiseValue !== undefined);
|
|
24
|
+
}
|
|
25
|
+
get loadNeverCalled() {
|
|
26
|
+
return !this.isLoading && !this.isLoaded;
|
|
27
|
+
}
|
|
28
|
+
// Loads and returns the value. Only loads from db if it wasn't loaded before (or forceReload was given true)
|
|
29
|
+
getValue(forceReload) {
|
|
30
|
+
return this.ensureLoaded(forceReload);
|
|
31
|
+
}
|
|
32
|
+
setValue(value) {
|
|
33
|
+
this.value = value;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* POSTCONDITION: The .value of this cache field contains the loaded value as fetched by the resolve data of its .loadFunction.
|
|
37
|
+
* Will load only once, consecutive calls will resolve immediately or wait until the first original database fetch was finished.
|
|
38
|
+
* @returns {Promise<any>} Postcondition holds after resolve
|
|
39
|
+
*/
|
|
40
|
+
ensureLoaded(forceReload) {
|
|
41
|
+
if (!forceReload && this._promiseValue) {
|
|
42
|
+
return this._promiseValue;
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
return this._load();
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
// POSTCONDITION: The .value of this cache field contains a freshly loaded value as fetched by the resolve data of its loadFunction.
|
|
49
|
+
reload() {
|
|
50
|
+
return this.ensureLoaded(true);
|
|
51
|
+
}
|
|
52
|
+
// Resets / invaldates this cache field. Makes sure that the next load() will really perform its load function body again (e.g. visit the DB,
|
|
53
|
+
// if that's ur function)
|
|
54
|
+
reset() {
|
|
55
|
+
this._value = undefined;
|
|
56
|
+
this._promiseValue = undefined;
|
|
57
|
+
this._isLoaded = false;
|
|
58
|
+
}
|
|
59
|
+
_load() {
|
|
60
|
+
if (this.loadFunction) {
|
|
61
|
+
this._promiseValue = this.loadFunction.call(this);
|
|
62
|
+
this._promiseValue.then((value) => {
|
|
63
|
+
this._value = value;
|
|
64
|
+
this._isLoaded = true;
|
|
65
|
+
this.onLoad.emit();
|
|
66
|
+
return value;
|
|
67
|
+
});
|
|
68
|
+
return this._promiseValue;
|
|
69
|
+
}
|
|
70
|
+
else {
|
|
71
|
+
return Promise.resolve(undefined);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FjaGUtZmllbGQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NhY2hlL2NhY2hlLWZpZWxkLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFFM0Msc0pBQXNKO0FBQ3RKLE1BQU0sT0FBTyxVQUFVO0lBbUNyQjtRQWxDZ0IsV0FBTSxHQUFzQixJQUFJLFlBQVksRUFBTyxDQUFDO1FBZ0M1RCxjQUFTLEdBQVksS0FBSyxDQUFDO0lBR25DLENBQUM7SUFqQ0QsNEhBQTRIO0lBQzVILElBQVcsS0FBSztRQUNkLE9BQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQztJQUNyQixDQUFDO0lBRUQsSUFBVyxLQUFLLENBQUMsS0FBUTtRQUN2QixJQUFJLENBQUMsTUFBTSxHQUFHLEtBQUssQ0FBQztRQUNwQixJQUFJLENBQUMsYUFBYSxHQUFHLE9BQU8sQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDNUMsSUFBSSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUM7SUFDeEIsQ0FBQztJQUVELDRDQUE0QztJQUM1QyxJQUFXLFFBQVE7UUFDakIsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDO0lBQ3hCLENBQUM7SUFFRCxpREFBaUQ7SUFDakQsSUFBVyxTQUFTO1FBQ2xCLE9BQU8sQ0FBQyxJQUFJLENBQUMsU0FBUyxJQUFJLENBQUMsSUFBSSxDQUFDLGFBQWEsS0FBSyxJQUFJLElBQUksSUFBSSxDQUFDLGFBQWEsS0FBSyxTQUFTLENBQUMsQ0FBQztJQUM5RixDQUFDO0lBRUQsSUFBVyxlQUFlO1FBQ3hCLE9BQU8sQ0FBQyxJQUFJLENBQUMsU0FBUyxJQUFJLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQztJQUMzQyxDQUFDO0lBWUQsNkdBQTZHO0lBQ3RHLFFBQVEsQ0FBQyxXQUFxQjtRQUNuQyxPQUFPLElBQUksQ0FBQyxZQUFZLENBQUMsV0FBVyxDQUFDLENBQUM7SUFDeEMsQ0FBQztJQUVNLFFBQVEsQ0FBQyxLQUFVO1FBQ3hCLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO0lBQ3JCLENBQUM7SUFFRDs7OztPQUlHO0lBQ0ksWUFBWSxDQUFDLFdBQXFCO1FBQ3ZDLElBQUksQ0FBQyxXQUFXLElBQUksSUFBSSxDQUFDLGFBQWEsRUFBRTtZQUN0QyxPQUFPLElBQUksQ0FBQyxhQUFhLENBQUM7U0FDM0I7YUFBTTtZQUNMLE9BQU8sSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDO1NBQ3JCO0lBQ0gsQ0FBQztJQUVELG9JQUFvSTtJQUM3SCxNQUFNO1FBQ1gsT0FBTyxJQUFJLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ2pDLENBQUM7SUFFRCw2SUFBNkk7SUFDN0kseUJBQXlCO0lBQ2xCLEtBQUs7UUFDVixJQUFJLENBQUMsTUFBTSxHQUFHLFNBQVMsQ0FBQztRQUN4QixJQUFJLENBQUMsYUFBYSxHQUFHLFNBQVMsQ0FBQztRQUMvQixJQUFJLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQztJQUN6QixDQUFDO0lBRU8sS0FBSztRQUNYLElBQUksSUFBSSxDQUFDLFlBQVksRUFBRTtZQUNyQixJQUFJLENBQUMsYUFBYSxHQUFHLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1lBQ2xELElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLENBQUMsS0FBUSxFQUFFLEVBQUU7Z0JBQ25DLElBQUksQ0FBQyxNQUFNLEdBQUcsS0FBSyxDQUFDO2dCQUNwQixJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQztnQkFDdEIsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEVBQUUsQ0FBQztnQkFDbkIsT0FBTyxLQUFLLENBQUM7WUFDZixDQUFDLENBQUMsQ0FBQztZQUNILE9BQU8sSUFBSSxDQUFDLGFBQWEsQ0FBQztTQUMzQjthQUFNO1lBQ0wsT0FBTyxPQUFPLENBQUMsT0FBTyxDQUFDLFNBQVMsQ0FBQyxDQUFDO1NBQ25DO0lBQ0gsQ0FBQztDQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtFdmVudEVtaXR0ZXJ9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcblxyXG4vLyBDbGFzcyByZXByZXNlbnRzIGEgdmFsdWUgdGhhdCBpcyB0byBiZSBsb2FkZWQgb25seSBvbmNlLCBsYXppbHksIGJ5IGl0cyAubG9hZEZ1bmN0aW9uLCBkZXNwaXRlIGhvdyBtYW55IHRpbWVzIG9yIGhvdyBmYXN0IGl0cyBnZXRWYWx1ZSgpIGlzIGNhbGxlZC5cclxuZXhwb3J0IGNsYXNzIENhY2hlRmllbGQ8VD4ge1xyXG4gIHB1YmxpYyByZWFkb25seSBvbkxvYWQ6IEV2ZW50RW1pdHRlcjxhbnk+ID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XHJcblxyXG4gIC8vIFRoZSB2YWx1ZSBvZiB0aGlzIGNhY2hlIGZpZWxkLiBXYXJuaW5nOiBtaWdodCBub3QgaGF2ZSBiZWVuIGxvYWRlZCB5ZXQuIENhbGwgZW5zdXJlTG9hZGVkKCkgb3IgZ2V0dmFsdWUoKSBmb3IgdHJ1ZSB2YWx1ZS5cclxuICBwdWJsaWMgZ2V0IHZhbHVlKCk6IFQge1xyXG4gICAgcmV0dXJuIHRoaXMuX3ZhbHVlO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIHNldCB2YWx1ZSh2YWx1ZTogVCkge1xyXG4gICAgdGhpcy5fdmFsdWUgPSB2YWx1ZTtcclxuICAgIHRoaXMuX3Byb21pc2VWYWx1ZSA9IFByb21pc2UucmVzb2x2ZSh2YWx1ZSk7XHJcbiAgICB0aGlzLl9pc0xvYWRlZCA9IHRydWU7XHJcbiAgfVxyXG5cclxuICAvLyBXaGV0aGVyIHRoZSB2YWx1ZSBoYXMgYmVlbiBsb2FkZWQgb3Igbm90LlxyXG4gIHB1YmxpYyBnZXQgaXNMb2FkZWQoKTogYm9vbGVhbiB7XHJcbiAgICByZXR1cm4gdGhpcy5faXNMb2FkZWQ7XHJcbiAgfVxyXG5cclxuICAvLyBXaGV0aGVyIHRoZSB2YWx1ZSBpcyBjdXJyZW50bHkgbG9hZGluZyBvciBub3QuXHJcbiAgcHVibGljIGdldCBpc0xvYWRpbmcoKTogYm9vbGVhbiB7XHJcbiAgICByZXR1cm4gIXRoaXMuX2lzTG9hZGVkICYmICh0aGlzLl9wcm9taXNlVmFsdWUgIT09IG51bGwgJiYgdGhpcy5fcHJvbWlzZVZhbHVlICE9PSB1bmRlZmluZWQpO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGdldCBsb2FkTmV2ZXJDYWxsZWQoKTogYm9vbGVhbiB7XHJcbiAgICByZXR1cm4gIXRoaXMuaXNMb2FkaW5nICYmICF0aGlzLmlzTG9hZGVkO1xyXG4gIH1cclxuXHJcbiAgLy8gQXNzaWduIHRoZSBsb2FkIGZ1bmN0aW9uIHRvIHRoaXMgZmllbGQuIFRoZSBmdW5jdGlvbiBzaG91bGQgcmV0dXJuIGEgcHJvbWlzZSB0aGF0IHJlc29sdmVzIHdpdGggdGhlIHZhbHVlIGFzIGRhdGEuXHJcbiAgcHVibGljIGxvYWRGdW5jdGlvbjogKHBhcmFtcz86IGFueSkgPT4gUHJvbWlzZTxUPjtcclxuXHJcbiAgcHJpdmF0ZSBfcHJvbWlzZVZhbHVlOiBQcm9taXNlPFQ+O1xyXG4gIHByaXZhdGUgX3ZhbHVlOiBUO1xyXG4gIHByaXZhdGUgX2lzTG9hZGVkOiBib29sZWFuID0gZmFsc2U7XHJcblxyXG4gIGNvbnN0cnVjdG9yKCkge1xyXG4gIH1cclxuXHJcbiAgLy8gTG9hZHMgYW5kIHJldHVybnMgdGhlIHZhbHVlLiBPbmx5IGxvYWRzIGZyb20gZGIgaWYgaXQgd2Fzbid0IGxvYWRlZCBiZWZvcmUgKG9yIGZvcmNlUmVsb2FkIHdhcyBnaXZlbiB0cnVlKVxyXG4gIHB1YmxpYyBnZXRWYWx1ZShmb3JjZVJlbG9hZD86IGJvb2xlYW4pOiBQcm9taXNlPFQ+IHtcclxuICAgIHJldHVybiB0aGlzLmVuc3VyZUxvYWRlZChmb3JjZVJlbG9hZCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgc2V0VmFsdWUodmFsdWU6IGFueSk6IHZvaWQgeyAvL05PU09OQVJcclxuICAgIHRoaXMudmFsdWUgPSB2YWx1ZTtcclxuICB9XHJcblxyXG4gIC8qKlxyXG4gICAqIFBPU1RDT05ESVRJT046IFRoZSAudmFsdWUgb2YgdGhpcyBjYWNoZSBmaWVsZCBjb250YWlucyB0aGUgbG9hZGVkIHZhbHVlIGFzIGZldGNoZWQgYnkgdGhlIHJlc29sdmUgZGF0YSBvZiBpdHMgLmxvYWRGdW5jdGlvbi5cclxuICAgKiBXaWxsIGxvYWQgb25seSBvbmNlLCBjb25zZWN1dGl2ZSBjYWxscyB3aWxsIHJlc29sdmUgaW1tZWRpYXRlbHkgb3Igd2FpdCB1bnRpbCB0aGUgZmlyc3Qgb3JpZ2luYWwgZGF0YWJhc2UgZmV0Y2ggd2FzIGZpbmlzaGVkLlxyXG4gICAqIEByZXR1cm5zIHtQcm9taXNlPGFueT59IFBvc3Rjb25kaXRpb24gaG9sZHMgYWZ0ZXIgcmVzb2x2ZVxyXG4gICAqL1xyXG4gIHB1YmxpYyBlbnN1cmVMb2FkZWQoZm9yY2VSZWxvYWQ/OiBib29sZWFuKTogUHJvbWlzZTxUPiB7XHJcbiAgICBpZiAoIWZvcmNlUmVsb2FkICYmIHRoaXMuX3Byb21pc2VWYWx1ZSkge1xyXG4gICAgICByZXR1cm4gdGhpcy5fcHJvbWlzZVZhbHVlO1xyXG4gICAgfSBlbHNlIHtcclxuICAgICAgcmV0dXJuIHRoaXMuX2xvYWQoKTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIC8vIFBPU1RDT05ESVRJT046IFRoZSAudmFsdWUgb2YgdGhpcyBjYWNoZSBmaWVsZCBjb250YWlucyBhIGZyZXNobHkgbG9hZGVkIHZhbHVlIGFzIGZldGNoZWQgYnkgdGhlIHJlc29sdmUgZGF0YSBvZiBpdHMgbG9hZEZ1bmN0aW9uLlxyXG4gIHB1YmxpYyByZWxvYWQoKTogUHJvbWlzZTxUPiB7XHJcbiAgICByZXR1cm4gdGhpcy5lbnN1cmVMb2FkZWQodHJ1ZSk7XHJcbiAgfVxyXG5cclxuICAvLyBSZXNldHMgLyBpbnZhbGRhdGVzIHRoaXMgY2FjaGUgZmllbGQuIE1ha2VzIHN1cmUgdGhhdCB0aGUgbmV4dCBsb2FkKCkgd2lsbCByZWFsbHkgcGVyZm9ybSBpdHMgbG9hZCBmdW5jdGlvbiBib2R5IGFnYWluIChlLmcuIHZpc2l0IHRoZSBEQixcclxuICAvLyBpZiB0aGF0J3MgdXIgZnVuY3Rpb24pXHJcbiAgcHVibGljIHJlc2V0KCk6IHZvaWQge1xyXG4gICAgdGhpcy5fdmFsdWUgPSB1bmRlZmluZWQ7XHJcbiAgICB0aGlzLl9wcm9taXNlVmFsdWUgPSB1bmRlZmluZWQ7XHJcbiAgICB0aGlzLl9pc0xvYWRlZCA9IGZhbHNlO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBfbG9hZCgpOiBQcm9taXNlPFQ+IHtcclxuICAgIGlmICh0aGlzLmxvYWRGdW5jdGlvbikge1xyXG4gICAgICB0aGlzLl9wcm9taXNlVmFsdWUgPSB0aGlzLmxvYWRGdW5jdGlvbi5jYWxsKHRoaXMpO1xyXG4gICAgICB0aGlzLl9wcm9taXNlVmFsdWUudGhlbigodmFsdWU6IFQpID0+IHtcclxuICAgICAgICB0aGlzLl92YWx1ZSA9IHZhbHVlO1xyXG4gICAgICAgIHRoaXMuX2lzTG9hZGVkID0gdHJ1ZTtcclxuICAgICAgICB0aGlzLm9uTG9hZC5lbWl0KCk7XHJcbiAgICAgICAgcmV0dXJuIHZhbHVlO1xyXG4gICAgICB9KTtcclxuICAgICAgcmV0dXJuIHRoaXMuX3Byb21pc2VWYWx1ZTtcclxuICAgIH0gZWxzZSB7XHJcbiAgICAgIHJldHVybiBQcm9taXNlLnJlc29sdmUodW5kZWZpbmVkKTtcclxuICAgIH1cclxuICB9XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { CacheField } from "./cache-field";
|
|
2
|
+
import { ObjectUtils } from "@colijnit/ioneconnector/build/utils/object-utils";
|
|
3
|
+
// Class represents cached values retrieved by a load function that is to be called only once per unique input parameter combination.
|
|
4
|
+
export class ParameterCacheField {
|
|
5
|
+
constructor() {
|
|
6
|
+
// A map from cache params (keys: the loadFunction arguments) to their cache fields
|
|
7
|
+
this._paramsToCacheItems = new Map();
|
|
8
|
+
}
|
|
9
|
+
// Returns the value for given loadfunction parameters. Loads if not yet loaded.
|
|
10
|
+
getValue(...params) {
|
|
11
|
+
return this._getCacheField(params).getValue();
|
|
12
|
+
}
|
|
13
|
+
setValue(value, ...params) {
|
|
14
|
+
return this._getCacheField(params).setValue(value);
|
|
15
|
+
}
|
|
16
|
+
// Returns the freshly reloaded value for given loadfunction parameters.
|
|
17
|
+
reload(...params) {
|
|
18
|
+
return this._getCacheField(params).reload();
|
|
19
|
+
}
|
|
20
|
+
// Resets one or all cache items. If no params given, resets ALL cache items.
|
|
21
|
+
reset(...params) {
|
|
22
|
+
if (params && params.length > 0) {
|
|
23
|
+
this._getCacheField(params).reset();
|
|
24
|
+
}
|
|
25
|
+
else {
|
|
26
|
+
this._paramsToCacheItems.forEach(cacheItem => cacheItem.reset());
|
|
27
|
+
this._paramsToCacheItems.clear();
|
|
28
|
+
this._paramsToCacheItems = new Map(); // not sure if clear() is enough for garbage collector?
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
// Makes a new cache field if none existed for these params. Returns the cache field that matches given params.
|
|
32
|
+
_getCacheField(params) {
|
|
33
|
+
let existingCacheField = undefined;
|
|
34
|
+
this._paramsToCacheItems.forEach((value, key) => {
|
|
35
|
+
if (!existingCacheField && ObjectUtils.DeepEquals(params, key)) {
|
|
36
|
+
existingCacheField = value;
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
if (existingCacheField) {
|
|
40
|
+
return existingCacheField;
|
|
41
|
+
}
|
|
42
|
+
else {
|
|
43
|
+
return this._makeNewCacheField(params);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
// Creates and returns a new loadField for given params
|
|
47
|
+
_makeNewCacheField(params) {
|
|
48
|
+
const cacheField = new CacheField();
|
|
49
|
+
cacheField.loadFunction = this.loadFunction.bind(cacheField, ...params);
|
|
50
|
+
this._paramsToCacheItems.set(params, cacheField);
|
|
51
|
+
return cacheField;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFyYW1ldGVyLWNhY2hlLWZpZWxkLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jYWNoZS9wYXJhbWV0ZXItY2FjaGUtZmllbGQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFVBQVUsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUMsV0FBVyxFQUFDLE1BQU0sa0RBQWtELENBQUM7QUFFN0UscUlBQXFJO0FBQ3JJLE1BQU0sT0FBTyxtQkFBbUI7SUFNOUI7UUFIQSxtRkFBbUY7UUFDM0Usd0JBQW1CLEdBQThCLElBQUksR0FBRyxFQUF3QixDQUFDO0lBR3pGLENBQUM7SUFFRCxnRkFBZ0Y7SUFDekUsUUFBUSxDQUFDLEdBQUcsTUFBYTtRQUM5QixPQUFPLElBQUksQ0FBQyxjQUFjLENBQUMsTUFBTSxDQUFDLENBQUMsUUFBUSxFQUFFLENBQUM7SUFDaEQsQ0FBQztJQUVNLFFBQVEsQ0FBQyxLQUFVLEVBQUUsR0FBRyxNQUFhO1FBQzFDLE9BQU8sSUFBSSxDQUFDLGNBQWMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDckQsQ0FBQztJQUVELHdFQUF3RTtJQUNqRSxNQUFNLENBQUMsR0FBRyxNQUFhO1FBQzVCLE9BQU8sSUFBSSxDQUFDLGNBQWMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxNQUFNLEVBQUUsQ0FBQztJQUM5QyxDQUFDO0lBRUQsNkVBQTZFO0lBQ3RFLEtBQUssQ0FBQyxHQUFHLE1BQWE7UUFDM0IsSUFBSSxNQUFNLElBQUksTUFBTSxDQUFDLE1BQU0sR0FBRyxDQUFDLEVBQUU7WUFDL0IsSUFBSSxDQUFDLGNBQWMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxLQUFLLEVBQUUsQ0FBQztTQUNyQzthQUFNO1lBQ0wsSUFBSSxDQUFDLG1CQUFtQixDQUFDLE9BQU8sQ0FBQyxTQUFTLENBQUMsRUFBRSxDQUFDLFNBQVMsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxDQUFDO1lBQ2pFLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxLQUFLLEVBQUUsQ0FBQztZQUNqQyxJQUFJLENBQUMsbUJBQW1CLEdBQUcsSUFBSSxHQUFHLEVBQXNCLENBQUMsQ0FBQyx1REFBdUQ7U0FDbEg7SUFDSCxDQUFDO0lBRUQsK0dBQStHO0lBQ3ZHLGNBQWMsQ0FBQyxNQUFhO1FBQ2xDLElBQUksa0JBQWtCLEdBQWtCLFNBQVMsQ0FBQztRQUVsRCxJQUFJLENBQUMsbUJBQW1CLENBQUMsT0FBTyxDQUFDLENBQUMsS0FBb0IsRUFBRSxHQUFVLEVBQUUsRUFBRTtZQUNwRSxJQUFJLENBQUMsa0JBQWtCLElBQUksV0FBVyxDQUFDLFVBQVUsQ0FBQyxNQUFNLEVBQUUsR0FBRyxDQUFDLEVBQUU7Z0JBQzlELGtCQUFrQixHQUFHLEtBQUssQ0FBQzthQUM1QjtRQUNILENBQUMsQ0FBQyxDQUFDO1FBRUgsSUFBSSxrQkFBa0IsRUFBRTtZQUN0QixPQUFPLGtCQUFrQixDQUFDO1NBQzNCO2FBQU07WUFDTCxPQUFPLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxNQUFNLENBQUMsQ0FBQztTQUN4QztJQUNILENBQUM7SUFFRCx1REFBdUQ7SUFDL0Msa0JBQWtCLENBQUMsTUFBYTtRQUN0QyxNQUFNLFVBQVUsR0FBa0IsSUFBSSxVQUFVLEVBQUssQ0FBQztRQUN0RCxVQUFVLENBQUMsWUFBWSxHQUFHLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLFVBQVUsRUFBRSxHQUFHLE1BQU0sQ0FBQyxDQUFDO1FBQ3hFLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxHQUFHLENBQUMsTUFBTSxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBQ2pELE9BQU8sVUFBVSxDQUFDO0lBQ3BCLENBQUM7Q0FDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q2FjaGVGaWVsZH0gZnJvbSBcIi4vY2FjaGUtZmllbGRcIjtcclxuaW1wb3J0IHtPYmplY3RVdGlsc30gZnJvbSBcIkBjb2xpam5pdC9pb25lY29ubmVjdG9yL2J1aWxkL3V0aWxzL29iamVjdC11dGlsc1wiO1xyXG5cclxuLy8gQ2xhc3MgcmVwcmVzZW50cyBjYWNoZWQgdmFsdWVzIHJldHJpZXZlZCBieSBhIGxvYWQgZnVuY3Rpb24gdGhhdCBpcyB0byBiZSBjYWxsZWQgb25seSBvbmNlIHBlciB1bmlxdWUgaW5wdXQgcGFyYW1ldGVyIGNvbWJpbmF0aW9uLlxyXG5leHBvcnQgY2xhc3MgUGFyYW1ldGVyQ2FjaGVGaWVsZDxUPiB7XHJcbiAgcHVibGljIGxvYWRGdW5jdGlvbjogKC4uLnBhcmFtczogYW55W10pID0+IFByb21pc2U8VD47XHJcblxyXG4gIC8vIEEgbWFwIGZyb20gY2FjaGUgcGFyYW1zIChrZXlzOiB0aGUgbG9hZEZ1bmN0aW9uIGFyZ3VtZW50cykgdG8gdGhlaXIgY2FjaGUgZmllbGRzXHJcbiAgcHJpdmF0ZSBfcGFyYW1zVG9DYWNoZUl0ZW1zOiBNYXA8YW55W10sIENhY2hlRmllbGQ8VD4+ID0gbmV3IE1hcDxhbnlbXSwgQ2FjaGVGaWVsZDxUPj4oKTtcclxuXHJcbiAgY29uc3RydWN0b3IoKSB7XHJcbiAgfVxyXG5cclxuICAvLyBSZXR1cm5zIHRoZSB2YWx1ZSBmb3IgZ2l2ZW4gbG9hZGZ1bmN0aW9uIHBhcmFtZXRlcnMuIExvYWRzIGlmIG5vdCB5ZXQgbG9hZGVkLlxyXG4gIHB1YmxpYyBnZXRWYWx1ZSguLi5wYXJhbXM6IGFueVtdKTogUHJvbWlzZTxUPiB7XHJcbiAgICByZXR1cm4gdGhpcy5fZ2V0Q2FjaGVGaWVsZChwYXJhbXMpLmdldFZhbHVlKCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgc2V0VmFsdWUodmFsdWU6IGFueSwgLi4ucGFyYW1zOiBhbnlbXSk6IHZvaWQge1xyXG4gICAgcmV0dXJuIHRoaXMuX2dldENhY2hlRmllbGQocGFyYW1zKS5zZXRWYWx1ZSh2YWx1ZSk7XHJcbiAgfVxyXG5cclxuICAvLyBSZXR1cm5zIHRoZSBmcmVzaGx5IHJlbG9hZGVkIHZhbHVlIGZvciBnaXZlbiBsb2FkZnVuY3Rpb24gcGFyYW1ldGVycy5cclxuICBwdWJsaWMgcmVsb2FkKC4uLnBhcmFtczogYW55W10pOiBQcm9taXNlPFQ+IHtcclxuICAgIHJldHVybiB0aGlzLl9nZXRDYWNoZUZpZWxkKHBhcmFtcykucmVsb2FkKCk7XHJcbiAgfVxyXG5cclxuICAvLyBSZXNldHMgb25lIG9yIGFsbCBjYWNoZSBpdGVtcy4gSWYgbm8gcGFyYW1zIGdpdmVuLCByZXNldHMgQUxMIGNhY2hlIGl0ZW1zLlxyXG4gIHB1YmxpYyByZXNldCguLi5wYXJhbXM6IGFueVtdKTogdm9pZCB7XHJcbiAgICBpZiAocGFyYW1zICYmIHBhcmFtcy5sZW5ndGggPiAwKSB7XHJcbiAgICAgIHRoaXMuX2dldENhY2hlRmllbGQocGFyYW1zKS5yZXNldCgpO1xyXG4gICAgfSBlbHNlIHtcclxuICAgICAgdGhpcy5fcGFyYW1zVG9DYWNoZUl0ZW1zLmZvckVhY2goY2FjaGVJdGVtID0+IGNhY2hlSXRlbS5yZXNldCgpKTtcclxuICAgICAgdGhpcy5fcGFyYW1zVG9DYWNoZUl0ZW1zLmNsZWFyKCk7XHJcbiAgICAgIHRoaXMuX3BhcmFtc1RvQ2FjaGVJdGVtcyA9IG5ldyBNYXA8YW55LCBDYWNoZUZpZWxkPFQ+PigpOyAvLyBub3Qgc3VyZSBpZiBjbGVhcigpIGlzIGVub3VnaCBmb3IgZ2FyYmFnZSBjb2xsZWN0b3I/XHJcbiAgICB9XHJcbiAgfVxyXG5cclxuICAvLyBNYWtlcyBhIG5ldyBjYWNoZSBmaWVsZCBpZiBub25lIGV4aXN0ZWQgZm9yIHRoZXNlIHBhcmFtcy4gUmV0dXJucyB0aGUgY2FjaGUgZmllbGQgdGhhdCBtYXRjaGVzIGdpdmVuIHBhcmFtcy5cclxuICBwcml2YXRlIF9nZXRDYWNoZUZpZWxkKHBhcmFtczogYW55W10pOiBDYWNoZUZpZWxkPFQ+IHtcclxuICAgIGxldCBleGlzdGluZ0NhY2hlRmllbGQ6IENhY2hlRmllbGQ8VD4gPSB1bmRlZmluZWQ7XHJcblxyXG4gICAgdGhpcy5fcGFyYW1zVG9DYWNoZUl0ZW1zLmZvckVhY2goKHZhbHVlOiBDYWNoZUZpZWxkPFQ+LCBrZXk6IGFueVtdKSA9PiB7XHJcbiAgICAgIGlmICghZXhpc3RpbmdDYWNoZUZpZWxkICYmIE9iamVjdFV0aWxzLkRlZXBFcXVhbHMocGFyYW1zLCBrZXkpKSB7XHJcbiAgICAgICAgZXhpc3RpbmdDYWNoZUZpZWxkID0gdmFsdWU7XHJcbiAgICAgIH1cclxuICAgIH0pO1xyXG5cclxuICAgIGlmIChleGlzdGluZ0NhY2hlRmllbGQpIHtcclxuICAgICAgcmV0dXJuIGV4aXN0aW5nQ2FjaGVGaWVsZDtcclxuICAgIH0gZWxzZSB7XHJcbiAgICAgIHJldHVybiB0aGlzLl9tYWtlTmV3Q2FjaGVGaWVsZChwYXJhbXMpO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgLy8gQ3JlYXRlcyBhbmQgcmV0dXJucyBhIG5ldyBsb2FkRmllbGQgZm9yIGdpdmVuIHBhcmFtc1xyXG4gIHByaXZhdGUgX21ha2VOZXdDYWNoZUZpZWxkKHBhcmFtczogYW55W10pOiBDYWNoZUZpZWxkPFQ+IHtcclxuICAgIGNvbnN0IGNhY2hlRmllbGQ6IENhY2hlRmllbGQ8VD4gPSBuZXcgQ2FjaGVGaWVsZDxUPigpO1xyXG4gICAgY2FjaGVGaWVsZC5sb2FkRnVuY3Rpb24gPSB0aGlzLmxvYWRGdW5jdGlvbi5iaW5kKGNhY2hlRmllbGQsIC4uLnBhcmFtcyk7XHJcbiAgICB0aGlzLl9wYXJhbXNUb0NhY2hlSXRlbXMuc2V0KHBhcmFtcywgY2FjaGVGaWVsZCk7XHJcbiAgICByZXR1cm4gY2FjaGVGaWVsZDtcclxuICB9XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
import { Injectable } from "@angular/core";
|
|
2
|
+
import { Subject } from "rxjs";
|
|
3
|
+
import { CacheField } from "../cache-field";
|
|
4
|
+
import { ParameterCacheField } from "../parameter-cache-field";
|
|
5
|
+
import { ObjectUtils } from "@colijnit/ioneconnector/build/utils/object-utils";
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* App-wide, top-level, 'dumb' BO cache manager service. It stores and returns simple and parameterized business object cache items.
|
|
9
|
+
*
|
|
10
|
+
* Several other services register cache items onto this manager, such as repositories or the more generic SelectMultipleSimpleCacheService.
|
|
11
|
+
*
|
|
12
|
+
* This is a dumb cache manager. It just functions as a point to add and retrieve generic cache items, but does not know how to actually
|
|
13
|
+
* LOAD these cache items from the database, or what exact types the items are.
|
|
14
|
+
*
|
|
15
|
+
* All caches are reset when the user logs out.
|
|
16
|
+
*/
|
|
17
|
+
export class BusinessObjectCacheManagerService {
|
|
18
|
+
constructor() {
|
|
19
|
+
// emits after this BO cache manager has been reset (e.g. after user logs out)
|
|
20
|
+
this.reset = new Subject();
|
|
21
|
+
// key: global cache id's, e.g. a model classe or any other arbitrary key for cache items
|
|
22
|
+
this._selectMultipleCache = new Map();
|
|
23
|
+
// key: global cache id's, e.g. a model classe or any other arbitrary key for cache items
|
|
24
|
+
this._selectMultipleParameterizedCache = new Map();
|
|
25
|
+
this._selectSingleCache = new Map();
|
|
26
|
+
this._selectSingleParameterizedCache = new Map();
|
|
27
|
+
}
|
|
28
|
+
// constructor(private _transactionService: TransactionService) {
|
|
29
|
+
// this._logoutSub = this._transactionService.logout.subscribe(() => {
|
|
30
|
+
// this._reset();
|
|
31
|
+
// });
|
|
32
|
+
// }
|
|
33
|
+
ngOnDestroy() {
|
|
34
|
+
this._logoutSub.unsubscribe();
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Creates and adds a new simple cache item for the given key with the given load function.
|
|
38
|
+
* @param key
|
|
39
|
+
* @param loadFunction e.g. () => { return this._dataService.selectMultiple(Color); }
|
|
40
|
+
* @param overrideOld Whether to allow an old cache item with the same key to become override by this newly created cache item.
|
|
41
|
+
* @returns The newly created cache item.
|
|
42
|
+
*/
|
|
43
|
+
addNewSelectMultipleCacheItem(key, loadFunction, overrideOld = false) {
|
|
44
|
+
if (!overrideOld && this._selectMultipleCache.has(key)) {
|
|
45
|
+
return;
|
|
46
|
+
}
|
|
47
|
+
const newCacheItem = new CacheField();
|
|
48
|
+
newCacheItem.loadFunction = loadFunction;
|
|
49
|
+
this._selectMultipleCache.set(key, newCacheItem);
|
|
50
|
+
return newCacheItem;
|
|
51
|
+
}
|
|
52
|
+
addNewSelectSingleCacheItem(key, id = BusinessObjectCacheManagerService._NullBoId, loadFunction, overrideOld = false) {
|
|
53
|
+
const cacheId = id.toString();
|
|
54
|
+
if (!overrideOld && this.hasSingleCacheItem(key, id)) {
|
|
55
|
+
return;
|
|
56
|
+
}
|
|
57
|
+
if (!this._selectSingleCache.has(key)) {
|
|
58
|
+
this._selectSingleCache.set(key, {});
|
|
59
|
+
}
|
|
60
|
+
const newCacheItem = new CacheField();
|
|
61
|
+
newCacheItem.loadFunction = loadFunction;
|
|
62
|
+
this._selectSingleCache.get(key)[cacheId] = newCacheItem;
|
|
63
|
+
return newCacheItem;
|
|
64
|
+
}
|
|
65
|
+
addNewSelectSingleParameterizedCacheItem(key, loadFunction, overrideOld = false) {
|
|
66
|
+
if (!overrideOld && this._selectSingleParameterizedCache.has(key)) {
|
|
67
|
+
return;
|
|
68
|
+
}
|
|
69
|
+
const newCacheItem = new ParameterCacheField();
|
|
70
|
+
newCacheItem.loadFunction = loadFunction;
|
|
71
|
+
this._selectSingleParameterizedCache.set(key, newCacheItem);
|
|
72
|
+
return newCacheItem;
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* Creates and adds a new parameterized cache item for the given key with the given load function.
|
|
76
|
+
* @param key
|
|
77
|
+
* @param loadFunction e.g. (category: ArticleCategory) => { return this._dataService.selectMultiple(TurnoverGroupImage, category); }
|
|
78
|
+
* @param overrideOld Whether to allow an old cache item with the same key to become override by this newly created cache item.
|
|
79
|
+
*/
|
|
80
|
+
addNewSelectMultipleParameterizedCacheItem(key, loadFunction, overrideOld = false) {
|
|
81
|
+
if (!overrideOld && this._selectMultipleParameterizedCache.has(key)) {
|
|
82
|
+
return;
|
|
83
|
+
}
|
|
84
|
+
const newCacheItem = new ParameterCacheField();
|
|
85
|
+
newCacheItem.loadFunction = loadFunction;
|
|
86
|
+
this._selectMultipleParameterizedCache.set(key, newCacheItem);
|
|
87
|
+
return newCacheItem;
|
|
88
|
+
}
|
|
89
|
+
hasSelectMultipleCacheItem(key) {
|
|
90
|
+
return this._selectMultipleCache.has(key);
|
|
91
|
+
}
|
|
92
|
+
hasSingleCacheItem(key, id = BusinessObjectCacheManagerService._NullBoId) {
|
|
93
|
+
const cacheId = id.toString();
|
|
94
|
+
return this._selectSingleCache.has(key) && !!this._selectSingleCache.get(key)[cacheId];
|
|
95
|
+
}
|
|
96
|
+
hasSelectMultipleParameterizedCacheItem(key) {
|
|
97
|
+
return this._selectMultipleParameterizedCache.has(key);
|
|
98
|
+
}
|
|
99
|
+
hasSelectSingleParameterizedCacheItem(key) {
|
|
100
|
+
return this._selectSingleParameterizedCache.has(key);
|
|
101
|
+
}
|
|
102
|
+
// Returns the simple cache item with the given key. T is the type of the cache value items requested, e.g. Color.
|
|
103
|
+
getSelectMultipleCacheItem(key) {
|
|
104
|
+
return this._selectMultipleCache.get(key);
|
|
105
|
+
}
|
|
106
|
+
getSingleCacheItem(key, id = BusinessObjectCacheManagerService._NullBoId) {
|
|
107
|
+
const cacheId = id.toString();
|
|
108
|
+
return this._selectSingleCache.has(key) && this._selectSingleCache.get(key)[cacheId];
|
|
109
|
+
}
|
|
110
|
+
// Returns the parameterized cache item with the given key. T is the type of the cache value items requested, e.g. Color.
|
|
111
|
+
getSelectMultipleParameterCacheItem(key) {
|
|
112
|
+
return this._selectMultipleParameterizedCache.get(key);
|
|
113
|
+
}
|
|
114
|
+
getSelectSingleParameterCacheItem(key) {
|
|
115
|
+
return this._selectSingleParameterizedCache.get(key);
|
|
116
|
+
}
|
|
117
|
+
_reset() {
|
|
118
|
+
this._selectMultipleCache.forEach((cacheItem) => {
|
|
119
|
+
if (cacheItem) {
|
|
120
|
+
cacheItem.reset();
|
|
121
|
+
}
|
|
122
|
+
});
|
|
123
|
+
this._selectSingleCache.forEach((cache) => {
|
|
124
|
+
if (cache) {
|
|
125
|
+
ObjectUtils.ForOwnProperty(cache, (cacheField) => {
|
|
126
|
+
cacheField.reset();
|
|
127
|
+
});
|
|
128
|
+
}
|
|
129
|
+
});
|
|
130
|
+
this._selectSingleParameterizedCache.forEach((selSinParamCacheItem) => {
|
|
131
|
+
if (selSinParamCacheItem) {
|
|
132
|
+
selSinParamCacheItem.reset();
|
|
133
|
+
}
|
|
134
|
+
});
|
|
135
|
+
this._selectMultipleParameterizedCache.forEach((selMulParamCacheItem) => {
|
|
136
|
+
if (selMulParamCacheItem) {
|
|
137
|
+
selMulParamCacheItem.reset();
|
|
138
|
+
}
|
|
139
|
+
});
|
|
140
|
+
this.reset.next();
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
BusinessObjectCacheManagerService._NullBoId = -1;
|
|
144
|
+
BusinessObjectCacheManagerService.ɵprov = i0.ɵɵdefineInjectable({ factory: function BusinessObjectCacheManagerService_Factory() { return new BusinessObjectCacheManagerService(); }, token: BusinessObjectCacheManagerService, providedIn: "root" });
|
|
145
|
+
BusinessObjectCacheManagerService.decorators = [
|
|
146
|
+
{ type: Injectable, args: [{
|
|
147
|
+
providedIn: "root"
|
|
148
|
+
},] }
|
|
149
|
+
];
|
|
150
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVzaW5lc3Mtb2JqZWN0LWNhY2hlLW1hbmFnZXIuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvY2FjaGUvc2VydmljZS9idXNpbmVzcy1vYmplY3QtY2FjaGUtbWFuYWdlci5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxVQUFVLEVBQVksTUFBTSxlQUFlLENBQUM7QUFDcEQsT0FBTyxFQUFDLE9BQU8sRUFBZSxNQUFNLE1BQU0sQ0FBQztBQUMzQyxPQUFPLEVBQUMsVUFBVSxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7QUFDMUMsT0FBTyxFQUFDLG1CQUFtQixFQUFDLE1BQU0sMEJBQTBCLENBQUM7QUFFN0QsT0FBTyxFQUFDLFdBQVcsRUFBQyxNQUFNLGtEQUFrRCxDQUFDOztBQUc3RTs7Ozs7Ozs7O0dBU0c7QUFLSCxNQUFNLE9BQU8saUNBQWlDO0lBSjlDO1FBS0UsOEVBQThFO1FBQzlELFVBQUssR0FBa0IsSUFBSSxPQUFPLEVBQVEsQ0FBQztRQUkzRCx5RkFBeUY7UUFDakYseUJBQW9CLEdBQTJDLElBQUksR0FBRyxFQUFFLENBQUM7UUFFakYseUZBQXlGO1FBQ2pGLHNDQUFpQyxHQUNyQyxJQUFJLEdBQUcsRUFBOEMsQ0FBQztRQUVsRCx1QkFBa0IsR0FBaUYsSUFBSSxHQUFHLEVBQUUsQ0FBQztRQUM3RyxvQ0FBK0IsR0FDbkMsSUFBSSxHQUFHLEVBQTRDLENBQUM7S0E0SnpEO0lBeEpDLGlFQUFpRTtJQUNqRSx3RUFBd0U7SUFDeEUscUJBQXFCO0lBQ3JCLFFBQVE7SUFDUixJQUFJO0lBRUosV0FBVztRQUNULElBQUksQ0FBQyxVQUFVLENBQUMsV0FBVyxFQUFFLENBQUM7SUFDaEMsQ0FBQztJQUVEOzs7Ozs7T0FNRztJQUNJLDZCQUE2QixDQUNsQyxHQUFRLEVBQ1IsWUFBZ0MsRUFDaEMsY0FBdUIsS0FBSztRQUU1QixJQUFJLENBQUMsV0FBVyxJQUFJLElBQUksQ0FBQyxvQkFBb0IsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLEVBQUU7WUFDdEQsT0FBTztTQUNSO1FBRUQsTUFBTSxZQUFZLEdBQW9CLElBQUksVUFBVSxFQUFPLENBQUM7UUFDNUQsWUFBWSxDQUFDLFlBQVksR0FBRyxZQUFZLENBQUM7UUFDekMsSUFBSSxDQUFDLG9CQUFvQixDQUFDLEdBQUcsQ0FBQyxHQUFHLEVBQUUsWUFBWSxDQUFDLENBQUM7UUFDakQsT0FBTyxZQUFZLENBQUM7SUFDdEIsQ0FBQztJQUVNLDJCQUEyQixDQUNoQyxHQUFpQixFQUNqQixLQUEyQixpQ0FBaUMsQ0FBQyxTQUFTLEVBQ3RFLFlBQThCLEVBQzlCLGNBQXVCLEtBQUs7UUFFNUIsTUFBTSxPQUFPLEdBQVcsRUFBRSxDQUFDLFFBQVEsRUFBRSxDQUFDO1FBQ3RDLElBQUksQ0FBQyxXQUFXLElBQUksSUFBSSxDQUFDLGtCQUFrQixDQUFDLEdBQUcsRUFBRSxFQUFFLENBQUMsRUFBRTtZQUNwRCxPQUFPO1NBQ1I7UUFDRCxJQUFJLENBQUMsSUFBSSxDQUFDLGtCQUFrQixDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsRUFBRTtZQUNyQyxJQUFJLENBQUMsa0JBQWtCLENBQUMsR0FBRyxDQUFDLEdBQUcsRUFBRSxFQUFFLENBQUMsQ0FBQztTQUN0QztRQUNELE1BQU0sWUFBWSxHQUFrQixJQUFJLFVBQVUsRUFBSyxDQUFDO1FBQ3hELFlBQVksQ0FBQyxZQUFZLEdBQUcsWUFBWSxDQUFDO1FBQ3pDLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUMsT0FBTyxDQUFDLEdBQUcsWUFBWSxDQUFDO1FBQ3pELE9BQU8sWUFBWSxDQUFDO0lBQ3RCLENBQUM7SUFFTSx3Q0FBd0MsQ0FDN0MsR0FBUSxFQUNSLFlBQTBDLEVBQzFDLGNBQXVCLEtBQUs7UUFFNUIsSUFBSSxDQUFDLFdBQVcsSUFBSSxJQUFJLENBQUMsK0JBQStCLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxFQUFFO1lBQ2pFLE9BQU87U0FDUjtRQUVELE1BQU0sWUFBWSxHQUEyQixJQUFJLG1CQUFtQixFQUFLLENBQUM7UUFDMUUsWUFBWSxDQUFDLFlBQVksR0FBRyxZQUFZLENBQUM7UUFDekMsSUFBSSxDQUFDLCtCQUErQixDQUFDLEdBQUcsQ0FBQyxHQUFHLEVBQUUsWUFBWSxDQUFDLENBQUM7UUFDNUQsT0FBTyxZQUFZLENBQUM7SUFDdEIsQ0FBQztJQUVEOzs7OztPQUtHO0lBQ0ksMENBQTBDLENBQy9DLEdBQVEsRUFDUixZQUE0QyxFQUM1QyxjQUF1QixLQUFLO1FBRTVCLElBQUksQ0FBQyxXQUFXLElBQUksSUFBSSxDQUFDLGlDQUFpQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsRUFBRTtZQUNuRSxPQUFPO1NBQ1I7UUFFRCxNQUFNLFlBQVksR0FBNkIsSUFBSSxtQkFBbUIsRUFBTyxDQUFDO1FBQzlFLFlBQVksQ0FBQyxZQUFZLEdBQUcsWUFBWSxDQUFDO1FBQ3pDLElBQUksQ0FBQyxpQ0FBaUMsQ0FBQyxHQUFHLENBQUMsR0FBRyxFQUFFLFlBQVksQ0FBQyxDQUFDO1FBQzlELE9BQU8sWUFBWSxDQUFDO0lBQ3RCLENBQUM7SUFFTSwwQkFBMEIsQ0FBQyxHQUFRO1FBQ3hDLE9BQU8sSUFBSSxDQUFDLG9CQUFvQixDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQztJQUM1QyxDQUFDO0lBRU0sa0JBQWtCLENBQTJCLEdBQWlCLEVBQUUsS0FBMkIsaUNBQWlDLENBQUMsU0FBUztRQUMzSSxNQUFNLE9BQU8sR0FBVyxFQUFFLENBQUMsUUFBUSxFQUFFLENBQUM7UUFDdEMsT0FBTyxJQUFJLENBQUMsa0JBQWtCLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsQ0FBQyxJQUFJLENBQUMsa0JBQWtCLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBQ3pGLENBQUM7SUFFTSx1Q0FBdUMsQ0FBQyxHQUFRO1FBQ3JELE9BQU8sSUFBSSxDQUFDLGlDQUFpQyxDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQztJQUN6RCxDQUFDO0lBRU0scUNBQXFDLENBQUMsR0FBUTtRQUNuRCxPQUFPLElBQUksQ0FBQywrQkFBK0IsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDdkQsQ0FBQztJQUVELGtIQUFrSDtJQUMzRywwQkFBMEIsQ0FBMkIsR0FBUTtRQUNsRSxPQUF3QixJQUFJLENBQUMsb0JBQW9CLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBQzdELENBQUM7SUFFTSxrQkFBa0IsQ0FBMkIsR0FBaUIsRUFBRSxLQUEyQixpQ0FBaUMsQ0FBQyxTQUFTO1FBQzNJLE1BQU0sT0FBTyxHQUFXLEVBQUUsQ0FBQyxRQUFRLEVBQUUsQ0FBQztRQUN0QyxPQUFPLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLElBQUksSUFBSSxDQUFDLGtCQUFrQixDQUFDLEdBQUcsQ0FBQyxHQUFHLENBQUMsQ0FBQyxPQUFPLENBQWtCLENBQUM7SUFDeEcsQ0FBQztJQUVELHlIQUF5SDtJQUNsSCxtQ0FBbUMsQ0FBMkIsR0FBUTtRQUMzRSxPQUFpQyxJQUFJLENBQUMsaUNBQWlDLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBQ25GLENBQUM7SUFFTSxpQ0FBaUMsQ0FBMkIsR0FBUTtRQUN6RSxPQUErQixJQUFJLENBQUMsK0JBQStCLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBQy9FLENBQUM7SUFFTyxNQUFNO1FBQ1osSUFBSSxDQUFDLG9CQUFvQixDQUFDLE9BQU8sQ0FBQyxDQUFDLFNBQXVDLEVBQUUsRUFBRTtZQUM1RSxJQUFJLFNBQVMsRUFBRTtnQkFDYixTQUFTLENBQUMsS0FBSyxFQUFFLENBQUM7YUFDbkI7UUFDSCxDQUFDLENBQUMsQ0FBQztRQUVILElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxPQUFPLENBQUMsQ0FBQyxLQUFrRCxFQUFFLEVBQUU7WUFDckYsSUFBSSxLQUFLLEVBQUU7Z0JBQ1QsV0FBVyxDQUFDLGNBQWMsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxVQUFzQyxFQUFFLEVBQUU7b0JBQzNFLFVBQVUsQ0FBQyxLQUFLLEVBQUUsQ0FBQztnQkFDckIsQ0FBQyxDQUFDLENBQUM7YUFDSjtRQUNILENBQUMsQ0FBQyxDQUFDO1FBRUgsSUFBSSxDQUFDLCtCQUErQixDQUFDLE9BQU8sQ0FBQyxDQUFDLG9CQUF5RCxFQUFFLEVBQUU7WUFDekcsSUFBSSxvQkFBb0IsRUFBRTtnQkFDeEIsb0JBQW9CLENBQUMsS0FBSyxFQUFFLENBQUM7YUFDOUI7UUFDSCxDQUFDLENBQUMsQ0FBQztRQUVILElBQUksQ0FBQyxpQ0FBaUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxvQkFBMkQsRUFBRSxFQUFFO1lBQzdHLElBQUksb0JBQW9CLEVBQUU7Z0JBQ3hCLG9CQUFvQixDQUFDLEtBQUssRUFBRSxDQUFDO2FBQzlCO1FBQ0gsQ0FBQyxDQUFDLENBQUM7UUFFSCxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ3BCLENBQUM7O0FBdEtjLDJDQUFTLEdBQVcsQ0FBQyxDQUFDLENBQUM7OztZQVJ2QyxVQUFVLFNBQUM7Z0JBQ1IsVUFBVSxFQUFFLE1BQU07YUFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0luamVjdGFibGUsIE9uRGVzdHJveX0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHtTdWJqZWN0LCBTdWJzY3JpcHRpb259IGZyb20gXCJyeGpzXCI7XHJcbmltcG9ydCB7Q2FjaGVGaWVsZH0gZnJvbSBcIi4uL2NhY2hlLWZpZWxkXCI7XHJcbmltcG9ydCB7UGFyYW1ldGVyQ2FjaGVGaWVsZH0gZnJvbSBcIi4uL3BhcmFtZXRlci1jYWNoZS1maWVsZFwiO1xyXG5pbXBvcnQge0J1c2luZXNzT2JqZWN0fSBmcm9tIFwiQGNvbGlqbml0L2lvbmVjb25uZWN0b3IvYnVpbGQvbW9kZWwvYnVzaW5lc3Mtb2JqZWN0XCI7XHJcbmltcG9ydCB7T2JqZWN0VXRpbHN9IGZyb20gXCJAY29saWpuaXQvaW9uZWNvbm5lY3Rvci9idWlsZC91dGlscy9vYmplY3QtdXRpbHNcIjtcclxuaW1wb3J0IHtCdXNpbmVzc09iamVjdElEVHlwZX0gZnJvbSBcIkBjb2xpam5pdC9pb25lY29ubmVjdG9yL2J1aWxkL3R5cGUvYnVzaW5lc3Mtb2JqZWN0LWlkLXR5cGVcIjtcclxuXHJcbi8qKlxyXG4gKiBBcHAtd2lkZSwgdG9wLWxldmVsLCAnZHVtYicgQk8gY2FjaGUgbWFuYWdlciBzZXJ2aWNlLiBJdCBzdG9yZXMgYW5kIHJldHVybnMgc2ltcGxlIGFuZCBwYXJhbWV0ZXJpemVkIGJ1c2luZXNzIG9iamVjdCBjYWNoZSBpdGVtcy5cclxuICpcclxuICogU2V2ZXJhbCBvdGhlciBzZXJ2aWNlcyByZWdpc3RlciBjYWNoZSBpdGVtcyBvbnRvIHRoaXMgbWFuYWdlciwgc3VjaCBhcyByZXBvc2l0b3JpZXMgb3IgdGhlIG1vcmUgZ2VuZXJpYyBTZWxlY3RNdWx0aXBsZVNpbXBsZUNhY2hlU2VydmljZS5cclxuICpcclxuICogVGhpcyBpcyBhIGR1bWIgY2FjaGUgbWFuYWdlci4gSXQganVzdCBmdW5jdGlvbnMgYXMgYSBwb2ludCB0byBhZGQgYW5kIHJldHJpZXZlIGdlbmVyaWMgY2FjaGUgaXRlbXMsIGJ1dCBkb2VzIG5vdCBrbm93IGhvdyB0byBhY3R1YWxseVxyXG4gKiBMT0FEIHRoZXNlIGNhY2hlIGl0ZW1zIGZyb20gdGhlIGRhdGFiYXNlLCBvciB3aGF0IGV4YWN0IHR5cGVzIHRoZSBpdGVtcyBhcmUuXHJcbiAqXHJcbiAqIEFsbCBjYWNoZXMgYXJlIHJlc2V0IHdoZW4gdGhlIHVzZXIgbG9ncyBvdXQuXHJcbiAqL1xyXG5ASW5qZWN0YWJsZSh7XHJcbiAgICBwcm92aWRlZEluOiBcInJvb3RcIlxyXG4gIH1cclxuKVxyXG5leHBvcnQgY2xhc3MgQnVzaW5lc3NPYmplY3RDYWNoZU1hbmFnZXJTZXJ2aWNlIGltcGxlbWVudHMgT25EZXN0cm95IHtcclxuICAvLyBlbWl0cyBhZnRlciB0aGlzIEJPIGNhY2hlIG1hbmFnZXIgaGFzIGJlZW4gcmVzZXQgKGUuZy4gYWZ0ZXIgdXNlciBsb2dzIG91dClcclxuICBwdWJsaWMgcmVhZG9ubHkgcmVzZXQ6IFN1YmplY3Q8dm9pZD4gPSBuZXcgU3ViamVjdDx2b2lkPigpO1xyXG5cclxuICBwcml2YXRlIHN0YXRpYyBfTnVsbEJvSWQ6IG51bWJlciA9IC0xO1xyXG5cclxuICAvLyBrZXk6IGdsb2JhbCBjYWNoZSBpZCdzLCBlLmcuIGEgbW9kZWwgY2xhc3NlIG9yIGFueSBvdGhlciBhcmJpdHJhcnkga2V5IGZvciBjYWNoZSBpdGVtc1xyXG4gIHByaXZhdGUgX3NlbGVjdE11bHRpcGxlQ2FjaGU6IE1hcDxhbnksIENhY2hlRmllbGQ8QnVzaW5lc3NPYmplY3RbXT4+ID0gbmV3IE1hcCgpO1xyXG5cclxuICAvLyBrZXk6IGdsb2JhbCBjYWNoZSBpZCdzLCBlLmcuIGEgbW9kZWwgY2xhc3NlIG9yIGFueSBvdGhlciBhcmJpdHJhcnkga2V5IGZvciBjYWNoZSBpdGVtc1xyXG4gIHByaXZhdGUgX3NlbGVjdE11bHRpcGxlUGFyYW1ldGVyaXplZENhY2hlOiBNYXA8YW55LCBQYXJhbWV0ZXJDYWNoZUZpZWxkPEJ1c2luZXNzT2JqZWN0W10+PlxyXG4gICAgPSBuZXcgTWFwPGFueSwgUGFyYW1ldGVyQ2FjaGVGaWVsZDxCdXNpbmVzc09iamVjdFtdPj4oKTtcclxuXHJcbiAgcHJpdmF0ZSBfc2VsZWN0U2luZ2xlQ2FjaGU6IE1hcDx7IG5ldygpOiBCdXNpbmVzc09iamVjdCB9LCB7IFtpZDogc3RyaW5nXTogQ2FjaGVGaWVsZDxCdXNpbmVzc09iamVjdD4gfT4gPSBuZXcgTWFwKCk7XHJcbiAgcHJpdmF0ZSBfc2VsZWN0U2luZ2xlUGFyYW1ldGVyaXplZENhY2hlOiBNYXA8YW55LCBQYXJhbWV0ZXJDYWNoZUZpZWxkPEJ1c2luZXNzT2JqZWN0Pj5cclxuICAgID0gbmV3IE1hcDxhbnksIFBhcmFtZXRlckNhY2hlRmllbGQ8QnVzaW5lc3NPYmplY3Q+PigpO1xyXG5cclxuICBwcml2YXRlIF9sb2dvdXRTdWI6IFN1YnNjcmlwdGlvbjtcclxuXHJcbiAgLy8gY29uc3RydWN0b3IocHJpdmF0ZSBfdHJhbnNhY3Rpb25TZXJ2aWNlOiBUcmFuc2FjdGlvblNlcnZpY2UpIHtcclxuICAvLyAgIHRoaXMuX2xvZ291dFN1YiA9IHRoaXMuX3RyYW5zYWN0aW9uU2VydmljZS5sb2dvdXQuc3Vic2NyaWJlKCgpID0+IHtcclxuICAvLyAgICAgdGhpcy5fcmVzZXQoKTtcclxuICAvLyAgIH0pO1xyXG4gIC8vIH1cclxuXHJcbiAgbmdPbkRlc3Ryb3koKTogdm9pZCB7XHJcbiAgICB0aGlzLl9sb2dvdXRTdWIudW5zdWJzY3JpYmUoKTtcclxuICB9XHJcblxyXG4gIC8qKlxyXG4gICAqIENyZWF0ZXMgYW5kIGFkZHMgYSBuZXcgc2ltcGxlIGNhY2hlIGl0ZW0gZm9yIHRoZSBnaXZlbiBrZXkgd2l0aCB0aGUgZ2l2ZW4gbG9hZCBmdW5jdGlvbi5cclxuICAgKiBAcGFyYW0ga2V5XHJcbiAgICogQHBhcmFtIGxvYWRGdW5jdGlvbiBlLmcuICgpID0+IHsgcmV0dXJuIHRoaXMuX2RhdGFTZXJ2aWNlLnNlbGVjdE11bHRpcGxlKENvbG9yKTsgfVxyXG4gICAqIEBwYXJhbSBvdmVycmlkZU9sZCBXaGV0aGVyIHRvIGFsbG93IGFuIG9sZCBjYWNoZSBpdGVtIHdpdGggdGhlIHNhbWUga2V5IHRvIGJlY29tZSBvdmVycmlkZSBieSB0aGlzIG5ld2x5IGNyZWF0ZWQgY2FjaGUgaXRlbS5cclxuICAgKiBAcmV0dXJucyBUaGUgbmV3bHkgY3JlYXRlZCBjYWNoZSBpdGVtLlxyXG4gICAqL1xyXG4gIHB1YmxpYyBhZGROZXdTZWxlY3RNdWx0aXBsZUNhY2hlSXRlbTxUIGV4dGVuZHMgQnVzaW5lc3NPYmplY3Q+KFxyXG4gICAga2V5OiBhbnksXHJcbiAgICBsb2FkRnVuY3Rpb246ICgpID0+IFByb21pc2U8VFtdPixcclxuICAgIG92ZXJyaWRlT2xkOiBib29sZWFuID0gZmFsc2VcclxuICApOiBDYWNoZUZpZWxkPFRbXT4ge1xyXG4gICAgaWYgKCFvdmVycmlkZU9sZCAmJiB0aGlzLl9zZWxlY3RNdWx0aXBsZUNhY2hlLmhhcyhrZXkpKSB7XHJcbiAgICAgIHJldHVybjtcclxuICAgIH1cclxuXHJcbiAgICBjb25zdCBuZXdDYWNoZUl0ZW06IENhY2hlRmllbGQ8VFtdPiA9IG5ldyBDYWNoZUZpZWxkPFRbXT4oKTtcclxuICAgIG5ld0NhY2hlSXRlbS5sb2FkRnVuY3Rpb24gPSBsb2FkRnVuY3Rpb247XHJcbiAgICB0aGlzLl9zZWxlY3RNdWx0aXBsZUNhY2hlLnNldChrZXksIG5ld0NhY2hlSXRlbSk7XHJcbiAgICByZXR1cm4gbmV3Q2FjaGVJdGVtO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGFkZE5ld1NlbGVjdFNpbmdsZUNhY2hlSXRlbTxUIGV4dGVuZHMgQnVzaW5lc3NPYmplY3Q+KFxyXG4gICAga2V5OiB7IG5ldygpOiBUIH0sXHJcbiAgICBpZDogQnVzaW5lc3NPYmplY3RJRFR5cGUgPSBCdXNpbmVzc09iamVjdENhY2hlTWFuYWdlclNlcnZpY2UuX051bGxCb0lkLFxyXG4gICAgbG9hZEZ1bmN0aW9uOiAoKSA9PiBQcm9taXNlPFQ+LFxyXG4gICAgb3ZlcnJpZGVPbGQ6IGJvb2xlYW4gPSBmYWxzZVxyXG4gICk6IENhY2hlRmllbGQ8VD4ge1xyXG4gICAgY29uc3QgY2FjaGVJZDogc3RyaW5nID0gaWQudG9TdHJpbmcoKTtcclxuICAgIGlmICghb3ZlcnJpZGVPbGQgJiYgdGhpcy5oYXNTaW5nbGVDYWNoZUl0ZW0oa2V5LCBpZCkpIHtcclxuICAgICAgcmV0dXJuO1xyXG4gICAgfVxyXG4gICAgaWYgKCF0aGlzLl9zZWxlY3RTaW5nbGVDYWNoZS5oYXMoa2V5KSkge1xyXG4gICAgICB0aGlzLl9zZWxlY3RTaW5nbGVDYWNoZS5zZXQoa2V5LCB7fSk7XHJcbiAgICB9XHJcbiAgICBjb25zdCBuZXdDYWNoZUl0ZW06IENhY2hlRmllbGQ8VD4gPSBuZXcgQ2FjaGVGaWVsZDxUPigpO1xyXG4gICAgbmV3Q2FjaGVJdGVtLmxvYWRGdW5jdGlvbiA9IGxvYWRGdW5jdGlvbjtcclxuICAgIHRoaXMuX3NlbGVjdFNpbmdsZUNhY2hlLmdldChrZXkpW2NhY2hlSWRdID0gbmV3Q2FjaGVJdGVtO1xyXG4gICAgcmV0dXJuIG5ld0NhY2hlSXRlbTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBhZGROZXdTZWxlY3RTaW5nbGVQYXJhbWV0ZXJpemVkQ2FjaGVJdGVtPFQgZXh0ZW5kcyBCdXNpbmVzc09iamVjdD4oXHJcbiAgICBrZXk6IGFueSxcclxuICAgIGxvYWRGdW5jdGlvbjogKHBhcmFtcz86IGFueSkgPT4gUHJvbWlzZTxUPixcclxuICAgIG92ZXJyaWRlT2xkOiBib29sZWFuID0gZmFsc2VcclxuICApOiBQYXJhbWV0ZXJDYWNoZUZpZWxkPFQ+IHtcclxuICAgIGlmICghb3ZlcnJpZGVPbGQgJiYgdGhpcy5fc2VsZWN0U2luZ2xlUGFyYW1ldGVyaXplZENhY2hlLmhhcyhrZXkpKSB7XHJcbiAgICAgIHJldHVybjtcclxuICAgIH1cclxuXHJcbiAgICBjb25zdCBuZXdDYWNoZUl0ZW06IFBhcmFtZXRlckNhY2hlRmllbGQ8VD4gPSBuZXcgUGFyYW1ldGVyQ2FjaGVGaWVsZDxUPigpO1xyXG4gICAgbmV3Q2FjaGVJdGVtLmxvYWRGdW5jdGlvbiA9IGxvYWRGdW5jdGlvbjtcclxuICAgIHRoaXMuX3NlbGVjdFNpbmdsZVBhcmFtZXRlcml6ZWRDYWNoZS5zZXQoa2V5LCBuZXdDYWNoZUl0ZW0pO1xyXG4gICAgcmV0dXJuIG5ld0NhY2hlSXRlbTtcclxuICB9XHJcblxyXG4gIC8qKlxyXG4gICAqIENyZWF0ZXMgYW5kIGFkZHMgYSBuZXcgcGFyYW1ldGVyaXplZCBjYWNoZSBpdGVtIGZvciB0aGUgZ2l2ZW4ga2V5IHdpdGggdGhlIGdpdmVuIGxvYWQgZnVuY3Rpb24uXHJcbiAgICogQHBhcmFtIGtleVxyXG4gICAqIEBwYXJhbSBsb2FkRnVuY3Rpb24gZS5nLiAoY2F0ZWdvcnk6IEFydGljbGVDYXRlZ29yeSkgPT4geyByZXR1cm4gdGhpcy5fZGF0YVNlcnZpY2Uuc2VsZWN0TXVsdGlwbGUoVHVybm92ZXJHcm91cEltYWdlLCBjYXRlZ29yeSk7IH1cclxuICAgKiBAcGFyYW0gb3ZlcnJpZGVPbGQgV2hldGhlciB0byBhbGxvdyBhbiBvbGQgY2FjaGUgaXRlbSB3aXRoIHRoZSBzYW1lIGtleSB0byBiZWNvbWUgb3ZlcnJpZGUgYnkgdGhpcyBuZXdseSBjcmVhdGVkIGNhY2hlIGl0ZW0uXHJcbiAgICovXHJcbiAgcHVibGljIGFkZE5ld1NlbGVjdE11bHRpcGxlUGFyYW1ldGVyaXplZENhY2hlSXRlbTxUIGV4dGVuZHMgQnVzaW5lc3NPYmplY3Q+KFxyXG4gICAga2V5OiBhbnksXHJcbiAgICBsb2FkRnVuY3Rpb246IChwYXJhbXM/OiBhbnkpID0+IFByb21pc2U8VFtdPixcclxuICAgIG92ZXJyaWRlT2xkOiBib29sZWFuID0gZmFsc2VcclxuICApOiBQYXJhbWV0ZXJDYWNoZUZpZWxkPFRbXT4ge1xyXG4gICAgaWYgKCFvdmVycmlkZU9sZCAmJiB0aGlzLl9zZWxlY3RNdWx0aXBsZVBhcmFtZXRlcml6ZWRDYWNoZS5oYXMoa2V5KSkge1xyXG4gICAgICByZXR1cm47XHJcbiAgICB9XHJcblxyXG4gICAgY29uc3QgbmV3Q2FjaGVJdGVtOiBQYXJhbWV0ZXJDYWNoZUZpZWxkPFRbXT4gPSBuZXcgUGFyYW1ldGVyQ2FjaGVGaWVsZDxUW10+KCk7XHJcbiAgICBuZXdDYWNoZUl0ZW0ubG9hZEZ1bmN0aW9uID0gbG9hZEZ1bmN0aW9uO1xyXG4gICAgdGhpcy5fc2VsZWN0TXVsdGlwbGVQYXJhbWV0ZXJpemVkQ2FjaGUuc2V0KGtleSwgbmV3Q2FjaGVJdGVtKTtcclxuICAgIHJldHVybiBuZXdDYWNoZUl0ZW07XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgaGFzU2VsZWN0TXVsdGlwbGVDYWNoZUl0ZW0oa2V5OiBhbnkpOiBib29sZWFuIHtcclxuICAgIHJldHVybiB0aGlzLl9zZWxlY3RNdWx0aXBsZUNhY2hlLmhhcyhrZXkpO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGhhc1NpbmdsZUNhY2hlSXRlbTxUIGV4dGVuZHMgQnVzaW5lc3NPYmplY3Q+KGtleTogeyBuZXcoKTogVCB9LCBpZDogQnVzaW5lc3NPYmplY3RJRFR5cGUgPSBCdXNpbmVzc09iamVjdENhY2hlTWFuYWdlclNlcnZpY2UuX051bGxCb0lkKTogYm9vbGVhbiB7XHJcbiAgICBjb25zdCBjYWNoZUlkOiBzdHJpbmcgPSBpZC50b1N0cmluZygpO1xyXG4gICAgcmV0dXJuIHRoaXMuX3NlbGVjdFNpbmdsZUNhY2hlLmhhcyhrZXkpICYmICEhdGhpcy5fc2VsZWN0U2luZ2xlQ2FjaGUuZ2V0KGtleSlbY2FjaGVJZF07XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgaGFzU2VsZWN0TXVsdGlwbGVQYXJhbWV0ZXJpemVkQ2FjaGVJdGVtKGtleTogYW55KTogYm9vbGVhbiB7XHJcbiAgICByZXR1cm4gdGhpcy5fc2VsZWN0TXVsdGlwbGVQYXJhbWV0ZXJpemVkQ2FjaGUuaGFzKGtleSk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgaGFzU2VsZWN0U2luZ2xlUGFyYW1ldGVyaXplZENhY2hlSXRlbShrZXk6IGFueSk6IGJvb2xlYW4ge1xyXG4gICAgcmV0dXJuIHRoaXMuX3NlbGVjdFNpbmdsZVBhcmFtZXRlcml6ZWRDYWNoZS5oYXMoa2V5KTtcclxuICB9XHJcblxyXG4gIC8vIFJldHVybnMgdGhlIHNpbXBsZSBjYWNoZSBpdGVtIHdpdGggdGhlIGdpdmVuIGtleS4gVCBpcyB0aGUgdHlwZSBvZiB0aGUgY2FjaGUgdmFsdWUgaXRlbXMgcmVxdWVzdGVkLCBlLmcuIENvbG9yLlxyXG4gIHB1YmxpYyBnZXRTZWxlY3RNdWx0aXBsZUNhY2hlSXRlbTxUIGV4dGVuZHMgQnVzaW5lc3NPYmplY3Q+KGtleTogYW55KTogQ2FjaGVGaWVsZDxUW10+IHtcclxuICAgIHJldHVybiA8Q2FjaGVGaWVsZDxUW10+PnRoaXMuX3NlbGVjdE11bHRpcGxlQ2FjaGUuZ2V0KGtleSk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgZ2V0U2luZ2xlQ2FjaGVJdGVtPFQgZXh0ZW5kcyBCdXNpbmVzc09iamVjdD4oa2V5OiB7IG5ldygpOiBUIH0sIGlkOiBCdXNpbmVzc09iamVjdElEVHlwZSA9IEJ1c2luZXNzT2JqZWN0Q2FjaGVNYW5hZ2VyU2VydmljZS5fTnVsbEJvSWQpOiBDYWNoZUZpZWxkPFQ+IHtcclxuICAgIGNvbnN0IGNhY2hlSWQ6IHN0cmluZyA9IGlkLnRvU3RyaW5nKCk7XHJcbiAgICByZXR1cm4gdGhpcy5fc2VsZWN0U2luZ2xlQ2FjaGUuaGFzKGtleSkgJiYgdGhpcy5fc2VsZWN0U2luZ2xlQ2FjaGUuZ2V0KGtleSlbY2FjaGVJZF0gYXMgQ2FjaGVGaWVsZDxUPjtcclxuICB9XHJcblxyXG4gIC8vIFJldHVybnMgdGhlIHBhcmFtZXRlcml6ZWQgY2FjaGUgaXRlbSB3aXRoIHRoZSBnaXZlbiBrZXkuIFQgaXMgdGhlIHR5cGUgb2YgdGhlIGNhY2hlIHZhbHVlIGl0ZW1zIHJlcXVlc3RlZCwgZS5nLiBDb2xvci5cclxuICBwdWJsaWMgZ2V0U2VsZWN0TXVsdGlwbGVQYXJhbWV0ZXJDYWNoZUl0ZW08VCBleHRlbmRzIEJ1c2luZXNzT2JqZWN0PihrZXk6IGFueSk6IFBhcmFtZXRlckNhY2hlRmllbGQ8VFtdPiB7XHJcbiAgICByZXR1cm4gPFBhcmFtZXRlckNhY2hlRmllbGQ8VFtdPj50aGlzLl9zZWxlY3RNdWx0aXBsZVBhcmFtZXRlcml6ZWRDYWNoZS5nZXQoa2V5KTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBnZXRTZWxlY3RTaW5nbGVQYXJhbWV0ZXJDYWNoZUl0ZW08VCBleHRlbmRzIEJ1c2luZXNzT2JqZWN0PihrZXk6IGFueSk6IFBhcmFtZXRlckNhY2hlRmllbGQ8VD4ge1xyXG4gICAgcmV0dXJuIDxQYXJhbWV0ZXJDYWNoZUZpZWxkPFQ+PnRoaXMuX3NlbGVjdFNpbmdsZVBhcmFtZXRlcml6ZWRDYWNoZS5nZXQoa2V5KTtcclxuICB9XHJcblxyXG4gIHByaXZhdGUgX3Jlc2V0KCk6IHZvaWQge1xyXG4gICAgdGhpcy5fc2VsZWN0TXVsdGlwbGVDYWNoZS5mb3JFYWNoKChjYWNoZUl0ZW06IENhY2hlRmllbGQ8QnVzaW5lc3NPYmplY3RbXT4pID0+IHtcclxuICAgICAgaWYgKGNhY2hlSXRlbSkge1xyXG4gICAgICAgIGNhY2hlSXRlbS5yZXNldCgpO1xyXG4gICAgICB9XHJcbiAgICB9KTtcclxuXHJcbiAgICB0aGlzLl9zZWxlY3RTaW5nbGVDYWNoZS5mb3JFYWNoKChjYWNoZTogeyBbcDogc3RyaW5nXTogQ2FjaGVGaWVsZDxCdXNpbmVzc09iamVjdD4gfSkgPT4ge1xyXG4gICAgICBpZiAoY2FjaGUpIHtcclxuICAgICAgICBPYmplY3RVdGlscy5Gb3JPd25Qcm9wZXJ0eShjYWNoZSwgKGNhY2hlRmllbGQ6IENhY2hlRmllbGQ8QnVzaW5lc3NPYmplY3Q+KSA9PiB7XHJcbiAgICAgICAgICBjYWNoZUZpZWxkLnJlc2V0KCk7XHJcbiAgICAgICAgfSk7XHJcbiAgICAgIH1cclxuICAgIH0pO1xyXG5cclxuICAgIHRoaXMuX3NlbGVjdFNpbmdsZVBhcmFtZXRlcml6ZWRDYWNoZS5mb3JFYWNoKChzZWxTaW5QYXJhbUNhY2hlSXRlbTogUGFyYW1ldGVyQ2FjaGVGaWVsZDxCdXNpbmVzc09iamVjdD4pID0+IHtcclxuICAgICAgaWYgKHNlbFNpblBhcmFtQ2FjaGVJdGVtKSB7XHJcbiAgICAgICAgc2VsU2luUGFyYW1DYWNoZUl0ZW0ucmVzZXQoKTtcclxuICAgICAgfVxyXG4gICAgfSk7XHJcblxyXG4gICAgdGhpcy5fc2VsZWN0TXVsdGlwbGVQYXJhbWV0ZXJpemVkQ2FjaGUuZm9yRWFjaCgoc2VsTXVsUGFyYW1DYWNoZUl0ZW06IFBhcmFtZXRlckNhY2hlRmllbGQ8QnVzaW5lc3NPYmplY3RbXT4pID0+IHtcclxuICAgICAgaWYgKHNlbE11bFBhcmFtQ2FjaGVJdGVtKSB7XHJcbiAgICAgICAgc2VsTXVsUGFyYW1DYWNoZUl0ZW0ucmVzZXQoKTtcclxuICAgICAgfVxyXG4gICAgfSk7XHJcblxyXG4gICAgdGhpcy5yZXNldC5uZXh0KCk7XHJcbiAgfVxyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Injectable } from "@angular/core";
|
|
2
|
+
import { BusinessObjectCacheManagerService } from "./business-object-cache-manager.service";
|
|
3
|
+
import { CacheField } from "../cache-field";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "./business-object-cache-manager.service";
|
|
6
|
+
export class SelectMultipleCacheService {
|
|
7
|
+
constructor(_boCacheManager) {
|
|
8
|
+
this._boCacheManager = _boCacheManager;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Returns the global cache item for the select multiple of the given business object class. Creates a new cache item if not yet exists.
|
|
12
|
+
* @param clazz The BO class, e.g. CustomerFullObject
|
|
13
|
+
* @returns {CacheField<T[]>}
|
|
14
|
+
*/
|
|
15
|
+
requestCache(clazz, loadFunction) {
|
|
16
|
+
if (!this._boCacheManager.hasSelectMultipleCacheItem(clazz)) {
|
|
17
|
+
this._createCacheItem(clazz, loadFunction);
|
|
18
|
+
}
|
|
19
|
+
// noinspection TypeScriptValidateTypes
|
|
20
|
+
return this._boCacheManager.getSelectMultipleCacheItem(clazz);
|
|
21
|
+
}
|
|
22
|
+
// Creates and returns a new select multiple cache item into the global business object cache manager for given business object class.
|
|
23
|
+
_createCacheItem(clazz, loadFunction) {
|
|
24
|
+
// noinspection TypeScriptValidateTypes
|
|
25
|
+
return this._boCacheManager.addNewSelectMultipleCacheItem(clazz, loadFunction);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
SelectMultipleCacheService._NullCache = new CacheField();
|
|
29
|
+
SelectMultipleCacheService.ɵprov = i0.ɵɵdefineInjectable({ factory: function SelectMultipleCacheService_Factory() { return new SelectMultipleCacheService(i0.ɵɵinject(i1.BusinessObjectCacheManagerService)); }, token: SelectMultipleCacheService, providedIn: "root" });
|
|
30
|
+
SelectMultipleCacheService.decorators = [
|
|
31
|
+
{ type: Injectable, args: [{
|
|
32
|
+
providedIn: "root"
|
|
33
|
+
},] }
|
|
34
|
+
];
|
|
35
|
+
SelectMultipleCacheService.ctorParameters = () => [
|
|
36
|
+
{ type: BusinessObjectCacheManagerService }
|
|
37
|
+
];
|
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0LW11bHRpcGxlLWNhY2hlLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NhY2hlL3NlcnZpY2Uvc2VsZWN0LW11bHRpcGxlLWNhY2hlLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFVBQVUsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUMsaUNBQWlDLEVBQUMsTUFBTSx5Q0FBeUMsQ0FBQztBQUMxRixPQUFPLEVBQUMsVUFBVSxFQUFDLE1BQU0sZ0JBQWdCLENBQUM7OztBQU0xQyxNQUFNLE9BQU8sMEJBQTBCO0lBR3JDLFlBQ1UsZUFBa0Q7UUFBbEQsb0JBQWUsR0FBZixlQUFlLENBQW1DO0lBRTVELENBQUM7SUFFRDs7OztPQUlHO0lBQ0ksWUFBWSxDQUEyQixLQUE0QixFQUFFLFlBQWdDO1FBQzFHLElBQUksQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLDBCQUEwQixDQUFDLEtBQUssQ0FBQyxFQUFFO1lBQzNELElBQUksQ0FBQyxnQkFBZ0IsQ0FBSSxLQUFLLEVBQUUsWUFBWSxDQUFDLENBQUM7U0FDL0M7UUFFRCx1Q0FBdUM7UUFDdkMsT0FBTyxJQUFJLENBQUMsZUFBZSxDQUFDLDBCQUEwQixDQUFJLEtBQUssQ0FBQyxDQUFDO0lBQ25FLENBQUM7SUFFRCxzSUFBc0k7SUFDOUgsZ0JBQWdCLENBQTJCLEtBQTRCLEVBQUUsWUFBZ0M7UUFDL0csdUNBQXVDO1FBQ3ZDLE9BQU8sSUFBSSxDQUFDLGVBQWUsQ0FBQyw2QkFBNkIsQ0FBSSxLQUFLLEVBQUUsWUFBWSxDQUFDLENBQUM7SUFDcEYsQ0FBQzs7QUF6QmMscUNBQVUsR0FBb0IsSUFBSSxVQUFVLEVBQU8sQ0FBQzs7O1lBSnBFLFVBQVUsU0FBQztnQkFDVixVQUFVLEVBQUUsTUFBTTthQUNuQjs7O1lBTk8saUNBQWlDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtJbmplY3RhYmxlfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge0J1c2luZXNzT2JqZWN0Q2FjaGVNYW5hZ2VyU2VydmljZX0gZnJvbSBcIi4vYnVzaW5lc3Mtb2JqZWN0LWNhY2hlLW1hbmFnZXIuc2VydmljZVwiO1xyXG5pbXBvcnQge0NhY2hlRmllbGR9IGZyb20gXCIuLi9jYWNoZS1maWVsZFwiO1xyXG5pbXBvcnQge0J1c2luZXNzT2JqZWN0fSBmcm9tIFwiQGNvbGlqbml0L2lvbmVjb25uZWN0b3IvYnVpbGQvbW9kZWwvYnVzaW5lc3Mtb2JqZWN0XCI7XHJcblxyXG5ASW5qZWN0YWJsZSh7XHJcbiAgcHJvdmlkZWRJbjogXCJyb290XCJcclxufSlcclxuZXhwb3J0IGNsYXNzIFNlbGVjdE11bHRpcGxlQ2FjaGVTZXJ2aWNlIHtcclxuICBwcml2YXRlIHN0YXRpYyBfTnVsbENhY2hlOiBDYWNoZUZpZWxkPGFueT4gPSBuZXcgQ2FjaGVGaWVsZDxhbnk+KCk7XHJcblxyXG4gIGNvbnN0cnVjdG9yKFxyXG4gICAgcHJpdmF0ZSBfYm9DYWNoZU1hbmFnZXI6IEJ1c2luZXNzT2JqZWN0Q2FjaGVNYW5hZ2VyU2VydmljZVxyXG4gICkge1xyXG4gIH1cclxuXHJcbiAgLyoqXHJcbiAgICogUmV0dXJucyB0aGUgZ2xvYmFsIGNhY2hlIGl0ZW0gZm9yIHRoZSBzZWxlY3QgbXVsdGlwbGUgb2YgdGhlIGdpdmVuIGJ1c2luZXNzIG9iamVjdCBjbGFzcy4gQ3JlYXRlcyBhIG5ldyBjYWNoZSBpdGVtIGlmIG5vdCB5ZXQgZXhpc3RzLlxyXG4gICAqIEBwYXJhbSBjbGF6eiBUaGUgQk8gY2xhc3MsIGUuZy4gQ3VzdG9tZXJGdWxsT2JqZWN0XHJcbiAgICogQHJldHVybnMge0NhY2hlRmllbGQ8VFtdPn1cclxuICAgKi9cclxuICBwdWJsaWMgcmVxdWVzdENhY2hlPFQgZXh0ZW5kcyBCdXNpbmVzc09iamVjdD4oY2xheno6IHR5cGVvZiBCdXNpbmVzc09iamVjdCwgbG9hZEZ1bmN0aW9uOiAoKSA9PiBQcm9taXNlPFRbXT4pOiBDYWNoZUZpZWxkPFRbXT4ge1xyXG4gICAgaWYgKCF0aGlzLl9ib0NhY2hlTWFuYWdlci5oYXNTZWxlY3RNdWx0aXBsZUNhY2hlSXRlbShjbGF6eikpIHtcclxuICAgICAgdGhpcy5fY3JlYXRlQ2FjaGVJdGVtPFQ+KGNsYXp6LCBsb2FkRnVuY3Rpb24pO1xyXG4gICAgfVxyXG5cclxuICAgIC8vIG5vaW5zcGVjdGlvbiBUeXBlU2NyaXB0VmFsaWRhdGVUeXBlc1xyXG4gICAgcmV0dXJuIHRoaXMuX2JvQ2FjaGVNYW5hZ2VyLmdldFNlbGVjdE11bHRpcGxlQ2FjaGVJdGVtPFQ+KGNsYXp6KTtcclxuICB9XHJcblxyXG4gIC8vIENyZWF0ZXMgYW5kIHJldHVybnMgYSBuZXcgc2VsZWN0IG11bHRpcGxlIGNhY2hlIGl0ZW0gaW50byB0aGUgZ2xvYmFsIGJ1c2luZXNzIG9iamVjdCBjYWNoZSBtYW5hZ2VyIGZvciBnaXZlbiBidXNpbmVzcyBvYmplY3QgY2xhc3MuXHJcbiAgcHJpdmF0ZSBfY3JlYXRlQ2FjaGVJdGVtPFQgZXh0ZW5kcyBCdXNpbmVzc09iamVjdD4oY2xheno6IHR5cGVvZiBCdXNpbmVzc09iamVjdCwgbG9hZEZ1bmN0aW9uOiAoKSA9PiBQcm9taXNlPFRbXT4pOiBDYWNoZUZpZWxkPFRbXT4ge1xyXG4gICAgLy8gbm9pbnNwZWN0aW9uIFR5cGVTY3JpcHRWYWxpZGF0ZVR5cGVzXHJcbiAgICByZXR1cm4gdGhpcy5fYm9DYWNoZU1hbmFnZXIuYWRkTmV3U2VsZWN0TXVsdGlwbGVDYWNoZUl0ZW08VD4oY2xhenosIGxvYWRGdW5jdGlvbik7XHJcbiAgfVxyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Injectable } from "@angular/core";
|
|
2
|
+
import { Subject } from "rxjs";
|
|
3
|
+
import { BusinessObjectCacheManagerService } from "./business-object-cache-manager.service";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "./business-object-cache-manager.service";
|
|
6
|
+
// service resonsible for filling the global BO cache manager service with parameterized select multiple cache items
|
|
7
|
+
export class SelectMultipleParameterizedCacheService {
|
|
8
|
+
constructor(_boCacheManager) {
|
|
9
|
+
this._boCacheManager = _boCacheManager;
|
|
10
|
+
// emits after this select multiple parameterized cache service has been reset (e.g. after user logs out)
|
|
11
|
+
this.reset = new Subject();
|
|
12
|
+
this._subs = [];
|
|
13
|
+
this._subs.push(this._boCacheManager.reset.subscribe(() => {
|
|
14
|
+
this.reset.next();
|
|
15
|
+
}));
|
|
16
|
+
}
|
|
17
|
+
ngOnDestroy() {
|
|
18
|
+
this._subs.forEach(sub => sub.unsubscribe());
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Returns the global cache item for the parameterized select multiple of the given business object class. Creates a new cache item if not yet exists.
|
|
22
|
+
* @param clazz The BO class, used for undeflying dataService.selectMultiple(clazz) call.
|
|
23
|
+
* @returns {CacheField<T[]>}
|
|
24
|
+
*/
|
|
25
|
+
requestCache(clazz, loadFunction) {
|
|
26
|
+
if (!this._boCacheManager.hasSelectMultipleParameterizedCacheItem(clazz)) {
|
|
27
|
+
this._createParameterizedCacheItem(clazz, loadFunction);
|
|
28
|
+
}
|
|
29
|
+
// noinspection TypeScriptValidateTypes
|
|
30
|
+
return this._boCacheManager.getSelectMultipleParameterCacheItem(clazz);
|
|
31
|
+
}
|
|
32
|
+
// Creates and returns a new parameterized select multiple cache item into the global business object cache manager for given business object class.
|
|
33
|
+
_createParameterizedCacheItem(clazz, loadFunction) {
|
|
34
|
+
// noinspection TypeScriptValidateTypes
|
|
35
|
+
return this._boCacheManager.addNewSelectMultipleParameterizedCacheItem(clazz, loadFunction);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
SelectMultipleParameterizedCacheService.ɵprov = i0.ɵɵdefineInjectable({ factory: function SelectMultipleParameterizedCacheService_Factory() { return new SelectMultipleParameterizedCacheService(i0.ɵɵinject(i1.BusinessObjectCacheManagerService)); }, token: SelectMultipleParameterizedCacheService, providedIn: "root" });
|
|
39
|
+
SelectMultipleParameterizedCacheService.decorators = [
|
|
40
|
+
{ type: Injectable, args: [{
|
|
41
|
+
providedIn: "root"
|
|
42
|
+
},] }
|
|
43
|
+
];
|
|
44
|
+
SelectMultipleParameterizedCacheService.ctorParameters = () => [
|
|
45
|
+
{ type: BusinessObjectCacheManagerService }
|
|
46
|
+
];
|
|
47
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0LW11bHRpcGxlLXBhcmFtZXRlcml6ZWQtY2FjaGUuc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvY2FjaGUvc2VydmljZS9zZWxlY3QtbXVsdGlwbGUtcGFyYW1ldGVyaXplZC1jYWNoZS5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxVQUFVLEVBQVksTUFBTSxlQUFlLENBQUM7QUFDcEQsT0FBTyxFQUFDLE9BQU8sRUFBZSxNQUFNLE1BQU0sQ0FBQztBQUMzQyxPQUFPLEVBQUMsaUNBQWlDLEVBQUMsTUFBTSx5Q0FBeUMsQ0FBQzs7O0FBSTFGLG9IQUFvSDtBQUlwSCxNQUFNLE9BQU8sdUNBQXVDO0lBTWxELFlBQW9CLGVBQWtEO1FBQWxELG9CQUFlLEdBQWYsZUFBZSxDQUFtQztRQUx0RSx5R0FBeUc7UUFDekYsVUFBSyxHQUFrQixJQUFJLE9BQU8sRUFBUSxDQUFDO1FBRW5ELFVBQUssR0FBbUIsRUFBRSxDQUFDO1FBR2pDLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxlQUFlLENBQUMsS0FBSyxDQUFDLFNBQVMsQ0FBQyxHQUFHLEVBQUU7WUFDeEQsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUNwQixDQUFDLENBQUMsQ0FBQyxDQUFDO0lBQ04sQ0FBQztJQUVELFdBQVc7UUFDVCxJQUFJLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsRUFBRSxDQUFDLEdBQUcsQ0FBQyxXQUFXLEVBQUUsQ0FBQyxDQUFDO0lBQy9DLENBQUM7SUFFRDs7OztPQUlHO0lBQ0ksWUFBWSxDQUEyQixLQUE0QixFQUFFLFlBQThDO1FBQ3hILElBQUksQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLHVDQUF1QyxDQUFDLEtBQUssQ0FBQyxFQUFFO1lBQ3hFLElBQUksQ0FBQyw2QkFBNkIsQ0FBSSxLQUFLLEVBQUUsWUFBWSxDQUFDLENBQUM7U0FDNUQ7UUFFRCx1Q0FBdUM7UUFDdkMsT0FBTyxJQUFJLENBQUMsZUFBZSxDQUFDLG1DQUFtQyxDQUFJLEtBQUssQ0FBQyxDQUFDO0lBQzVFLENBQUM7SUFFRCxxSkFBcUo7SUFDN0ksNkJBQTZCLENBQTJCLEtBQTRCLEVBQUUsWUFBOEM7UUFDMUksdUNBQXVDO1FBQ3ZDLE9BQU8sSUFBSSxDQUFDLGVBQWUsQ0FBQywwQ0FBMEMsQ0FBSSxLQUFLLEVBQUUsWUFBWSxDQUFDLENBQUM7SUFDakcsQ0FBQzs7OztZQXJDRixVQUFVLFNBQUM7Z0JBQ1YsVUFBVSxFQUFFLE1BQU07YUFDbkI7OztZQVBPLGlDQUFpQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7SW5qZWN0YWJsZSwgT25EZXN0cm95fSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge1N1YmplY3QsIFN1YnNjcmlwdGlvbn0gZnJvbSBcInJ4anNcIjtcclxuaW1wb3J0IHtCdXNpbmVzc09iamVjdENhY2hlTWFuYWdlclNlcnZpY2V9IGZyb20gXCIuL2J1c2luZXNzLW9iamVjdC1jYWNoZS1tYW5hZ2VyLnNlcnZpY2VcIjtcclxuaW1wb3J0IHtCdXNpbmVzc09iamVjdH0gZnJvbSBcIkBjb2xpam5pdC9pb25lY29ubmVjdG9yL2J1aWxkL21vZGVsL2J1c2luZXNzLW9iamVjdFwiO1xyXG5pbXBvcnQge1BhcmFtZXRlckNhY2hlRmllbGR9IGZyb20gXCIuLi9wYXJhbWV0ZXItY2FjaGUtZmllbGRcIjtcclxuXHJcbi8vIHNlcnZpY2UgcmVzb25zaWJsZSBmb3IgZmlsbGluZyB0aGUgZ2xvYmFsIEJPIGNhY2hlIG1hbmFnZXIgc2VydmljZSB3aXRoIHBhcmFtZXRlcml6ZWQgc2VsZWN0IG11bHRpcGxlIGNhY2hlIGl0ZW1zXHJcbkBJbmplY3RhYmxlKHtcclxuICBwcm92aWRlZEluOiBcInJvb3RcIlxyXG59KVxyXG5leHBvcnQgY2xhc3MgU2VsZWN0TXVsdGlwbGVQYXJhbWV0ZXJpemVkQ2FjaGVTZXJ2aWNlIGltcGxlbWVudHMgT25EZXN0cm95IHtcclxuICAvLyBlbWl0cyBhZnRlciB0aGlzIHNlbGVjdCBtdWx0aXBsZSBwYXJhbWV0ZXJpemVkIGNhY2hlIHNlcnZpY2UgaGFzIGJlZW4gcmVzZXQgKGUuZy4gYWZ0ZXIgdXNlciBsb2dzIG91dClcclxuICBwdWJsaWMgcmVhZG9ubHkgcmVzZXQ6IFN1YmplY3Q8dm9pZD4gPSBuZXcgU3ViamVjdDx2b2lkPigpO1xyXG5cclxuICBwcml2YXRlIF9zdWJzOiBTdWJzY3JpcHRpb25bXSA9IFtdO1xyXG5cclxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIF9ib0NhY2hlTWFuYWdlcjogQnVzaW5lc3NPYmplY3RDYWNoZU1hbmFnZXJTZXJ2aWNlKSB7XHJcbiAgICB0aGlzLl9zdWJzLnB1c2godGhpcy5fYm9DYWNoZU1hbmFnZXIucmVzZXQuc3Vic2NyaWJlKCgpID0+IHtcclxuICAgICAgdGhpcy5yZXNldC5uZXh0KCk7XHJcbiAgICB9KSk7XHJcbiAgfVxyXG5cclxuICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcclxuICAgIHRoaXMuX3N1YnMuZm9yRWFjaChzdWIgPT4gc3ViLnVuc3Vic2NyaWJlKCkpO1xyXG4gIH1cclxuXHJcbiAgLyoqXHJcbiAgICogUmV0dXJucyB0aGUgZ2xvYmFsIGNhY2hlIGl0ZW0gZm9yIHRoZSBwYXJhbWV0ZXJpemVkIHNlbGVjdCBtdWx0aXBsZSBvZiB0aGUgZ2l2ZW4gYnVzaW5lc3Mgb2JqZWN0IGNsYXNzLiBDcmVhdGVzIGEgbmV3IGNhY2hlIGl0ZW0gaWYgbm90IHlldCBleGlzdHMuXHJcbiAgICogQHBhcmFtIGNsYXp6IFRoZSBCTyBjbGFzcywgdXNlZCBmb3IgdW5kZWZseWluZyBkYXRhU2VydmljZS5zZWxlY3RNdWx0aXBsZShjbGF6eikgY2FsbC5cclxuICAgKiBAcmV0dXJucyB7Q2FjaGVGaWVsZDxUW10+fVxyXG4gICAqL1xyXG4gIHB1YmxpYyByZXF1ZXN0Q2FjaGU8VCBleHRlbmRzIEJ1c2luZXNzT2JqZWN0PihjbGF6ejogdHlwZW9mIEJ1c2luZXNzT2JqZWN0LCBsb2FkRnVuY3Rpb246ICguLi5wYXJhbXM6IGFueSkgPT4gUHJvbWlzZTxUW10+KTogUGFyYW1ldGVyQ2FjaGVGaWVsZDxUW10+IHtcclxuICAgIGlmICghdGhpcy5fYm9DYWNoZU1hbmFnZXIuaGFzU2VsZWN0TXVsdGlwbGVQYXJhbWV0ZXJpemVkQ2FjaGVJdGVtKGNsYXp6KSkge1xyXG4gICAgICB0aGlzLl9jcmVhdGVQYXJhbWV0ZXJpemVkQ2FjaGVJdGVtPFQ+KGNsYXp6LCBsb2FkRnVuY3Rpb24pO1xyXG4gICAgfVxyXG5cclxuICAgIC8vIG5vaW5zcGVjdGlvbiBUeXBlU2NyaXB0VmFsaWRhdGVUeXBlc1xyXG4gICAgcmV0dXJuIHRoaXMuX2JvQ2FjaGVNYW5hZ2VyLmdldFNlbGVjdE11bHRpcGxlUGFyYW1ldGVyQ2FjaGVJdGVtPFQ+KGNsYXp6KTtcclxuICB9XHJcblxyXG4gIC8vIENyZWF0ZXMgYW5kIHJldHVybnMgYSBuZXcgIHBhcmFtZXRlcml6ZWQgc2VsZWN0IG11bHRpcGxlIGNhY2hlIGl0ZW0gaW50byB0aGUgZ2xvYmFsIGJ1c2luZXNzIG9iamVjdCBjYWNoZSBtYW5hZ2VyIGZvciBnaXZlbiBidXNpbmVzcyBvYmplY3QgY2xhc3MuXHJcbiAgcHJpdmF0ZSBfY3JlYXRlUGFyYW1ldGVyaXplZENhY2hlSXRlbTxUIGV4dGVuZHMgQnVzaW5lc3NPYmplY3Q+KGNsYXp6OiB0eXBlb2YgQnVzaW5lc3NPYmplY3QsIGxvYWRGdW5jdGlvbjogKC4uLnBhcmFtczogYW55KSA9PiBQcm9taXNlPFRbXT4pOiBQYXJhbWV0ZXJDYWNoZUZpZWxkPFRbXT4ge1xyXG4gICAgLy8gbm9pbnNwZWN0aW9uIFR5cGVTY3JpcHRWYWxpZGF0ZVR5cGVzXHJcbiAgICByZXR1cm4gdGhpcy5fYm9DYWNoZU1hbmFnZXIuYWRkTmV3U2VsZWN0TXVsdGlwbGVQYXJhbWV0ZXJpemVkQ2FjaGVJdGVtPFQ+KGNsYXp6LCBsb2FkRnVuY3Rpb24pO1xyXG4gIH1cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Injectable } from "@angular/core";
|
|
2
|
+
import { BusinessObjectCacheManagerService } from "./business-object-cache-manager.service";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "./business-object-cache-manager.service";
|
|
5
|
+
export class SelectSingleCacheService {
|
|
6
|
+
constructor(_boCacheManager) {
|
|
7
|
+
this._boCacheManager = _boCacheManager;
|
|
8
|
+
}
|
|
9
|
+
requestCache(clazz, sourceId, loadFunction) {
|
|
10
|
+
if (!this._boCacheManager.hasSingleCacheItem(clazz, sourceId)) {
|
|
11
|
+
this._createCacheItem(clazz, sourceId, loadFunction);
|
|
12
|
+
}
|
|
13
|
+
// noinspection TypeScriptValidateTypes
|
|
14
|
+
return this._boCacheManager.getSingleCacheItem(clazz, sourceId);
|
|
15
|
+
}
|
|
16
|
+
_createCacheItem(clazz, sourceId, loadFunction) {
|
|
17
|
+
// noinspection TypeScriptValidateTypes
|
|
18
|
+
return this._boCacheManager.addNewSelectSingleCacheItem(clazz, sourceId, loadFunction);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
SelectSingleCacheService.ɵprov = i0.ɵɵdefineInjectable({ factory: function SelectSingleCacheService_Factory() { return new SelectSingleCacheService(i0.ɵɵinject(i1.BusinessObjectCacheManagerService)); }, token: SelectSingleCacheService, providedIn: "root" });
|
|
22
|
+
SelectSingleCacheService.decorators = [
|
|
23
|
+
{ type: Injectable, args: [{
|
|
24
|
+
providedIn: "root"
|
|
25
|
+
},] }
|
|
26
|
+
];
|
|
27
|
+
SelectSingleCacheService.ctorParameters = () => [
|
|
28
|
+
{ type: BusinessObjectCacheManagerService }
|
|
29
|
+
];
|
|
30
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0LXNpbmdsZS1jYWNoZS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jYWNoZS9zZXJ2aWNlL3NlbGVjdC1zaW5nbGUtY2FjaGUuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsVUFBVSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBQyxpQ0FBaUMsRUFBQyxNQUFNLHlDQUF5QyxDQUFDOzs7QUFRMUYsTUFBTSxPQUFPLHdCQUF3QjtJQUVuQyxZQUFvQixlQUFrRDtRQUFsRCxvQkFBZSxHQUFmLGVBQWUsQ0FBbUM7SUFDdEUsQ0FBQztJQUVNLFlBQVksQ0FBMkIsS0FBbUIsRUFBRSxRQUE4QixFQUFFLFlBQThCO1FBQy9ILElBQUksQ0FBQyxJQUFJLENBQUMsZUFBZSxDQUFDLGtCQUFrQixDQUFJLEtBQUssRUFBRSxRQUFRLENBQUMsRUFBRTtZQUNoRSxJQUFJLENBQUMsZ0JBQWdCLENBQUksS0FBSyxFQUFFLFFBQVEsRUFBRSxZQUFZLENBQUMsQ0FBQztTQUN6RDtRQUVELHVDQUF1QztRQUN2QyxPQUFPLElBQUksQ0FBQyxlQUFlLENBQUMsa0JBQWtCLENBQUksS0FBSyxFQUFFLFFBQVEsQ0FBQyxDQUFDO0lBQ3JFLENBQUM7SUFFTyxnQkFBZ0IsQ0FBMkIsS0FBbUIsRUFBRSxRQUE4QixFQUFFLFlBQThCO1FBQ3BJLHVDQUF1QztRQUN2QyxPQUFPLElBQUksQ0FBQyxlQUFlLENBQUMsMkJBQTJCLENBQUksS0FBSyxFQUFFLFFBQVEsRUFBRSxZQUFZLENBQUMsQ0FBQztJQUM1RixDQUFDOzs7O1lBcEJGLFVBQVUsU0FBQztnQkFDVixVQUFVLEVBQUUsTUFBTTthQUNuQjs7O1lBUE8saUNBQWlDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtJbmplY3RhYmxlfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge0J1c2luZXNzT2JqZWN0Q2FjaGVNYW5hZ2VyU2VydmljZX0gZnJvbSBcIi4vYnVzaW5lc3Mtb2JqZWN0LWNhY2hlLW1hbmFnZXIuc2VydmljZVwiO1xyXG5pbXBvcnQge0J1c2luZXNzT2JqZWN0fSBmcm9tIFwiQGNvbGlqbml0L2lvbmVjb25uZWN0b3IvYnVpbGQvbW9kZWwvYnVzaW5lc3Mtb2JqZWN0XCI7XHJcbmltcG9ydCB7Q2FjaGVGaWVsZH0gZnJvbSBcIi4uL2NhY2hlLWZpZWxkXCI7XHJcbmltcG9ydCB7QnVzaW5lc3NPYmplY3RJRFR5cGV9IGZyb20gXCJAY29saWpuaXQvaW9uZWNvbm5lY3Rvci9idWlsZC90eXBlL2J1c2luZXNzLW9iamVjdC1pZC10eXBlXCI7XHJcblxyXG5ASW5qZWN0YWJsZSh7XHJcbiAgcHJvdmlkZWRJbjogXCJyb290XCJcclxufSlcclxuZXhwb3J0IGNsYXNzIFNlbGVjdFNpbmdsZUNhY2hlU2VydmljZSB7XHJcblxyXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgX2JvQ2FjaGVNYW5hZ2VyOiBCdXNpbmVzc09iamVjdENhY2hlTWFuYWdlclNlcnZpY2UpIHtcclxuICB9XHJcblxyXG4gIHB1YmxpYyByZXF1ZXN0Q2FjaGU8VCBleHRlbmRzIEJ1c2luZXNzT2JqZWN0PihjbGF6ejogeyBuZXcoKTogVCB9LCBzb3VyY2VJZDogQnVzaW5lc3NPYmplY3RJRFR5cGUsIGxvYWRGdW5jdGlvbjogKCkgPT4gUHJvbWlzZTxUPik6IENhY2hlRmllbGQ8VD4ge1xyXG4gICAgaWYgKCF0aGlzLl9ib0NhY2hlTWFuYWdlci5oYXNTaW5nbGVDYWNoZUl0ZW08VD4oY2xhenosIHNvdXJjZUlkKSkge1xyXG4gICAgICB0aGlzLl9jcmVhdGVDYWNoZUl0ZW08VD4oY2xhenosIHNvdXJjZUlkLCBsb2FkRnVuY3Rpb24pO1xyXG4gICAgfVxyXG5cclxuICAgIC8vIG5vaW5zcGVjdGlvbiBUeXBlU2NyaXB0VmFsaWRhdGVUeXBlc1xyXG4gICAgcmV0dXJuIHRoaXMuX2JvQ2FjaGVNYW5hZ2VyLmdldFNpbmdsZUNhY2hlSXRlbTxUPihjbGF6eiwgc291cmNlSWQpO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBfY3JlYXRlQ2FjaGVJdGVtPFQgZXh0ZW5kcyBCdXNpbmVzc09iamVjdD4oY2xheno6IHsgbmV3KCk6IFQgfSwgc291cmNlSWQ6IEJ1c2luZXNzT2JqZWN0SURUeXBlLCBsb2FkRnVuY3Rpb246ICgpID0+IFByb21pc2U8VD4pOiBDYWNoZUZpZWxkPFQ+IHtcclxuICAgIC8vIG5vaW5zcGVjdGlvbiBUeXBlU2NyaXB0VmFsaWRhdGVUeXBlc1xyXG4gICAgcmV0dXJuIHRoaXMuX2JvQ2FjaGVNYW5hZ2VyLmFkZE5ld1NlbGVjdFNpbmdsZUNhY2hlSXRlbTxUPihjbGF6eiwgc291cmNlSWQsIGxvYWRGdW5jdGlvbik7XHJcbiAgfVxyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Component, HostBinding, Input, ViewEncapsulation } from "@angular/core";
|
|
2
|
+
export class AnimatedCheckboxComponent {
|
|
3
|
+
constructor() {
|
|
4
|
+
this.checked = false;
|
|
5
|
+
}
|
|
6
|
+
showClass() {
|
|
7
|
+
return true;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
AnimatedCheckboxComponent.decorators = [
|
|
11
|
+
{ type: Component, args: [{
|
|
12
|
+
selector: "co-animated-checkbox",
|
|
13
|
+
template: `
|
|
14
|
+
<div class="checkbox">
|
|
15
|
+
<div class="checkmark" [class.show]="checked"></div>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="label" *ngIf="label" [textContent]="label | localize"></div>
|
|
18
|
+
`,
|
|
19
|
+
encapsulation: ViewEncapsulation.None
|
|
20
|
+
},] }
|
|
21
|
+
];
|
|
22
|
+
AnimatedCheckboxComponent.propDecorators = {
|
|
23
|
+
checked: [{ type: Input }],
|
|
24
|
+
label: [{ type: Input }],
|
|
25
|
+
showClass: [{ type: HostBinding, args: ["class.co-animated-checkbox",] }]
|
|
26
|
+
};
|
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW5pbWF0ZWQtY2hlY2tib3guY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvYW5pbWF0ZWQtY2hlY2tib3gvYW5pbWF0ZWQtY2hlY2tib3guY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsV0FBVyxFQUFFLEtBQUssRUFBRSxpQkFBaUIsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQVkvRSxNQUFNLE9BQU8seUJBQXlCO0lBVnRDO1FBYVMsWUFBTyxHQUFZLEtBQUssQ0FBQztJQVVsQyxDQUFDO0lBSlEsU0FBUztRQUNkLE9BQU8sSUFBSSxDQUFDO0lBQ2QsQ0FBQzs7O1lBckJGLFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUsc0JBQXNCO2dCQUNoQyxRQUFRLEVBQUU7Ozs7O0dBS1Q7Z0JBQ0QsYUFBYSxFQUFFLGlCQUFpQixDQUFDLElBQUk7YUFDdEM7OztzQkFHRSxLQUFLO29CQUdMLEtBQUs7d0JBR0wsV0FBVyxTQUFDLDRCQUE0QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50LCBIb3N0QmluZGluZywgSW5wdXQsIFZpZXdFbmNhcHN1bGF0aW9ufSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6IFwiY28tYW5pbWF0ZWQtY2hlY2tib3hcIixcclxuICB0ZW1wbGF0ZTogYFxyXG4gICAgPGRpdiBjbGFzcz1cImNoZWNrYm94XCI+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJjaGVja21hcmtcIiBbY2xhc3Muc2hvd109XCJjaGVja2VkXCI+PC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxkaXYgY2xhc3M9XCJsYWJlbFwiICpuZ0lmPVwibGFiZWxcIiBbdGV4dENvbnRlbnRdPVwibGFiZWwgfCBsb2NhbGl6ZVwiPjwvZGl2PlxyXG4gIGAsXHJcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZVxyXG59KVxyXG5leHBvcnQgY2xhc3MgQW5pbWF0ZWRDaGVja2JveENvbXBvbmVudCB7XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgcHVibGljIGNoZWNrZWQ6IGJvb2xlYW4gPSBmYWxzZTtcclxuXHJcbiAgQElucHV0KClcclxuICBwdWJsaWMgbGFiZWw6IHN0cmluZztcclxuXHJcbiAgQEhvc3RCaW5kaW5nKFwiY2xhc3MuY28tYW5pbWF0ZWQtY2hlY2tib3hcIilcclxuICBwdWJsaWMgc2hvd0NsYXNzKCkge1xyXG4gICAgcmV0dXJuIHRydWU7XHJcbiAgfVxyXG5cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { NgModule } from "@angular/core";
|
|
2
|
+
import { CommonModule } from "@angular/common";
|
|
3
|
+
import { AnimatedCheckboxComponent } from "./animated-checkbox.component";
|
|
4
|
+
import { PipeModule } from "../../pipe/pipe.module";
|
|
5
|
+
export class AnimatedCheckboxModule {
|
|
6
|
+
}
|
|
7
|
+
AnimatedCheckboxModule.decorators = [
|
|
8
|
+
{ type: NgModule, args: [{
|
|
9
|
+
imports: [
|
|
10
|
+
CommonModule,
|
|
11
|
+
PipeModule
|
|
12
|
+
],
|
|
13
|
+
declarations: [
|
|
14
|
+
AnimatedCheckboxComponent
|
|
15
|
+
],
|
|
16
|
+
exports: [
|
|
17
|
+
AnimatedCheckboxComponent
|
|
18
|
+
]
|
|
19
|
+
},] }
|
|
20
|
+
];
|
|
21
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW5pbWF0ZWQtY2hlY2tib3gubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvYW5pbWF0ZWQtY2hlY2tib3gvYW5pbWF0ZWQtY2hlY2tib3gubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDdkMsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyx5QkFBeUIsRUFBQyxNQUFNLCtCQUErQixDQUFDO0FBQ3hFLE9BQU8sRUFBQyxVQUFVLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQztBQWNsRCxNQUFNLE9BQU8sc0JBQXNCOzs7WUFabEMsUUFBUSxTQUFDO2dCQUNOLE9BQU8sRUFBRTtvQkFDTCxZQUFZO29CQUNaLFVBQVU7aUJBQ2I7Z0JBQ0gsWUFBWSxFQUFFO29CQUNaLHlCQUF5QjtpQkFDMUI7Z0JBQ0QsT0FBTyxFQUFFO29CQUNQLHlCQUF5QjtpQkFDMUI7YUFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7TmdNb2R1bGV9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7Q29tbW9uTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvY29tbW9uXCI7XHJcbmltcG9ydCB7QW5pbWF0ZWRDaGVja2JveENvbXBvbmVudH0gZnJvbSBcIi4vYW5pbWF0ZWQtY2hlY2tib3guY29tcG9uZW50XCI7XHJcbmltcG9ydCB7UGlwZU1vZHVsZX0gZnJvbSBcIi4uLy4uL3BpcGUvcGlwZS5tb2R1bGVcIjtcclxuXHJcbkBOZ01vZHVsZSh7XHJcbiAgICBpbXBvcnRzOiBbXHJcbiAgICAgICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgICAgIFBpcGVNb2R1bGVcclxuICAgIF0sXHJcbiAgZGVjbGFyYXRpb25zOiBbXHJcbiAgICBBbmltYXRlZENoZWNrYm94Q29tcG9uZW50XHJcbiAgXSxcclxuICBleHBvcnRzOiBbXHJcbiAgICBBbmltYXRlZENoZWNrYm94Q29tcG9uZW50XHJcbiAgXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgQW5pbWF0ZWRDaGVja2JveE1vZHVsZSB7XHJcbn1cclxuIl19
|