@colijnit/transaction 12.1.13 → 12.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/colijnit-transaction.umd.js +6256 -2331
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +130 -86
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +131 -87
- package/esm2015/lib/assets/dictionary/text.properties.js +98 -2
- package/esm2015/lib/component/avatar/avatar.component.js +64 -0
- package/esm2015/lib/component/avatar/avatar.module.js +21 -0
- package/esm2015/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.js +11 -1
- package/esm2015/lib/component/checkout/checkout.component.js +9 -8
- package/esm2015/lib/component/checkout/checkout.module.js +3 -3
- package/esm2015/lib/component/core/base/components/transaction-header-block/transaction-header-block.component.js +38 -0
- package/esm2015/lib/component/core/base/components/transaction-header-block/transaction-header-block.module.js +19 -0
- package/esm2015/lib/component/core/base/transaction-grid-base.component.js +53 -0
- package/esm2015/lib/component/core/core.module.js +3 -6
- package/esm2015/lib/component/core/icon/icon.component.js +1 -1
- package/esm2015/lib/component/core/relation/customer-groups.component.js +3 -3
- package/esm2015/lib/component/core/stock-status-indicator/stock-status-indicator.component.js +1 -1
- package/esm2015/lib/component/payment/payment.component.js +112 -30
- package/esm2015/lib/component/payment/payment.module.js +7 -3
- package/esm2015/lib/component/payment-tile/payment-tile.component.js +4 -2
- package/esm2015/lib/component/relation-address/relation-address.component.js +3 -3
- package/esm2015/lib/component/shopping-cart/shopping-cart.component.js +7 -2
- package/esm2015/lib/component/transaction/transaction.component.js +41 -39
- package/esm2015/lib/component/transaction/transaction.module.js +15 -9
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button.component.js +29 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar.component.js +54 -0
- package/esm2015/lib/component/transaction-button-bar/transaction-button-bar.module.js +28 -0
- package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.component.js +2 -2
- package/esm2015/lib/component/transaction-confirmation-history/transaction-confirmation-history.module.js +2 -2
- package/esm2015/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.component.js +52 -0
- package/esm2015/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.module.js +28 -0
- package/esm2015/lib/component/transaction-grid/transaction-grid/transaction-grid.component.js +85 -0
- package/esm2015/lib/component/transaction-grid/transaction-grid/transaction-grid.module.js +19 -0
- package/esm2015/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.component.js +64 -0
- package/esm2015/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.module.js +28 -0
- package/esm2015/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.component.js +76 -0
- package/esm2015/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.module.js +30 -0
- package/esm2015/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.component.js +51 -0
- package/esm2015/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.module.js +29 -0
- package/esm2015/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.component.js +156 -0
- package/esm2015/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.module.js +30 -0
- package/esm2015/lib/component/transaction-header/transaction-header/transaction-header.component.js +40 -0
- package/esm2015/lib/component/transaction-header/transaction-header/transaction-header.module.js +29 -0
- package/esm2015/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.js +75 -0
- package/esm2015/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.module.js +28 -0
- package/esm2015/lib/component/transaction-header/transaction-header-order/transaction-header-order.component.js +41 -0
- package/esm2015/lib/component/transaction-header/transaction-header-order/transaction-header-order.module.js +26 -0
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.js +58 -0
- package/esm2015/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.module.js +28 -0
- package/esm2015/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.component.js +36 -0
- package/esm2015/lib/component/transaction-header/transaction-header-relation/transaction-header-relation.module.js +21 -0
- package/esm2015/lib/component/transaction-header/transaction-header.component.js +6 -11
- package/esm2015/lib/component/transaction-header/transaction-header.module.js +8 -6
- package/esm2015/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.js +16 -3
- package/esm2015/lib/component/transaction-line/transaction-line.component.js +26 -29
- package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.js +37 -33
- package/esm2015/lib/component/transaction-line-side-panel/transaction-line-side-panel.module.js +6 -4
- package/esm2015/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.js +87 -0
- package/esm2015/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.module.js +31 -0
- package/esm2015/lib/component/transaction-lines/transaction-lines.component.js +8 -5
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.component.js +72 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.module.js +33 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.js +28 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.module.js +25 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.component.js +23 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.module.js +23 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.js +65 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.module.js +25 -0
- package/esm2015/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.component.js +138 -18
- package/esm2015/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.module.js +6 -2
- package/esm2015/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.js +57 -11
- package/esm2015/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.module.js +7 -4
- package/esm2015/lib/component/transaction-search/service/filter-request.service.js +117 -0
- package/esm2015/lib/component/transaction-search/service/transaction-search.service.js +33 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-filter.component.js +87 -0
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-filter.module.js +34 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.component.js +42 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.module.js +19 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-article/transaction-filter-content-article.component.js +120 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-article/transaction-filter-content-article.module.js +25 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.component.js +242 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.module.js +28 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-order/transaction-filter-content-order.component.js +240 -0
- package/esm2015/lib/component/transaction-search/transaction-filter-content-order/transaction-filter-content-order.module.js +30 -0
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.js +62 -0
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.js +30 -0
- package/esm2015/lib/component/transaction-search/transaction-search.component.js +55 -0
- package/esm2015/lib/component/transaction-search/transaction-search.module.js +25 -0
- package/esm2015/lib/component/transaction-search/transaction-tile/transaction-tile.component.js +77 -0
- package/esm2015/lib/component/transaction-search/transaction-tile/transaction-tile.module.js +28 -0
- package/esm2015/lib/component/transaction-search-grid/transaction-search-grid.component.js +86 -0
- package/esm2015/lib/component/transaction-search-grid/transaction-search-grid.module.js +26 -0
- package/esm2015/lib/component/view-mode-buttons/view-mode-buttons.component.js +61 -0
- package/esm2015/lib/component/view-mode-buttons/view-mode-buttons.module.js +23 -0
- package/esm2015/lib/enum/content-view-mode.enum.js +2 -1
- package/esm2015/lib/enum/icon.enum.js +18 -1
- package/esm2015/lib/enum/position-grid-row.enum.js +6 -0
- package/esm2015/lib/enum/status-type.enum.js +3 -1
- package/esm2015/lib/enum/transaction-type-category.enum.js +16 -0
- package/esm2015/lib/model/filter-item.viewmodel.js +9 -0
- package/esm2015/lib/model/filter-viewmodel.js +11 -0
- package/esm2015/lib/model/icon-svg.js +18 -1
- package/esm2015/lib/model/payment.viewmodel.js +6 -0
- package/esm2015/lib/model/received-goods-view-model.js +11 -0
- package/esm2015/lib/model/transaction-bar-button.js +3 -0
- package/esm2015/lib/service/article-connector.service.js +60 -0
- package/esm2015/lib/service/article.service.js +25 -0
- package/esm2015/lib/service/collection-cache.service.js +38 -0
- package/esm2015/lib/service/ione-connector-adapter.service.js +187 -18
- package/esm2015/lib/service/options.service.js +3 -1
- package/esm2015/lib/service/payment.service.js +51 -0
- package/esm2015/lib/service/pending-reason.service.js +5 -5
- package/esm2015/lib/service/shared-connector.service.js +53 -0
- package/esm2015/lib/service/shared.service.js +38 -0
- package/esm2015/lib/service/transaction-connector.service.js +1015 -0
- package/esm2015/lib/service/transaction-event.service.js +29 -0
- package/esm2015/lib/service/transaction-image.service.js +53 -0
- package/esm2015/lib/service/transaction-mapping.service.js +85 -0
- package/esm2015/lib/service/transaction.service.js +97 -117
- package/esm2015/public_api.js +15 -9
- package/fesm2015/colijnit-transaction.js +6270 -2159
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/{seller-information/seller-information.component.d.ts → avatar/avatar.component.d.ts} +5 -3
- package/lib/component/avatar/avatar.module.d.ts +2 -0
- package/lib/component/{seller-information → avatar}/style/_layout.scss +5 -5
- package/lib/component/avatar/style/_material-definition.scss +2 -0
- package/lib/component/avatar/style/_theme.scss +7 -0
- package/lib/component/{order-confirmation-grid → avatar}/style/material.scss +0 -1
- package/lib/component/checkout/checkout-overview-delivery-edit/checkout-overview-delivery-edit.component.d.ts +2 -0
- package/lib/component/checkout/checkout-overview-delivery-edit/style/material.scss +0 -1
- package/lib/component/checkout/checkout-overview-relation-edit/style/material.scss +0 -1
- package/lib/component/checkout/checkout-relation-suggestions-list/style/material.scss +0 -1
- package/lib/component/checkout/checkout-relation-suggestions-list-item/style/material.scss +0 -1
- package/lib/component/checkout/style/material.scss +1 -2
- package/lib/component/confirmation-dialog/style/material.scss +0 -1
- package/lib/component/core/base/components/transaction-header-block/style/_layout.scss +53 -0
- package/lib/component/core/base/components/transaction-header-block/style/_material-definition.scss +20 -0
- package/lib/component/core/base/components/transaction-header-block/style/_theme.scss +11 -0
- package/lib/component/core/base/components/transaction-header-block/style/material.scss +4 -0
- package/lib/component/core/base/components/transaction-header-block/transaction-header-block.component.d.ts +8 -0
- package/lib/component/core/base/components/transaction-header-block/transaction-header-block.module.d.ts +2 -0
- package/lib/component/core/base/style/material.scss +0 -1
- package/lib/component/core/base/transaction-grid-base.component.d.ts +25 -0
- package/lib/component/core/characteristic-answer/characteristic-answer.component.scss +0 -1
- package/lib/component/core/icon/icon.component.scss +0 -1
- package/lib/component/core/image-display/style/material.scss +0 -1
- package/lib/component/core/relation/customer-groups.component.d.ts +2 -2
- package/lib/component/core/stock-status-indicator/stock-status-indicator.component.scss +0 -1
- package/lib/component/delivery-type-tile/style/material.scss +0 -1
- package/lib/component/order-confirmation-create/style/material.scss +0 -1
- package/lib/component/payment/payment.component.d.ts +22 -5
- package/lib/component/payment/style/_layout.scss +23 -1
- package/lib/component/payment/style/_material-definition.scss +0 -1
- package/lib/component/payment/style/_theme.scss +24 -0
- package/lib/component/payment/style/material.scss +0 -1
- package/lib/component/payment-tile/payment-tile.component.d.ts +1 -0
- package/lib/component/payment-tile/style/_layout.scss +2 -1
- package/lib/component/payment-tile/style/material.scss +0 -1
- package/lib/component/relation-address/relation-address.component.d.ts +2 -2
- package/lib/component/relation-address/style/material.scss +0 -1
- package/lib/component/relation-address-select/style/material.scss +0 -1
- package/lib/component/relation-address-tile/style/material.scss +0 -1
- package/lib/component/shared/transaction-article-text/style/material.scss +0 -1
- package/lib/component/shared/transaction-article-text-overview/style/material.scss +0 -1
- package/lib/component/shopping-cart/style/material.scss +0 -1
- package/lib/component/shopping-cart-OLD/shopping-cart-manager/shopping-cart-manager.component.scss +0 -1
- package/lib/component/shopping-cart-preview/style/material.scss +0 -1
- package/lib/component/stepper/style/material.scss +0 -1
- package/lib/component/tile/style/material.scss +0 -1
- package/lib/component/transaction/style/_layout.scss +13 -13
- package/lib/component/transaction/style/_material-definition.scss +2 -6
- package/lib/component/transaction/style/_theme.scss +0 -18
- package/lib/component/transaction/style/material.scss +5 -5
- package/lib/component/transaction/transaction.component.d.ts +9 -9
- package/lib/component/transaction-button-bar/style/_layout.scss +50 -0
- package/lib/component/transaction-button-bar/style/_material-definition.scss +12 -0
- package/lib/component/transaction-button-bar/style/_theme.scss +14 -0
- package/lib/component/{order-grid → transaction-button-bar}/style/material.scss +0 -1
- package/lib/component/transaction-button-bar/transaction-button-bar-button/transaction-button-bar-button.component.d.ts +9 -0
- package/lib/component/transaction-button-bar/transaction-button-bar.component.d.ts +17 -0
- package/lib/component/transaction-button-bar/transaction-button-bar.module.d.ts +2 -0
- package/lib/component/transaction-confirmation-history/style/material.scss +0 -1
- package/lib/component/transaction-grid/transaction-base-grid/style/_layout.scss +33 -0
- package/lib/component/transaction-grid/transaction-base-grid/style/_material-definition.scss +8 -0
- package/lib/component/transaction-grid/transaction-base-grid/style/_theme.scss +12 -0
- package/lib/component/{seller-information → transaction-grid/transaction-base-grid}/style/material.scss +0 -1
- package/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.component.d.ts +8 -0
- package/lib/component/transaction-grid/transaction-base-grid/transaction-base-grid.module.d.ts +2 -0
- package/lib/component/transaction-grid/transaction-grid/style/_layout.scss +6 -0
- package/lib/component/{transaction-history-grid → transaction-grid/transaction-grid}/style/_material-definition.scss +0 -0
- package/lib/component/transaction-grid/transaction-grid/style/_theme.scss +6 -0
- package/lib/component/transaction-grid/transaction-grid/style/material.scss +5 -0
- package/lib/component/transaction-grid/transaction-grid/transaction-grid.component.d.ts +26 -0
- package/lib/component/transaction-grid/transaction-grid/transaction-grid.module.d.ts +2 -0
- package/lib/component/transaction-grid/transaction-history-grid/style/_layout.scss +15 -0
- package/lib/component/transaction-grid/transaction-history-grid/style/_material-definition.scss +1 -0
- package/lib/component/{transaction-history-grid → transaction-grid/transaction-history-grid}/style/_theme.scss +1 -1
- package/lib/component/{transaction-commit-bar → transaction-grid/transaction-history-grid}/style/material.scss +0 -1
- package/lib/component/transaction-grid/transaction-history-grid/transaction-history-grid.component.d.ts +19 -0
- package/lib/component/{transaction-history-grid → transaction-grid/transaction-history-grid}/transaction-history-grid.module.d.ts +0 -0
- package/lib/component/{transaction-lines-grid → transaction-grid/transaction-lines-grid}/style/_layout.scss +5 -1
- package/lib/component/{transaction-lines-grid → transaction-grid/transaction-lines-grid}/style/_material-definition.scss +3 -0
- package/lib/component/{transaction-lines-grid → transaction-grid/transaction-lines-grid}/style/_theme.scss +1 -1
- package/lib/component/transaction-grid/transaction-lines-grid/style/material.scss +4 -0
- package/lib/component/transaction-grid/transaction-lines-grid/transaction-lines-grid.component.d.ts +11 -0
- package/lib/component/{transaction-lines-grid → transaction-grid/transaction-lines-grid}/transaction-lines-grid.module.d.ts +0 -0
- package/lib/component/transaction-grid/transaction-order-confirmation-grid/style/_layout.scss +7 -0
- package/lib/component/{order-confirmation-grid → transaction-grid/transaction-order-confirmation-grid}/style/_material-definition.scss +0 -0
- package/lib/component/transaction-grid/transaction-order-confirmation-grid/style/_theme.scss +7 -0
- package/lib/component/transaction-grid/transaction-order-confirmation-grid/style/material.scss +3 -0
- package/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.component.d.ts +4 -0
- package/lib/component/transaction-grid/transaction-order-confirmation-grid/transaction-order-confirmation-grid.module.d.ts +2 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/style/_layout.scss +6 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/style/_material-definition.scss +0 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/style/_theme.scss +6 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/style/material.scss +4 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.component.d.ts +37 -0
- package/lib/component/transaction-grid/transaction-received-goods-grid/transaction-received-goods-grid.module.d.ts +2 -0
- package/lib/component/transaction-header/transaction-header/style/_layout.scss +40 -0
- package/lib/component/transaction-header/transaction-header/style/_material-definition.scss +9 -0
- package/lib/component/transaction-header/transaction-header/style/_theme.scss +11 -0
- package/lib/component/transaction-header/transaction-header/style/material.scss +7 -0
- package/lib/component/transaction-header/transaction-header/transaction-header.component.d.ts +10 -0
- package/lib/component/transaction-header/transaction-header/transaction-header.module.d.ts +2 -0
- package/lib/component/transaction-header/transaction-header-delivery/style/_layout.scss +38 -0
- package/lib/component/transaction-header/transaction-header-delivery/style/_material-definition.scss +7 -0
- package/lib/component/transaction-header/transaction-header-delivery/style/_theme.scss +25 -0
- package/lib/component/transaction-header/transaction-header-delivery/style/material.scss +3 -0
- package/lib/component/transaction-header/transaction-header-delivery/transaction-header-delivery.component.d.ts +15 -0
- package/lib/component/{transaction-header-delivery → transaction-header/transaction-header-delivery}/transaction-header-delivery.module.d.ts +0 -0
- package/lib/component/transaction-header/transaction-header-order/style/_layout.scss +12 -0
- package/lib/component/transaction-header/transaction-header-order/style/_material-definition.scss +0 -0
- package/lib/component/transaction-header/transaction-header-order/style/_theme.scss +6 -0
- package/lib/component/transaction-header/transaction-header-order/style/material.scss +4 -0
- package/lib/component/transaction-header/transaction-header-order/transaction-header-order.component.d.ts +4 -0
- package/lib/component/transaction-header/transaction-header-order/transaction-header-order.module.d.ts +2 -0
- package/lib/component/transaction-header/transaction-header-payment/style/_layout.scss +14 -0
- package/lib/component/transaction-header/transaction-header-payment/style/_material-definition.scss +4 -0
- package/lib/component/transaction-header/transaction-header-payment/style/_theme.scss +12 -0
- package/lib/component/transaction-header/transaction-header-payment/style/material.scss +5 -0
- package/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.component.d.ts +6 -0
- package/lib/component/transaction-header/transaction-header-payment/transaction-header-payment.module.d.ts +2 -0
- package/lib/component/transaction-header/transaction-header-relation/style/_layout.scss +7 -0
- package/lib/component/transaction-header/transaction-header-relation/style/_material-definition.scss +0 -0
- package/lib/component/transaction-header/transaction-header-relation/style/_theme.scss +6 -0
- package/lib/component/transaction-header/transaction-header-relation/style/material.scss +4 -0
- package/lib/component/{transaction-header-relation → transaction-header/transaction-header-relation}/transaction-header-relation.component.d.ts +1 -1
- package/lib/component/{transaction-header-relation → transaction-header/transaction-header-relation}/transaction-header-relation.module.d.ts +0 -0
- package/lib/component/transaction-header/transaction-header.component.d.ts +0 -2
- package/lib/component/transaction-history-grid-status/style/_layout.scss +7 -7
- package/lib/component/transaction-history-grid-status/style/_material-definition.scss +8 -0
- package/lib/component/transaction-history-grid-status/style/material.scss +0 -1
- package/lib/component/transaction-history-grid-status/transaction-history-grid-status.component.d.ts +2 -0
- package/lib/component/transaction-line/style/_layout.scss +38 -1
- package/lib/component/transaction-line/style/_material-definition.scss +4 -3
- package/lib/component/transaction-line/style/_theme.scss +5 -0
- package/lib/component/transaction-line/style/material.scss +0 -1
- package/lib/component/transaction-line/transaction-line.component.d.ts +7 -4
- package/lib/component/transaction-line-grid/style/material.scss +0 -1
- package/lib/component/transaction-line-side-panel/style/_layout.scss +3 -2
- package/lib/component/transaction-line-side-panel/style/_material-definition.scss +2 -0
- package/lib/component/transaction-line-side-panel/style/material.scss +0 -1
- package/lib/component/transaction-line-side-panel/transaction-line-side-panel.component.d.ts +13 -6
- package/lib/component/transaction-line-side-panel-default/style/material.scss +0 -1
- package/lib/component/transaction-line-side-panel-purchase/style/_layout.scss +6 -0
- package/lib/component/transaction-line-side-panel-purchase/style/_material-definition.scss +0 -0
- package/lib/component/transaction-line-side-panel-purchase/style/_theme.scss +6 -0
- package/lib/component/transaction-line-side-panel-purchase/style/material.scss +5 -0
- package/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.component.d.ts +21 -0
- package/lib/component/transaction-line-side-panel-purchase/transaction-line-side-panel-purchase.module.d.ts +2 -0
- package/lib/component/transaction-lines/style/material.scss +0 -1
- package/lib/component/transaction-lines/transaction-lines.component.d.ts +3 -5
- package/lib/component/transaction-quick-access/transaction-quick-access/style/_layout.scss +11 -0
- package/lib/component/{transaction-commit-bar → transaction-quick-access/transaction-quick-access}/style/_material-definition.scss +0 -0
- package/lib/component/{transaction-commit-bar → transaction-quick-access/transaction-quick-access}/style/_theme.scss +1 -1
- package/lib/component/transaction-quick-access/transaction-quick-access/style/material.scss +6 -0
- package/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.component.d.ts +21 -0
- package/lib/component/transaction-quick-access/transaction-quick-access/transaction-quick-access.module.d.ts +2 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_layout.scss +9 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_material-definition.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_theme.scss +6 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/material.scss +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.d.ts +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.module.d.ts +2 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/style/_layout.scss +7 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/style/_material-definition.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/style/_theme.scss +6 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/style/material.scss +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.component.d.ts +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-overview/transaction-quick-access-overview.module.d.ts +2 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/_layout.scss +9 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/_material-definition.scss +0 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/_theme.scss +6 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/style/material.scss +4 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.component.d.ts +27 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-received-goods/transaction-quick-access-received-goods.module.d.ts +2 -0
- package/lib/component/transaction-receiving-goods-details/style/_layout.scss +4 -4
- package/lib/component/transaction-receiving-goods-details/style/_material-definition.scss +3 -1
- package/lib/component/transaction-receiving-goods-details/style/material.scss +0 -1
- package/lib/component/transaction-receiving-goods-details/transaction-receiving-goods-details.component.d.ts +28 -2
- package/lib/component/transaction-receiving-goods-history/style/material.scss +0 -1
- package/lib/component/transaction-receiving-goods-history/transaction-receiving-goods-history.component.d.ts +14 -1
- package/lib/component/transaction-search/service/filter-request.service.d.ts +23 -0
- package/lib/component/transaction-search/service/transaction-search.service.d.ts +11 -0
- package/lib/component/transaction-search/style/_layout.scss +37 -0
- package/lib/component/transaction-search/style/_material-definition.scss +41 -0
- package/lib/component/transaction-search/style/_theme.scss +6 -0
- package/lib/component/transaction-search/style/material.scss +7 -0
- package/lib/component/transaction-search/transaction-filter/style/_layout.scss +53 -0
- package/lib/component/transaction-search/transaction-filter/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-filter/style/_theme.scss +8 -0
- package/lib/component/transaction-search/transaction-filter/style/material.scss +7 -0
- package/lib/component/transaction-search/transaction-filter/transaction-filter.component.d.ts +21 -0
- package/lib/component/transaction-search/transaction-filter/transaction-filter.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-categories/style/_layout.scss +23 -0
- package/lib/component/transaction-search/transaction-filter-categories/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-categories/style/_theme.scss +13 -0
- package/lib/component/transaction-search/transaction-filter-categories/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.component.d.ts +10 -0
- package/lib/component/transaction-search/transaction-filter-categories/transaction-filter-categories.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-content-article/style/_layout.scss +13 -0
- package/lib/component/transaction-search/transaction-filter-content-article/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-filter-content-article/style/_theme.scss +6 -0
- package/lib/component/transaction-search/transaction-filter-content-article/style/material.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content-article/transaction-filter-content-article.component.d.ts +37 -0
- package/lib/component/transaction-search/transaction-filter-content-article/transaction-filter-content-article.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/style/_layout.scss +12 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/style/_theme.scss +6 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/style/material.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.component.d.ts +36 -0
- package/lib/component/transaction-search/transaction-filter-content-logistics/transaction-filter-content-logistics.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-filter-content-order/style/_layout.scss +12 -0
- package/lib/component/transaction-search/transaction-filter-content-order/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-filter-content-order/style/_theme.scss +6 -0
- package/lib/component/transaction-search/transaction-filter-content-order/style/material.scss +4 -0
- package/lib/component/transaction-search/transaction-filter-content-order/transaction-filter-content-order.component.d.ts +60 -0
- package/lib/component/transaction-search/transaction-filter-content-order/transaction-filter-content-order.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-search-result/style/_layout.scss +30 -0
- package/lib/component/transaction-search/transaction-search-result/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search/transaction-search-result/style/_theme.scss +10 -0
- package/lib/component/transaction-search/transaction-search-result/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.d.ts +19 -0
- package/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-search.component.d.ts +12 -0
- package/lib/component/transaction-search/transaction-search.module.d.ts +2 -0
- package/lib/component/transaction-search/transaction-tile/style/_layout.scss +91 -0
- package/lib/component/transaction-search/transaction-tile/style/_material-definition.scss +0 -0
- package/lib/component/transaction-search/transaction-tile/style/_theme.scss +46 -0
- package/lib/component/transaction-search/transaction-tile/style/material.scss +5 -0
- package/lib/component/transaction-search/transaction-tile/transaction-tile.component.d.ts +13 -0
- package/lib/component/transaction-search/transaction-tile/transaction-tile.module.d.ts +2 -0
- package/lib/component/transaction-search-grid/style/_layout.scss +6 -0
- package/lib/component/transaction-search-grid/style/_material-definition.scss +1 -0
- package/lib/component/transaction-search-grid/style/_theme.scss +6 -0
- package/lib/component/transaction-search-grid/style/material.scss +7 -0
- package/lib/component/transaction-search-grid/transaction-search-grid.component.d.ts +13 -0
- package/lib/component/transaction-search-grid/transaction-search-grid.module.d.ts +2 -0
- package/lib/component/transaction-totals/style/material.scss +0 -1
- package/lib/component/view-mode-buttons/style/_layout.scss +20 -0
- package/lib/component/view-mode-buttons/style/_material-definition.scss +5 -0
- package/lib/component/view-mode-buttons/style/_theme.scss +22 -0
- package/lib/component/view-mode-buttons/style/material.scss +3 -0
- package/lib/component/view-mode-buttons/view-mode-buttons.component.d.ts +17 -0
- package/lib/component/view-mode-buttons/view-mode-buttons.module.d.ts +2 -0
- package/lib/enum/content-view-mode.enum.d.ts +2 -1
- package/lib/enum/icon.enum.d.ts +17 -0
- package/lib/enum/position-grid-row.enum.d.ts +4 -0
- package/lib/enum/status-type.enum.d.ts +3 -1
- package/lib/enum/transaction-type-category.enum.d.ts +14 -0
- package/lib/model/filter-item.viewmodel.d.ts +7 -0
- package/lib/model/filter-viewmodel.d.ts +8 -0
- package/lib/model/payment.viewmodel.d.ts +6 -0
- package/lib/model/received-goods-view-model.d.ts +10 -0
- package/lib/model/transaction-bar-button.d.ts +7 -0
- package/lib/service/article-connector.service.d.ts +13 -0
- package/lib/service/article.service.d.ts +6 -0
- package/lib/service/collection-cache.service.d.ts +6 -0
- package/lib/service/ione-connector-adapter.service.d.ts +24 -3
- package/lib/service/options.service.d.ts +1 -0
- package/lib/service/payment.service.d.ts +9 -0
- package/lib/service/pending-reason.service.d.ts +3 -3
- package/lib/service/shared-connector.service.d.ts +12 -0
- package/lib/service/shared.service.d.ts +13 -0
- package/lib/service/transaction-connector.service.d.ts +119 -0
- package/lib/service/transaction-event.service.d.ts +65 -0
- package/lib/service/transaction-image.service.d.ts +10 -0
- package/lib/service/transaction-mapping.service.d.ts +14 -0
- package/lib/service/transaction.service.d.ts +48 -28
- package/lib/style/_variables.scss +41 -36
- package/lib/style/transaction-globals.scss +25 -0
- package/package.json +6 -3
- package/public_api.d.ts +14 -8
- package/esm2015/lib/component/core/base/default-ok-cancel-buttons.component.js +0 -41
- package/esm2015/lib/component/order-confirmation-grid/order-confirmation-grid.component.js +0 -70
- package/esm2015/lib/component/order-confirmation-grid/order-confirmation-grid.module.js +0 -29
- package/esm2015/lib/component/order-grid/order-grid.component.js +0 -99
- package/esm2015/lib/component/order-grid/order-grid.module.js +0 -28
- package/esm2015/lib/component/seller-information/seller-information.component.js +0 -61
- package/esm2015/lib/component/seller-information/seller-information.module.js +0 -21
- package/esm2015/lib/component/transaction-commit-bar/transaction-commit-bar.component.js +0 -46
- package/esm2015/lib/component/transaction-commit-bar/transaction-commit-bar.module.js +0 -27
- package/esm2015/lib/component/transaction-header-contact/transaction-header-contact.component.js +0 -34
- package/esm2015/lib/component/transaction-header-contact/transaction-header-contact.module.js +0 -19
- package/esm2015/lib/component/transaction-header-delivery/transaction-header-delivery.component.js +0 -60
- package/esm2015/lib/component/transaction-header-delivery/transaction-header-delivery.module.js +0 -21
- package/esm2015/lib/component/transaction-header-relation/transaction-header-relation.component.js +0 -35
- package/esm2015/lib/component/transaction-header-relation/transaction-header-relation.module.js +0 -19
- package/esm2015/lib/component/transaction-history-grid/transaction-history-grid.component.js +0 -47
- package/esm2015/lib/component/transaction-history-grid/transaction-history-grid.module.js +0 -27
- package/esm2015/lib/component/transaction-lines-grid/transaction-lines-grid.component.js +0 -64
- package/esm2015/lib/component/transaction-lines-grid/transaction-lines-grid.module.js +0 -27
- package/esm2015/lib/component/transaction-nav-bar/transaction-nav-bar-button/transaction-nav-bar-button.component.js +0 -29
- package/esm2015/lib/component/transaction-nav-bar/transaction-nav-bar.component.js +0 -65
- package/esm2015/lib/component/transaction-nav-bar/transaction-nav-bar.module.js +0 -26
- package/esm2015/lib/enum/tab-category.enum.js +0 -10
- package/lib/component/core/base/default-ok-cancel-buttons.component.d.ts +0 -13
- package/lib/component/order-confirmation-grid/order-confirmation-grid.component.d.ts +0 -15
- package/lib/component/order-confirmation-grid/order-confirmation-grid.module.d.ts +0 -2
- package/lib/component/order-confirmation-grid/style/_layout.scss +0 -5
- package/lib/component/order-confirmation-grid/style/_theme.scss +0 -5
- package/lib/component/order-grid/order-grid.component.d.ts +0 -23
- package/lib/component/order-grid/order-grid.module.d.ts +0 -2
- package/lib/component/order-grid/style/_layout.scss +0 -21
- package/lib/component/order-grid/style/_material-definition.scss +0 -2
- package/lib/component/order-grid/style/_theme.scss +0 -6
- package/lib/component/seller-information/seller-information.module.d.ts +0 -2
- package/lib/component/seller-information/style/_material-definition.scss +0 -2
- package/lib/component/seller-information/style/_theme.scss +0 -7
- package/lib/component/transaction-commit-bar/style/_layout.scss +0 -16
- package/lib/component/transaction-commit-bar/transaction-commit-bar.component.d.ts +0 -11
- package/lib/component/transaction-commit-bar/transaction-commit-bar.module.d.ts +0 -2
- package/lib/component/transaction-header-contact/style/_layout.scss +0 -25
- package/lib/component/transaction-header-contact/style/_material-definition.scss +0 -7
- package/lib/component/transaction-header-contact/style/_theme.scss +0 -11
- package/lib/component/transaction-header-contact/style/material.scss +0 -4
- package/lib/component/transaction-header-contact/transaction-header-contact.component.d.ts +0 -4
- package/lib/component/transaction-header-contact/transaction-header-contact.module.d.ts +0 -2
- package/lib/component/transaction-header-delivery/style/_layout.scss +0 -54
- package/lib/component/transaction-header-delivery/style/_material-definition.scss +0 -12
- package/lib/component/transaction-header-delivery/style/_theme.scss +0 -24
- package/lib/component/transaction-header-delivery/style/material.scss +0 -4
- package/lib/component/transaction-header-delivery/transaction-header-delivery.component.d.ts +0 -13
- package/lib/component/transaction-header-relation/style/_layout.scss +0 -25
- package/lib/component/transaction-header-relation/style/_material-definition.scss +0 -7
- package/lib/component/transaction-header-relation/style/_theme.scss +0 -11
- package/lib/component/transaction-header-relation/style/material.scss +0 -4
- package/lib/component/transaction-history-grid/style/_layout.scss +0 -7
- package/lib/component/transaction-history-grid/style/material.scss +0 -4
- package/lib/component/transaction-history-grid/transaction-history-grid.component.d.ts +0 -14
- package/lib/component/transaction-lines-grid/style/material.scss +0 -5
- package/lib/component/transaction-lines-grid/transaction-lines-grid.component.d.ts +0 -20
- package/lib/component/transaction-nav-bar/style/_layout.scss +0 -13
- package/lib/component/transaction-nav-bar/style/_material-definition.scss +0 -1
- package/lib/component/transaction-nav-bar/style/_theme.scss +0 -7
- package/lib/component/transaction-nav-bar/style/material.scss +0 -4
- package/lib/component/transaction-nav-bar/transaction-nav-bar-button/transaction-nav-bar-button.component.d.ts +0 -14
- package/lib/component/transaction-nav-bar/transaction-nav-bar-button/transaction-nav-bar-button.component.scss +0 -23
- package/lib/component/transaction-nav-bar/transaction-nav-bar.component.d.ts +0 -18
- package/lib/component/transaction-nav-bar/transaction-nav-bar.module.d.ts +0 -2
- package/lib/enum/tab-category.enum.d.ts +0 -8
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { Component, EventEmitter, HostBinding, Output, ViewEncapsulation } from "@angular/core";
|
|
2
|
+
import { ContentViewMode } from "../../../enum/content-view-mode.enum";
|
|
3
|
+
import { Icon } from "../../../enum/icon.enum";
|
|
4
|
+
import { IconCacheService } from "../../../service/icon-cache.service";
|
|
5
|
+
import { TransactionSearchService } from "../service/transaction-search.service";
|
|
6
|
+
export class TransactionSearchResultComponent {
|
|
7
|
+
constructor(searchService, iconCacheService) {
|
|
8
|
+
this.searchService = searchService;
|
|
9
|
+
this.iconCacheService = iconCacheService;
|
|
10
|
+
this.icon = Icon;
|
|
11
|
+
this.viewModes = ContentViewMode;
|
|
12
|
+
this.filterButtonClick = new EventEmitter();
|
|
13
|
+
this.transactionClick = new EventEmitter();
|
|
14
|
+
this.activeViewMode = ContentViewMode.Tiles;
|
|
15
|
+
}
|
|
16
|
+
showClass() {
|
|
17
|
+
return true;
|
|
18
|
+
}
|
|
19
|
+
ngOnInit() {
|
|
20
|
+
}
|
|
21
|
+
onTransactionClick(transaction) {
|
|
22
|
+
this.transactionClick.emit(transaction);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
TransactionSearchResultComponent.decorators = [
|
|
26
|
+
{ type: Component, args: [{
|
|
27
|
+
selector: 'co-transaction-search-result',
|
|
28
|
+
template: `
|
|
29
|
+
<div class="transaction-search-header-wrapper">
|
|
30
|
+
<co-input-search class="transaction-search-general"
|
|
31
|
+
[(model)]="searchService.searchRequest.general"
|
|
32
|
+
[placeholder]="'Waar ben je naar op zoek?'"
|
|
33
|
+
(search)="searchService.searchTransactions()"></co-input-search>
|
|
34
|
+
<co-button class="transaction-search-filter-button" [iconData]="iconCacheService.getIcon(icon.BarsFilter)"
|
|
35
|
+
(click)="filterButtonClick.emit()"></co-button>
|
|
36
|
+
</div>
|
|
37
|
+
<co-view-mode-buttons [showViewModes]="[viewModes.Tiles, viewModes.Grid]"
|
|
38
|
+
(viewModeChange)="activeViewMode = $event"></co-view-mode-buttons>
|
|
39
|
+
<div class="transaction-search-result-content-tiles-wrapper" *ngIf="activeViewMode === viewModes.Tiles">
|
|
40
|
+
<div class="transaction-tile" *ngFor="let transaction of searchService.transactions">
|
|
41
|
+
<co-transaction-tile [transaction]="transaction"
|
|
42
|
+
(tileClick)="onTransactionClick(transaction)"></co-transaction-tile>
|
|
43
|
+
</div>
|
|
44
|
+
</div>
|
|
45
|
+
<div class="transaction-search-result-content-grid-wrapper" *ngIf="activeViewMode === viewModes.Grid">
|
|
46
|
+
<co-transaction-search-grid [transactions]="searchService.transactions"
|
|
47
|
+
(transactionClick)="onTransactionClick($event)"></co-transaction-search-grid>
|
|
48
|
+
</div>
|
|
49
|
+
`,
|
|
50
|
+
encapsulation: ViewEncapsulation.None
|
|
51
|
+
},] }
|
|
52
|
+
];
|
|
53
|
+
TransactionSearchResultComponent.ctorParameters = () => [
|
|
54
|
+
{ type: TransactionSearchService },
|
|
55
|
+
{ type: IconCacheService }
|
|
56
|
+
];
|
|
57
|
+
TransactionSearchResultComponent.propDecorators = {
|
|
58
|
+
filterButtonClick: [{ type: Output }],
|
|
59
|
+
transactionClick: [{ type: Output }],
|
|
60
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-search-result",] }]
|
|
61
|
+
};
|
|
62
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1zZWFyY2gvdHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdC90cmFuc2FjdGlvbi1zZWFyY2gtcmVzdWx0LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxXQUFXLEVBQVUsTUFBTSxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRXhHLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQztBQUN2RSxPQUFPLEVBQUUsSUFBSSxFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0scUNBQXFDLENBQUM7QUFDdkUsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sdUNBQXVDLENBQUM7QUE0QmpGLE1BQU0sT0FBTyxnQ0FBZ0M7SUFpQjNDLFlBQ1MsYUFBdUMsRUFDdkMsZ0JBQWtDO1FBRGxDLGtCQUFhLEdBQWIsYUFBYSxDQUEwQjtRQUN2QyxxQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQWtCO1FBbEIzQixTQUFJLEdBQWdCLElBQUksQ0FBQztRQUN6QixjQUFTLEdBQTJCLGVBQWUsQ0FBQztRQUc3RCxzQkFBaUIsR0FBdUIsSUFBSSxZQUFZLEVBQVEsQ0FBQztRQUdqRSxxQkFBZ0IsR0FBd0MsSUFBSSxZQUFZLEVBQXlCLENBQUM7UUFPbEcsbUJBQWMsR0FBb0IsZUFBZSxDQUFDLEtBQUssQ0FBQztJQU0vRCxDQUFDO0lBVk0sU0FBUztRQUNkLE9BQU8sSUFBSSxDQUFDO0lBQ2QsQ0FBQztJQVVNLFFBQVE7SUFDZixDQUFDO0lBRU0sa0JBQWtCLENBQUMsV0FBa0M7UUFDMUQsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQztJQUMxQyxDQUFDOzs7WUF0REYsU0FBUyxTQUFDO2dCQUNULFFBQVEsRUFBRSw4QkFBOEI7Z0JBQ3hDLFFBQVEsRUFBRTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0dBcUJUO2dCQUNELGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO2FBQ3RDOzs7WUEzQlEsd0JBQXdCO1lBRHhCLGdCQUFnQjs7O2dDQWlDdEIsTUFBTTsrQkFHTixNQUFNO3dCQUdOLFdBQVcsU0FBQyxvQ0FBb0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSG9zdEJpbmRpbmcsIE9uSW5pdCwgT3V0cHV0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IFRyYW5zYWN0aW9uU2VhcmNoVmlldyB9IGZyb20gXCJAY29saWpuaXQvdHJhbnNhY3Rpb25hcGkvYnVpbGQvbW9kZWwvdHJhbnNhY3Rpb24tc2VhcmNoLXZpZXcuYm9cIjtcclxuaW1wb3J0IHsgQ29udGVudFZpZXdNb2RlIH0gZnJvbSBcIi4uLy4uLy4uL2VudW0vY29udGVudC12aWV3LW1vZGUuZW51bVwiO1xyXG5pbXBvcnQgeyBJY29uIH0gZnJvbSBcIi4uLy4uLy4uL2VudW0vaWNvbi5lbnVtXCI7XHJcbmltcG9ydCB7IEljb25DYWNoZVNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vLi4vc2VydmljZS9pY29uLWNhY2hlLnNlcnZpY2VcIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25TZWFyY2hTZXJ2aWNlIH0gZnJvbSBcIi4uL3NlcnZpY2UvdHJhbnNhY3Rpb24tc2VhcmNoLnNlcnZpY2VcIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnY28tdHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdCcsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi1zZWFyY2gtaGVhZGVyLXdyYXBwZXJcIj5cclxuICAgICAgPGNvLWlucHV0LXNlYXJjaCBjbGFzcz1cInRyYW5zYWN0aW9uLXNlYXJjaC1nZW5lcmFsXCJcclxuICAgICAgICAgICAgICAgICAgICAgICBbKG1vZGVsKV09XCJzZWFyY2hTZXJ2aWNlLnNlYXJjaFJlcXVlc3QuZ2VuZXJhbFwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgW3BsYWNlaG9sZGVyXT1cIidXYWFyIGJlbiBqZSBuYWFyIG9wIHpvZWs/J1wiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgKHNlYXJjaCk9XCJzZWFyY2hTZXJ2aWNlLnNlYXJjaFRyYW5zYWN0aW9ucygpXCI+PC9jby1pbnB1dC1zZWFyY2g+XHJcbiAgICAgIDxjby1idXR0b24gY2xhc3M9XCJ0cmFuc2FjdGlvbi1zZWFyY2gtZmlsdGVyLWJ1dHRvblwiIFtpY29uRGF0YV09XCJpY29uQ2FjaGVTZXJ2aWNlLmdldEljb24oaWNvbi5CYXJzRmlsdGVyKVwiXHJcbiAgICAgICAgICAgICAgICAgKGNsaWNrKT1cImZpbHRlckJ1dHRvbkNsaWNrLmVtaXQoKVwiPjwvY28tYnV0dG9uPlxyXG4gICAgPC9kaXY+XHJcbiAgICA8Y28tdmlldy1tb2RlLWJ1dHRvbnMgW3Nob3dWaWV3TW9kZXNdPVwiW3ZpZXdNb2Rlcy5UaWxlcywgdmlld01vZGVzLkdyaWRdXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAodmlld01vZGVDaGFuZ2UpPVwiYWN0aXZlVmlld01vZGUgPSAkZXZlbnRcIj48L2NvLXZpZXctbW9kZS1idXR0b25zPlxyXG4gICAgPGRpdiBjbGFzcz1cInRyYW5zYWN0aW9uLXNlYXJjaC1yZXN1bHQtY29udGVudC10aWxlcy13cmFwcGVyXCIgKm5nSWY9XCJhY3RpdmVWaWV3TW9kZSA9PT0gdmlld01vZGVzLlRpbGVzXCI+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi10aWxlXCIgKm5nRm9yPVwibGV0IHRyYW5zYWN0aW9uIG9mIHNlYXJjaFNlcnZpY2UudHJhbnNhY3Rpb25zXCI+XHJcbiAgICAgICAgPGNvLXRyYW5zYWN0aW9uLXRpbGUgW3RyYW5zYWN0aW9uXT1cInRyYW5zYWN0aW9uXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAodGlsZUNsaWNrKT1cIm9uVHJhbnNhY3Rpb25DbGljayh0cmFuc2FjdGlvbilcIj48L2NvLXRyYW5zYWN0aW9uLXRpbGU+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgICA8ZGl2IGNsYXNzPVwidHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdC1jb250ZW50LWdyaWQtd3JhcHBlclwiICpuZ0lmPVwiYWN0aXZlVmlld01vZGUgPT09IHZpZXdNb2Rlcy5HcmlkXCI+XHJcbiAgICAgIDxjby10cmFuc2FjdGlvbi1zZWFyY2gtZ3JpZCBbdHJhbnNhY3Rpb25zXT1cInNlYXJjaFNlcnZpY2UudHJhbnNhY3Rpb25zXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICh0cmFuc2FjdGlvbkNsaWNrKT1cIm9uVHJhbnNhY3Rpb25DbGljaygkZXZlbnQpXCI+PC9jby10cmFuc2FjdGlvbi1zZWFyY2gtZ3JpZD5cclxuICAgIDwvZGl2PlxyXG4gIGAsXHJcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZVxyXG59KVxyXG5leHBvcnQgY2xhc3MgVHJhbnNhY3Rpb25TZWFyY2hSZXN1bHRDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gIHB1YmxpYyByZWFkb25seSBpY29uOiB0eXBlb2YgSWNvbiA9IEljb247XHJcbiAgcHVibGljIHJlYWRvbmx5IHZpZXdNb2RlczogdHlwZW9mIENvbnRlbnRWaWV3TW9kZSA9IENvbnRlbnRWaWV3TW9kZTtcclxuXHJcbiAgQE91dHB1dCgpXHJcbiAgcHVibGljIGZpbHRlckJ1dHRvbkNsaWNrOiBFdmVudEVtaXR0ZXI8dm9pZD4gPSBuZXcgRXZlbnRFbWl0dGVyPHZvaWQ+KCk7XHJcblxyXG4gIEBPdXRwdXQoKVxyXG4gIHB1YmxpYyB0cmFuc2FjdGlvbkNsaWNrOiBFdmVudEVtaXR0ZXI8VHJhbnNhY3Rpb25TZWFyY2hWaWV3PiA9IG5ldyBFdmVudEVtaXR0ZXI8VHJhbnNhY3Rpb25TZWFyY2hWaWV3PigpO1xyXG5cclxuICBASG9zdEJpbmRpbmcoXCJjbGFzcy5jby10cmFuc2FjdGlvbi1zZWFyY2gtcmVzdWx0XCIpXHJcbiAgcHVibGljIHNob3dDbGFzcygpOiBib29sZWFuIHtcclxuICAgIHJldHVybiB0cnVlO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGFjdGl2ZVZpZXdNb2RlOiBDb250ZW50Vmlld01vZGUgPSBDb250ZW50Vmlld01vZGUuVGlsZXM7XHJcblxyXG4gIGNvbnN0cnVjdG9yKFxyXG4gICAgcHVibGljIHNlYXJjaFNlcnZpY2U6IFRyYW5zYWN0aW9uU2VhcmNoU2VydmljZSxcclxuICAgIHB1YmxpYyBpY29uQ2FjaGVTZXJ2aWNlOiBJY29uQ2FjaGVTZXJ2aWNlLFxyXG4gICkge1xyXG4gIH1cclxuXHJcbiAgcHVibGljIG5nT25Jbml0KCkge1xyXG4gIH1cclxuXHJcbiAgcHVibGljIG9uVHJhbnNhY3Rpb25DbGljayh0cmFuc2FjdGlvbjogVHJhbnNhY3Rpb25TZWFyY2hWaWV3KTogdm9pZCB7XHJcbiAgICB0aGlzLnRyYW5zYWN0aW9uQ2xpY2suZW1pdCh0cmFuc2FjdGlvbik7XHJcbiAgfVxyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { NgModule } from "@angular/core";
|
|
2
|
+
import { CommonModule } from "@angular/common";
|
|
3
|
+
import { AvatarModule } from "../../avatar/avatar.module";
|
|
4
|
+
import { TransactionSearchGridModule } from "../../transaction-search-grid/transaction-search-grid.module";
|
|
5
|
+
import { TransactionTileModule } from "../transaction-tile/transaction-tile.module";
|
|
6
|
+
import { TransactionSearchResultComponent } from "./transaction-search-result.component";
|
|
7
|
+
import { ButtonModule, InputSearchModule } from "@colijnit/corecomponents_v12";
|
|
8
|
+
import { ViewModeButtonsModule } from "../../view-mode-buttons/view-mode-buttons.module";
|
|
9
|
+
export class TransactionSearchResultModule {
|
|
10
|
+
}
|
|
11
|
+
TransactionSearchResultModule.decorators = [
|
|
12
|
+
{ type: NgModule, args: [{
|
|
13
|
+
imports: [
|
|
14
|
+
CommonModule,
|
|
15
|
+
InputSearchModule,
|
|
16
|
+
ButtonModule,
|
|
17
|
+
ViewModeButtonsModule,
|
|
18
|
+
AvatarModule,
|
|
19
|
+
TransactionTileModule,
|
|
20
|
+
TransactionSearchGridModule
|
|
21
|
+
],
|
|
22
|
+
declarations: [
|
|
23
|
+
TransactionSearchResultComponent
|
|
24
|
+
],
|
|
25
|
+
exports: [
|
|
26
|
+
TransactionSearchResultComponent
|
|
27
|
+
]
|
|
28
|
+
},] }
|
|
29
|
+
];
|
|
30
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1zZWFyY2gvdHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdC90cmFuc2FjdGlvbi1zZWFyY2gtcmVzdWx0Lm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDMUQsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sOERBQThELENBQUM7QUFDM0csT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sNkNBQTZDLENBQUM7QUFDcEYsT0FBTyxFQUFDLGdDQUFnQyxFQUFDLE1BQU0sdUNBQXVDLENBQUM7QUFDdkYsT0FBTyxFQUFDLFlBQVksRUFBRSxpQkFBaUIsRUFBQyxNQUFNLDhCQUE4QixDQUFDO0FBQzdFLE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLGtEQUFrRCxDQUFDO0FBbUJ2RixNQUFNLE9BQU8sNkJBQTZCOzs7WUFqQnpDLFFBQVEsU0FBQztnQkFDUixPQUFPLEVBQUU7b0JBQ1AsWUFBWTtvQkFDWixpQkFBaUI7b0JBQ2pCLFlBQVk7b0JBQ1oscUJBQXFCO29CQUNyQixZQUFZO29CQUNaLHFCQUFxQjtvQkFDckIsMkJBQTJCO2lCQUM1QjtnQkFDRCxZQUFZLEVBQUU7b0JBQ1osZ0NBQWdDO2lCQUNqQztnQkFDRCxPQUFPLEVBQUU7b0JBQ1AsZ0NBQWdDO2lCQUNqQzthQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHtDb21tb25Nb2R1bGV9IGZyb20gXCJAYW5ndWxhci9jb21tb25cIjtcclxuaW1wb3J0IHsgQXZhdGFyTW9kdWxlIH0gZnJvbSBcIi4uLy4uL2F2YXRhci9hdmF0YXIubW9kdWxlXCI7XHJcbmltcG9ydCB7IFRyYW5zYWN0aW9uU2VhcmNoR3JpZE1vZHVsZSB9IGZyb20gXCIuLi8uLi90cmFuc2FjdGlvbi1zZWFyY2gtZ3JpZC90cmFuc2FjdGlvbi1zZWFyY2gtZ3JpZC5tb2R1bGVcIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25UaWxlTW9kdWxlIH0gZnJvbSBcIi4uL3RyYW5zYWN0aW9uLXRpbGUvdHJhbnNhY3Rpb24tdGlsZS5tb2R1bGVcIjtcclxuaW1wb3J0IHtUcmFuc2FjdGlvblNlYXJjaFJlc3VsdENvbXBvbmVudH0gZnJvbSBcIi4vdHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdC5jb21wb25lbnRcIjtcclxuaW1wb3J0IHtCdXR0b25Nb2R1bGUsIElucHV0U2VhcmNoTW9kdWxlfSBmcm9tIFwiQGNvbGlqbml0L2NvcmVjb21wb25lbnRzX3YxMlwiO1xyXG5pbXBvcnQge1ZpZXdNb2RlQnV0dG9uc01vZHVsZX0gZnJvbSBcIi4uLy4uL3ZpZXctbW9kZS1idXR0b25zL3ZpZXctbW9kZS1idXR0b25zLm1vZHVsZVwiO1xyXG5cclxuQE5nTW9kdWxlKHtcclxuICBpbXBvcnRzOiBbXHJcbiAgICBDb21tb25Nb2R1bGUsXHJcbiAgICBJbnB1dFNlYXJjaE1vZHVsZSxcclxuICAgIEJ1dHRvbk1vZHVsZSxcclxuICAgIFZpZXdNb2RlQnV0dG9uc01vZHVsZSxcclxuICAgIEF2YXRhck1vZHVsZSxcclxuICAgIFRyYW5zYWN0aW9uVGlsZU1vZHVsZSxcclxuICAgIFRyYW5zYWN0aW9uU2VhcmNoR3JpZE1vZHVsZVxyXG4gIF0sXHJcbiAgZGVjbGFyYXRpb25zOiBbXHJcbiAgICBUcmFuc2FjdGlvblNlYXJjaFJlc3VsdENvbXBvbmVudFxyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgVHJhbnNhY3Rpb25TZWFyY2hSZXN1bHRDb21wb25lbnRcclxuICBdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUcmFuc2FjdGlvblNlYXJjaFJlc3VsdE1vZHVsZSB7XHJcbn1cclxuIl19
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { animate, state, style, transition, trigger } from "@angular/animations";
|
|
2
|
+
import { Component, EventEmitter, HostBinding, Output, ViewEncapsulation } from "@angular/core";
|
|
3
|
+
export class TransactionSearchComponent {
|
|
4
|
+
constructor() {
|
|
5
|
+
this.transactionClick = new EventEmitter();
|
|
6
|
+
this.showFilterSidebar = false;
|
|
7
|
+
}
|
|
8
|
+
showClass() {
|
|
9
|
+
return true;
|
|
10
|
+
}
|
|
11
|
+
handleShowFilter() {
|
|
12
|
+
this.showFilterSidebar = true;
|
|
13
|
+
}
|
|
14
|
+
handleHideFilter() {
|
|
15
|
+
this.showFilterSidebar = false;
|
|
16
|
+
}
|
|
17
|
+
handleResetFilter() {
|
|
18
|
+
this.showFilterSidebar = false;
|
|
19
|
+
setTimeout(() => { this.showFilterSidebar = true; }, 10);
|
|
20
|
+
}
|
|
21
|
+
onTransactionClick(transaction) {
|
|
22
|
+
this.transactionClick.emit(transaction);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
TransactionSearchComponent.decorators = [
|
|
26
|
+
{ type: Component, args: [{
|
|
27
|
+
selector: 'co-transaction-search',
|
|
28
|
+
template: `
|
|
29
|
+
<div class="transaction-search-wrapper">
|
|
30
|
+
<div class="transaction-filter-wrapper narrow-scrollbar" *ngIf="showFilterSidebar" @showHideFilterSidebar>
|
|
31
|
+
<co-transaction-filter (closeButtonClick)="handleHideFilter()"
|
|
32
|
+
(resetFilterClick)="handleResetFilter()"></co-transaction-filter>
|
|
33
|
+
</div>
|
|
34
|
+
<div class="transaction-search-result-wrapper">
|
|
35
|
+
<co-transaction-search-result (filterButtonClick)="handleShowFilter()"
|
|
36
|
+
(transactionClick)="onTransactionClick($event)"></co-transaction-search-result>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
`,
|
|
40
|
+
animations: [
|
|
41
|
+
trigger("showHideFilterSidebar", [
|
|
42
|
+
state("void", style({ transform: 'translateX(-100%)' })),
|
|
43
|
+
state("*", style({ transform: 'translateX(0)' })),
|
|
44
|
+
transition("void <=> *", animate("200ms ease-in-out"))
|
|
45
|
+
])
|
|
46
|
+
],
|
|
47
|
+
encapsulation: ViewEncapsulation.None
|
|
48
|
+
},] }
|
|
49
|
+
];
|
|
50
|
+
TransactionSearchComponent.ctorParameters = () => [];
|
|
51
|
+
TransactionSearchComponent.propDecorators = {
|
|
52
|
+
transactionClick: [{ type: Output }],
|
|
53
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-search",] }]
|
|
54
|
+
};
|
|
55
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvY29tcG9uZW50L3RyYW5zYWN0aW9uLXNlYXJjaC90cmFuc2FjdGlvbi1zZWFyY2guY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxPQUFPLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxVQUFVLEVBQUUsT0FBTyxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDakYsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsV0FBVyxFQUFFLE1BQU0sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQTBCaEcsTUFBTSxPQUFPLDBCQUEwQjtJQVlyQztRQVRPLHFCQUFnQixHQUF3QyxJQUFJLFlBQVksRUFBeUIsQ0FBQztRQU9sRyxzQkFBaUIsR0FBWSxLQUFLLENBQUM7SUFHMUMsQ0FBQztJQVBNLFNBQVM7UUFDZCxPQUFPLElBQUksQ0FBQztJQUNkLENBQUM7SUFPTSxnQkFBZ0I7UUFDckIsSUFBSSxDQUFDLGlCQUFpQixHQUFHLElBQUksQ0FBQztJQUNoQyxDQUFDO0lBRU0sZ0JBQWdCO1FBQ3JCLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxLQUFLLENBQUM7SUFDakMsQ0FBQztJQUVNLGlCQUFpQjtRQUN0QixJQUFJLENBQUMsaUJBQWlCLEdBQUcsS0FBSyxDQUFDO1FBQy9CLFVBQVUsQ0FBQyxHQUFHLEVBQUUsR0FBRSxJQUFJLENBQUMsaUJBQWlCLEdBQUcsSUFBSSxDQUFBLENBQUEsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDO0lBQ3hELENBQUM7SUFFTSxrQkFBa0IsQ0FBQyxXQUFrQztRQUMxRCxJQUFJLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDO0lBQzFDLENBQUM7OztZQXJERixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLHVCQUF1QjtnQkFDakMsUUFBUSxFQUFFOzs7Ozs7Ozs7OztHQVdUO2dCQUNELFVBQVUsRUFBRTtvQkFDVixPQUFPLENBQUMsdUJBQXVCLEVBQUU7d0JBQy9CLEtBQUssQ0FBQyxNQUFNLEVBQUUsS0FBSyxDQUFDLEVBQUMsU0FBUyxFQUFFLG1CQUFtQixFQUFDLENBQUMsQ0FBQzt3QkFDdEQsS0FBSyxDQUFDLEdBQUcsRUFBRSxLQUFLLENBQUMsRUFBQyxTQUFTLEVBQUUsZUFBZSxFQUFDLENBQUMsQ0FBQzt3QkFDL0MsVUFBVSxDQUFDLFlBQVksRUFBRSxPQUFPLENBQUMsbUJBQW1CLENBQUMsQ0FBQztxQkFDdkQsQ0FBQztpQkFDSDtnQkFDRCxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTthQUN0Qzs7OzsrQkFHRSxNQUFNO3dCQUdOLFdBQVcsU0FBQyw2QkFBNkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBhbmltYXRlLCBzdGF0ZSwgc3R5bGUsIHRyYW5zaXRpb24sIHRyaWdnZXIgfSBmcm9tIFwiQGFuZ3VsYXIvYW5pbWF0aW9uc1wiO1xyXG5pbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSG9zdEJpbmRpbmcsIE91dHB1dCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBUcmFuc2FjdGlvblNlYXJjaFZpZXcgfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL21vZGVsL3RyYW5zYWN0aW9uLXNlYXJjaC12aWV3LmJvXCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2NvLXRyYW5zYWN0aW9uLXNlYXJjaCcsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi1zZWFyY2gtd3JhcHBlclwiPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwidHJhbnNhY3Rpb24tZmlsdGVyLXdyYXBwZXIgbmFycm93LXNjcm9sbGJhclwiICpuZ0lmPVwic2hvd0ZpbHRlclNpZGViYXJcIiBAc2hvd0hpZGVGaWx0ZXJTaWRlYmFyPlxyXG4gICAgICAgIDxjby10cmFuc2FjdGlvbi1maWx0ZXIgKGNsb3NlQnV0dG9uQ2xpY2spPVwiaGFuZGxlSGlkZUZpbHRlcigpXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIChyZXNldEZpbHRlckNsaWNrKT1cImhhbmRsZVJlc2V0RmlsdGVyKClcIj48L2NvLXRyYW5zYWN0aW9uLWZpbHRlcj5cclxuICAgICAgPC9kaXY+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi1zZWFyY2gtcmVzdWx0LXdyYXBwZXJcIj5cclxuICAgICAgICA8Y28tdHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdCAoZmlsdGVyQnV0dG9uQ2xpY2spPVwiaGFuZGxlU2hvd0ZpbHRlcigpXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAodHJhbnNhY3Rpb25DbGljayk9XCJvblRyYW5zYWN0aW9uQ2xpY2soJGV2ZW50KVwiPjwvY28tdHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdD5cclxuICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuICBgLFxyXG4gIGFuaW1hdGlvbnM6IFtcclxuICAgIHRyaWdnZXIoXCJzaG93SGlkZUZpbHRlclNpZGViYXJcIiwgW1xyXG4gICAgICBzdGF0ZShcInZvaWRcIiwgc3R5bGUoe3RyYW5zZm9ybTogJ3RyYW5zbGF0ZVgoLTEwMCUpJ30pKSxcclxuICAgICAgc3RhdGUoXCIqXCIsIHN0eWxlKHt0cmFuc2Zvcm06ICd0cmFuc2xhdGVYKDApJ30pKSxcclxuICAgICAgdHJhbnNpdGlvbihcInZvaWQgPD0+ICpcIiwgYW5pbWF0ZShcIjIwMG1zIGVhc2UtaW4tb3V0XCIpKVxyXG4gICAgXSlcclxuICBdLFxyXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcclxufSlcclxuZXhwb3J0IGNsYXNzIFRyYW5zYWN0aW9uU2VhcmNoQ29tcG9uZW50IHtcclxuXHJcbiAgQE91dHB1dCgpXHJcbiAgcHVibGljIHRyYW5zYWN0aW9uQ2xpY2s6IEV2ZW50RW1pdHRlcjxUcmFuc2FjdGlvblNlYXJjaFZpZXc+ID0gbmV3IEV2ZW50RW1pdHRlcjxUcmFuc2FjdGlvblNlYXJjaFZpZXc+KCk7XHJcblxyXG4gIEBIb3N0QmluZGluZyhcImNsYXNzLmNvLXRyYW5zYWN0aW9uLXNlYXJjaFwiKVxyXG4gIHB1YmxpYyBzaG93Q2xhc3MoKTogYm9vbGVhbiB7XHJcbiAgICByZXR1cm4gdHJ1ZTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBzaG93RmlsdGVyU2lkZWJhcjogYm9vbGVhbiA9IGZhbHNlO1xyXG5cclxuICBjb25zdHJ1Y3RvcigpIHtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBoYW5kbGVTaG93RmlsdGVyKCk6IHZvaWQge1xyXG4gICAgdGhpcy5zaG93RmlsdGVyU2lkZWJhciA9IHRydWU7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgaGFuZGxlSGlkZUZpbHRlcigpOiB2b2lkIHtcclxuICAgIHRoaXMuc2hvd0ZpbHRlclNpZGViYXIgPSBmYWxzZTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBoYW5kbGVSZXNldEZpbHRlcigpOiB2b2lkIHtcclxuICAgIHRoaXMuc2hvd0ZpbHRlclNpZGViYXIgPSBmYWxzZTtcclxuICAgIHNldFRpbWVvdXQoKCkgPT4ge3RoaXMuc2hvd0ZpbHRlclNpZGViYXIgPSB0cnVlfSwgMTApO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIG9uVHJhbnNhY3Rpb25DbGljayh0cmFuc2FjdGlvbjogVHJhbnNhY3Rpb25TZWFyY2hWaWV3KTogdm9pZCB7XHJcbiAgICB0aGlzLnRyYW5zYWN0aW9uQ2xpY2suZW1pdCh0cmFuc2FjdGlvbik7XHJcbiAgfVxyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { NgModule } from "@angular/core";
|
|
2
|
+
import { CommonModule } from "@angular/common";
|
|
3
|
+
import { InputSearchModule } from "@colijnit/corecomponents_v12";
|
|
4
|
+
import { TransactionSearchComponent } from "./transaction-search.component";
|
|
5
|
+
import { TransactionSearchResultModule } from "./transaction-search-result/transaction-search-result.module";
|
|
6
|
+
import { TransactionFilterModule } from "./transaction-filter/transaction-filter.module";
|
|
7
|
+
export class TransactionSearchModule {
|
|
8
|
+
}
|
|
9
|
+
TransactionSearchModule.decorators = [
|
|
10
|
+
{ type: NgModule, args: [{
|
|
11
|
+
imports: [
|
|
12
|
+
CommonModule,
|
|
13
|
+
InputSearchModule,
|
|
14
|
+
TransactionSearchResultModule,
|
|
15
|
+
TransactionFilterModule
|
|
16
|
+
],
|
|
17
|
+
declarations: [
|
|
18
|
+
TransactionSearchComponent
|
|
19
|
+
],
|
|
20
|
+
exports: [
|
|
21
|
+
TransactionSearchComponent
|
|
22
|
+
]
|
|
23
|
+
},] }
|
|
24
|
+
];
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvY29tcG9uZW50L3RyYW5zYWN0aW9uLXNlYXJjaC90cmFuc2FjdGlvbi1zZWFyY2gubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDdkMsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyxpQkFBaUIsRUFBQyxNQUFNLDhCQUE4QixDQUFDO0FBQy9ELE9BQU8sRUFBQywwQkFBMEIsRUFBQyxNQUFNLGdDQUFnQyxDQUFDO0FBQzFFLE9BQU8sRUFBQyw2QkFBNkIsRUFBQyxNQUFNLDhEQUE4RCxDQUFDO0FBQzNHLE9BQU8sRUFBQyx1QkFBdUIsRUFBQyxNQUFNLGdEQUFnRCxDQUFDO0FBZ0J2RixNQUFNLE9BQU8sdUJBQXVCOzs7WUFkbkMsUUFBUSxTQUFDO2dCQUNOLE9BQU8sRUFBRTtvQkFDTCxZQUFZO29CQUNaLGlCQUFpQjtvQkFDakIsNkJBQTZCO29CQUM3Qix1QkFBdUI7aUJBQzFCO2dCQUNILFlBQVksRUFBRTtvQkFDWiwwQkFBMEI7aUJBQzNCO2dCQUNELE9BQU8sRUFBRTtvQkFDUCwwQkFBMEI7aUJBQzNCO2FBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge05nTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSBcIkBhbmd1bGFyL2NvbW1vblwiO1xyXG5pbXBvcnQge0lucHV0U2VhcmNoTW9kdWxlfSBmcm9tIFwiQGNvbGlqbml0L2NvcmVjb21wb25lbnRzX3YxMlwiO1xyXG5pbXBvcnQge1RyYW5zYWN0aW9uU2VhcmNoQ29tcG9uZW50fSBmcm9tIFwiLi90cmFuc2FjdGlvbi1zZWFyY2guY29tcG9uZW50XCI7XHJcbmltcG9ydCB7VHJhbnNhY3Rpb25TZWFyY2hSZXN1bHRNb2R1bGV9IGZyb20gXCIuL3RyYW5zYWN0aW9uLXNlYXJjaC1yZXN1bHQvdHJhbnNhY3Rpb24tc2VhcmNoLXJlc3VsdC5tb2R1bGVcIjtcclxuaW1wb3J0IHtUcmFuc2FjdGlvbkZpbHRlck1vZHVsZX0gZnJvbSBcIi4vdHJhbnNhY3Rpb24tZmlsdGVyL3RyYW5zYWN0aW9uLWZpbHRlci5tb2R1bGVcIjtcclxuXHJcbkBOZ01vZHVsZSh7XHJcbiAgICBpbXBvcnRzOiBbXHJcbiAgICAgICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgICAgIElucHV0U2VhcmNoTW9kdWxlLFxyXG4gICAgICAgIFRyYW5zYWN0aW9uU2VhcmNoUmVzdWx0TW9kdWxlLFxyXG4gICAgICAgIFRyYW5zYWN0aW9uRmlsdGVyTW9kdWxlXHJcbiAgICBdLFxyXG4gIGRlY2xhcmF0aW9uczogW1xyXG4gICAgVHJhbnNhY3Rpb25TZWFyY2hDb21wb25lbnRcclxuICBdLFxyXG4gIGV4cG9ydHM6IFtcclxuICAgIFRyYW5zYWN0aW9uU2VhcmNoQ29tcG9uZW50XHJcbiAgXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgVHJhbnNhY3Rpb25TZWFyY2hNb2R1bGUge1xyXG59XHJcbiJdfQ==
|
package/esm2015/lib/component/transaction-search/transaction-tile/transaction-tile.component.js
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { Component, EventEmitter, HostBinding, Input, Output, ViewEncapsulation } from "@angular/core";
|
|
2
|
+
import { Icon } from "../../../enum/icon.enum";
|
|
3
|
+
import { IconCacheService } from "../../../service/icon-cache.service";
|
|
4
|
+
export class TransactionTileComponent {
|
|
5
|
+
constructor(iconCacheService) {
|
|
6
|
+
this.iconCacheService = iconCacheService;
|
|
7
|
+
this.icons = Icon;
|
|
8
|
+
this.tileClick = new EventEmitter();
|
|
9
|
+
}
|
|
10
|
+
showClass() {
|
|
11
|
+
return true;
|
|
12
|
+
}
|
|
13
|
+
onTileClick(event) {
|
|
14
|
+
this.tileClick.emit(event);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
TransactionTileComponent.decorators = [
|
|
18
|
+
{ type: Component, args: [{
|
|
19
|
+
selector: "co-transaction-tile",
|
|
20
|
+
template: `
|
|
21
|
+
<div class="transaction-tile-wrapper" (click)="onTileClick($event)">
|
|
22
|
+
<div class="transaction-tile-body">
|
|
23
|
+
<div class="transaction-tile-avatar">
|
|
24
|
+
<co-avatar [relationId]="transaction.handledBy"></co-avatar>
|
|
25
|
+
</div>
|
|
26
|
+
<div class="transaction-tile-seller-info">
|
|
27
|
+
<div>
|
|
28
|
+
<div class="header"><span [textContent]="transaction.transNr"></span></div>
|
|
29
|
+
<div class="text"><span [textContent]="transaction.brancheName"></span></div>
|
|
30
|
+
</div>
|
|
31
|
+
<div>
|
|
32
|
+
<div class="text"><span [textContent]="transaction.getAdres()"></span></div>
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
<div class="transaction-tile-order-summary">
|
|
36
|
+
<div class="header"><span [textContent]="'€12.345'"></span></div> <!--todo: vullen als api aanpassing gedaan is-->
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
<div class="transaction-tile-footer">
|
|
40
|
+
<div class="order-info-section">
|
|
41
|
+
<div class="label"><span [textContent]="'ORDER_DATE' | localize"></span></div>
|
|
42
|
+
<div class="value">
|
|
43
|
+
<span [textContent]="transaction.getTransDate() | date:'dd MMM yyyy'"></span></div>
|
|
44
|
+
</div>
|
|
45
|
+
<div class="order-info-section">
|
|
46
|
+
<div class="label"><span [textContent]="'DELIVERY_DATE' | localize"></span></div>
|
|
47
|
+
<div class="value">
|
|
48
|
+
<span [textContent]="transaction.getDeliveryDate() | date:'dd MMM yyyy'"></span>
|
|
49
|
+
<div *ngIf="transaction.getDeliveryDate()">
|
|
50
|
+
<co-icon *ngIf="transaction.deliveryDateDefinitive; else indefinite"
|
|
51
|
+
[iconData]="this.iconCacheService.getIcon(this.icons.Lock)" class="lock-icon"></co-icon>
|
|
52
|
+
<ng-template #indefinite>
|
|
53
|
+
<co-icon [iconData]="this.iconCacheService.getIcon(this.icons.Unlock)" class="unlock-icon"></co-icon>
|
|
54
|
+
</ng-template>
|
|
55
|
+
</div>
|
|
56
|
+
</div>
|
|
57
|
+
</div>
|
|
58
|
+
<div class="order-info-section">
|
|
59
|
+
<div class="label"><span [textContent]="'ORDER_RULE' | localize"></span></div>
|
|
60
|
+
<div class="value">
|
|
61
|
+
<span [textContent]="'68/00'"></span></div>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
|
|
65
|
+
</div>`,
|
|
66
|
+
encapsulation: ViewEncapsulation.None
|
|
67
|
+
},] }
|
|
68
|
+
];
|
|
69
|
+
TransactionTileComponent.ctorParameters = () => [
|
|
70
|
+
{ type: IconCacheService }
|
|
71
|
+
];
|
|
72
|
+
TransactionTileComponent.propDecorators = {
|
|
73
|
+
transaction: [{ type: Input }],
|
|
74
|
+
tileClick: [{ type: Output }],
|
|
75
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-tile",] }]
|
|
76
|
+
};
|
|
77
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tdGlsZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1zZWFyY2gvdHJhbnNhY3Rpb24tdGlsZS90cmFuc2FjdGlvbi10aWxlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxXQUFXLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUV2RyxPQUFPLEVBQUUsSUFBSSxFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0scUNBQXFDLENBQUM7QUFvRHZFLE1BQU0sT0FBTyx3QkFBd0I7SUFlbkMsWUFDUyxnQkFBa0M7UUFBbEMscUJBQWdCLEdBQWhCLGdCQUFnQixDQUFrQjtRQWYzQixVQUFLLEdBQWdCLElBQUksQ0FBQztRQU1uQyxjQUFTLEdBQTZCLElBQUksWUFBWSxFQUFjLENBQUM7SUFXNUUsQ0FBQztJQVBNLFNBQVM7UUFDZCxPQUFPLElBQUksQ0FBQztJQUNkLENBQUM7SUFPTSxXQUFXLENBQUMsS0FBaUI7UUFDbEMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDN0IsQ0FBQzs7O1lBeEVGLFNBQVMsU0FBQztnQkFDVCxRQUFRLEVBQUUscUJBQXFCO2dCQUMvQixRQUFRLEVBQUU7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztXQTZDRDtnQkFDVCxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTthQUN0Qzs7O1lBbkRRLGdCQUFnQjs7OzBCQXVEdEIsS0FBSzt3QkFHTCxNQUFNO3dCQUlOLFdBQVcsU0FBQywyQkFBMkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSG9zdEJpbmRpbmcsIElucHV0LCBPdXRwdXQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgVHJhbnNhY3Rpb25TZWFyY2hWaWV3IH0gZnJvbSBcIkBjb2xpam5pdC90cmFuc2FjdGlvbmFwaS9idWlsZC9tb2RlbC90cmFuc2FjdGlvbi1zZWFyY2gtdmlldy5ib1wiO1xyXG5pbXBvcnQgeyBJY29uIH0gZnJvbSBcIi4uLy4uLy4uL2VudW0vaWNvbi5lbnVtXCI7XHJcbmltcG9ydCB7IEljb25DYWNoZVNlcnZpY2UgfSBmcm9tIFwiLi4vLi4vLi4vc2VydmljZS9pY29uLWNhY2hlLnNlcnZpY2VcIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiBcImNvLXRyYW5zYWN0aW9uLXRpbGVcIixcclxuICB0ZW1wbGF0ZTogYFxyXG4gICAgPGRpdiBjbGFzcz1cInRyYW5zYWN0aW9uLXRpbGUtd3JhcHBlclwiIChjbGljayk9XCJvblRpbGVDbGljaygkZXZlbnQpXCI+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi10aWxlLWJvZHlcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwidHJhbnNhY3Rpb24tdGlsZS1hdmF0YXJcIj5cclxuICAgICAgICAgIDxjby1hdmF0YXIgW3JlbGF0aW9uSWRdPVwidHJhbnNhY3Rpb24uaGFuZGxlZEJ5XCI+PC9jby1hdmF0YXI+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cInRyYW5zYWN0aW9uLXRpbGUtc2VsbGVyLWluZm9cIj5cclxuICAgICAgICAgIDxkaXY+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJoZWFkZXJcIj48c3BhbiBbdGV4dENvbnRlbnRdPVwidHJhbnNhY3Rpb24udHJhbnNOclwiPjwvc3Bhbj48L2Rpdj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cInRleHRcIj48c3BhbiBbdGV4dENvbnRlbnRdPVwidHJhbnNhY3Rpb24uYnJhbmNoZU5hbWVcIj48L3NwYW4+PC9kaXY+XHJcbiAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgIDxkaXY+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ0ZXh0XCI+PHNwYW4gW3RleHRDb250ZW50XT1cInRyYW5zYWN0aW9uLmdldEFkcmVzKClcIj48L3NwYW4+PC9kaXY+XHJcbiAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwidHJhbnNhY3Rpb24tdGlsZS1vcmRlci1zdW1tYXJ5XCI+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiaGVhZGVyXCI+PHNwYW4gW3RleHRDb250ZW50XT1cIifigqwxMi4zNDUnXCI+PC9zcGFuPjwvZGl2PiAgPCEtLXRvZG86IHZ1bGxlbiBhbHMgYXBpIGFhbnBhc3NpbmcgZ2VkYWFuIGlzLS0+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgICA8ZGl2IGNsYXNzPVwidHJhbnNhY3Rpb24tdGlsZS1mb290ZXJcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwib3JkZXItaW5mby1zZWN0aW9uXCI+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwibGFiZWxcIj48c3BhbiBbdGV4dENvbnRlbnRdPVwiJ09SREVSX0RBVEUnIHwgbG9jYWxpemVcIj48L3NwYW4+PC9kaXY+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwidmFsdWVcIj5cclxuICAgICAgICAgICAgPHNwYW4gW3RleHRDb250ZW50XT1cInRyYW5zYWN0aW9uLmdldFRyYW5zRGF0ZSgpIHwgZGF0ZTonZGQgTU1NIHl5eXknXCI+PC9zcGFuPjwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJvcmRlci1pbmZvLXNlY3Rpb25cIj5cclxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJsYWJlbFwiPjxzcGFuIFt0ZXh0Q29udGVudF09XCInREVMSVZFUllfREFURScgfCBsb2NhbGl6ZVwiPjwvc3Bhbj48L2Rpdj5cclxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJ2YWx1ZVwiPlxyXG4gICAgICAgICAgICA8c3BhbiBbdGV4dENvbnRlbnRdPVwidHJhbnNhY3Rpb24uZ2V0RGVsaXZlcnlEYXRlKCkgfCBkYXRlOidkZCBNTU0geXl5eSdcIj48L3NwYW4+XHJcbiAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJ0cmFuc2FjdGlvbi5nZXREZWxpdmVyeURhdGUoKVwiPlxyXG4gICAgICAgICAgICAgIDxjby1pY29uICpuZ0lmPVwidHJhbnNhY3Rpb24uZGVsaXZlcnlEYXRlRGVmaW5pdGl2ZTsgZWxzZSBpbmRlZmluaXRlXCJcclxuICAgICAgICAgICAgICAgICAgICAgICBbaWNvbkRhdGFdPVwidGhpcy5pY29uQ2FjaGVTZXJ2aWNlLmdldEljb24odGhpcy5pY29ucy5Mb2NrKVwiIGNsYXNzPVwibG9jay1pY29uXCI+PC9jby1pY29uPlxyXG4gICAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjaW5kZWZpbml0ZT5cclxuICAgICAgICAgICAgICAgIDxjby1pY29uIFtpY29uRGF0YV09XCJ0aGlzLmljb25DYWNoZVNlcnZpY2UuZ2V0SWNvbih0aGlzLmljb25zLlVubG9jaylcIiBjbGFzcz1cInVubG9jay1pY29uXCI+PC9jby1pY29uPlxyXG4gICAgICAgICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cIm9yZGVyLWluZm8tc2VjdGlvblwiPlxyXG4gICAgICAgICAgPGRpdiBjbGFzcz1cImxhYmVsXCI+PHNwYW4gW3RleHRDb250ZW50XT1cIidPUkRFUl9SVUxFJyB8IGxvY2FsaXplXCI+PC9zcGFuPjwvZGl2PlxyXG4gICAgICAgICAgPGRpdiBjbGFzcz1cInZhbHVlXCI+XHJcbiAgICAgICAgICAgIDxzcGFuIFt0ZXh0Q29udGVudF09XCInNjgvMDAnXCI+PC9zcGFuPjwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICA8L2Rpdj5cclxuXHJcbiAgICA8L2Rpdj5gLFxyXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcclxufSlcclxuZXhwb3J0IGNsYXNzIFRyYW5zYWN0aW9uVGlsZUNvbXBvbmVudCB7XHJcbiAgcHVibGljIHJlYWRvbmx5IGljb25zOiB0eXBlb2YgSWNvbiA9IEljb247XHJcblxyXG4gIEBJbnB1dCgpXHJcbiAgcHVibGljIHRyYW5zYWN0aW9uOiBUcmFuc2FjdGlvblNlYXJjaFZpZXc7XHJcblxyXG4gIEBPdXRwdXQoKVxyXG4gIHB1YmxpYyB0aWxlQ2xpY2s6IEV2ZW50RW1pdHRlcjxNb3VzZUV2ZW50PiA9IG5ldyBFdmVudEVtaXR0ZXI8TW91c2VFdmVudD4oKTtcclxuXHJcblxyXG4gIEBIb3N0QmluZGluZyhcImNsYXNzLmNvLXRyYW5zYWN0aW9uLXRpbGVcIilcclxuICBwdWJsaWMgc2hvd0NsYXNzKCk6IGJvb2xlYW4ge1xyXG4gICAgcmV0dXJuIHRydWU7XHJcbiAgfVxyXG5cclxuICBjb25zdHJ1Y3RvcihcclxuICAgIHB1YmxpYyBpY29uQ2FjaGVTZXJ2aWNlOiBJY29uQ2FjaGVTZXJ2aWNlXHJcbiAgKSB7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgb25UaWxlQ2xpY2soZXZlbnQ6IE1vdXNlRXZlbnQpOiB2b2lkIHtcclxuICAgIHRoaXMudGlsZUNsaWNrLmVtaXQoZXZlbnQpO1xyXG4gIH1cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { CommonModule } from "@angular/common";
|
|
2
|
+
import { NgModule } from "@angular/core";
|
|
3
|
+
import { ButtonModule, IconModule } from "@colijnit/corecomponents_v12";
|
|
4
|
+
import { PipeModule } from "../../../pipe/pipe.module";
|
|
5
|
+
import { CoreModule } from "../../core/core.module";
|
|
6
|
+
import { AvatarModule } from "../../avatar/avatar.module";
|
|
7
|
+
import { TransactionTileComponent } from "./transaction-tile.component";
|
|
8
|
+
export class TransactionTileModule {
|
|
9
|
+
}
|
|
10
|
+
TransactionTileModule.decorators = [
|
|
11
|
+
{ type: NgModule, args: [{
|
|
12
|
+
imports: [
|
|
13
|
+
CommonModule,
|
|
14
|
+
CoreModule,
|
|
15
|
+
AvatarModule,
|
|
16
|
+
ButtonModule,
|
|
17
|
+
PipeModule,
|
|
18
|
+
IconModule,
|
|
19
|
+
],
|
|
20
|
+
declarations: [
|
|
21
|
+
TransactionTileComponent
|
|
22
|
+
],
|
|
23
|
+
exports: [
|
|
24
|
+
TransactionTileComponent
|
|
25
|
+
]
|
|
26
|
+
},] }
|
|
27
|
+
];
|
|
28
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tdGlsZS5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1zZWFyY2gvdHJhbnNhY3Rpb24tdGlsZS90cmFuc2FjdGlvbi10aWxlLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLFVBQVUsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQ3hFLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQztBQUN2RCxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDcEQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQzFELE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBa0J4RSxNQUFNLE9BQU8scUJBQXFCOzs7WUFoQmpDLFFBQVEsU0FBQztnQkFDUixPQUFPLEVBQUU7b0JBQ1AsWUFBWTtvQkFDWixVQUFVO29CQUNWLFlBQVk7b0JBQ1osWUFBWTtvQkFDWixVQUFVO29CQUNWLFVBQVU7aUJBQ1g7Z0JBQ0QsWUFBWSxFQUFFO29CQUNaLHdCQUF3QjtpQkFDekI7Z0JBQ0QsT0FBTyxFQUFFO29CQUNQLHdCQUF3QjtpQkFDekI7YUFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gXCJAYW5ndWxhci9jb21tb25cIjtcclxuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBCdXR0b25Nb2R1bGUsIEljb25Nb2R1bGUgfSBmcm9tIFwiQGNvbGlqbml0L2NvcmVjb21wb25lbnRzX3YxMlwiO1xyXG5pbXBvcnQgeyBQaXBlTW9kdWxlIH0gZnJvbSBcIi4uLy4uLy4uL3BpcGUvcGlwZS5tb2R1bGVcIjtcclxuaW1wb3J0IHsgQ29yZU1vZHVsZSB9IGZyb20gXCIuLi8uLi9jb3JlL2NvcmUubW9kdWxlXCI7XHJcbmltcG9ydCB7IEF2YXRhck1vZHVsZSB9IGZyb20gXCIuLi8uLi9hdmF0YXIvYXZhdGFyLm1vZHVsZVwiO1xyXG5pbXBvcnQgeyBUcmFuc2FjdGlvblRpbGVDb21wb25lbnQgfSBmcm9tIFwiLi90cmFuc2FjdGlvbi10aWxlLmNvbXBvbmVudFwiO1xyXG5cclxuQE5nTW9kdWxlKHtcclxuICBpbXBvcnRzOiBbXHJcbiAgICBDb21tb25Nb2R1bGUsXHJcbiAgICBDb3JlTW9kdWxlLFxyXG4gICAgQXZhdGFyTW9kdWxlLFxyXG4gICAgQnV0dG9uTW9kdWxlLFxyXG4gICAgUGlwZU1vZHVsZSxcclxuICAgIEljb25Nb2R1bGUsXHJcbiAgXSxcclxuICBkZWNsYXJhdGlvbnM6IFtcclxuICAgIFRyYW5zYWN0aW9uVGlsZUNvbXBvbmVudFxyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgVHJhbnNhY3Rpb25UaWxlQ29tcG9uZW50XHJcbiAgXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgVHJhbnNhY3Rpb25UaWxlTW9kdWxlIHtcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { Component, ContentChildren, EventEmitter, HostBinding, Input, Output, ViewEncapsulation } from "@angular/core";
|
|
2
|
+
import { ColumnAlign, SimpleGridColumnDirective } from "@colijnit/corecomponents_v12";
|
|
3
|
+
export class TransactionSearchGridComponent {
|
|
4
|
+
constructor() {
|
|
5
|
+
this.align = ColumnAlign;
|
|
6
|
+
this.transactions = [];
|
|
7
|
+
this.transactionClick = new EventEmitter();
|
|
8
|
+
this.extraColumns = [];
|
|
9
|
+
}
|
|
10
|
+
set content(columnComponents) {
|
|
11
|
+
this.extraColumns = columnComponents.toArray();
|
|
12
|
+
}
|
|
13
|
+
showClass() {
|
|
14
|
+
return true;
|
|
15
|
+
}
|
|
16
|
+
onTransactionClick(transaction) {
|
|
17
|
+
this.transactionClick.emit(transaction);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
TransactionSearchGridComponent.decorators = [
|
|
21
|
+
{ type: Component, args: [{
|
|
22
|
+
selector: "co-transaction-search-grid",
|
|
23
|
+
template: `
|
|
24
|
+
<div>
|
|
25
|
+
<co-simple-grid [data]="transactions" [extraColumns]="extraColumns" [dragDropEnabled]="true" [emitDragDrop]="false"
|
|
26
|
+
(selectRow)="onTransactionClick($event)">
|
|
27
|
+
<co-simple-grid-column [headerText]="'ACTIVE' | localize"
|
|
28
|
+
[order]="10" [textAlign]="align.Center">
|
|
29
|
+
<ng-template #template let-row= "row">
|
|
30
|
+
<co-input-checkbox [model]="row.active" readonly></co-input-checkbox>
|
|
31
|
+
</ng-template>
|
|
32
|
+
</co-simple-grid-column>
|
|
33
|
+
<co-simple-grid-column [headerText]="'NR' | localize" [field]="'transNr'" [order]="20"></co-simple-grid-column>
|
|
34
|
+
<co-simple-grid-column [headerText]="'NAME' | localize" [field]="'relationName'"
|
|
35
|
+
[order]="30"></co-simple-grid-column>
|
|
36
|
+
<co-simple-grid-column [headerText]="'RELATION_NUMBER' | localize" [field]="'relationNr'"
|
|
37
|
+
[order]="40"></co-simple-grid-column>
|
|
38
|
+
<co-simple-grid-column [headerText]="'BRANCH' | localize" [field]="'brancheName'"
|
|
39
|
+
[order]="50"></co-simple-grid-column>
|
|
40
|
+
<co-simple-grid-column [headerText]="'ADDRESS' | localize" [field]="'adres'"
|
|
41
|
+
[order]="70"></co-simple-grid-column>
|
|
42
|
+
<co-simple-grid-column [headerText]="'REFERENCE_RELATION' | localize" [field]="'relationReference'" [order]="80"></co-simple-grid-column>
|
|
43
|
+
<co-simple-grid-column [headerText]="'PREFERRED_DATE' | localize"
|
|
44
|
+
[order]="90" [textAlign]="align.Right" [resizable]="false">
|
|
45
|
+
<ng-template #template let-row = "row">
|
|
46
|
+
<div [textContent]=""></div> <!--todo: wachten op aanpassing api-->
|
|
47
|
+
</ng-template>
|
|
48
|
+
</co-simple-grid-column>
|
|
49
|
+
<co-simple-grid-column [headerText]="'TRANSACTION_DATE' | localize"
|
|
50
|
+
[order]="100" [textAlign]="align.Right" [resizable]="false">
|
|
51
|
+
<ng-template #template let-row = "row">
|
|
52
|
+
<div [textContent]="row.transDate | date:'dd MMM yyyy'"></div>
|
|
53
|
+
</ng-template>
|
|
54
|
+
</co-simple-grid-column>
|
|
55
|
+
<co-simple-grid-column [headerText]="'ORDER_DEFINITIVE' | localize"
|
|
56
|
+
[order]="105" [textAlign]="align.Center">
|
|
57
|
+
<ng-template #template let-row= "row">
|
|
58
|
+
<co-input-checkbox [model]="row.transactionDefinitive" readonly></co-input-checkbox>
|
|
59
|
+
</ng-template>
|
|
60
|
+
</co-simple-grid-column>
|
|
61
|
+
<co-simple-grid-column [headerText]="'DELIVERY_DATE' | localize"
|
|
62
|
+
[order]="110" [textAlign]="align.Right" [resizable]="false" >
|
|
63
|
+
<ng-template #template let-row = "row">
|
|
64
|
+
<div [textContent]="row.deliveryDate | date:'dd MMM yyyy'"></div>
|
|
65
|
+
</ng-template>
|
|
66
|
+
</co-simple-grid-column>
|
|
67
|
+
<co-simple-grid-column [headerText]="'DELIVERY_DATE_DEFINITIVE' | localize"
|
|
68
|
+
[order]="115" [textAlign]="align.Center">
|
|
69
|
+
<ng-template #template let-row= "row">
|
|
70
|
+
<co-input-checkbox [model]="row.deliveryDateDefinitive" readonly></co-input-checkbox>
|
|
71
|
+
</ng-template>
|
|
72
|
+
</co-simple-grid-column>
|
|
73
|
+
</co-simple-grid>
|
|
74
|
+
</div>
|
|
75
|
+
`,
|
|
76
|
+
encapsulation: ViewEncapsulation.None
|
|
77
|
+
},] }
|
|
78
|
+
];
|
|
79
|
+
TransactionSearchGridComponent.ctorParameters = () => [];
|
|
80
|
+
TransactionSearchGridComponent.propDecorators = {
|
|
81
|
+
content: [{ type: ContentChildren, args: [SimpleGridColumnDirective,] }],
|
|
82
|
+
showClass: [{ type: HostBinding, args: ["class.co-transaction-search-grid",] }],
|
|
83
|
+
transactions: [{ type: Input }],
|
|
84
|
+
transactionClick: [{ type: Output }]
|
|
85
|
+
};
|
|
86
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLWdyaWQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdHJhbnNhY3Rpb24tc2VhcmNoLWdyaWQvdHJhbnNhY3Rpb24tc2VhcmNoLWdyaWQuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCxTQUFTLEVBQ1QsZUFBZSxFQUNmLFlBQVksRUFDWixXQUFXLEVBQ1gsS0FBSyxFQUFFLE1BQU0sRUFFYixpQkFBaUIsRUFDbEIsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLFdBQVcsRUFBRSx5QkFBeUIsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBNER0RixNQUFNLE9BQU8sOEJBQThCO0lBb0J6QztRQW5CZ0IsVUFBSyxHQUF1QixXQUFXLENBQUM7UUFZakQsaUJBQVksR0FBNEIsRUFBRSxDQUFDO1FBRzNDLHFCQUFnQixHQUF5QyxJQUFJLFlBQVksRUFBeUIsQ0FBQztRQUVuRyxpQkFBWSxHQUFnQyxFQUFFLENBQUM7SUFHdEQsQ0FBQztJQWxCRCxJQUFnRCxPQUFPLENBQUMsZ0JBQXNEO1FBQzVHLElBQUksQ0FBQyxZQUFZLEdBQUcsZ0JBQWdCLENBQUMsT0FBTyxFQUFFLENBQUM7SUFDakQsQ0FBQztJQUdNLFNBQVM7UUFDZCxPQUFPLElBQUksQ0FBQztJQUNkLENBQUM7SUFhTSxrQkFBa0IsQ0FBQyxXQUFnQjtRQUN4QyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLFdBQW9DLENBQUMsQ0FBQztJQUNuRSxDQUFDOzs7WUFsRkYsU0FBUyxTQUFDO2dCQUNULFFBQVEsRUFBRSw0QkFBNEI7Z0JBQ3RDLFFBQVEsRUFBRTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztHQW9EVDtnQkFDRCxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTthQUN0Qzs7OztzQkFJRSxlQUFlLFNBQUMseUJBQXlCO3dCQUl6QyxXQUFXLFNBQUMsa0NBQWtDOzJCQUs5QyxLQUFLOytCQUdMLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xyXG4gIENvbXBvbmVudCxcclxuICBDb250ZW50Q2hpbGRyZW4sXHJcbiAgRXZlbnRFbWl0dGVyLFxyXG4gIEhvc3RCaW5kaW5nLFxyXG4gIElucHV0LCBPdXRwdXQsXHJcbiAgUXVlcnlMaXN0LFxyXG4gIFZpZXdFbmNhcHN1bGF0aW9uXHJcbn0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcclxuaW1wb3J0IHsgQ29sdW1uQWxpZ24sIFNpbXBsZUdyaWRDb2x1bW5EaXJlY3RpdmUgfSBmcm9tIFwiQGNvbGlqbml0L2NvcmVjb21wb25lbnRzX3YxMlwiO1xyXG5pbXBvcnQgeyBUcmFuc2FjdGlvblNlYXJjaFZpZXcgfSBmcm9tIFwiQGNvbGlqbml0L3RyYW5zYWN0aW9uYXBpL2J1aWxkL21vZGVsL3RyYW5zYWN0aW9uLXNlYXJjaC12aWV3LmJvXCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogXCJjby10cmFuc2FjdGlvbi1zZWFyY2gtZ3JpZFwiLFxyXG4gIHRlbXBsYXRlOiBgXHJcbiAgICA8ZGl2PlxyXG4gICAgICA8Y28tc2ltcGxlLWdyaWQgW2RhdGFdPVwidHJhbnNhY3Rpb25zXCIgW2V4dHJhQ29sdW1uc109XCJleHRyYUNvbHVtbnNcIiBbZHJhZ0Ryb3BFbmFibGVkXT1cInRydWVcIiBbZW1pdERyYWdEcm9wXT1cImZhbHNlXCJcclxuICAgICAgICAgICAgICAgICAgICAgIChzZWxlY3RSb3cpPVwib25UcmFuc2FjdGlvbkNsaWNrKCRldmVudClcIj5cclxuICAgICAgICA8Y28tc2ltcGxlLWdyaWQtY29sdW1uIFtoZWFkZXJUZXh0XT1cIidBQ1RJVkUnIHwgbG9jYWxpemVcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW29yZGVyXT1cIjEwXCIgW3RleHRBbGlnbl09XCJhbGlnbi5DZW50ZXJcIj5cclxuICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjdGVtcGxhdGUgbGV0LXJvdz0gXCJyb3dcIj5cclxuICAgICAgICAgICAgPGNvLWlucHV0LWNoZWNrYm94IFttb2RlbF09XCJyb3cuYWN0aXZlXCIgcmVhZG9ubHk+PC9jby1pbnB1dC1jaGVja2JveD5cclxuICAgICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICAgICAgPC9jby1zaW1wbGUtZ3JpZC1jb2x1bW4+XHJcbiAgICAgICAgPGNvLXNpbXBsZS1ncmlkLWNvbHVtbiBbaGVhZGVyVGV4dF09XCInTlInIHwgbG9jYWxpemVcIiBbZmllbGRdPVwiJ3RyYW5zTnInXCIgW29yZGVyXT1cIjIwXCI+PC9jby1zaW1wbGUtZ3JpZC1jb2x1bW4+XHJcbiAgICAgICAgPGNvLXNpbXBsZS1ncmlkLWNvbHVtbiBbaGVhZGVyVGV4dF09XCInTkFNRScgfCBsb2NhbGl6ZVwiIFtmaWVsZF09XCIncmVsYXRpb25OYW1lJ1wiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbb3JkZXJdPVwiMzBcIj48L2NvLXNpbXBsZS1ncmlkLWNvbHVtbj5cclxuICAgICAgICA8Y28tc2ltcGxlLWdyaWQtY29sdW1uIFtoZWFkZXJUZXh0XT1cIidSRUxBVElPTl9OVU1CRVInIHwgbG9jYWxpemVcIiBbZmllbGRdPVwiJ3JlbGF0aW9uTnInXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtvcmRlcl09XCI0MFwiPjwvY28tc2ltcGxlLWdyaWQtY29sdW1uPlxyXG4gICAgICAgIDxjby1zaW1wbGUtZ3JpZC1jb2x1bW4gW2hlYWRlclRleHRdPVwiJ0JSQU5DSCcgfCBsb2NhbGl6ZVwiIFtmaWVsZF09XCInYnJhbmNoZU5hbWUnXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtvcmRlcl09XCI1MFwiPjwvY28tc2ltcGxlLWdyaWQtY29sdW1uPlxyXG4gICAgICAgIDxjby1zaW1wbGUtZ3JpZC1jb2x1bW4gW2hlYWRlclRleHRdPVwiJ0FERFJFU1MnIHwgbG9jYWxpemVcIiBbZmllbGRdPVwiJ2FkcmVzJ1wiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbb3JkZXJdPVwiNzBcIj48L2NvLXNpbXBsZS1ncmlkLWNvbHVtbj5cclxuICAgICAgICA8Y28tc2ltcGxlLWdyaWQtY29sdW1uIFtoZWFkZXJUZXh0XT1cIidSRUZFUkVOQ0VfUkVMQVRJT04nIHwgbG9jYWxpemVcIiBbZmllbGRdPVwiJ3JlbGF0aW9uUmVmZXJlbmNlJ1wiIFtvcmRlcl09XCI4MFwiPjwvY28tc2ltcGxlLWdyaWQtY29sdW1uPlxyXG4gICAgICAgIDxjby1zaW1wbGUtZ3JpZC1jb2x1bW4gW2hlYWRlclRleHRdPVwiJ1BSRUZFUlJFRF9EQVRFJyB8IGxvY2FsaXplXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtvcmRlcl09XCI5MFwiIFt0ZXh0QWxpZ25dPVwiYWxpZ24uUmlnaHRcIiBbcmVzaXphYmxlXT1cImZhbHNlXCI+XHJcbiAgICAgICAgICA8bmctdGVtcGxhdGUgI3RlbXBsYXRlIGxldC1yb3cgPSBcInJvd1wiPlxyXG4gICAgICAgICAgICA8ZGl2IFt0ZXh0Q29udGVudF09XCJcIj48L2Rpdj4gPCEtLXRvZG86IHdhY2h0ZW4gb3AgYWFucGFzc2luZyBhcGktLT5cclxuICAgICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICAgICAgPC9jby1zaW1wbGUtZ3JpZC1jb2x1bW4+XHJcbiAgICAgICAgPGNvLXNpbXBsZS1ncmlkLWNvbHVtbiBbaGVhZGVyVGV4dF09XCInVFJBTlNBQ1RJT05fREFURScgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbb3JkZXJdPVwiMTAwXCIgW3RleHRBbGlnbl09XCJhbGlnbi5SaWdodFwiIFtyZXNpemFibGVdPVwiZmFsc2VcIj5cclxuICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjdGVtcGxhdGUgbGV0LXJvdyA9IFwicm93XCI+XHJcbiAgICAgICAgICAgIDxkaXYgW3RleHRDb250ZW50XT1cInJvdy50cmFuc0RhdGUgfCBkYXRlOidkZCBNTU0geXl5eSdcIj48L2Rpdj5cclxuICAgICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICAgICAgPC9jby1zaW1wbGUtZ3JpZC1jb2x1bW4+XHJcbiAgICAgICAgPGNvLXNpbXBsZS1ncmlkLWNvbHVtbiBbaGVhZGVyVGV4dF09XCInT1JERVJfREVGSU5JVElWRScgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbb3JkZXJdPVwiMTA1XCIgW3RleHRBbGlnbl09XCJhbGlnbi5DZW50ZXJcIj5cclxuICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjdGVtcGxhdGUgbGV0LXJvdz0gXCJyb3dcIj5cclxuICAgICAgICAgICAgPGNvLWlucHV0LWNoZWNrYm94IFttb2RlbF09XCJyb3cudHJhbnNhY3Rpb25EZWZpbml0aXZlXCIgcmVhZG9ubHk+PC9jby1pbnB1dC1jaGVja2JveD5cclxuICAgICAgICAgIDwvbmctdGVtcGxhdGU+XHJcbiAgICAgICAgPC9jby1zaW1wbGUtZ3JpZC1jb2x1bW4+XHJcbiAgICAgICAgPGNvLXNpbXBsZS1ncmlkLWNvbHVtbiBbaGVhZGVyVGV4dF09XCInREVMSVZFUllfREFURScgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbb3JkZXJdPVwiMTEwXCIgW3RleHRBbGlnbl09XCJhbGlnbi5SaWdodFwiIFtyZXNpemFibGVdPVwiZmFsc2VcIiA+XHJcbiAgICAgICAgICA8bmctdGVtcGxhdGUgI3RlbXBsYXRlIGxldC1yb3cgPSBcInJvd1wiPlxyXG4gICAgICAgICAgICA8ZGl2IFt0ZXh0Q29udGVudF09XCJyb3cuZGVsaXZlcnlEYXRlIHwgZGF0ZTonZGQgTU1NIHl5eXknXCI+PC9kaXY+XHJcbiAgICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgIDwvY28tc2ltcGxlLWdyaWQtY29sdW1uPlxyXG4gICAgICAgIDxjby1zaW1wbGUtZ3JpZC1jb2x1bW4gW2hlYWRlclRleHRdPVwiJ0RFTElWRVJZX0RBVEVfREVGSU5JVElWRScgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbb3JkZXJdPVwiMTE1XCIgW3RleHRBbGlnbl09XCJhbGlnbi5DZW50ZXJcIj5cclxuICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjdGVtcGxhdGUgbGV0LXJvdz0gXCJyb3dcIj5cclxuICAgICAgICAgICAgPGNvLWlucHV0LWNoZWNrYm94IFttb2RlbF09XCJyb3cuZGVsaXZlcnlEYXRlRGVmaW5pdGl2ZVwiIHJlYWRvbmx5PjwvY28taW5wdXQtY2hlY2tib3g+XHJcbiAgICAgICAgICA8L25nLXRlbXBsYXRlPlxyXG4gICAgICAgIDwvY28tc2ltcGxlLWdyaWQtY29sdW1uPlxyXG4gICAgICA8L2NvLXNpbXBsZS1ncmlkPlxyXG4gICAgPC9kaXY+XHJcbiAgYCxcclxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUcmFuc2FjdGlvblNlYXJjaEdyaWRDb21wb25lbnQge1xyXG4gIHB1YmxpYyByZWFkb25seSBhbGlnbjogdHlwZW9mIENvbHVtbkFsaWduID0gQ29sdW1uQWxpZ247XHJcblxyXG4gIEBDb250ZW50Q2hpbGRyZW4oU2ltcGxlR3JpZENvbHVtbkRpcmVjdGl2ZSkgc2V0IGNvbnRlbnQoY29sdW1uQ29tcG9uZW50czogUXVlcnlMaXN0PFNpbXBsZUdyaWRDb2x1bW5EaXJlY3RpdmU+KSB7XHJcbiAgICB0aGlzLmV4dHJhQ29sdW1ucyA9IGNvbHVtbkNvbXBvbmVudHMudG9BcnJheSgpO1xyXG4gIH1cclxuXHJcbiAgQEhvc3RCaW5kaW5nKFwiY2xhc3MuY28tdHJhbnNhY3Rpb24tc2VhcmNoLWdyaWRcIilcclxuICBwdWJsaWMgc2hvd0NsYXNzKCk6IGJvb2xlYW4ge1xyXG4gICAgcmV0dXJuIHRydWU7XHJcbiAgfVxyXG5cclxuICBASW5wdXQoKVxyXG4gIHB1YmxpYyB0cmFuc2FjdGlvbnM6IFRyYW5zYWN0aW9uU2VhcmNoVmlld1tdID0gW107XHJcblxyXG4gIEBPdXRwdXQoKVxyXG4gIHB1YmxpYyB0cmFuc2FjdGlvbkNsaWNrOiAgRXZlbnRFbWl0dGVyPFRyYW5zYWN0aW9uU2VhcmNoVmlldz4gPSBuZXcgRXZlbnRFbWl0dGVyPFRyYW5zYWN0aW9uU2VhcmNoVmlldz4oKTtcclxuXHJcbiAgcHVibGljIGV4dHJhQ29sdW1uczogU2ltcGxlR3JpZENvbHVtbkRpcmVjdGl2ZVtdID0gW107XHJcblxyXG4gIGNvbnN0cnVjdG9yKCkge1xyXG4gIH1cclxuXHJcbiAgcHVibGljIG9uVHJhbnNhY3Rpb25DbGljayh0cmFuc2FjdGlvbjogYW55KTogdm9pZCB7XHJcbiAgICB0aGlzLnRyYW5zYWN0aW9uQ2xpY2suZW1pdCh0cmFuc2FjdGlvbiBhcyBUcmFuc2FjdGlvblNlYXJjaFZpZXcpO1xyXG4gIH1cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { CommonModule } from "@angular/common";
|
|
2
|
+
import { NgModule } from "@angular/core";
|
|
3
|
+
import { InputCheckboxModule, SimpleGridModule } from "@colijnit/corecomponents_v12";
|
|
4
|
+
import { PipeModule } from "../../pipe/pipe.module";
|
|
5
|
+
import { CoreModule } from "../core/core.module";
|
|
6
|
+
import { TransactionSearchGridComponent } from "./transaction-search-grid.component";
|
|
7
|
+
export class TransactionSearchGridModule {
|
|
8
|
+
}
|
|
9
|
+
TransactionSearchGridModule.decorators = [
|
|
10
|
+
{ type: NgModule, args: [{
|
|
11
|
+
imports: [
|
|
12
|
+
CommonModule,
|
|
13
|
+
CoreModule,
|
|
14
|
+
PipeModule,
|
|
15
|
+
SimpleGridModule,
|
|
16
|
+
InputCheckboxModule
|
|
17
|
+
],
|
|
18
|
+
declarations: [
|
|
19
|
+
TransactionSearchGridComponent
|
|
20
|
+
],
|
|
21
|
+
exports: [
|
|
22
|
+
TransactionSearchGridComponent
|
|
23
|
+
]
|
|
24
|
+
},] }
|
|
25
|
+
];
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLWdyaWQubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdHJhbnNhY3Rpb24tc2VhcmNoLWdyaWQvdHJhbnNhY3Rpb24tc2VhcmNoLWdyaWQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQ3JGLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNwRCxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDakQsT0FBTyxFQUFFLDhCQUE4QixFQUFFLE1BQU0scUNBQXFDLENBQUM7QUFpQnJGLE1BQU0sT0FBTywyQkFBMkI7OztZQWZ2QyxRQUFRLFNBQUM7Z0JBQ1IsT0FBTyxFQUFFO29CQUNQLFlBQVk7b0JBQ1osVUFBVTtvQkFDVixVQUFVO29CQUNWLGdCQUFnQjtvQkFDaEIsbUJBQW1CO2lCQUNwQjtnQkFDRCxZQUFZLEVBQUU7b0JBQ1osOEJBQThCO2lCQUMvQjtnQkFDRCxPQUFPLEVBQUU7b0JBQ1AsOEJBQThCO2lCQUMvQjthQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSBcIkBhbmd1bGFyL2NvbW1vblwiO1xyXG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IElucHV0Q2hlY2tib3hNb2R1bGUsIFNpbXBsZUdyaWRNb2R1bGUgfSBmcm9tIFwiQGNvbGlqbml0L2NvcmVjb21wb25lbnRzX3YxMlwiO1xyXG5pbXBvcnQgeyBQaXBlTW9kdWxlIH0gZnJvbSBcIi4uLy4uL3BpcGUvcGlwZS5tb2R1bGVcIjtcclxuaW1wb3J0IHsgQ29yZU1vZHVsZSB9IGZyb20gXCIuLi9jb3JlL2NvcmUubW9kdWxlXCI7XHJcbmltcG9ydCB7IFRyYW5zYWN0aW9uU2VhcmNoR3JpZENvbXBvbmVudCB9IGZyb20gXCIuL3RyYW5zYWN0aW9uLXNlYXJjaC1ncmlkLmNvbXBvbmVudFwiO1xyXG5cclxuQE5nTW9kdWxlKHtcclxuICBpbXBvcnRzOiBbXHJcbiAgICBDb21tb25Nb2R1bGUsXHJcbiAgICBDb3JlTW9kdWxlLFxyXG4gICAgUGlwZU1vZHVsZSxcclxuICAgIFNpbXBsZUdyaWRNb2R1bGUsXHJcbiAgICBJbnB1dENoZWNrYm94TW9kdWxlXHJcbiAgXSxcclxuICBkZWNsYXJhdGlvbnM6IFtcclxuICAgIFRyYW5zYWN0aW9uU2VhcmNoR3JpZENvbXBvbmVudFxyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgVHJhbnNhY3Rpb25TZWFyY2hHcmlkQ29tcG9uZW50XHJcbiAgXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgVHJhbnNhY3Rpb25TZWFyY2hHcmlkTW9kdWxlIHtcclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { Component, EventEmitter, HostBinding, Input, Output, ViewEncapsulation } from "@angular/core";
|
|
2
|
+
import { ContentViewMode } from "../../enum/content-view-mode.enum";
|
|
3
|
+
import { Icon } from "../../enum/icon.enum";
|
|
4
|
+
import { IconCacheService } from "../../service/icon-cache.service";
|
|
5
|
+
export class ViewModeButtonsComponent {
|
|
6
|
+
constructor(iconCacheService) {
|
|
7
|
+
this.iconCacheService = iconCacheService;
|
|
8
|
+
this.icons = Icon;
|
|
9
|
+
this.viewModes = ContentViewMode;
|
|
10
|
+
this.showViewModes = [this.viewModes.List, this.viewModes.Grid, this.viewModes.Tiles];
|
|
11
|
+
this.viewModeChange = new EventEmitter();
|
|
12
|
+
}
|
|
13
|
+
showClass() {
|
|
14
|
+
return true;
|
|
15
|
+
}
|
|
16
|
+
set activeViewMode(value) {
|
|
17
|
+
this._activeViewMode = value;
|
|
18
|
+
this.viewModeChange.emit(this._activeViewMode);
|
|
19
|
+
}
|
|
20
|
+
get activeViewMode() {
|
|
21
|
+
return this._activeViewMode;
|
|
22
|
+
}
|
|
23
|
+
ngOnInit() {
|
|
24
|
+
this.activeViewMode = this.showViewModes.includes(ContentViewMode.List) ? ContentViewMode.List : this.showViewModes[0];
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
ViewModeButtonsComponent.decorators = [
|
|
28
|
+
{ type: Component, args: [{
|
|
29
|
+
selector: 'co-view-mode-buttons',
|
|
30
|
+
template: `
|
|
31
|
+
<co-button class="view-button white"
|
|
32
|
+
*ngIf="showViewModes.includes(viewModes.Tiles)"
|
|
33
|
+
[class.selected]="this.activeViewMode === viewModes.Tiles"
|
|
34
|
+
[iconData]="iconCacheService.getIcon(icons.ListView)"
|
|
35
|
+
[title]="'TILE_VIEW' | localize"
|
|
36
|
+
(click)="this.activeViewMode = viewModes.Tiles"></co-button>
|
|
37
|
+
<co-button class="view-button white"
|
|
38
|
+
*ngIf="showViewModes.includes(viewModes.List)"
|
|
39
|
+
[class.selected]="this.activeViewMode === viewModes.List"
|
|
40
|
+
[iconData]="iconCacheService.getIcon(icons.ThickLines)"
|
|
41
|
+
[title]="'LIST_VIEW' | localize"
|
|
42
|
+
(click)="this.activeViewMode = viewModes.List"></co-button>
|
|
43
|
+
<co-button class="view-button white"
|
|
44
|
+
*ngIf="showViewModes.includes(viewModes.Grid)"
|
|
45
|
+
[class.selected]="this.activeViewMode === viewModes.Grid"
|
|
46
|
+
[iconData]="iconCacheService.getIcon(icons.ThinLines)"
|
|
47
|
+
[title]="'GRID_VIEW' | localize"
|
|
48
|
+
(click)="this.activeViewMode = viewModes.Grid"></co-button>
|
|
49
|
+
`,
|
|
50
|
+
encapsulation: ViewEncapsulation.None
|
|
51
|
+
},] }
|
|
52
|
+
];
|
|
53
|
+
ViewModeButtonsComponent.ctorParameters = () => [
|
|
54
|
+
{ type: IconCacheService }
|
|
55
|
+
];
|
|
56
|
+
ViewModeButtonsComponent.propDecorators = {
|
|
57
|
+
showViewModes: [{ type: Input }],
|
|
58
|
+
viewModeChange: [{ type: Output }],
|
|
59
|
+
showClass: [{ type: HostBinding, args: ["class.co-view-mode-buttons",] }]
|
|
60
|
+
};
|
|
61
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmlldy1tb2RlLWJ1dHRvbnMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdmlldy1tb2RlLWJ1dHRvbnMvdmlldy1tb2RlLWJ1dHRvbnMuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLFdBQVcsRUFBRSxLQUFLLEVBQVUsTUFBTSxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQy9HLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQztBQUNwRSxPQUFPLEVBQUUsSUFBSSxFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFDNUMsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUEwQnBFLE1BQU0sT0FBTyx3QkFBd0I7SUE4Qm5DLFlBQW1CLGdCQUFrQztRQUFsQyxxQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQWtCO1FBN0JyQyxVQUFLLEdBQWdCLElBQUksQ0FBQztRQUMxQixjQUFTLEdBQTJCLGVBQWUsQ0FBQztRQUc3RCxrQkFBYSxHQUFzQixDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxFQUFFLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxFQUFFLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLENBQUM7UUFHcEcsbUJBQWMsR0FBa0MsSUFBSSxZQUFZLEVBQW1CLENBQUM7SUF1QjNGLENBQUM7SUFwQk0sU0FBUztRQUNkLE9BQU8sSUFBSSxDQUFDO0lBQ2QsQ0FBQztJQUVELElBQVcsY0FBYyxDQUFDLEtBQXNCO1FBQzlDLElBQUksQ0FBQyxlQUFlLEdBQUcsS0FBSyxDQUFDO1FBQzdCLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxlQUFlLENBQUMsQ0FBQztJQUNqRCxDQUFDO0lBRUQsSUFBVyxjQUFjO1FBQ3ZCLE9BQU8sSUFBSSxDQUFDLGVBQWUsQ0FBQztJQUM5QixDQUFDO0lBSU0sUUFBUTtRQUNiLElBQUksQ0FBQyxjQUFjLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxRQUFRLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUMsQ0FBQyxDQUFDO0lBQ3pILENBQUM7OztZQXBERixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLHNCQUFzQjtnQkFDaEMsUUFBUSxFQUFFOzs7Ozs7Ozs7Ozs7Ozs7Ozs7O0dBbUJUO2dCQUNELGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO2FBQ3RDOzs7WUF6QlEsZ0JBQWdCOzs7NEJBOEJ0QixLQUFLOzZCQUdMLE1BQU07d0JBR04sV0FBVyxTQUFDLDRCQUE0QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBIb3N0QmluZGluZywgSW5wdXQsIE9uSW5pdCwgT3V0cHV0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7IENvbnRlbnRWaWV3TW9kZSB9IGZyb20gXCIuLi8uLi9lbnVtL2NvbnRlbnQtdmlldy1tb2RlLmVudW1cIjtcclxuaW1wb3J0IHsgSWNvbiB9IGZyb20gXCIuLi8uLi9lbnVtL2ljb24uZW51bVwiO1xyXG5pbXBvcnQgeyBJY29uQ2FjaGVTZXJ2aWNlIH0gZnJvbSBcIi4uLy4uL3NlcnZpY2UvaWNvbi1jYWNoZS5zZXJ2aWNlXCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2NvLXZpZXctbW9kZS1idXR0b25zJyxcclxuICB0ZW1wbGF0ZTogYFxyXG4gICAgPGNvLWJ1dHRvbiBjbGFzcz1cInZpZXctYnV0dG9uIHdoaXRlXCJcclxuICAgICAgICAgICAgICAgKm5nSWY9XCJzaG93Vmlld01vZGVzLmluY2x1ZGVzKHZpZXdNb2Rlcy5UaWxlcylcIlxyXG4gICAgICAgICAgICAgICBbY2xhc3Muc2VsZWN0ZWRdPVwidGhpcy5hY3RpdmVWaWV3TW9kZSA9PT0gdmlld01vZGVzLlRpbGVzXCJcclxuICAgICAgICAgICAgICAgW2ljb25EYXRhXT1cImljb25DYWNoZVNlcnZpY2UuZ2V0SWNvbihpY29ucy5MaXN0VmlldylcIlxyXG4gICAgICAgICAgICAgICBbdGl0bGVdPVwiJ1RJTEVfVklFVycgfCBsb2NhbGl6ZVwiXHJcbiAgICAgICAgICAgICAgIChjbGljayk9XCJ0aGlzLmFjdGl2ZVZpZXdNb2RlID0gdmlld01vZGVzLlRpbGVzXCI+PC9jby1idXR0b24+XHJcbiAgICA8Y28tYnV0dG9uIGNsYXNzPVwidmlldy1idXR0b24gd2hpdGVcIlxyXG4gICAgICAgICAgICAgICAqbmdJZj1cInNob3dWaWV3TW9kZXMuaW5jbHVkZXModmlld01vZGVzLkxpc3QpXCJcclxuICAgICAgICAgICAgICAgW2NsYXNzLnNlbGVjdGVkXT1cInRoaXMuYWN0aXZlVmlld01vZGUgPT09IHZpZXdNb2Rlcy5MaXN0XCJcclxuICAgICAgICAgICAgICAgW2ljb25EYXRhXT1cImljb25DYWNoZVNlcnZpY2UuZ2V0SWNvbihpY29ucy5UaGlja0xpbmVzKVwiXHJcbiAgICAgICAgICAgICAgIFt0aXRsZV09XCInTElTVF9WSUVXJyB8IGxvY2FsaXplXCJcclxuICAgICAgICAgICAgICAgKGNsaWNrKT1cInRoaXMuYWN0aXZlVmlld01vZGUgPSB2aWV3TW9kZXMuTGlzdFwiPjwvY28tYnV0dG9uPlxyXG4gICAgPGNvLWJ1dHRvbiBjbGFzcz1cInZpZXctYnV0dG9uIHdoaXRlXCJcclxuICAgICAgICAgICAgICAgKm5nSWY9XCJzaG93Vmlld01vZGVzLmluY2x1ZGVzKHZpZXdNb2Rlcy5HcmlkKVwiXHJcbiAgICAgICAgICAgICAgIFtjbGFzcy5zZWxlY3RlZF09XCJ0aGlzLmFjdGl2ZVZpZXdNb2RlID09PSB2aWV3TW9kZXMuR3JpZFwiXHJcbiAgICAgICAgICAgICAgIFtpY29uRGF0YV09XCJpY29uQ2FjaGVTZXJ2aWNlLmdldEljb24oaWNvbnMuVGhpbkxpbmVzKVwiXHJcbiAgICAgICAgICAgICAgIFt0aXRsZV09XCInR1JJRF9WSUVXJyB8IGxvY2FsaXplXCJcclxuICAgICAgICAgICAgICAgKGNsaWNrKT1cInRoaXMuYWN0aXZlVmlld01vZGUgPSB2aWV3TW9kZXMuR3JpZFwiPjwvY28tYnV0dG9uPlxyXG4gIGAsXHJcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZVxyXG59KVxyXG5leHBvcnQgY2xhc3MgVmlld01vZGVCdXR0b25zQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICBwdWJsaWMgcmVhZG9ubHkgaWNvbnM6IHR5cGVvZiBJY29uID0gSWNvbjtcclxuICBwdWJsaWMgcmVhZG9ubHkgdmlld01vZGVzOiB0eXBlb2YgQ29udGVudFZpZXdNb2RlID0gQ29udGVudFZpZXdNb2RlO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIHB1YmxpYyBzaG93Vmlld01vZGVzOiBDb250ZW50Vmlld01vZGVbXSA9IFt0aGlzLnZpZXdNb2Rlcy5MaXN0LCB0aGlzLnZpZXdNb2Rlcy5HcmlkLCB0aGlzLnZpZXdNb2Rlcy5UaWxlc107XHJcblxyXG4gIEBPdXRwdXQoKVxyXG4gIHB1YmxpYyB2aWV3TW9kZUNoYW5nZTogRXZlbnRFbWl0dGVyPENvbnRlbnRWaWV3TW9kZT4gPSBuZXcgRXZlbnRFbWl0dGVyPENvbnRlbnRWaWV3TW9kZT4oKTtcclxuXHJcbiAgQEhvc3RCaW5kaW5nKFwiY2xhc3MuY28tdmlldy1tb2RlLWJ1dHRvbnNcIilcclxuICBwdWJsaWMgc2hvd0NsYXNzKCk6IGJvb2xlYW4ge1xyXG4gICAgcmV0dXJuIHRydWU7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgc2V0IGFjdGl2ZVZpZXdNb2RlKHZhbHVlOiBDb250ZW50Vmlld01vZGUpIHtcclxuICAgIHRoaXMuX2FjdGl2ZVZpZXdNb2RlID0gdmFsdWU7XHJcbiAgICB0aGlzLnZpZXdNb2RlQ2hhbmdlLmVtaXQodGhpcy5fYWN0aXZlVmlld01vZGUpO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGdldCBhY3RpdmVWaWV3TW9kZSgpOiBDb250ZW50Vmlld01vZGUge1xyXG4gICAgcmV0dXJuIHRoaXMuX2FjdGl2ZVZpZXdNb2RlO1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBfYWN0aXZlVmlld01vZGU6IENvbnRlbnRWaWV3TW9kZTtcclxuXHJcbiAgcHVibGljIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gICAgdGhpcy5hY3RpdmVWaWV3TW9kZSA9IHRoaXMuc2hvd1ZpZXdNb2Rlcy5pbmNsdWRlcyhDb250ZW50Vmlld01vZGUuTGlzdCkgPyBDb250ZW50Vmlld01vZGUuTGlzdCA6IHRoaXMuc2hvd1ZpZXdNb2Rlc1swXTtcclxuICB9XHJcblxyXG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBpY29uQ2FjaGVTZXJ2aWNlOiBJY29uQ2FjaGVTZXJ2aWNlKSB7XHJcbiAgfVxyXG5cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { NgModule } from "@angular/core";
|
|
2
|
+
import { CommonModule } from "@angular/common";
|
|
3
|
+
import { ViewModeButtonsComponent } from "./view-mode-buttons.component";
|
|
4
|
+
import { ButtonModule } from "@colijnit/corecomponents_v12";
|
|
5
|
+
import { PipeModule } from "../../pipe/pipe.module";
|
|
6
|
+
export class ViewModeButtonsModule {
|
|
7
|
+
}
|
|
8
|
+
ViewModeButtonsModule.decorators = [
|
|
9
|
+
{ type: NgModule, args: [{
|
|
10
|
+
imports: [
|
|
11
|
+
CommonModule,
|
|
12
|
+
ButtonModule,
|
|
13
|
+
PipeModule
|
|
14
|
+
],
|
|
15
|
+
declarations: [
|
|
16
|
+
ViewModeButtonsComponent
|
|
17
|
+
],
|
|
18
|
+
exports: [
|
|
19
|
+
ViewModeButtonsComponent
|
|
20
|
+
]
|
|
21
|
+
},] }
|
|
22
|
+
];
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmlldy1tb2RlLWJ1dHRvbnMubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9jb21wb25lbnQvdmlldy1tb2RlLWJ1dHRvbnMvdmlldy1tb2RlLWJ1dHRvbnMubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDdkMsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyx3QkFBd0IsRUFBQyxNQUFNLCtCQUErQixDQUFDO0FBQ3ZFLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSw4QkFBOEIsQ0FBQztBQUMxRCxPQUFPLEVBQUMsVUFBVSxFQUFDLE1BQU0sd0JBQXdCLENBQUM7QUFlbEQsTUFBTSxPQUFPLHFCQUFxQjs7O1lBYmpDLFFBQVEsU0FBQztnQkFDUixPQUFPLEVBQUU7b0JBQ1AsWUFBWTtvQkFDWixZQUFZO29CQUNaLFVBQVU7aUJBQ1g7Z0JBQ0QsWUFBWSxFQUFFO29CQUNaLHdCQUF3QjtpQkFDekI7Z0JBQ0QsT0FBTyxFQUFFO29CQUNQLHdCQUF3QjtpQkFDekI7YUFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7TmdNb2R1bGV9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7Q29tbW9uTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvY29tbW9uXCI7XHJcbmltcG9ydCB7Vmlld01vZGVCdXR0b25zQ29tcG9uZW50fSBmcm9tIFwiLi92aWV3LW1vZGUtYnV0dG9ucy5jb21wb25lbnRcIjtcclxuaW1wb3J0IHtCdXR0b25Nb2R1bGV9IGZyb20gXCJAY29saWpuaXQvY29yZWNvbXBvbmVudHNfdjEyXCI7XHJcbmltcG9ydCB7UGlwZU1vZHVsZX0gZnJvbSBcIi4uLy4uL3BpcGUvcGlwZS5tb2R1bGVcIjtcclxuXHJcbkBOZ01vZHVsZSh7XHJcbiAgaW1wb3J0czogW1xyXG4gICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgQnV0dG9uTW9kdWxlLFxyXG4gICAgUGlwZU1vZHVsZVxyXG4gIF0sXHJcbiAgZGVjbGFyYXRpb25zOiBbXHJcbiAgICBWaWV3TW9kZUJ1dHRvbnNDb21wb25lbnRcclxuICBdLFxyXG4gIGV4cG9ydHM6IFtcclxuICAgIFZpZXdNb2RlQnV0dG9uc0NvbXBvbmVudFxyXG4gIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIFZpZXdNb2RlQnV0dG9uc01vZHVsZSB7XHJcbn1cclxuIl19
|
|
@@ -6,5 +6,6 @@ export var ContentViewMode;
|
|
|
6
6
|
ContentViewMode[ContentViewMode["GridExpanded"] = 2] = "GridExpanded";
|
|
7
7
|
ContentViewMode[ContentViewMode["MasterDetail"] = 3] = "MasterDetail";
|
|
8
8
|
ContentViewMode[ContentViewMode["Timeline"] = 4] = "Timeline";
|
|
9
|
+
ContentViewMode[ContentViewMode["Tiles"] = 5] = "Tiles";
|
|
9
10
|
})(ContentViewMode || (ContentViewMode = {}));
|
|
10
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGVudC12aWV3LW1vZGUuZW51bS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RyYW5zYWN0aW9uL3NyYy9saWIvZW51bS9jb250ZW50LXZpZXctbW9kZS5lbnVtLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLDREQUE0RDtBQUM1RCxNQUFNLENBQU4sSUFBWSxlQU9YO0FBUEQsV0FBWSxlQUFlO0lBQ3pCLHFEQUFJLENBQUE7SUFDSixxREFBSSxDQUFBO0lBQ0oscUVBQVksQ0FBQTtJQUNaLHFFQUFZLENBQUE7SUFDWiw2REFBUSxDQUFBO0lBQ1IsdURBQUssQ0FBQTtBQUNQLENBQUMsRUFQVyxlQUFlLEtBQWYsZUFBZSxRQU8xQiIsInNvdXJjZXNDb250ZW50IjpbIi8vIFRoZSBkaWZmZXJlbnQgdmlldyBtb2RlcyBmb3IgY29udGVudCwgZS5nLiBsaXN0LCBncmlkLCAuLlxyXG5leHBvcnQgZW51bSBDb250ZW50Vmlld01vZGUge1xyXG4gIExpc3QsXHJcbiAgR3JpZCxcclxuICBHcmlkRXhwYW5kZWQsXHJcbiAgTWFzdGVyRGV0YWlsLFxyXG4gIFRpbWVsaW5lLFxyXG4gIFRpbGVzLFxyXG59XHJcbiJdfQ==
|
|
@@ -4,25 +4,42 @@ export var Icon;
|
|
|
4
4
|
Icon["ArrowPointDown"] = "arrow_point_down";
|
|
5
5
|
Icon["ArrowPointLeft"] = "arrow_point_left";
|
|
6
6
|
Icon["ArrowPointRight"] = "arrow_point_right";
|
|
7
|
+
Icon["Article"] = "article";
|
|
7
8
|
Icon["Barcode"] = "barcode";
|
|
9
|
+
Icon["BarcodeSolid"] = "barcode_solid";
|
|
10
|
+
Icon["BarsFilter"] = "bars_filter";
|
|
8
11
|
Icon["CalendarDay"] = "calendar_day";
|
|
9
12
|
Icon["Cancel"] = "cancel";
|
|
13
|
+
Icon["CartFlatbedBoxesSolid"] = "cart_flatbed_boxes_solid";
|
|
14
|
+
Icon["CartShoppingSolid"] = "cart_shopping_solid";
|
|
10
15
|
Icon["CashRegister"] = "cash_register";
|
|
11
16
|
Icon["DeliveryTruck"] = "delivery_truck";
|
|
12
17
|
Icon["EditPencil"] = "edit_pencil";
|
|
13
18
|
Icon["IdealLogo"] = "ideal_logo";
|
|
19
|
+
Icon["ListView"] = "list_view";
|
|
20
|
+
Icon["LocationDotSolid"] = "location_dot_solid";
|
|
21
|
+
Icon["Lock"] = "lock";
|
|
14
22
|
Icon["MapMarker"] = "map_marker";
|
|
15
23
|
Icon["MasterDetail"] = "master_detail";
|
|
24
|
+
Icon["MemoCircleCheckSolid"] = "memo_circle_check_solid";
|
|
16
25
|
Icon["Menu"] = "menu";
|
|
26
|
+
Icon["PalletBoxesSolid"] = "pallet_boxes_solid";
|
|
17
27
|
Icon["PlusRound"] = "plus_round";
|
|
28
|
+
Icon["Purchase"] = "purchase";
|
|
29
|
+
Icon["ShelvesSolid"] = "shelves_solid";
|
|
18
30
|
Icon["SidePanel"] = "side_panel";
|
|
31
|
+
Icon["SyncAlt"] = "sync_alt";
|
|
19
32
|
Icon["Tag"] = "tag";
|
|
20
33
|
Icon["ThickLines"] = "thick_lines";
|
|
21
34
|
Icon["ThinLines"] = "thin_lines";
|
|
35
|
+
Icon["TrashBin"] = "trash_bin";
|
|
22
36
|
Icon["TriangleDown"] = "triangle_down";
|
|
23
37
|
Icon["TriangleUp"] = "triangle_up";
|
|
24
38
|
Icon["Truck"] = "truck";
|
|
39
|
+
Icon["TruckArrowRightSolid"] = "truck_arrow_right_solid";
|
|
40
|
+
Icon["TruckContainerSolid"] = "truck_container_solid";
|
|
25
41
|
Icon["Txt"] = "txt";
|
|
42
|
+
Icon["Unlock"] = "unlock";
|
|
26
43
|
Icon["Warehouse"] = "warehouse";
|
|
27
44
|
})(Icon || (Icon = {}));
|
|
28
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
45
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWNvbi5lbnVtLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHJhbnNhY3Rpb24vc3JjL2xpYi9lbnVtL2ljb24uZW51bS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxnR0FBZ0c7QUFFaEcsTUFBTSxDQUFOLElBQVksSUF5Q1g7QUF6Q0QsV0FBWSxJQUFJO0lBQ1osMkNBQW1DLENBQUE7SUFDbkMsMkNBQW1DLENBQUE7SUFDbkMsNkNBQXFDLENBQUE7SUFDckMsMkJBQW1CLENBQUE7SUFDbkIsMkJBQW1CLENBQUE7SUFDbkIsc0NBQThCLENBQUE7SUFDOUIsa0NBQTBCLENBQUE7SUFDMUIsb0NBQTRCLENBQUE7SUFDNUIseUJBQWlCLENBQUE7SUFDakIsMERBQWtELENBQUE7SUFDbEQsaURBQXlDLENBQUE7SUFDekMsc0NBQThCLENBQUE7SUFDOUIsd0NBQWdDLENBQUE7SUFDaEMsa0NBQTBCLENBQUE7SUFDMUIsZ0NBQXdCLENBQUE7SUFDeEIsOEJBQXNCLENBQUE7SUFDdEIsK0NBQXVDLENBQUE7SUFDdkMscUJBQWEsQ0FBQTtJQUNiLGdDQUF3QixDQUFBO0lBQ3hCLHNDQUE4QixDQUFBO0lBQzlCLHdEQUFnRCxDQUFBO0lBQ2hELHFCQUFhLENBQUE7SUFDYiwrQ0FBdUMsQ0FBQTtJQUN2QyxnQ0FBd0IsQ0FBQTtJQUN4Qiw2QkFBcUIsQ0FBQTtJQUNyQixzQ0FBOEIsQ0FBQTtJQUM5QixnQ0FBd0IsQ0FBQTtJQUN4Qiw0QkFBb0IsQ0FBQTtJQUNwQixtQkFBVyxDQUFBO0lBQ1gsa0NBQTBCLENBQUE7SUFDMUIsZ0NBQXdCLENBQUE7SUFDeEIsOEJBQXNCLENBQUE7SUFDdEIsc0NBQThCLENBQUE7SUFDOUIsa0NBQTBCLENBQUE7SUFDMUIsdUJBQWUsQ0FBQTtJQUNmLHdEQUFnRCxDQUFBO0lBQ2hELHFEQUE2QyxDQUFBO0lBQzdDLG1CQUFXLENBQUE7SUFDWCx5QkFBaUIsQ0FBQTtJQUNqQiwrQkFBdUIsQ0FBQTtBQUMzQixDQUFDLEVBekNXLElBQUksS0FBSixJQUFJLFFBeUNmIiwic291cmNlc0NvbnRlbnQiOlsiLyoqIEFVVE8gR0VORVJBVEVEIEZJTEUuIERPIE5PVCBDSEFOR0UuLiBPUiBZT1UgV0lMTCBTVUZGRVIgVEhFIENPTlNFUVVFTkNFUyBPRiBZT1VSIEFDVElPTlMgKiovXG5cbmV4cG9ydCBlbnVtIEljb24ge1xuICAgIEFycm93UG9pbnREb3duID0gXCJhcnJvd19wb2ludF9kb3duXCIsXG4gICAgQXJyb3dQb2ludExlZnQgPSBcImFycm93X3BvaW50X2xlZnRcIixcbiAgICBBcnJvd1BvaW50UmlnaHQgPSBcImFycm93X3BvaW50X3JpZ2h0XCIsXG4gICAgQXJ0aWNsZSA9IFwiYXJ0aWNsZVwiLFxuICAgIEJhcmNvZGUgPSBcImJhcmNvZGVcIixcbiAgICBCYXJjb2RlU29saWQgPSBcImJhcmNvZGVfc29saWRcIixcbiAgICBCYXJzRmlsdGVyID0gXCJiYXJzX2ZpbHRlclwiLFxuICAgIENhbGVuZGFyRGF5ID0gXCJjYWxlbmRhcl9kYXlcIixcbiAgICBDYW5jZWwgPSBcImNhbmNlbFwiLFxuICAgIENhcnRGbGF0YmVkQm94ZXNTb2xpZCA9IFwiY2FydF9mbGF0YmVkX2JveGVzX3NvbGlkXCIsXG4gICAgQ2FydFNob3BwaW5nU29saWQgPSBcImNhcnRfc2hvcHBpbmdfc29saWRcIixcbiAgICBDYXNoUmVnaXN0ZXIgPSBcImNhc2hfcmVnaXN0ZXJcIixcbiAgICBEZWxpdmVyeVRydWNrID0gXCJkZWxpdmVyeV90cnVja1wiLFxuICAgIEVkaXRQZW5jaWwgPSBcImVkaXRfcGVuY2lsXCIsXG4gICAgSWRlYWxMb2dvID0gXCJpZGVhbF9sb2dvXCIsXG4gICAgTGlzdFZpZXcgPSBcImxpc3Rfdmlld1wiLFxuICAgIExvY2F0aW9uRG90U29saWQgPSBcImxvY2F0aW9uX2RvdF9zb2xpZFwiLFxuICAgIExvY2sgPSBcImxvY2tcIixcbiAgICBNYXBNYXJrZXIgPSBcIm1hcF9tYXJrZXJcIixcbiAgICBNYXN0ZXJEZXRhaWwgPSBcIm1hc3Rlcl9kZXRhaWxcIixcbiAgICBNZW1vQ2lyY2xlQ2hlY2tTb2xpZCA9IFwibWVtb19jaXJjbGVfY2hlY2tfc29saWRcIixcbiAgICBNZW51ID0gXCJtZW51XCIsXG4gICAgUGFsbGV0Qm94ZXNTb2xpZCA9IFwicGFsbGV0X2JveGVzX3NvbGlkXCIsXG4gICAgUGx1c1JvdW5kID0gXCJwbHVzX3JvdW5kXCIsXG4gICAgUHVyY2hhc2UgPSBcInB1cmNoYXNlXCIsXG4gICAgU2hlbHZlc1NvbGlkID0gXCJzaGVsdmVzX3NvbGlkXCIsXG4gICAgU2lkZVBhbmVsID0gXCJzaWRlX3BhbmVsXCIsXG4gICAgU3luY0FsdCA9IFwic3luY19hbHRcIixcbiAgICBUYWcgPSBcInRhZ1wiLFxuICAgIFRoaWNrTGluZXMgPSBcInRoaWNrX2xpbmVzXCIsXG4gICAgVGhpbkxpbmVzID0gXCJ0aGluX2xpbmVzXCIsXG4gICAgVHJhc2hCaW4gPSBcInRyYXNoX2JpblwiLFxuICAgIFRyaWFuZ2xlRG93biA9IFwidHJpYW5nbGVfZG93blwiLFxuICAgIFRyaWFuZ2xlVXAgPSBcInRyaWFuZ2xlX3VwXCIsXG4gICAgVHJ1Y2sgPSBcInRydWNrXCIsXG4gICAgVHJ1Y2tBcnJvd1JpZ2h0U29saWQgPSBcInRydWNrX2Fycm93X3JpZ2h0X3NvbGlkXCIsXG4gICAgVHJ1Y2tDb250YWluZXJTb2xpZCA9IFwidHJ1Y2tfY29udGFpbmVyX3NvbGlkXCIsXG4gICAgVHh0ID0gXCJ0eHRcIixcbiAgICBVbmxvY2sgPSBcInVubG9ja1wiLFxuICAgIFdhcmVob3VzZSA9IFwid2FyZWhvdXNlXCJcbn0iXX0=
|