@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
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
|
|
2
|
-
viewBox="-280 371 51 51" enable-background="new -280 371 51 51" xml:space="preserve">
|
|
3
|
-
<path fill="#29363E" d="M-248.3,392.2c0.3,0,0.6,0.1,0.8,0.3c0.5,0.5,0.5,1.2,0,1.6l-6.2,6.2c-0.2,0.2-0.5,0.3-0.8,0.3
|
|
4
|
-
c-0.3,0-0.6-0.1-0.8-0.3l-6.2-6.2c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.3,0.1-0.6,0.3-0.8c0.2-0.2,0.5-0.3,0.8-0.3c0.3,0,0.6,0.1,0.8,0.3
|
|
5
|
-
l5.4,5.4l5.4-5.4C-248.9,392.4-248.6,392.2-248.3,392.2z"/>
|
|
6
|
-
</svg>
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" id="Laag_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
|
|
4
|
-
viewBox="0 0 51 51" enable-background="new 0 0 51 51" xml:space="preserve">
|
|
5
|
-
<path fill="#484F5F" d="M31.9,36.7l-14.7-9.6C17.1,27,17,26.9,17,26.7v-2.4c0-0.2,0.1-0.3,0.2-0.4l14.7-9.6c0.2-0.2,0.5-0.1,0.7,0.1
|
|
6
|
-
l1.4,2.1c0.2,0.2,0.1,0.5-0.1,0.7l-12,7.8c-0.3,0.2-0.3,0.6,0,0.8l12,7.8c0.2,0.2,0.3,0.5,0.1,0.7l-1.4,2.1
|
|
7
|
-
C32.4,36.8,32.1,36.8,31.9,36.7z"/>
|
|
8
|
-
</svg>
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" id="Laag_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
|
|
4
|
-
viewBox="0 0 51 51" enable-background="new 0 0 51 51" xml:space="preserve">
|
|
5
|
-
<path fill="#484F5F" d="M19.1,14.3l14.7,9.6c0.1,0.1,0.2,0.2,0.2,0.4v2.4c0,0.2-0.1,0.3-0.2,0.4l-14.7,9.6c-0.2,0.2-0.5,0.1-0.7-0.1
|
|
6
|
-
l-1.4-2.1c-0.2-0.2-0.1-0.5,0.1-0.7l12-7.8c0.3-0.2,0.3-0.6,0-0.8l-12-7.8c-0.2-0.2-0.3-0.5-0.1-0.7l1.4-2.1
|
|
7
|
-
C18.6,14.2,18.9,14.2,19.1,14.3z"/>
|
|
8
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M37.43,15.14H12.57A2.57,2.57,0,0,0,10,17.71V32.29a2.57,2.57,0,0,0,2.57,2.57H37.43A2.57,2.57,0,0,0,40,32.29V17.71A2.57,2.57,0,0,0,37.43,15.14ZM14.29,32.71H12.15V17.29h2.14Zm2,0H15V17.29h1.29Zm2.57,0H17.54V17.29h1.29Zm3.52,0H20.2V17.29h2.15Zm2,0H23.11V17.29H24.4Zm2.06,0H25.17V17.29h1.29Zm2.66,0H27.83V17.29h1.29Zm3.51,0H31.34V17.29h1.29Zm3.34,0H33.4V17.29H36Zm2.32,0H37V17.29h1.29Z" fill="#484f60"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.1.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M207.8 20.73c-93.45 18.32-168.7 93.66-187 187.1c-27.64 140.9 68.65 266.2 199.1 285.1c19.01 2.888 36.17-12.26 36.17-31.49l.0001-.6631c0-15.74-11.44-28.88-26.84-31.24c-84.35-12.98-149.2-86.13-149.2-174.2c0-102.9 88.61-185.5 193.4-175.4c91.54 8.869 158.6 91.25 158.6 183.2l0 16.16c0 22.09-17.94 40.05-40 40.05s-40.01-17.96-40.01-40.05v-120.1c0-8.847-7.161-16.02-16.01-16.02l-31.98 .0036c-7.299 0-13.2 4.992-15.12 11.68c-24.85-12.15-54.24-16.38-86.06-5.106c-38.75 13.73-68.12 48.91-73.72 89.64c-9.483 69.01 43.81 128 110.9 128c26.44 0 50.43-9.544 69.59-24.88c24 31.3 65.23 48.69 109.4 37.49C465.2 369.3 496 324.1 495.1 277.2V256.3C495.1 107.1 361.2-9.332 207.8 20.73zM239.1 304.3c-26.47 0-48-21.56-48-48.05s21.53-48.05 48-48.05s48 21.56 48 48.05S266.5 304.3 239.1 304.3z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M48 55.1V455.1C48 469.3 37.25 479.1 24 479.1C10.75 479.1 0 469.3 0 455.1V55.1C0 42.74 10.75 31.1 24 31.1C37.25 31.1 48 42.74 48 55.1V55.1zM128 47.1V463.1C128 472.8 120.8 479.1 112 479.1C103.2 479.1 96 472.8 96 463.1V47.1C96 39.16 103.2 31.1 112 31.1C120.8 31.1 128 39.16 128 47.1V47.1zM208 55.1V455.1C208 469.3 197.3 479.1 184 479.1C170.7 479.1 160 469.3 160 455.1V55.1C160 42.74 170.7 31.1 184 31.1C197.3 31.1 208 42.74 208 55.1V55.1zM320 55.1V455.1C320 469.3 309.3 479.1 296 479.1C282.7 479.1 272 469.3 272 455.1V55.1C272 42.74 282.7 31.1 296 31.1C309.3 31.1 320 42.74 320 55.1V55.1zM464 55.1C464 42.74 474.7 31.1 488 31.1C501.3 31.1 512 42.74 512 55.1V455.1C512 469.3 501.3 479.1 488 479.1C474.7 479.1 464 469.3 464 455.1V55.1zM400 47.1C400 39.16 407.2 31.1 416 31.1C424.8 31.1 432 39.16 432 47.1V463.1C432 472.8 424.8 479.1 416 479.1C407.2 479.1 400 472.8 400 463.1V47.1z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M40 32C53.25 32 64 42.75 64 56V456C64 469.3 53.25 480 40 480H24C10.75 480 0 469.3 0 456V56C0 42.75 10.75 32 24 32H40zM128 48V464C128 472.8 120.8 480 112 480C103.2 480 96 472.8 96 464V48C96 39.16 103.2 32 112 32C120.8 32 128 39.16 128 48zM200 32C213.3 32 224 42.75 224 56V456C224 469.3 213.3 480 200 480H184C170.7 480 160 469.3 160 456V56C160 42.75 170.7 32 184 32H200zM296 32C309.3 32 320 42.75 320 56V456C320 469.3 309.3 480 296 480H280C266.7 480 256 469.3 256 456V56C256 42.75 266.7 32 280 32H296zM448 56C448 42.75 458.7 32 472 32H488C501.3 32 512 42.75 512 56V456C512 469.3 501.3 480 488 480H472C458.7 480 448 469.3 448 456V56zM384 48C384 39.16 391.2 32 400 32C408.8 32 416 39.16 416 48V464C416 472.8 408.8 480 400 480C391.2 480 384 472.8 384 464V48z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.0.0-beta1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --><path d="M264 392H183.1C170.8 392 160 402.8 160 415.1C160 429.2 170.8 440 183.1 440h80C277.2 440 288 429.2 288 416C288 402.8 277.2 392 264 392zM424 72H23.1C10.8 72 0 82.8 0 95.1S10.8 120 23.1 120H424c13.2 0 24-10.8 24-23.1S437.2 72 424 72zM360 232H87.1C74.8 232 64 242.8 64 255.1C64 269.2 74.8 280 87.1 280h272C373.2 280 384 269.2 384 256C384 242.8 373.2 232 360 232z"/></svg>
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" id="Laag_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
|
|
4
|
-
viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve">
|
|
5
|
-
<g>
|
|
6
|
-
<path fill="#022D42" d="M35.4,13.7H14.6c-0.6,0-1,0.5-1,1V20h22.9v-5.2C36.4,14.2,36,13.7,35.4,13.7z M19,18.8
|
|
7
|
-
c-1,0-1.8-0.8-1.8-1.8c0-1,0.8-1.8,1.8-1.8c1,0,1.8,0.8,1.8,1.8C20.8,18,20,18.8,19,18.8z M31,18.8c-1,0-1.8-0.8-1.8-1.8
|
|
8
|
-
c0-1,0.8-1.8,1.8-1.8s1.8,0.8,1.8,1.8C32.7,18,32,18.8,31,18.8z"/>
|
|
9
|
-
<path fill="#022D42" d="M35.4,22.3v12.6L31.3,39H14.6c0,0,0,0,0,0V22.3H35.4 M36.4,21.3H13.6V39c0,0.6,0.5,1,1,1h17.2l4.7-4.7V21.3
|
|
10
|
-
L36.4,21.3z"/>
|
|
11
|
-
<rect x="18.2" y="10" fill="#022D42" width="1.6" height="5.2"/>
|
|
12
|
-
<rect x="30.2" y="10" fill="#022D42" width="1.6" height="5.2"/>
|
|
13
|
-
<rect x="18.6" y="30.5" fill="#022D42" width="3.4" height="3.4"/>
|
|
14
|
-
<rect x="19.1" y="24.8" opacity="0.1" fill="#022D42" width="2.4" height="2.4"/>
|
|
15
|
-
<rect x="19.1" y="27.9" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
16
|
-
<rect x="19.1" y="34.1" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
17
|
-
<rect x="22.2" y="24.8" opacity="0.1" fill="#022D42" width="2.4" height="2.4"/>
|
|
18
|
-
<rect x="22.2" y="27.9" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
19
|
-
<rect x="22.2" y="31" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
20
|
-
<rect x="22.2" y="34.1" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
21
|
-
<rect x="25.4" y="31" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
22
|
-
<rect x="25.4" y="24.8" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
23
|
-
<rect x="25.4" y="27.9" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
24
|
-
<rect x="25.4" y="34.1" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
25
|
-
<rect x="31.6" y="31" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
26
|
-
<rect x="31.6" y="24.8" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
27
|
-
<rect x="31.6" y="27.9" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
28
|
-
<rect x="28.5" y="27.9" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
29
|
-
<rect x="28.5" y="24.8" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
30
|
-
<rect x="28.5" y="31" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
31
|
-
<rect x="28.5" y="34.1" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
32
|
-
<rect x="16" y="24.8" opacity="0.1" fill="#022D42" width="2.4" height="2.4"/>
|
|
33
|
-
<rect x="16" y="27.9" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
34
|
-
<rect x="16" y="31" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
35
|
-
<rect x="16" y="34.1" opacity="0.25" fill="#022D42" width="2.4" height="2.4"/>
|
|
36
|
-
</g>
|
|
37
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M208 256C216.8 256 224 263.2 224 272V368C224 376.8 216.8 384 208 384H112C103.2 384 96 376.8 96 368V272C96 263.2 103.2 256 112 256H208zM128 0C141.3 0 152 10.75 152 24V64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0zM400 192H48V448C48 456.8 55.16 464 64 464H384C392.8 464 400 456.8 400 448V192z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="36 35.16 30.45 35.16 14 14.84 19.55 14.84 36 35.16" fill="#484f60"/><polygon points="14 35.16 19.55 35.16 36 14.84 30.45 14.84 14 35.16" fill="#484f60"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><g id="a"><g id="b"><g><g opacity=".75"><path d="M16.58,29.12c-.99,0-1.8,.81-1.8,1.8s.81,1.8,1.8,1.8,1.8-.81,1.8-1.8-.81-1.8-1.8-1.8Z" fill="#484f60"/><path d="M16.51,24.98c-.67,0-1.38-.52-1.57-1.16l-2.31-5.61c-.19-.64,.19-1.22,.86-1.28l19.71-2.51c.67-.06,1.12,.42,1,1.08l-.89,3.99c.66,.15,1.3,.36,1.91,.63l1.38-6.84c.12-.66-.34-1.15-1-1.08l-24.68,2.93c-.67,.06-1.06,.64-.87,1.28l3.34,9.44c.19,.64,.89,1.17,1.56,1.17h5.92c.19-.71,.45-1.38,.77-2.02h-5.13Z" fill="#484f60"/><path d="M39.01,11.31c-.66,.14-1.27,.79-1.37,1.46l-.42,2.9c-.1,.66,.31,.98,.9,.7,.59-.28,1.19-1.04,1.33-1.7l.51-2.42c.14-.66-.28-1.08-.94-.94h-.02Z" fill="#484f60"/></g><g><path d="M31,21.72c4.41,0,8,3.59,8,8s-3.59,8-8,8-8-3.59-8-8,3.59-8,8-8m0-1c-4.97,0-9,4.03-9,9s4.03,9,9,9,9-4.03,9-9-4.03-9-9-9h0Z" fill="#484f60"/><polygon points="30.63 34.72 26.79 29.33 28.31 28.25 30.34 31.11 33.54 24.72 35.21 25.55 30.63 34.72" fill="#484f60"/></g></g></g></g><g id="c"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M448 160h64c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32h-64c-17.6 0-32 14.4-32 32v64C416 145.6 430.4 160 448 160zM448 320h128c17.6 0 32-14.4 32-32V224c0-17.6-14.4-32-32-32h-128c-17.6 0-32 14.4-32 32v64C416 305.6 430.4 320 448 320zM224 320h128c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32H224C206.4 32 192 46.4 192 64v224C192 305.6 206.4 320 224 320zM640 415.1c0 17.6-14.4 32-32 31.1l-66.88-.0011c1.787 5.027 2.907 10.36 2.907 16c0 26.51-21.5 48-48.01 48c-26.51 0-47.99-21.49-47.99-48c0-5.641 1.141-10.97 2.928-16H253.1C254.9 453 256 458.4 256 464C256 490.5 234.5 512 208 512S160 490.5 160 464c0-5.641 1.13-10.97 2.917-16l-66.92 .0011C78.4 448 64 433.6 64 415.1V80C64 71.16 56.84 64 48 64H31.1C14.4 64 0 49.6 0 32S14.4 0 31.1 0H64c35.2 0 64 28.8 64 64v320h480C625.6 384 640 398.4 640 415.1z"/></svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512">
|
|
2
|
-
<!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. -->
|
|
3
|
-
<path
|
|
4
|
-
d="M96 0C107.5 0 117.4 8.19 119.6 19.51L121.1 32H541.8C562.1 32 578.3 52.25 572.6 72.66L518.6 264.7C514.7 278.5 502.1 288 487.8 288H170.7L179.9 336H488C501.3 336 512 346.7 512 360C512 373.3 501.3 384 488 384H159.1C148.5 384 138.6 375.8 136.4 364.5L76.14 48H24C10.75 48 0 37.25 0 24C0 10.75 10.75 0 24 0H96zM128 464C128 437.5 149.5 416 176 416C202.5 416 224 437.5 224 464C224 490.5 202.5 512 176 512C149.5 512 128 490.5 128 464zM512 464C512 490.5 490.5 512 464 512C437.5 512 416 490.5 416 464C416 437.5 437.5 416 464 416C490.5 416 512 437.5 512 464z"/>
|
|
5
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M35.39,18.12H14.62L10,29.66H40ZM23,19.29H27l.1,1.6H22.87Zm-.13,2h4.32l.12,1.81H22.72Zm-.15,2.3h4.62l.14,2.08h-4.9ZM17.9,19.29H22l-.16,1.6H17.54Zm-.46,2h4.32l-.18,1.81H17Zm-.53,2.3h4.62l-.2,2.08h-4.9Zm-1.16,5.06.55-2.42H27.49l.16,2.42ZM28,19.29H32.1l.36,1.6H28.2Zm.2,2h4.32L33,23.12H28.42Zm.23,2.3h4.62l.48,2.08h-4.9Zm.5,5.06-.24-2.42h5l.55,2.42Z" fill="#484f60"/><path d="M10,29.66v9.23H40V29.66Zm27.69,6.92H12.31V32H37.69Z" fill="#484f60"/><path d="M15.63,11.11v7.58H34.37V11.11Zm17.31,6.15H17.06V12.54H32.94Z" fill="#484f60"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Pro 6.1.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M512 32C547.3 32 576 60.65 576 96V128H0V96C0 60.65 28.65 32 64 32H512zM576 416C576 451.3 547.3 480 512 480H64C28.65 480 0 451.3 0 416V224H576V416zM112 352C103.2 352 96 359.2 96 368C96 376.8 103.2 384 112 384H176C184.8 384 192 376.8 192 368C192 359.2 184.8 352 176 352H112zM240 384H368C376.8 384 384 376.8 384 368C384 359.2 376.8 352 368 352H240C231.2 352 224 359.2 224 368C224 376.8 231.2 384 240 384z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="15.35" y="16.56" width="15.14" height="10.94" transform="translate(-1.83 2.08) rotate(-5)" fill="#484f60"/><path d="M38.5,18.1l-6.9.61L32.41,28l-7.63.67a3.76,3.76,0,0,1,1.43,2.25l7.25-.63A3.83,3.83,0,0,1,41,29.6l1-.1-.52-6Zm.29,5.84-3.91.34a.51.51,0,0,1-.55-.46L34,20.1a.49.49,0,0,1,.45-.54l2.27-.2a.5.5,0,0,1,.48.25l2,3.59A.5.5,0,0,1,38.79,23.94Z" fill="#484f60"/><path d="M19.66,29.09a3.8,3.8,0,0,0-1,2.46l-.74.07-1.82-.94L16,29.41Z" fill="#484f60"/><path d="M34.56,30.62a2.74,2.74,0,1,0,2.49-3A2.73,2.73,0,0,0,34.56,30.62Z" fill="#484f60"/><path d="M19.74,31.91a2.74,2.74,0,1,0,2.49-3A2.74,2.74,0,0,0,19.74,31.91Z" fill="#484f60"/><rect x="7.96" y="17.63" width="5" height="1" transform="translate(-1.54 0.98) rotate(-5)" fill="#484f60"/><rect x="11.02" y="29.71" width="3" height="1" transform="translate(-2.59 1.21) rotate(-5)" fill="#484f60"/><rect x="9.48" y="23.53" width="4" height="1" transform="matrix(1, -0.09, 0.09, 1, -2.05, 1.09)" fill="#484f60"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="12.54 38.16 12 37.62 14.85 29.64 20.52 35.31 12.54 38.16" fill="#484f60"/><rect x="16.33" y="20.52" width="17.99" height="8.64" transform="translate(-10.15 25.18) rotate(-45)" fill="#484f60"/><path d="M37.54,18.73,36,20.32l-6.11-6.1,1.59-1.59a1.55,1.55,0,0,1,2.2,0l3.91,3.9A1.55,1.55,0,0,1,37.54,18.73Z" fill="#484f60"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M352 256C352 238.3 366.3 224 384 224C401.7 224 416 238.3 416 256C416 273.7 401.7 288 384 288C366.3 288 352 273.7 352 256zM192 256C192 238.3 206.3 224 224 224C241.7 224 256 238.3 256 256C256 273.7 241.7 288 224 288C206.3 288 192 273.7 192 256zM96 256C96 273.7 81.67 288 64 288C46.33 288 32 273.7 32 256C32 238.3 46.33 224 64 224C81.67 224 96 238.3 96 256z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M64 360c30.9 0 56 25.1 56 56s-25.1 56-56 56s-56-25.1-56-56s25.1-56 56-56zm0-160c30.9 0 56 25.1 56 56s-25.1 56-56 56s-56-25.1-56-56s25.1-56 56-56zM120 96c0 30.9-25.1 56-56 56S8 126.9 8 96S33.1 40 64 40s56 25.1 56 56z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M32 32C14.3 32 0 46.3 0 64v96c0 17.7 14.3 32 32 32s32-14.3 32-32V96h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM64 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V352zM320 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h64v64c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32H320zM448 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32V352z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Pro 6.1.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M0 64C0 28.65 28.65 0 64 0H224V128C224 145.7 238.3 160 256 160H384V198.6C310.1 219.5 256 287.4 256 368C256 427.1 285.1 479.3 329.7 511.3C326.6 511.7 323.3 512 320 512H64C28.65 512 0 483.3 0 448V64zM256 128V0L384 128H256zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM432 320C445.3 320 456 309.3 456 296C456 282.7 445.3 272 432 272C418.7 272 408 282.7 408 296C408 309.3 418.7 320 432 320zM416 384L416 432C407.2 432 400 439.2 400 448C400 456.8 407.2 464 416 464H448C456.8 464 464 456.8 464 448C464 439.2 456.8 432 448 432V368C448 359.2 440.8 352 432 352H416C407.2 352 400 359.2 400 368C400 376.8 407.2 384 416 384z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M568.1 303l-80-80c-9.375-9.375-24.56-9.375-33.94 0s-9.375 24.56 0 33.94L494.1 296H216C202.8 296 192 306.8 192 320s10.75 24 24 24h278.1l-39.03 39.03C450.3 387.7 448 393.8 448 400s2.344 12.28 7.031 16.97c9.375 9.375 24.56 9.375 33.94 0l80-80C578.3 327.6 578.3 312.4 568.1 303zM360 384c-13.25 0-24 10.74-24 24V448c0 8.836-7.164 16-16 16H64.02c-8.836 0-16-7.164-16-16L48 64.13c0-8.836 7.164-16 16-16h160L224 128c0 17.67 14.33 32 32 32h79.1v72c0 13.25 10.74 24 23.1 24S384 245.3 384 232V138.6c0-16.98-6.742-33.26-18.75-45.26l-74.63-74.64C278.6 6.742 262.3 0 245.4 0H63.1C28.65 0-.002 28.66 0 64l.0065 384c.002 35.34 28.65 64 64 64H320c35.2 0 64-28.8 64-64v-40C384 394.7 373.3 384 360 384z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M32 64C32 28.7 60.7 0 96 0H256V128c0 17.7 14.3 32 32 32H416V288H248c-13.3 0-24 10.7-24 24s10.7 24 24 24H416V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V64zM416 336V288H526.1l-39-39c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l80 80c9.4 9.4 9.4 24.6 0 33.9l-80 80c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l39-39H416zm0-208H288V0L416 128z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M320 464C328.8 464 336 456.8 336 448V416H384V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V416H48V448C48 456.8 55.16 464 64 464H320zM256 160C238.3 160 224 145.7 224 128V48H64C55.16 48 48 55.16 48 64V192H0V64C0 28.65 28.65 0 64 0H229.5C246.5 0 262.7 6.743 274.7 18.75L365.3 109.3C377.3 121.3 384 137.5 384 154.5V192H336V160H256zM88 224C118.9 224 144 249.1 144 280C144 310.9 118.9 336 88 336H80V368C80 376.8 72.84 384 64 384C55.16 384 48 376.8 48 368V240C48 231.2 55.16 224 64 224H88zM112 280C112 266.7 101.3 256 88 256H80V304H88C101.3 304 112 293.3 112 280zM160 240C160 231.2 167.2 224 176 224H200C226.5 224 248 245.5 248 272V336C248 362.5 226.5 384 200 384H176C167.2 384 160 376.8 160 368V240zM192 352H200C208.8 352 216 344.8 216 336V272C216 263.2 208.8 256 200 256H192V352zM336 224C344.8 224 352 231.2 352 240C352 248.8 344.8 256 336 256H304V288H336C344.8 288 352 295.2 352 304C352 312.8 344.8 320 336 320H304V368C304 376.8 296.8 384 288 384C279.2 384 272 376.8 272 368V240C272 231.2 279.2 224 288 224H336z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 224H88c30.9 0 56 25.1 56 56s-25.1 56-56 56H80v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V320 240c0-8.8 7.2-16 16-16zm24 80c13.3 0 24-10.7 24-24s-10.7-24-24-24H80v48h8zm72-64c0-8.8 7.2-16 16-16h24c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H176c-8.8 0-16-7.2-16-16V240zm32 112h8c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16h-8v96zm96-128h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H304v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H304v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V304 240c0-8.8 7.2-16 16-16z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M200 0H312l17.2 78.4c15.8 6.5 30.6 15.1 44 25.4l76.5-24.4 56 97-59.4 54.1c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l59.4 54.1-56 97-76.5-24.4c-13.4 10.3-28.2 18.9-44 25.4L312 512H200l-17.2-78.4c-15.8-6.5-30.6-15.1-44-25.4L62.3 432.5l-56-97 59.4-54.1C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L6.3 176.5l56-97 76.5 24.4c13.4-10.3 28.2-18.9 44-25.4L200 0zm56 336c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M48 144c26.5 0 48-21.5 48-48s-21.5-48-48-48S0 69.5 0 96s21.5 48 48 48zm0 160c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM96 416c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM208 144c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm48 112c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM208 464c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48z"/></svg>
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
|
|
4
|
-
viewBox="0 0 306.1 269.8" style="enable-background:new 0 0 306.1 269.8;" xml:space="preserve">
|
|
5
|
-
<style type="text/css">
|
|
6
|
-
.st0{fill:#FFFFFF;}
|
|
7
|
-
.st1{fill:#CC0066;}
|
|
8
|
-
</style>
|
|
9
|
-
<g>
|
|
10
|
-
<g>
|
|
11
|
-
<path class="st0" d="M0,20v229.8c0,11,9,20,20,20h137.3c103.8,0,148.8-58.1,148.8-135.2C306.1,57.9,261.1,0,157.3,0H20
|
|
12
|
-
C9,0,0,9,0,20z"/>
|
|
13
|
-
<path class="st1" d="M91.9,56.4v169.8h73.9c67.1,0,96.2-37.9,96.2-91.5c0-51.3-29.1-91.1-96.2-91.1h-61.1
|
|
14
|
-
C97.6,43.6,91.9,49.4,91.9,56.4z"/>
|
|
15
|
-
<g>
|
|
16
|
-
<g>
|
|
17
|
-
<path d="M157.3,251.5H37.9c-10.6,0-19.2-8.6-19.2-19.2V37.6c0-10.6,8.6-19.2,19.2-19.2h119.4c113.3,0,130.2,72.9,130.2,116.3
|
|
18
|
-
C287.5,210,241.2,251.5,157.3,251.5z M37.9,24.8c-7.1,0-12.8,5.7-12.8,12.8v194.7c0,7.1,5.7,12.8,12.8,12.8h119.4
|
|
19
|
-
c79.8,0,123.8-39.2,123.8-110.4c0-95.6-77.6-109.9-123.8-109.9H37.9z"/>
|
|
20
|
-
</g>
|
|
21
|
-
</g>
|
|
22
|
-
</g>
|
|
23
|
-
<g>
|
|
24
|
-
<path class="st0" d="M117.9,111.8c2.6,0,5,0.4,7.3,1.2c2.3,0.8,4.2,2.1,5.9,3.7c1.6,1.7,2.9,3.8,3.9,6.2c0.9,2.5,1.4,5.4,1.4,8.8
|
|
25
|
-
c0,3-0.4,5.7-1.1,8.2c-0.8,2.5-1.9,4.7-3.4,6.5c-1.5,1.8-3.4,3.2-5.7,4.3c-2.3,1-5,1.6-8.1,1.6h-17.5v-40.6H117.9z M117.3,144.9
|
|
26
|
-
c1.3,0,2.5-0.2,3.8-0.6c1.2-0.4,2.3-1.1,3.2-2.1c0.9-1,1.7-2.2,2.3-3.8c0.6-1.6,0.9-3.4,0.9-5.7c0-2-0.2-3.9-0.6-5.5
|
|
27
|
-
c-0.4-1.6-1.1-3.1-2-4.2s-2.1-2.1-3.6-2.7c-1.5-0.6-3.3-0.9-5.5-0.9h-6.4v25.6H117.3z"/>
|
|
28
|
-
<path class="st0" d="M172.5,111.8v7.5h-21.4v8.7h19.7v6.9h-19.7v9.9H173v7.5h-30.8v-40.6H172.5z"/>
|
|
29
|
-
<path class="st0" d="M203.1,111.8l15.2,40.6H209l-3.1-9h-15.2l-3.2,9h-9l15.3-40.6H203.1z M203.6,136.7l-5.1-14.9h-0.1l-5.3,14.9
|
|
30
|
-
H203.6z"/>
|
|
31
|
-
<path class="st0" d="M232.8,111.8v33.1h19.8v7.5h-28.7v-40.6H232.8z"/>
|
|
32
|
-
</g>
|
|
33
|
-
<g>
|
|
34
|
-
<circle cx="58.5" cy="132.1" r="18.7"/>
|
|
35
|
-
</g>
|
|
36
|
-
<path d="M72.6,226.2L72.6,226.2c-15.7,0-28.3-12.7-28.3-28.3v-22.1c0-7.8,6.3-14.2,14.2-14.2h0c7.8,0,14.2,6.3,14.2,14.2V226.2z"/>
|
|
37
|
-
</g>
|
|
38
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M288 32V210.7l41.4-41.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0l-96-96c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 210.7V32c0-17.7 14.3-32 32-32s32 14.3 32 32zM48 320h76.2c12.1 0 23.2 6.8 28.6 17.7l14.3 28.6c5.4 10.8 16.5 17.7 28.6 17.7H316.2c12.1 0 23.2-6.8 28.6-17.7l14.3-28.6c5.4-10.8 16.5-17.7 28.6-17.7H464c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M88 48C101.3 48 112 58.75 112 72V120C112 133.3 101.3 144 88 144H40C26.75 144 16 133.3 16 120V72C16 58.75 26.75 48 40 48H88zM488 72C501.3 72 512 82.75 512 96C512 109.3 501.3 120 488 120H184C170.7 120 160 109.3 160 96C160 82.75 170.7 72 184 72H488zM488 232C501.3 232 512 242.7 512 256C512 269.3 501.3 280 488 280H184C170.7 280 160 269.3 160 256C160 242.7 170.7 232 184 232H488zM488 392C501.3 392 512 402.7 512 416C512 429.3 501.3 440 488 440H184C170.7 440 160 429.3 160 416C160 402.7 170.7 392 184 392H488zM16 232C16 218.7 26.75 208 40 208H88C101.3 208 112 218.7 112 232V280C112 293.3 101.3 304 88 304H40C26.75 304 16 293.3 16 280V232zM88 368C101.3 368 112 378.7 112 392V440C112 453.3 101.3 464 88 464H40C26.75 464 16 453.3 16 440V392C16 378.7 26.75 368 40 368H88z"/></svg>
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51 51">
|
|
2
|
-
<rect x="26.5" y="13" width="14" height="7" fill="#4d5050"/>
|
|
3
|
-
<rect x="10.5" y="13" width="14" height="7" fill="#4d5050"/>
|
|
4
|
-
<rect x="10.5" y="22" width="14" height="7" fill="#4d5050"/>
|
|
5
|
-
<rect x="26.5" y="22" width="14" height="7" fill="#4d5050"/>
|
|
6
|
-
<rect x="10.5" y="31" width="14" height="7" fill="#4d5050"/>
|
|
7
|
-
<rect x="26.5" y="31" width="14" height="7" fill="#4d5050"/>
|
|
8
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M168.3 499.2C116.1 435 0 279.4 0 192C0 85.96 85.96 0 192 0C298 0 384 85.96 384 192C384 279.4 267 435 215.7 499.2C203.4 514.5 180.6 514.5 168.3 499.2H168.3zM192 256C227.3 256 256 227.3 256 192C256 156.7 227.3 128 192 128C156.7 128 128 156.7 128 192C128 227.3 156.7 256 192 256z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M32.65,21.67H17.35c-2.81,0-3.06,2.29-3.06,5.12v8.09c0,2.83.25,5.12,3.06,5.12h15.3c2.81,0,3.06-2.29,3.06-5.12V26.79C35.71,24,35.46,21.67,32.65,21.67ZM20.22,37.49l2.61-6.32a3.82,3.82,0,1,1,4.35,0l2.6,6.32Z" fill="#484f60"/><path d="M29.51,16.64c0-3.6-2-4.07-4.51-4.07h0c-2.49,0-4.51.47-4.51,4.07v3h-2.7v-3C17.79,11.62,21,10,25,10h0c4,0,7.21,1.62,7.21,6.64v3h-2.7Z" fill="#484f60"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Pro 6.1.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M432 64C387.8 64 352 99.82 352 144V192H384C419.3 192 448 220.7 448 256V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V256C0 220.7 28.65 192 64 192H288V144C288 64.47 352.5 0 432 0C511.5 0 576 64.47 576 144V192C576 209.7 561.7 224 544 224C526.3 224 512 209.7 512 192V144C512 99.82 476.2 64 432 64zM256 384C273.7 384 288 369.7 288 352C288 334.3 273.7 320 256 320H192C174.3 320 160 334.3 160 352C160 369.7 174.3 384 192 384H256z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.1.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M224 0C303.5 0 368 64.47 368 144V192H384C419.3 192 448 220.7 448 256V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V256C0 220.7 28.65 192 64 192H80V144C80 64.47 144.5 0 224 0zM224 64C179.8 64 144 99.82 144 144V192H304V144C304 99.82 268.2 64 224 64zM256 320C256 302.3 241.7 288 224 288C206.3 288 192 302.3 192 320V384C192 401.7 206.3 416 224 416C241.7 416 256 401.7 256 384V320z"/></svg>
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" id="Laag_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
-
viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve">
|
|
5
|
-
<g>
|
|
6
|
-
<path fill="#29363E" d="M27.8,15.5c-3.4-3.4-8.9-3.4-12.3,0c-3.4,3.4-3.4,8.9,0,12.3c3.4,3.4,8.9,3.4,12.3,0
|
|
7
|
-
C31.2,24.4,31.2,18.9,27.8,15.5z M26.4,26.4c-2.6,2.6-6.8,2.6-9.4,0c-2.6-2.6-2.6-6.8,0-9.4c2.6-2.6,6.8-2.6,9.4,0
|
|
8
|
-
C29,19.6,29,23.8,26.4,26.4z"/>
|
|
9
|
-
<path fill="#29363E" d="M36.4,32.8l-4.3-4.3c-0.8-0.8-2.1-0.8-2.9,0l-0.7,0.7c-0.8,0.8-0.8,2.1,0,2.9l4.3,4.3
|
|
10
|
-
c0.8,0.8,2.1,0.8,2.9,0l0.7-0.7C37.2,34.9,37.2,33.6,36.4,32.8z"/>
|
|
11
|
-
</g>
|
|
12
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24"><path d="M12,11.5A2.5,2.5 0 0,1 9.5,9A2.5,2.5 0 0,1 12,6.5A2.5,2.5 0 0,1 14.5,9A2.5,2.5 0 0,1 12,11.5M12,2A7,7 0 0,0 5,9C5,14.25 12,22 12,22C12,22 19,14.25 19,9A7,7 0 0,0 12,2Z" /></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="22" y="32.17" width="18" height="4" transform="translate(62 68.33) rotate(180)" fill="#484f60"/><rect x="22" y="26.17" width="18" height="4" transform="translate(62 56.33) rotate(180)" fill="#484f60"/><rect x="22" y="20.17" width="18" height="4" transform="translate(62 44.33) rotate(180)" fill="#484f60"/><rect x="22" y="14.17" width="18" height="4" transform="translate(62 32.33) rotate(180)" fill="#484f60"/><rect x="10" y="14.17" width="10" height="22" transform="translate(30 50.33) rotate(180)" fill="#484f60"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM499.3 347.3C505.6 341.1 505.6 330.9 499.3 324.7C493.1 318.4 482.9 318.4 476.7 324.7L416 385.4L387.3 356.7C381.1 350.4 370.9 350.4 364.7 356.7C358.4 362.9 358.4 373.1 364.7 379.3L404.7 419.3C410.9 425.6 421.1 425.6 427.3 419.3L499.3 347.3zM320 0C355.3 0 384 28.65 384 64V198.6C310.1 219.5 256 287.4 256 368C256 427.1 285.1 479.3 329.7 511.3C326.6 511.7 323.3 512 320 512H64C28.65 512 0 483.3 0 448V64C0 28.65 28.65 0 64 0H320zM80 128C71.16 128 64 135.2 64 144C64 152.8 71.16 160 80 160H304C312.8 160 320 152.8 320 144C320 135.2 312.8 128 304 128H80zM80 256H240C248.8 256 256 248.8 256 240C256 231.2 248.8 224 240 224H80C71.16 224 64 231.2 64 240C64 248.8 71.16 256 80 256zM80 352H176C184.8 352 192 344.8 192 336C192 327.2 184.8 320 176 320H80C71.16 320 64 327.2 64 336C64 344.8 71.16 352 80 352z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24"><path d="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z" /></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M448-.0004H64c-35.25 0-64 28.75-64 63.1v287.1c0 35.25 28.75 63.1 64 63.1h96v83.98c0 9.836 11.02 15.55 19.12 9.7L304 415.1H448c35.25 0 64-28.75 64-63.1V63.1C512 28.75 483.3-.0004 448-.0004zM464 352c0 8.75-7.25 16-16 16h-160l-80 60v-60H64c-8.75 0-16-7.25-16-16V64c0-8.75 7.25-16 16-16h384c8.75 0 16 7.25 16 16V352zM124.4 192.6C113.6 189.5 103.2 187.2 104.2 181.5c.7813-4.5 10.28-6.562 21.5-4.906c4.156 .6562 8.75 2.094 13.09 3.594c8.375 2.906 17.47-1.562 20.34-9.906c2.875-8.344-1.562-17.47-9.906-20.34C143.1 147.8 136.5 145.9 130.6 145c-30.69-4.812-53.94 7.719-58 31.09c-5.656 33.03 26.5 42.47 38.63 46c13.72 3.947 25.62 6.432 24.56 12.34C135 239 125.7 241.1 114.3 239.4C107.9 238.4 100.4 235.4 93.38 232.9c-8.375-2.969-16 1.875-18.97 10.19S77.19 261.1 85.5 264.1C92.81 266.8 101.1 269.8 109.4 271C113.7 271.7 117.9 272 121.1 272c24.28 0 41.94-12.03 45.38-32.13C173.1 206.5 141.4 197.5 124.4 192.6zM396.4 192.6C385.6 189.5 375.2 187.2 376.2 181.5c.7813-4.5 10.31-6.562 21.5-4.906c4.156 .6562 8.75 2.094 13.09 3.594c8.406 2.906 17.47-1.562 20.34-9.906c2.875-8.344-1.562-17.47-9.906-20.34c-6.156-2.125-12.69-4.062-18.59-4.969c-30.75-4.812-53.97 7.719-58 31.09c-5.656 33.03 26.5 42.47 38.63 46c13.72 3.947 25.62 6.432 24.56 12.34c-.7813 4.562-10.12 6.656-21.56 4.938c-6.342-.9883-13.9-3.939-20.88-6.438c-8.375-2.969-16 1.875-18.97 10.19s2.781 17.97 11.09 20.97c7.312 2.656 15.62 5.656 23.88 6.906C385.7 271.7 389.9 272 393.1 272c24.28 0 41.94-12.03 45.38-32.13C445.1 206.5 413.4 197.5 396.4 192.6zM309.1 144.8c-6.469-2.062-13.72 .0625-17.88 5.594L256 197.3L220.8 150.4C216.7 144.9 209.4 142.7 202.9 144.8C196.4 147 192 153.1 192 160v96c0 8.844 7.156 16 16 16S224 264.8 224 256V208l19.19 25.59c6.062 8.062 19.56 8.062 25.62 0L288 208V256c0 8.844 7.156 16 16 16S320 264.8 320 256V160C320 153.1 315.6 147 309.1 144.8z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M0 64C0 28.7 28.7 0 64 0H448c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H309.3L185.6 508.8c-4.8 3.6-11.3 4.2-16.8 1.5s-8.8-8.2-8.8-14.3V416H64c-35.3 0-64-28.7-64-64V64zm202.9 80.8C196.4 147 192 153.1 192 160v96c0 8.8 7.2 16 16 16s16-7.2 16-16V208l19.2 25.6c3 4 7.8 6.4 12.8 6.4s9.8-2.4 12.8-6.4L288 208v48c0 8.8 7.2 16 16 16s16-7.2 16-16V160c0-6.9-4.4-13-10.9-15.2s-13.7 .1-17.9 5.6L256 197.3l-35.2-46.9c-4.1-5.5-11.3-7.8-17.9-5.6zm173.1 38c0-1.1 .2-1.6 .4-1.9c.3-.4 .9-1.2 2.4-2c3.1-1.8 8-3 12.9-2.9c6.1 .1 12.9 1.4 20.1 3.4c8.5 2.3 17.3-2.8 19.6-11.3s-2.8-17.3-11.3-19.6c-8.2-2.2-17.9-4.3-27.9-4.4c-9.3-.1-20.4 1.9-29.7 7.4c-9.9 5.9-18.6 16.4-18.5 31.6c.1 14.7 8.8 24 17.7 29.4c7.6 4.6 17.1 7.4 24.3 9.6l1.2 .4c8.5 2.6 14.2 4.5 18 6.9c2.7 1.7 2.7 2.4 2.7 3.1l0 .2c0 1.6-.3 2.3-.6 2.7c-.3 .5-.9 1.2-2.1 2c-2.8 1.7-7.5 2.9-12.8 2.8c-7-.2-13.5-2.4-22.6-5.5l0 0 0 0c-1.5-.5-3.2-1.1-4.9-1.6c-8.4-2.8-17.4 1.7-20.2 10.1s1.7 17.4 10.1 20.2c1.2 .4 2.6 .9 4 1.4l0 0 0 0c8.8 3 20.4 7 32.6 7.4c9.8 .3 21.2-1.6 30.7-7.6c10.2-6.4 18-17.3 17.8-32.3c-.2-14.7-8.5-24.2-17.6-29.9c-8-5-17.9-8-25.2-10.2l-.6-.2c-8.6-2.6-14.4-4.4-18.2-6.8c-1.6-1-2.1-1.6-2.2-1.7c0-.1 0-.2 0-.4zm-272 0c0-1.1 .2-1.6 .4-1.9c.3-.4 .9-1.2 2.4-2c3.1-1.8 8-3 12.9-2.9c6.6 .1 16.7 1.6 23.3 3.4c8.5 2.3 17.3-2.8 19.6-11.3s-2.8-17.3-11.3-19.6c-8.8-2.4-21.6-4.3-31.1-4.4c-9.3-.1-20.4 1.9-29.7 7.4C80.6 157.3 72 167.8 72 183c.1 14.7 8.8 24 17.7 29.4c7.6 4.6 17.1 7.4 24.3 9.6l0 0 1.2 .4c8.5 2.6 14.2 4.5 18 6.9c2.7 1.7 2.7 2.4 2.7 3.1l0 .2c0 1.6-.3 2.3-.6 2.7c-.3 .5-.9 1.2-2.1 2c-2.8 1.7-7.5 2.9-12.8 2.8c-7.2-.2-14.2-2.6-23.7-5.8l0 0 0 0c-1.3-.4-2.7-.9-4.1-1.4c-8.4-2.8-17.4 1.7-20.2 10.1s1.7 17.4 10.1 20.2c1.1 .4 2.4 .8 3.6 1.2l0 0 0 0c9 3.1 20.9 7.2 33.2 7.6c9.8 .3 21.2-1.6 30.7-7.6c10.2-6.4 18-17.3 17.8-32.3c-.2-14.7-8.5-24.2-17.6-29.9c-8-5-17.9-8-25.2-10.2l-.6-.2c-8.6-2.6-14.4-4.4-18.3-6.8c-1.6-1-2.1-1.6-2.2-1.7c0-.1 0-.2 0-.4z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M288 64v96H224c-35.3 0-64 28.7-64 64v64H64V64H288zM64 352h96v96c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V224c0-35.3-28.7-64-64-64H352V64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64V288c0 35.3 28.7 64 64 64zM448 224V448H224V352h64c35.3 0 64-28.7 64-64V224h96z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M96 255.1L288 256c17.6 0 32-14.4 32-32V31.1c0-17.6-14.4-31.1-32-31.1L96 0c-17.6 0-32 14.4-32 32V224C64 241.6 78.4 255.1 96 255.1zM416 255.1h128c17.6 0 32-14.4 32-31.1v-128c0-17.6-14.4-32-32-32h-128c-17.6 0-32 14.4-32 32v128C384 241.6 398.4 255.1 416 255.1zM624 384c8.75 0 16-7.25 16-16v-32c0-8.75-7.25-16-16-16h-608C7.25 320 0 327.3 0 336v32C0 376.8 7.25 384 16 384H64v64H16C7.25 448 0 455.3 0 464v32C0 504.8 7.25 512 16 512h608c8.75 0 16-7.25 16-16v-32c0-8.75-7.25-16-16-16H576v-64H624zM288 448H128v-64h160V448zM512 448h-160v-64h160V448z"/></svg>
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
|
|
2
|
-
<path
|
|
3
|
-
d="M31.42,40.17H13.88c-2.16,0-2.72-.56-2.72-2.72V12.88c0-2.15.56-2.71,2.72-2.71h11.6l8.66,8.88v3.43H32.8V19.6l-7.88-8.09h-11c-1.38,0-1.38,0-1.38,1.37V37.45c0,1.37,0,1.37,1.38,1.37H31.42c1.38,0,1.38,0,1.38-1.37V35h1.34v2.43C34.14,39.61,33.58,40.17,31.42,40.17Z"
|
|
4
|
-
fill="#484f60"/>
|
|
5
|
-
<path
|
|
6
|
-
d="M27.83,26.63v4.24h1a3.57,3.57,0,0,0,.78-.06,1.22,1.22,0,0,0,.52-.26,1.44,1.44,0,0,0,.34-.62,4.13,4.13,0,0,0,.13-1.18,3.79,3.79,0,0,0-.13-1.14,1.51,1.51,0,0,0-.37-.62,1.14,1.14,0,0,0-.6-.3,5.93,5.93,0,0,0-1.06-.06Z"
|
|
7
|
-
fill="#484f60"/>
|
|
8
|
-
<path
|
|
9
|
-
d="M21.86,26.63v1.82h.71a3.57,3.57,0,0,0,1-.1A.88.88,0,0,0,24,28a.84.84,0,0,0,.14-.5.8.8,0,0,0-.2-.57.88.88,0,0,0-.52-.29,6.36,6.36,0,0,0-.93,0Z"
|
|
10
|
-
fill="#484f60"/>
|
|
11
|
-
<path
|
|
12
|
-
d="M19.14,24.27v9h19.7v-9Zm6.12,4.24a1.68,1.68,0,0,1-.54.63,1.9,1.9,0,0,1-.67.3,6.57,6.57,0,0,1-1.34.1h-.85V32H20.57V25.54h2.07a7.75,7.75,0,0,1,1.54.1,1.73,1.73,0,0,1,.93.63,2,2,0,0,1,.37,1.25A2,2,0,0,1,25.26,28.51Zm6.45,1.66A2.91,2.91,0,0,1,31,31.31a2.28,2.28,0,0,1-.91.51A4,4,0,0,1,29,32H26.54V25.54H28.9a4.21,4.21,0,0,1,1.22.13,2.08,2.08,0,0,1,1,.59,2.79,2.79,0,0,1,.61,1,4.76,4.76,0,0,1,.21,1.52A4.19,4.19,0,0,1,31.71,30.17Zm5.7-3.54h-3.1v1.52H37v1.08H34.31V32H33V25.54h4.39Z"
|
|
13
|
-
fill="#484f60"/>
|
|
14
|
-
<path d="M25.2,10.84v6.44c0,1.78.27,2,2,2h6.23Z" fill="#484f60"/>
|
|
15
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M374.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-320 320c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l320-320zM128 128c0-35.3-28.7-64-64-64S0 92.7 0 128s28.7 64 64 64s64-28.7 64-64zM384 384c0-35.3-28.7-64-64-64s-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64z"/></svg>
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
|
|
4
|
-
viewBox="-288 379 35 35" enable-background="new -288 379 35 35" xml:space="preserve">
|
|
5
|
-
<path fill="#29363E" d="M-270.5,381.5c-8.3,0-15,6.7-15,15c0,8.3,6.7,15,15,15s15-6.7,15-15C-255.5,388.2-262.2,381.5-270.5,381.5z
|
|
6
|
-
M-261.1,397.3c0,0.9-0.7,1.6-1.6,1.6h-5.5v5.5c0,0.9-0.7,1.6-1.6,1.6h-1.6c-0.9,0-1.6-0.7-1.6-1.6v-5.5h-5.5
|
|
7
|
-
c-0.9,0-1.6-0.7-1.6-1.6v-1.6c0-0.9,0.7-1.6,1.6-1.6h5.5v-5.5c0-0.9,0.7-1.6,1.6-1.6h1.6c0.9,0,1.6,0.7,1.6,1.6v5.5h5.5
|
|
8
|
-
c0.9,0,1.6,0.7,1.6,1.6V397.3z"/>
|
|
9
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><g id="a"><g id="b"><path d="M13.86,27c-.32,0-.58-.26-.58-.57v-9.72H3.58c-.32,0-.58-.26-.58-.57v-2.29c0-.31,.26-.57,.58-.57H13.29V3.57c0-.31,.26-.57,.58-.57h2.28c.31,0,.57,.26,.57,.57V13.29h9.72c.31,0,.57,.26,.57,.57v2.29c0,.31-.26,.57-.57,.57h-9.72v9.72c0,.31-.26,.57-.57,.57h-2.28Z" fill="#484f60"/></g></g><g id="c"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M111.1 48h254.1L400 81.94V160H448V81.94c0-12.73-5.057-24.94-14.06-33.94l-33.94-33.94C391 5.057 378.8 0 366.1 0H111.1C85.49 0 64.01 21.48 64 47.98l.002 82.28c-.002 0 .002 0 0 0L64 160h48.01L111.1 48zM440 192H72C32.3 192 0 224.3 0 264v112c0 13.25 10.75 24 24 24H80V480c0 17.67 14.33 32 32 32h288c17.67 0 32-14.33 32-32v-80h56c13.25 0 24-10.75 24-24v-112C512 224.3 479.7 192 440 192zM384 464H128v-96h256V464zM464 352h-32c0-17.67-14.33-32-32-32h-288c-17.67 0-32 14.33-32 32h-32V264c0-13.23 10.77-24 24-24h368c13.23 0 24 10.77 24 24V352z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.1.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M448 192H64C28.65 192 0 220.7 0 256v96c0 17.67 14.33 32 32 32h32v96c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-96h32c17.67 0 32-14.33 32-32V256C512 220.7 483.3 192 448 192zM384 448H128v-96h256V448zM432 296c-13.25 0-24-10.75-24-24c0-13.27 10.75-24 24-24s24 10.73 24 24C456 285.3 445.3 296 432 296zM128 64h229.5L384 90.51V160h64V77.25c0-8.484-3.375-16.62-9.375-22.62l-45.25-45.25C387.4 3.375 379.2 0 370.8 0H96C78.34 0 64 14.33 64 32v128h64V64z"/></svg>
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
|
|
2
|
-
<g opacity="0.75">
|
|
3
|
-
<polygon points="33.34 25.04 27.34 28.52 33.35 31.97 39.34 28.49 33.34 25.04" fill="#484f60"/>
|
|
4
|
-
<polygon points="33.99 33.08 39.99 29.6 40 36.53 34.01 40.01 33.99 33.08" fill="#484f60" opacity="0.5"/>
|
|
5
|
-
<polygon points="26.72 36.55 26.71 29.63 32.71 33.08 32.72 40.01 26.72 36.55" fill="#484f60" opacity="0.25"/>
|
|
6
|
-
<polygon points="12.78 28.54 18.79 32 24.78 28.52 18.77 25.07 12.78 28.54" fill="#484f60"/>
|
|
7
|
-
<polygon points="19.43 33.1 25.42 29.63 25.44 36.56 19.44 40.03 19.43 33.1" fill="#484f60" opacity="0.5"/>
|
|
8
|
-
<polygon points="12.15 36.58 12.14 29.65 18.15 33.11 18.16 40.04 12.15 36.58" fill="#484f60" opacity="0.25"/>
|
|
9
|
-
<polygon points="32.04 15.89 26.03 12.44 22.09 14.73 27.52 14.73 24.03 18.21 26.05 19.37 32.04 15.89" fill="#484f60"/>
|
|
10
|
-
<polygon points="32.68 17 26.69 20.48 26.7 27.41 32.7 23.93 32.68 17" fill="#484f60" opacity="0.5"/>
|
|
11
|
-
<polygon points="23.1 19.15 19.41 22.83 19.41 23.95 25.42 27.41 25.41 20.48 23.1 19.15" fill="#484f60" opacity="0.25"/>
|
|
12
|
-
</g>
|
|
13
|
-
<polygon points="19.03 16.34 19.03 10.3 14.61 10.3 14.61 16.34 14.61 16.34 10 16.34 16.82 23.16 23.64 16.34 19.03 16.34"
|
|
14
|
-
fill="#484f60"/>
|
|
15
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.1.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M503.7 226.2l-176 151.1c-15.38 13.3-39.69 2.545-39.69-18.16V272.1C132.9 274.3 66.06 312.8 111.4 457.8c5.031 16.09-14.41 28.56-28.06 18.62C39.59 444.6 0 383.8 0 322.3c0-152.2 127.4-184.4 288-186.3V56.02c0-20.67 24.28-31.46 39.69-18.16l176 151.1C514.8 199.4 514.8 216.6 503.7 226.2z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M624 0C615.2 0 608 7.162 608 16V160H32V16C32 7.162 24.84 0 16 0S0 7.162 0 16v480C0 504.8 7.164 512 16 512S32 504.8 32 496V448h576v48c0 8.836 7.164 16 16 16s16-7.164 16-16v-480C640 7.162 632.8 0 624 0zM608 416H32V192h576V416zM384 128h64c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32h-64c-17.67 0-32 14.33-32 32v64C352 113.7 366.3 128 384 128zM384 32h64v64h-64V32zM288 384h64c17.67 0 32-14.33 32-32V288c0-17.67-14.33-32-32-32H288C270.3 256 256 270.3 256 288v64C256 369.7 270.3 384 288 384zM288 288h64v64H288V288zM128 384h64c17.67 0 32-14.33 32-32V288c0-17.67-14.33-32-32-32H128C110.3 256 96 270.3 96 288v64C96 369.7 110.3 384 128 384zM128 288h64v64H128V288z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M608 0c-17.6 0-32 14.4-32 31.1V160H64V31.1C64 14.4 49.6 0 32 0S0 14.4 0 31.1v480h64v-32h512v32h64v-480C640 14.4 625.6 0 608 0zM576 416H64V224h512V416zM368 128h96C472.8 128 480 120.8 480 112v-96C480 7.25 472.8 0 464 0h-96C359.2 0 352 7.25 352 16v96C352 120.8 359.2 128 368 128zM112 384h96C216.8 384 224 376.8 224 368v-96C224 263.2 216.8 256 208 256h-96C103.2 256 96 263.2 96 272v96C96 376.8 103.2 384 112 384zM272 384h96c8.75 0 16-7.25 16-16v-96C384 263.2 376.8 256 368 256h-96C263.2 256 256 263.2 256 272v96C256 376.8 263.2 384 272 384z"/></svg>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<svg width="47px" height="43px" viewBox="0 0 47 43" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<defs>
|
|
4
|
-
<image width="47" height="43" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAAArCAYAAADottG6AAAABHNCSVQICAgIfAhkiAAAAHtJREFUWIXt18EJwCAQAEENKSNv60gVgVQYSBWpw3f6OHvQx3Kw8xcX0QNrRERJaqMDVhhPMZ5iPMV4ivEU4ynGU/bZhb3/5Xm/pc3v6yytHdPrq58RiPEUHywl9bUxnuKDpaS+NsZTUsennjapT95RSTGeYjzFeErq+AEBrixGEVJ5mAAAAABJRU5ErkJggg==" id="img_1" />
|
|
5
|
-
</defs>
|
|
6
|
-
<use xlink:href="#img_1" fill="#FFFFFF" stroke="none" />
|
|
7
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><g id="b"><g><path d="M2,2.17H28V28.17H2V2.17Zm24.76,1.24H3.24V26.93H26.76V3.4Z" fill="#484f60"/><polygon points="23.71 13.42 18.41 13.42 18.41 10.43 14.12 14.72 18.41 19.01 18.41 16.02 23.71 16.02 23.71 13.42" fill="#484f60"/><rect x="2" y="2.17" width="9" height="26" fill="#484f60"/></g></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.0.0-beta1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --><path d="M464 48v416h-416v-416H464zM512 0H0v512h512V0z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.0.0-beta1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --><path d="M0 0h512v512H0V0z"/></svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
|
2
|
-
<path d="M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z"/>
|
|
3
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M40,29.15v-.68a5.28,5.28,0,0,0-1.34-3.25L24.78,11.34A5.34,5.34,0,0,0,21.53,10H11.9A1.91,1.91,0,0,0,10,11.9v9.63a5.28,5.28,0,0,0,1.34,3.25L25.22,38.66A5.28,5.28,0,0,0,28.47,40h.68a5.28,5.28,0,0,0,3.24-1.34l6.27-6.27A5.28,5.28,0,0,0,40,29.15ZM13.13,16.72a2.54,2.54,0,1,1,3.59,0A2.55,2.55,0,0,1,13.13,16.72Zm15.9,19L17.84,24.55l1.34-1.34L30.37,34.4Zm2.69-2.69L20.52,21.87l1.35-1.35,11.19,11.2Zm2.68-2.69L23.21,19.18l1.34-1.34L35.75,29Z" fill="#484f60"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M32 32C14.3 32 0 46.3 0 64v64c0 17.7 14.3 32 32 32s32-14.3 32-32V96h96l0 320H128c-17.7 0-32 14.3-32 32s14.3 32 32 32H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H224l0-320h96v32c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32H192 32zM352 224c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32s32-14.3 32-32h64l0 128H432c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H512l0-128h64c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-17.7-14.3-32-32-32H352z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M0 32H32 192h64H416h32V64v64 32H384V128 96H256l0 320h48 32v64H304 144 112V416h32 48l0-320H64v32 32H0V128 64 32z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="10" y="12.67" width="30" height="7" fill="#484f60"/><rect x="10" y="21.67" width="30" height="7" fill="#484f60"/><rect x="10" y="30.67" width="30" height="7" fill="#484f60"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="10" y="14.17" width="30" height="4" fill="#484f60"/><rect x="10" y="20.17" width="30" height="4" fill="#484f60"/><rect x="10" y="26.17" width="30" height="4" fill="#484f60"/><rect x="10" y="32.17" width="30" height="4" fill="#484f60"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg preserveAspectRatio="none" version="1.1" viewBox="0 0 50 50" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g transform=" translate(14 10)"><path d="M 0 0 L 0 18.215 C 0 19.99 1.439 21.429 3.215 21.429 L 15 21.429 C 16.775 21.429 18.215 19.99 18.215 18.215 L 18.215 0 L 0 0 Z M 4.287 19.286 L 2.143 19.286 L 2.143 2.143 L 4.287 2.143 L 4.287 19.286 Z M 10.18 19.286 L 8.037 19.286 L 8.037 2.143 L 10.18 2.143 L 10.18 19.286 Z M 16.072 19.286 L 13.93 19.286 L 13.93 2.143 L 16.072 2.143 L 16.072 19.286 Z" fill="#1E2930" transform=" translate(1.891 8.571)" /><path d="M 18.213 2.143 L 10.713 2.143 C 11.305 2.143 11.785 1.664 11.785 1.071 C 11.785 0.479 11.305 0 10.713 0 L 9.643 0 C 9.051 0 8.57 0.479 8.57 1.071 C 8.57 1.664 9.051 2.143 9.643 2.143 L 2.143 2.143 C 0.959 2.143 0 3.103 0 4.286 L 0 5.357 C 0 6.541 0.959 6.429 2.143 6.429 L 18.213 6.429 C 19.397 6.429 20.357 6.541 20.357 5.357 L 20.357 4.286 C 20.357 3.103 19.397 2.143 18.213 2.143 Z" fill="#1E2930" transform=" translate(0.821 0)" /></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.1.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M144 400C144 408.8 136.8 416 128 416C119.2 416 112 408.8 112 400V176C112 167.2 119.2 160 128 160C136.8 160 144 167.2 144 176V400zM240 400C240 408.8 232.8 416 224 416C215.2 416 208 408.8 208 400V176C208 167.2 215.2 160 224 160C232.8 160 240 167.2 240 176V400zM336 400C336 408.8 328.8 416 320 416C311.2 416 304 408.8 304 400V176C304 167.2 311.2 160 320 160C328.8 160 336 167.2 336 176V400zM310.1 22.56L336.9 64H432C440.8 64 448 71.16 448 80C448 88.84 440.8 96 432 96H416V432C416 476.2 380.2 512 336 512H112C67.82 512 32 476.2 32 432V96H16C7.164 96 0 88.84 0 80C0 71.16 7.164 64 16 64H111.1L137 22.56C145.8 8.526 161.2 0 177.7 0H270.3C286.8 0 302.2 8.526 310.1 22.56V22.56zM148.9 64H299.1L283.8 39.52C280.9 34.84 275.8 32 270.3 32H177.7C172.2 32 167.1 34.84 164.2 39.52L148.9 64zM64 432C64 458.5 85.49 480 112 480H336C362.5 480 384 458.5 384 432V96H64V432z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="29.06 18.75 37.5 18.75 25 31.25 12.5 18.75 20.95 18.75 29.06 18.75" fill="#484f60"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="20.94 31.25 12.5 31.25 25 18.75 37.5 31.25 29.05 31.25 20.94 31.25" fill="#484f60"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="10" y="14.75" width="17.47" height="12.62" fill="#484f60"/><path d="M37,18.11h-8V28.84H20.22a4.42,4.42,0,0,1,1.41,2.73H30a4.41,4.41,0,0,1,8.76,0H40V24.63Zm-.26,6.73H32.25a.57.57,0,0,1-.57-.57V20a.57.57,0,0,1,.57-.58h2.63a.58.58,0,0,1,.52.35L37.31,24A.58.58,0,0,1,36.78,24.84Z" fill="#484f60"/><path d="M14.28,28.84a4.39,4.39,0,0,0-1.42,2.73H12l-2-1.26V28.84Z" fill="#484f60"/><path d="M31.25,32.1a3.16,3.16,0,1,0,3.16-3.16A3.16,3.16,0,0,0,31.25,32.1Z" fill="#484f60"/><path d="M14.09,32.1a3.16,3.16,0,1,0,3.16-3.16A3.15,3.15,0,0,0,14.09,32.1Z" fill="#484f60"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M0 48C0 21.49 21.49 0 48 0H368C394.5 0 416 21.49 416 48V96H466.7C483.7 96 499.1 102.7 512 114.7L589.3 192C601.3 204 608 220.3 608 237.3V352C625.7 352 640 366.3 640 384C640 401.7 625.7 416 608 416H576C576 469 533 512 480 512C426.1 512 384 469 384 416H256C256 469 213 512 160 512C106.1 512 64 469 64 416H48C21.49 416 0 394.5 0 368V48zM544 256V237.3L466.7 160H416V256H544zM160 464C186.5 464 208 442.5 208 416C208 389.5 186.5 368 160 368C133.5 368 112 389.5 112 416C112 442.5 133.5 464 160 464zM480 368C453.5 368 432 389.5 432 416C432 442.5 453.5 464 480 464C506.5 464 528 442.5 528 416C528 389.5 506.5 368 480 368zM256.1 95.03C247.6 85.66 232.4 85.66 223 95.03C213.7 104.4 213.7 119.6 223 128.1L262.1 168H96C82.75 168 72 178.7 72 192C72 205.3 82.75 216 96 216H262.1L223 255C213.7 264.4 213.7 279.6 223 288.1C232.4 298.3 247.6 298.3 256.1 288.1L336.1 208.1C346.3 199.6 346.3 184.4 336.1 175L256.1 95.03z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M352 32C378.5 32 400 53.49 400 80V240C400 266.5 378.5 288 352 288H48C21.49 288 0 266.5 0 240V80C0 53.49 21.49 32 48 32H352zM80 80C71.16 80 64 87.16 64 96V224C64 232.8 71.16 240 80 240C88.84 240 96 232.8 96 224V96C96 87.16 88.84 80 80 80zM224 224C224 232.8 231.2 240 240 240C248.8 240 256 232.8 256 224V96C256 87.16 248.8 80 240 80C231.2 80 224 87.16 224 96V224zM160 80C151.2 80 144 87.16 144 96V224C144 232.8 151.2 240 160 240C168.8 240 176 232.8 176 224V96C176 87.16 168.8 80 160 80zM304 224C304 232.8 311.2 240 320 240C328.8 240 336 232.8 336 224V96C336 87.16 328.8 80 320 80C311.2 80 304 87.16 304 96V224zM432 168C432 154.7 442.7 144 456 144H528.8C545.6 144 561.5 151.5 572.2 164.5L630.1 236.4C636.8 243.5 640 252.5 640 261.7V352C640 369.7 625.7 384 608 384H606.4C607.4 389.2 608 394.5 608 400C608 444.2 572.2 480 528 480C483.8 480 448 444.2 448 400C448 394.5 448.6 389.2 449.6 384H286.4C287.4 389.2 288 394.5 288 400C288 444.2 252.2 480 208 480C181.8 480 158.6 467.4 144 448C129.4 467.4 106.2 480 80 480C35.82 480 0 444.2 0 400V352C0 334.3 14.33 320 32 320H432V168zM480 256H584.1L535 194.9C533.5 193.1 531.2 192 528.8 192H480V256zM528 368C510.3 368 496 382.3 496 400C496 417.7 510.3 432 528 432C545.7 432 560 417.7 560 400C560 382.3 545.7 368 528 368zM208 432C225.7 432 240 417.7 240 400C240 382.3 225.7 368 208 368C190.3 368 176 382.3 176 400C176 417.7 190.3 432 208 432zM80 368C62.33 368 48 382.3 48 400C48 417.7 62.33 432 80 432C97.67 432 112 417.7 112 400C112 382.3 97.67 368 80 368z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M416 0H64V96H0v32H64 288v32H64 32v32H64 256v32H64 0v32H64 224v32H64V416c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32 32V352H608V288 256 224 210.7l-9.4-9.4-96-96L493.3 96H480 416V0zM544 237.3V256H416V160h50.7L544 237.3zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48zm368-48c0 26.5-21.5 48-48 48s-48-21.5-48-48s21.5-48 48-48s48 21.5 48 48z"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M64 32C28.7 32 0 60.7 0 96V304v80 16c0 44.2 35.8 80 80 80c26.2 0 49.4-12.6 64-32c14.6 19.4 37.8 32 64 32c44.2 0 80-35.8 80-80c0-5.5-.6-10.8-1.6-16H416h33.6c-1 5.2-1.6 10.5-1.6 16c0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H608c17.7 0 32-14.3 32-32V288 272 261.7c0-9.2-3.2-18.2-9-25.3l-58.8-71.8c-10.6-13-26.5-20.5-43.3-20.5H480V96c0-35.3-28.7-64-64-64H64zM585 256H480V192h48.8c2.4 0 4.7 1.1 6.2 2.9L585 256zM528 432c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zM240 400c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM80 432c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z"/></svg>
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
|
|
2
|
-
<path
|
|
3
|
-
d="M31.42,40.17H13.87c-2.15,0-2.71-.56-2.71-2.72V12.88c0-2.15.56-2.71,2.71-2.71H25.48l8.66,8.88v3.43H32.8V19.6l-7.88-8.09H13.87c-1.37,0-1.37,0-1.37,1.37V37.45c0,1.37,0,1.37,1.37,1.37H31.42c1.38,0,1.38,0,1.38-1.37V35h1.34v2.43C34.14,39.61,33.58,40.17,31.42,40.17Z"
|
|
4
|
-
fill="#484f60"/>
|
|
5
|
-
<path d="M25.2,10.84v6.44c0,1.78.27,2,2,2h6.23Z" fill="#484f60"/>
|
|
6
|
-
<path
|
|
7
|
-
d="M19.14,24.27v9h19.7v-9Zm6.68,2.36h-1.9V32h-1.3V26.63h-1.9V25.54h5.1ZM30.4,32,29,29.74,27.55,32H26l2.19-3.34-2-3.07h1.52L29,27.6l1.26-2.06h1.5l-2,3.12L32,32Zm6.86-5.32h-1.9V32H34.07V26.63H32.16V25.54h5.1Z"
|
|
8
|
-
fill="#484f60"/>
|
|
9
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M32.65,21.67H17.35c-2.81,0-3.06,2.29-3.06,5.12v8.09c0,2.83.25,5.12,3.06,5.12h15.3c2.81,0,3.06-2.29,3.06-5.12V26.79C35.71,24,35.46,21.67,32.65,21.67ZM20.22,37.49l2.61-6.32a3.82,3.82,0,1,1,4.35,0l2.6,6.32Z" fill="#484f60"/><path d="M35.51,16.64c0-3.6-2-4.07-4.51-4.07h0c-2.49,0-4.51.47-4.51,4.07v3h-2.7v-3C23.79,11.62,27,10,31,10h0c4,0,7.21,1.62,7.21,6.64Z" fill="#484f60"/></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24"><path d="M6 19H8V21H6V19M12 3L2 8V21H4V13H20V21H22V8L12 3M8 11H4V9H8V11M14 11H10V9H14V11M20 11H16V9H20V11M6 15H8V17H6V15M10 15H12V17H10V15M10 19H12V21H10V19M14 19H16V21H14V19Z" /></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M376.6 84.5c11.3-13.6 9.5-33.8-4.1-45.1s-33.8-9.5-45.1 4.1L192 206 56.6 43.5C45.3 29.9 25.1 28.1 11.5 39.4S-3.9 70.9 7.4 84.5L150.3 256 7.4 427.5c-11.3 13.6-9.5 33.8 4.1 45.1s33.8 9.5 45.1-4.1L192 306 327.4 468.5c11.3 13.6 31.5 15.4 45.1 4.1s15.4-31.5 4.1-45.1L233.7 256 376.6 84.5z"/></svg>
|