@colijnit/transaction 12.1.85 → 12.1.87
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 +1517 -977
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +65 -50
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +66 -51
- package/esm2015/lib/component/avatar/avatar.component.js +85 -48
- package/esm2015/lib/component/checkout/checkout.component.js +5 -1
- package/esm2015/lib/component/checkout/checkout.module.js +1 -1
- package/esm2015/lib/component/search/search-feature.module.js +26 -0
- package/esm2015/lib/component/search/search-filter-panel/search-filter-panel.component.js +65 -0
- package/esm2015/lib/component/search/search-filter-panel/search-filter-panel.module.js +26 -0
- package/esm2015/lib/component/search/search-header-buttons/search-header-buttons.component.js +112 -0
- package/esm2015/lib/component/search/search-header-buttons/search-header-buttons.module.js +25 -0
- package/esm2015/lib/component/search/search-view-mode.service.js +77 -0
- package/esm2015/lib/component/search/search.component.js +87 -0
- package/esm2015/lib/component/transaction/transaction.component.js +13 -10
- package/esm2015/lib/component/transaction/transaction.module.js +4 -2
- package/esm2015/lib/component/transaction-line/transaction-base-line/transaction-base-line.component.js +4 -1
- package/esm2015/lib/component/transaction-line/transaction-goods-allocation-line/transaction-goods-allocation-line.component.js +2 -2
- package/esm2015/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line.component.js +60 -40
- package/esm2015/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line.module.js +12 -2
- package/esm2015/lib/component/transaction-line/transaction-receive-goods-line/transaction-receive-goods-line.component.js +2 -2
- package/esm2015/lib/component/transaction-line-fields/transaction-line-delivery-date-button.component.js +2 -2
- package/esm2015/lib/component/transaction-line-fields/transaction-purchase-portal-line-confirmed-delivery-date.component.js +33 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-purchase-portal-line-confirmed-delivery-date.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-purchase-portal-line-confirmed-price.component.js +44 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-purchase-portal-line-confirmed-price.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-purchase-portal-line-delivery-date.component.js +33 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-purchase-portal-line-delivery-date.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-purchase-portal-line-gross-order-price.component.js +44 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-purchase-portal-line-gross-order-price.module.js +23 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-purchase-portal-line-net-order-price.component.js +44 -0
- package/esm2015/lib/component/transaction-line-fields/transaction-purchase-portal-line-net-order-price.module.js +23 -0
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.js +43 -4
- package/esm2015/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.module.js +5 -3
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.component.js +2 -25
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-purchase-order-filter/transaction-purchase-order-filter.component.js +2 -13
- package/esm2015/lib/component/transaction-search/transaction-filter/transaction-sales-order-filter/transaction-sales-order-filter.component.js +1 -12
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.js +15 -38
- package/esm2015/lib/component/transaction-search/transaction-search-result/transaction-search-result.module.js +1 -3
- package/esm2015/lib/component/transaction-search/transaction-search.component.js +52 -96
- package/esm2015/lib/component/transaction-search/transaction-search.module.js +11 -5
- package/esm2015/lib/res/dictionary/dictionaries.js +2 -2
- package/esm2015/lib/service/pending-reason.service.js +18 -1
- package/esm2015/lib/service/transaction-connector-adapter.service.js +2 -2
- package/esm2015/public_api.js +3 -3
- package/fesm2015/colijnit-transaction.js +2914 -2377
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/avatar/avatar.component.d.ts +21 -12
- package/lib/component/search/search-feature.module.d.ts +2 -0
- package/lib/component/search/search-filter-panel/search-filter-panel.component.d.ts +16 -0
- package/lib/component/search/search-filter-panel/search-filter-panel.module.d.ts +2 -0
- package/lib/component/search/search-filter-panel/style/_layout.scss +62 -0
- package/lib/component/search/search-filter-panel/style/_material-definition.scss +17 -0
- package/lib/component/search/search-filter-panel/style/_theme.scss +4 -0
- package/lib/component/search/search-filter-panel/style/material.scss +3 -0
- package/lib/component/search/search-header-buttons/search-header-buttons.component.d.ts +29 -0
- package/lib/component/search/search-header-buttons/search-header-buttons.module.d.ts +2 -0
- package/lib/component/search/search-header-buttons/style/_layout.scss +151 -0
- package/lib/component/search/search-header-buttons/style/_material-definition.scss +1 -0
- package/lib/component/search/search-header-buttons/style/_theme.scss +21 -0
- package/lib/component/{transaction-search/transaction-search-header → search/search-header-buttons}/style/material.scss +0 -1
- package/lib/component/search/search-view-mode.service.d.ts +23 -0
- package/lib/component/search/search.component.d.ts +17 -0
- package/lib/component/search/style/_layout.scss +94 -0
- package/lib/component/search/style/_material-definition.scss +61 -0
- package/lib/component/search/style/_theme.scss +27 -0
- package/lib/component/search/style/material.scss +3 -0
- package/lib/component/transaction/style/_layout.scss +10 -0
- package/lib/component/transaction/style/_material-definition.scss +1 -0
- package/lib/component/transaction-line/transaction-base-line/transaction-base-line.component.d.ts +3 -2
- package/lib/component/transaction-line/transaction-purchase-order-line/style/_layout.scss +3 -1
- package/lib/component/transaction-line/transaction-purchase-order-line/transaction-purchase-order-line.component.d.ts +8 -2
- package/lib/component/transaction-line-fields/transaction-purchase-portal-line-confirmed-delivery-date.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-purchase-portal-line-confirmed-delivery-date.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-purchase-portal-line-confirmed-price.component.d.ts +13 -0
- package/lib/component/transaction-line-fields/transaction-purchase-portal-line-confirmed-price.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-purchase-portal-line-delivery-date.component.d.ts +10 -0
- package/lib/component/transaction-line-fields/transaction-purchase-portal-line-delivery-date.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-purchase-portal-line-gross-order-price.component.d.ts +13 -0
- package/lib/component/transaction-line-fields/transaction-purchase-portal-line-gross-order-price.module.d.ts +2 -0
- package/lib/component/transaction-line-fields/transaction-purchase-portal-line-net-order-price.component.d.ts +13 -0
- package/lib/component/transaction-line-fields/transaction-purchase-portal-line-net-order-price.module.d.ts +2 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/style/_layout.scss +18 -0
- package/lib/component/transaction-quick-access/transaction-quick-access-order-confirmation/transaction-quick-access-order-confirmation.component.d.ts +14 -0
- package/lib/component/transaction-search/style/_layout.scss +0 -76
- package/lib/component/transaction-search/style/_material-definition.scss +0 -24
- package/lib/component/transaction-search/style/material.scss +0 -2
- package/lib/component/transaction-search/transaction-filter/transaction-filter/style/_layout.scss +0 -23
- package/lib/component/transaction-search/transaction-filter/transaction-filter/style/_material-definition.scss +1 -18
- package/lib/component/transaction-search/transaction-filter/transaction-filter/style/_theme.scss +0 -4
- package/lib/component/transaction-search/transaction-filter/transaction-filter/transaction-filter.component.d.ts +1 -7
- package/lib/component/transaction-search/transaction-search-result/style/_material-definition.scss +2 -3
- package/lib/component/transaction-search/transaction-search-result/style/_theme.scss +0 -4
- package/lib/component/transaction-search/transaction-search-result/transaction-search-result.component.d.ts +6 -11
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-tile/style/_material-definition.scss +3 -0
- package/lib/component/transaction-search/transaction-search.component.d.ts +12 -13
- package/lib/res/dictionary/dictionaries.d.ts +5 -0
- package/lib/service/pending-reason.service.d.ts +3 -0
- package/package.json +2 -2
- package/public_api.d.ts +2 -2
- package/esm2015/lib/component/transaction-search/transaction-search-header/transaction-search-header.component.js +0 -126
- package/esm2015/lib/component/transaction-search/transaction-search-header/transaction-search-header.module.js +0 -27
- package/lib/component/transaction-search/transaction-search-header/style/_layout.scss +0 -147
- package/lib/component/transaction-search/transaction-search-header/style/_material-definition.scss +0 -26
- package/lib/component/transaction-search/transaction-search-header/style/_theme.scss +0 -17
- package/lib/component/transaction-search/transaction-search-header/transaction-search-header.component.d.ts +0 -36
- package/lib/component/transaction-search/transaction-search-header/transaction-search-header.module.d.ts +0 -2
|
@@ -1,126 +0,0 @@
|
|
|
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 { SearchViewMode } from "../../../enum/search-view-mode.enum";
|
|
5
|
-
import { DictionaryService } from "../../../service/dictionary.service";
|
|
6
|
-
import { IconCacheService } from "../../../service/icon-cache.service";
|
|
7
|
-
import { TransactionSearchService } from "../service/transaction-search.service";
|
|
8
|
-
import { animate, state, style, transition, trigger } from "@angular/animations";
|
|
9
|
-
import { TransactionEventService } from "../../../service/transaction-event.service";
|
|
10
|
-
export class TransactionSearchHeaderComponent {
|
|
11
|
-
constructor(searchService, iconCacheService, _dictionary, _transactionEventService) {
|
|
12
|
-
this.searchService = searchService;
|
|
13
|
-
this.iconCacheService = iconCacheService;
|
|
14
|
-
this._dictionary = _dictionary;
|
|
15
|
-
this._transactionEventService = _transactionEventService;
|
|
16
|
-
this.icon = Icon;
|
|
17
|
-
this.contentViewModes = ContentViewMode;
|
|
18
|
-
this.searchViewModes = SearchViewMode;
|
|
19
|
-
this.iconSlideIn = this.iconCacheService.getIcon(this.icon.SlideIn);
|
|
20
|
-
this.iconResize = this.iconCacheService.getIcon(this.icon.ExpandSolid);
|
|
21
|
-
this.iconCancel = this.iconCacheService.getIcon(this.icon.XSolid);
|
|
22
|
-
this.activeSearchViewMode = this.searchViewModes.FullScreen;
|
|
23
|
-
this.activeContentViewMode = this.contentViewModes.Tiles;
|
|
24
|
-
this.viewModeChange = new EventEmitter();
|
|
25
|
-
this.filterButtonClick = new EventEmitter();
|
|
26
|
-
this.resizeClick = new EventEmitter();
|
|
27
|
-
this.closeClick = new EventEmitter();
|
|
28
|
-
}
|
|
29
|
-
set transactionType(value) {
|
|
30
|
-
this.label = this._dictionary.get(this.searchService.getLabelBasedOnTransactionType());
|
|
31
|
-
this.searchPlaceholder = this._dictionary.get(this.searchService.getSearchPlaceholderBasedOnTransactionType());
|
|
32
|
-
}
|
|
33
|
-
showClass() {
|
|
34
|
-
return true;
|
|
35
|
-
}
|
|
36
|
-
get fullscreen() {
|
|
37
|
-
return this.activeSearchViewMode === SearchViewMode.FullScreen;
|
|
38
|
-
}
|
|
39
|
-
onResizeClick() {
|
|
40
|
-
this.resizeClick.emit();
|
|
41
|
-
}
|
|
42
|
-
onCloseClick() {
|
|
43
|
-
this.closeClick.emit();
|
|
44
|
-
}
|
|
45
|
-
onViewModeChange(viewMode) {
|
|
46
|
-
this.viewModeChange.emit(viewMode);
|
|
47
|
-
}
|
|
48
|
-
handleAddTransactionClick() {
|
|
49
|
-
this._transactionEventService.createTransaction.next();
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
TransactionSearchHeaderComponent.decorators = [
|
|
53
|
-
{ type: Component, args: [{
|
|
54
|
-
selector: "co-transaction-search-header",
|
|
55
|
-
template: `
|
|
56
|
-
<div class="transaction-search-header-wrapper">
|
|
57
|
-
<div class="upper-header">
|
|
58
|
-
<div class="header-buttons-wrapper">
|
|
59
|
-
<div class="close-search-button-wrapper button-wrapper" *ngIf="!fullscreen" [ngClass]="fullscreen ? 'fullscreen' : 'sidebar'" >
|
|
60
|
-
<co-button [iconData]="iconResize"
|
|
61
|
-
class="toggle-sidebar-button transparent"
|
|
62
|
-
(click)="onResizeClick()"></co-button>
|
|
63
|
-
<co-button [iconData]="iconCancel"
|
|
64
|
-
class="toggle-sidebar-button transparent"
|
|
65
|
-
(click)="onCloseClick()">
|
|
66
|
-
</co-button>
|
|
67
|
-
</div>
|
|
68
|
-
</div>
|
|
69
|
-
</div>
|
|
70
|
-
<div class="header-searchbar-wrapper">
|
|
71
|
-
<div class="header-searchbar-title" [textContent]="label | localize" *ngIf="fullscreen" @showHideLabel></div>
|
|
72
|
-
<co-button class="transaction-add-button transparent" [iconData]="iconCacheService.getIcon(icon.PlusSimple)"
|
|
73
|
-
(click)="handleAddTransactionClick()"></co-button>
|
|
74
|
-
<co-input-search class="transaction-search-general"
|
|
75
|
-
[ngClass]="fullscreen ? 'fullscreen' : 'sidebar'"
|
|
76
|
-
[centerLabel]="true"
|
|
77
|
-
[(model)]="searchService.searchRequest.general"
|
|
78
|
-
[placeholder]="searchPlaceholder | localize"
|
|
79
|
-
[initFocus]="true"
|
|
80
|
-
(search)="searchService.searchTransactions()"></co-input-search>
|
|
81
|
-
<div class="header-search-bar-button-wrapper button-wrapper">
|
|
82
|
-
<co-button class="transaction-search-filter-button"
|
|
83
|
-
[iconData]="iconCacheService.getIcon(icon.BarsFilter)"
|
|
84
|
-
(click)="filterButtonClick.emit()">
|
|
85
|
-
</co-button>
|
|
86
|
-
<co-button *ngIf="fullscreen" [iconData]="iconSlideIn"
|
|
87
|
-
class="toggle-sidebar-button transparent fullscreen"
|
|
88
|
-
(click)="onResizeClick()"></co-button>
|
|
89
|
-
</div>
|
|
90
|
-
</div>
|
|
91
|
-
<div class="view-mode-buttons-wrapper">
|
|
92
|
-
<co-view-mode-buttons
|
|
93
|
-
*ngIf="fullscreen"
|
|
94
|
-
[showViewModes]="[contentViewModes.Tiles, contentViewModes.Grid]"
|
|
95
|
-
(viewModeChange)="onViewModeChange($event)">
|
|
96
|
-
</co-view-mode-buttons>
|
|
97
|
-
</div>
|
|
98
|
-
</div>
|
|
99
|
-
`,
|
|
100
|
-
animations: [
|
|
101
|
-
trigger("showHideLabel", [
|
|
102
|
-
state("void", style({ opacity: 0 })),
|
|
103
|
-
state("*", style({ opacity: 1 })),
|
|
104
|
-
transition("void <=> *", animate("200ms ease-in-out"))
|
|
105
|
-
])
|
|
106
|
-
],
|
|
107
|
-
encapsulation: ViewEncapsulation.None
|
|
108
|
-
},] }
|
|
109
|
-
];
|
|
110
|
-
TransactionSearchHeaderComponent.ctorParameters = () => [
|
|
111
|
-
{ type: TransactionSearchService },
|
|
112
|
-
{ type: IconCacheService },
|
|
113
|
-
{ type: DictionaryService },
|
|
114
|
-
{ type: TransactionEventService }
|
|
115
|
-
];
|
|
116
|
-
TransactionSearchHeaderComponent.propDecorators = {
|
|
117
|
-
transactionType: [{ type: Input }],
|
|
118
|
-
activeSearchViewMode: [{ type: Input }],
|
|
119
|
-
activeContentViewMode: [{ type: Input }],
|
|
120
|
-
viewModeChange: [{ type: Output }],
|
|
121
|
-
filterButtonClick: [{ type: Output }],
|
|
122
|
-
resizeClick: [{ type: Output }],
|
|
123
|
-
closeClick: [{ type: Output }],
|
|
124
|
-
showClass: [{ type: HostBinding, args: ["class.co-transaction-search-header",] }]
|
|
125
|
-
};
|
|
126
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLWhlYWRlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1zZWFyY2gvdHJhbnNhY3Rpb24tc2VhcmNoLWhlYWRlci90cmFuc2FjdGlvbi1zZWFyY2gtaGVhZGVyLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFFLFlBQVksRUFBRSxXQUFXLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxpQkFBaUIsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUNyRyxPQUFPLEVBQUMsZUFBZSxFQUFDLE1BQU0sc0NBQXNDLENBQUM7QUFDckUsT0FBTyxFQUFDLElBQUksRUFBQyxNQUFNLHlCQUF5QixDQUFDO0FBQzdDLE9BQU8sRUFBQyxjQUFjLEVBQUMsTUFBTSxxQ0FBcUMsQ0FBQztBQUNuRSxPQUFPLEVBQUMsaUJBQWlCLEVBQUMsTUFBTSxxQ0FBcUMsQ0FBQztBQUN0RSxPQUFPLEVBQUMsZ0JBQWdCLEVBQUMsTUFBTSxxQ0FBcUMsQ0FBQztBQUNyRSxPQUFPLEVBQUMsd0JBQXdCLEVBQUMsTUFBTSx1Q0FBdUMsQ0FBQztBQUMvRSxPQUFPLEVBQUMsT0FBTyxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsVUFBVSxFQUFFLE9BQU8sRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBQy9FLE9BQU8sRUFBQyx1QkFBdUIsRUFBQyxNQUFNLDRDQUE0QyxDQUFDO0FBMERuRixNQUFNLE9BQU8sZ0NBQWdDO0lBeUMzQyxZQUNTLGFBQXVDLEVBQ3ZDLGdCQUFrQyxFQUNqQyxXQUE4QixFQUM5Qix3QkFBaUQ7UUFIbEQsa0JBQWEsR0FBYixhQUFhLENBQTBCO1FBQ3ZDLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBa0I7UUFDakMsZ0JBQVcsR0FBWCxX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MEJBR04sTUFBTTt5QkFHTixNQUFNO3dCQUdOLFdBQVcsU0FBQyxvQ0FBb0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBIb3N0QmluZGluZywgSW5wdXQsIE91dHB1dCwgVmlld0VuY2Fwc3VsYXRpb259IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcbmltcG9ydCB7Q29udGVudFZpZXdNb2RlfSBmcm9tIFwiLi4vLi4vLi4vZW51bS9jb250ZW50LXZpZXctbW9kZS5lbnVtXCI7XHJcbmltcG9ydCB7SWNvbn0gZnJvbSBcIi4uLy4uLy4uL2VudW0vaWNvbi5lbnVtXCI7XHJcbmltcG9ydCB7U2VhcmNoVmlld01vZGV9IGZyb20gXCIuLi8uLi8uLi9lbnVtL3NlYXJjaC12aWV3LW1vZGUuZW51bVwiO1xyXG5pbXBvcnQge0RpY3Rpb25hcnlTZXJ2aWNlfSBmcm9tIFwiLi4vLi4vLi4vc2VydmljZS9kaWN0aW9uYXJ5LnNlcnZpY2VcIjtcclxuaW1wb3J0IHtJY29uQ2FjaGVTZXJ2aWNlfSBmcm9tIFwiLi4vLi4vLi4vc2VydmljZS9pY29uLWNhY2hlLnNlcnZpY2VcIjtcclxuaW1wb3J0IHtUcmFuc2FjdGlvblNlYXJjaFNlcnZpY2V9IGZyb20gXCIuLi9zZXJ2aWNlL3RyYW5zYWN0aW9uLXNlYXJjaC5zZXJ2aWNlXCI7XHJcbmltcG9ydCB7YW5pbWF0ZSwgc3RhdGUsIHN0eWxlLCB0cmFuc2l0aW9uLCB0cmlnZ2VyfSBmcm9tIFwiQGFuZ3VsYXIvYW5pbWF0aW9uc1wiO1xyXG5pbXBvcnQge1RyYW5zYWN0aW9uRXZlbnRTZXJ2aWNlfSBmcm9tIFwiLi4vLi4vLi4vc2VydmljZS90cmFuc2FjdGlvbi1ldmVudC5zZXJ2aWNlXCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogXCJjby10cmFuc2FjdGlvbi1zZWFyY2gtaGVhZGVyXCIsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxkaXYgY2xhc3M9XCJ0cmFuc2FjdGlvbi1zZWFyY2gtaGVhZGVyLXdyYXBwZXJcIj5cclxuICAgICAgPGRpdiBjbGFzcz1cInVwcGVyLWhlYWRlclwiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJoZWFkZXItYnV0dG9ucy13cmFwcGVyXCI+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiY2xvc2Utc2VhcmNoLWJ1dHRvbi13cmFwcGVyIGJ1dHRvbi13cmFwcGVyXCIgKm5nSWY9XCIhZnVsbHNjcmVlblwiIFtuZ0NsYXNzXT1cImZ1bGxzY3JlZW4gPyAnZnVsbHNjcmVlbicgOiAnc2lkZWJhcidcIiA+XHJcbiAgICAgICAgICAgIDxjby1idXR0b24gW2ljb25EYXRhXT1cImljb25SZXNpemVcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwidG9nZ2xlLXNpZGViYXItYnV0dG9uIHRyYW5zcGFyZW50XCJcclxuICAgICAgICAgICAgICAgICAgICAgICAoY2xpY2spPVwib25SZXNpemVDbGljaygpXCI+PC9jby1idXR0b24+XHJcbiAgICAgICAgICAgIDxjby1idXR0b24gW2ljb25EYXRhXT1cImljb25DYW5jZWxcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwidG9nZ2xlLXNpZGViYXItYnV0dG9uIHRyYW5zcGFyZW50XCJcclxuICAgICAgICAgICAgICAgICAgICAgICAoY2xpY2spPVwib25DbG9zZUNsaWNrKClcIj5cclxuICAgICAgICAgICAgPC9jby1idXR0b24+XHJcbiAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgPC9kaXY+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJoZWFkZXItc2VhcmNoYmFyLXdyYXBwZXJcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiaGVhZGVyLXNlYXJjaGJhci10aXRsZVwiIFt0ZXh0Q29udGVudF09XCJsYWJlbCB8IGxvY2FsaXplXCIgKm5nSWY9XCJmdWxsc2NyZWVuXCIgQHNob3dIaWRlTGFiZWw+PC9kaXY+XHJcbiAgICAgICAgPGNvLWJ1dHRvbiBjbGFzcz1cInRyYW5zYWN0aW9uLWFkZC1idXR0b24gdHJhbnNwYXJlbnRcIiBbaWNvbkRhdGFdPVwiaWNvbkNhY2hlU2VydmljZS5nZXRJY29uKGljb24uUGx1c1NpbXBsZSlcIlxyXG4gICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cImhhbmRsZUFkZFRyYW5zYWN0aW9uQ2xpY2soKVwiPjwvY28tYnV0dG9uPlxyXG4gICAgICAgIDxjby1pbnB1dC1zZWFyY2ggY2xhc3M9XCJ0cmFuc2FjdGlvbi1zZWFyY2gtZ2VuZXJhbFwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJmdWxsc2NyZWVuID8gJ2Z1bGxzY3JlZW4nIDogJ3NpZGViYXInXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgIFtjZW50ZXJMYWJlbF09XCJ0cnVlXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgIFsobW9kZWwpXT1cInNlYXJjaFNlcnZpY2Uuc2VhcmNoUmVxdWVzdC5nZW5lcmFsXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCJzZWFyY2hQbGFjZWhvbGRlciB8IGxvY2FsaXplXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgIFtpbml0Rm9jdXNdPVwidHJ1ZVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAoc2VhcmNoKT1cInNlYXJjaFNlcnZpY2Uuc2VhcmNoVHJhbnNhY3Rpb25zKClcIj48L2NvLWlucHV0LXNlYXJjaD5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiaGVhZGVyLXNlYXJjaC1iYXItYnV0dG9uLXdyYXBwZXIgYnV0dG9uLXdyYXBwZXJcIj5cclxuICAgICAgICAgIDxjby1idXR0b24gY2xhc3M9XCJ0cmFuc2FjdGlvbi1zZWFyY2gtZmlsdGVyLWJ1dHRvblwiXHJcbiAgICAgICAgICAgICAgICAgICAgIFtpY29uRGF0YV09XCJpY29uQ2FjaGVTZXJ2aWNlLmdldEljb24oaWNvbi5CYXJzRmlsdGVyKVwiXHJcbiAgICAgICAgICAgICAgICAgICAgIChjbGljayk9XCJmaWx0ZXJCdXR0b25DbGljay5lbWl0KClcIj5cclxuICAgICAgICAgIDwvY28tYnV0dG9uPlxyXG4gICAgICAgICAgPGNvLWJ1dHRvbiAqbmdJZj1cImZ1bGxzY3JlZW5cIiBbaWNvbkRhdGFdPVwiaWNvblNsaWRlSW5cIlxyXG4gICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInRvZ2dsZS1zaWRlYmFyLWJ1dHRvbiB0cmFuc3BhcmVudCBmdWxsc2NyZWVuXCJcclxuICAgICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cIm9uUmVzaXplQ2xpY2soKVwiPjwvY28tYnV0dG9uPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICA8L2Rpdj5cclxuICAgICAgPGRpdiBjbGFzcz1cInZpZXctbW9kZS1idXR0b25zLXdyYXBwZXJcIj5cclxuICAgICAgICA8Y28tdmlldy1tb2RlLWJ1dHRvbnNcclxuICAgICAgICAgICpuZ0lmPVwiZnVsbHNjcmVlblwiXHJcbiAgICAgICAgICBbc2hvd1ZpZXdNb2Rlc109XCJbY29udGVudFZpZXdNb2Rlcy5UaWxlcywgY29udGVudFZpZXdNb2Rlcy5HcmlkXVwiXHJcbiAgICAgICAgICAodmlld01vZGVDaGFuZ2UpPVwib25WaWV3TW9kZUNoYW5nZSgkZXZlbnQpXCI+XHJcbiAgICAgICAgPC9jby12aWV3LW1vZGUtYnV0dG9ucz5cclxuICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuICBgLFxyXG4gIGFuaW1hdGlvbnM6IFtcclxuICAgIHRyaWdnZXIoXCJzaG93SGlkZUxhYmVsXCIsIFtcclxuICAgICAgc3RhdGUoXCJ2b2lkXCIsIHN0eWxlKHtvcGFjaXR5OiAwfSkpLFxyXG4gICAgICBzdGF0ZShcIipcIiwgc3R5bGUoe29wYWNpdHk6IDF9KSksXHJcbiAgICAgIHRyYW5zaXRpb24oXCJ2b2lkIDw9PiAqXCIsIGFuaW1hdGUoXCIyMDBtcyBlYXNlLWluLW91dFwiKSlcclxuICAgIF0pXHJcbiAgXSxcclxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUcmFuc2FjdGlvblNlYXJjaEhlYWRlckNvbXBvbmVudCB7XHJcbiAgcHVibGljIHJlYWRvbmx5IGljb246IHR5cGVvZiBJY29uID0gSWNvbjtcclxuICBwdWJsaWMgcmVhZG9ubHkgY29udGVudFZpZXdNb2RlczogdHlwZW9mIENvbnRlbnRWaWV3TW9kZSA9IENvbnRlbnRWaWV3TW9kZTtcclxuICBwdWJsaWMgcmVhZG9ubHkgc2VhcmNoVmlld01vZGVzOiB0eXBlb2YgU2VhcmNoVmlld01vZGUgPSBTZWFyY2hWaWV3TW9kZTtcclxuXHJcbiAgcHVibGljIGljb25TbGlkZUluID0gdGhpcy5pY29uQ2FjaGVTZXJ2aWNlLmdldEljb24odGhpcy5pY29uLlNsaWRlSW4pO1xyXG4gIHB1YmxpYyBpY29uUmVzaXplID0gdGhpcy5pY29uQ2FjaGVTZXJ2aWNlLmdldEljb24odGhpcy5pY29uLkV4cGFuZFNvbGlkKTtcclxuICBwdWJsaWMgaWNvbkNhbmNlbCA9IHRoaXMuaWNvbkNhY2hlU2VydmljZS5nZXRJY29uKHRoaXMuaWNvbi5YU29saWQpO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIHB1YmxpYyBzZXQgdHJhbnNhY3Rpb25UeXBlKHZhbHVlOiBzdHJpbmcpIHtcclxuICAgIHRoaXMubGFiZWwgPSB0aGlzLl9kaWN0aW9uYXJ5LmdldCh0aGlzLnNlYXJjaFNlcnZpY2UuZ2V0TGFiZWxCYXNlZE9uVHJhbnNhY3Rpb25UeXBlKCkpO1xyXG4gICAgdGhpcy5zZWFyY2hQbGFjZWhvbGRlciA9IHRoaXMuX2RpY3Rpb25hcnkuZ2V0KHRoaXMuc2VhcmNoU2VydmljZS5nZXRTZWFyY2hQbGFjZWhvbGRlckJhc2VkT25UcmFuc2FjdGlvblR5cGUoKSk7XHJcbiAgfVxyXG5cclxuICBASW5wdXQoKVxyXG4gIHB1YmxpYyBhY3RpdmVTZWFyY2hWaWV3TW9kZTogU2VhcmNoVmlld01vZGUgPSB0aGlzLnNlYXJjaFZpZXdNb2Rlcy5GdWxsU2NyZWVuO1xyXG5cclxuICBASW5wdXQoKVxyXG4gIHB1YmxpYyBhY3RpdmVDb250ZW50Vmlld01vZGU6IENvbnRlbnRWaWV3TW9kZSA9IHRoaXMuY29udGVudFZpZXdNb2Rlcy5UaWxlcztcclxuXHJcbiAgQE91dHB1dCgpXHJcbiAgcHVibGljIHZpZXdNb2RlQ2hhbmdlOiBFdmVudEVtaXR0ZXI8Q29udGVudFZpZXdNb2RlPiA9IG5ldyBFdmVudEVtaXR0ZXI8Q29udGVudFZpZXdNb2RlPigpO1xyXG5cclxuICBAT3V0cHV0KClcclxuICBwdWJsaWMgZmlsdGVyQnV0dG9uQ2xpY2s6IEV2ZW50RW1pdHRlcjx2b2lkPiA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcclxuXHJcbiAgQE91dHB1dCgpXHJcbiAgcHVibGljIHJlc2l6ZUNsaWNrOiBFdmVudEVtaXR0ZXI8dm9pZD4gPSBuZXcgRXZlbnRFbWl0dGVyPHZvaWQ+KCk7XHJcblxyXG4gIEBPdXRwdXQoKVxyXG4gIHB1YmxpYyBjbG9zZUNsaWNrOiBFdmVudEVtaXR0ZXI8dm9pZD4gPSBuZXcgRXZlbnRFbWl0dGVyPHZvaWQ+KCk7XHJcblxyXG4gIEBIb3N0QmluZGluZyhcImNsYXNzLmNvLXRyYW5zYWN0aW9uLXNlYXJjaC1oZWFkZXJcIilcclxuICBwdWJsaWMgc2hvd0NsYXNzKCkge1xyXG4gICAgcmV0dXJuIHRydWU7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgbGFiZWw6IHN0cmluZztcclxuICBwdWJsaWMgc2VhcmNoUGxhY2Vob2xkZXI6IHN0cmluZztcclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgICBwdWJsaWMgc2VhcmNoU2VydmljZTogVHJhbnNhY3Rpb25TZWFyY2hTZXJ2aWNlLFxyXG4gICAgcHVibGljIGljb25DYWNoZVNlcnZpY2U6IEljb25DYWNoZVNlcnZpY2UsXHJcbiAgICBwcml2YXRlIF9kaWN0aW9uYXJ5OiBEaWN0aW9uYXJ5U2VydmljZSxcclxuICAgIHByaXZhdGUgX3RyYW5zYWN0aW9uRXZlbnRTZXJ2aWNlOiBUcmFuc2FjdGlvbkV2ZW50U2VydmljZVxyXG4gICkge1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGdldCBmdWxsc2NyZWVuKCk6IGJvb2xlYW4ge1xyXG4gICAgcmV0dXJuIHRoaXMuYWN0aXZlU2VhcmNoVmlld01vZGUgPT09IFNlYXJjaFZpZXdNb2RlLkZ1bGxTY3JlZW47XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgb25SZXNpemVDbGljaygpOiB2b2lkIHtcclxuICAgIHRoaXMucmVzaXplQ2xpY2suZW1pdCgpO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIG9uQ2xvc2VDbGljaygpOiB2b2lkIHtcclxuICAgIHRoaXMuY2xvc2VDbGljay5lbWl0KCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgb25WaWV3TW9kZUNoYW5nZSh2aWV3TW9kZSk6IHZvaWQge1xyXG4gICAgdGhpcy52aWV3TW9kZUNoYW5nZS5lbWl0KHZpZXdNb2RlKVxyXG4gIH1cclxuXHJcbiAgcHVibGljIGhhbmRsZUFkZFRyYW5zYWN0aW9uQ2xpY2soKTogdm9pZCB7XHJcbiAgICB0aGlzLl90cmFuc2FjdGlvbkV2ZW50U2VydmljZS5jcmVhdGVUcmFuc2FjdGlvbi5uZXh0KCk7XHJcbiAgfVxyXG59XHJcbiJdfQ==
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { NgModule } from "@angular/core";
|
|
2
|
-
import { CommonModule } from "@angular/common";
|
|
3
|
-
import { ButtonModule, IconModule, InputSearchModule } from "@colijnit/corecomponents_v12";
|
|
4
|
-
import { PipeModule } from "../../../pipe/pipe.module";
|
|
5
|
-
import { ViewModeButtonsModule } from "../../view-mode-buttons/view-mode-buttons.module";
|
|
6
|
-
import { TransactionSearchHeaderComponent } from "./transaction-search-header.component";
|
|
7
|
-
export class TransactionSearchHeaderModule {
|
|
8
|
-
}
|
|
9
|
-
TransactionSearchHeaderModule.decorators = [
|
|
10
|
-
{ type: NgModule, args: [{
|
|
11
|
-
imports: [
|
|
12
|
-
CommonModule,
|
|
13
|
-
PipeModule,
|
|
14
|
-
ButtonModule,
|
|
15
|
-
InputSearchModule,
|
|
16
|
-
ViewModeButtonsModule,
|
|
17
|
-
IconModule
|
|
18
|
-
],
|
|
19
|
-
declarations: [
|
|
20
|
-
TransactionSearchHeaderComponent
|
|
21
|
-
],
|
|
22
|
-
exports: [
|
|
23
|
-
TransactionSearchHeaderComponent
|
|
24
|
-
]
|
|
25
|
-
},] }
|
|
26
|
-
];
|
|
27
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJhbnNhY3Rpb24tc2VhcmNoLWhlYWRlci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90cmFuc2FjdGlvbi9zcmMvbGliL2NvbXBvbmVudC90cmFuc2FjdGlvbi1zZWFyY2gvdHJhbnNhY3Rpb24tc2VhcmNoLWhlYWRlci90cmFuc2FjdGlvbi1zZWFyY2gtaGVhZGVyLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsWUFBWSxFQUFFLFVBQVUsRUFBRSxpQkFBaUIsRUFBQyxNQUFNLDhCQUE4QixDQUFDO0FBQ3pGLE9BQU8sRUFBQyxVQUFVLEVBQUMsTUFBTSwyQkFBMkIsQ0FBQztBQUNyRCxPQUFPLEVBQUMscUJBQXFCLEVBQUMsTUFBTSxrREFBa0QsQ0FBQztBQUN2RixPQUFPLEVBQUMsZ0NBQWdDLEVBQUMsTUFBTSx1Q0FBdUMsQ0FBQztBQWtCdkYsTUFBTSxPQUFPLDZCQUE2Qjs7O1lBaEJ6QyxRQUFRLFNBQUM7Z0JBQ04sT0FBTyxFQUFFO29CQUNMLFlBQVk7b0JBQ1osVUFBVTtvQkFDVixZQUFZO29CQUNaLGlCQUFpQjtvQkFDakIscUJBQXFCO29CQUNyQixVQUFVO2lCQUNiO2dCQUNILFlBQVksRUFBRTtvQkFDWixnQ0FBZ0M7aUJBQ2pDO2dCQUNELE9BQU8sRUFBRTtvQkFDUCxnQ0FBZ0M7aUJBQ2pDO2FBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge05nTW9kdWxlfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSBcIkBhbmd1bGFyL2NvbW1vblwiO1xyXG5pbXBvcnQge0J1dHRvbk1vZHVsZSwgSWNvbk1vZHVsZSwgSW5wdXRTZWFyY2hNb2R1bGV9IGZyb20gXCJAY29saWpuaXQvY29yZWNvbXBvbmVudHNfdjEyXCI7XHJcbmltcG9ydCB7UGlwZU1vZHVsZX0gZnJvbSBcIi4uLy4uLy4uL3BpcGUvcGlwZS5tb2R1bGVcIjtcclxuaW1wb3J0IHtWaWV3TW9kZUJ1dHRvbnNNb2R1bGV9IGZyb20gXCIuLi8uLi92aWV3LW1vZGUtYnV0dG9ucy92aWV3LW1vZGUtYnV0dG9ucy5tb2R1bGVcIjtcclxuaW1wb3J0IHtUcmFuc2FjdGlvblNlYXJjaEhlYWRlckNvbXBvbmVudH0gZnJvbSBcIi4vdHJhbnNhY3Rpb24tc2VhcmNoLWhlYWRlci5jb21wb25lbnRcIjtcclxuXHJcbkBOZ01vZHVsZSh7XHJcbiAgICBpbXBvcnRzOiBbXHJcbiAgICAgICAgQ29tbW9uTW9kdWxlLFxyXG4gICAgICAgIFBpcGVNb2R1bGUsXHJcbiAgICAgICAgQnV0dG9uTW9kdWxlLFxyXG4gICAgICAgIElucHV0U2VhcmNoTW9kdWxlLFxyXG4gICAgICAgIFZpZXdNb2RlQnV0dG9uc01vZHVsZSxcclxuICAgICAgICBJY29uTW9kdWxlXHJcbiAgICBdLFxyXG4gIGRlY2xhcmF0aW9uczogW1xyXG4gICAgVHJhbnNhY3Rpb25TZWFyY2hIZWFkZXJDb21wb25lbnRcclxuICBdLFxyXG4gIGV4cG9ydHM6IFtcclxuICAgIFRyYW5zYWN0aW9uU2VhcmNoSGVhZGVyQ29tcG9uZW50XHJcbiAgXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgVHJhbnNhY3Rpb25TZWFyY2hIZWFkZXJNb2R1bGUge1xyXG59XHJcbiJdfQ==
|
|
@@ -1,147 +0,0 @@
|
|
|
1
|
-
@include export-module('co-transaction-search-header-layout') {
|
|
2
|
-
.co-transaction-search-header {
|
|
3
|
-
.transaction-search-header-wrapper {
|
|
4
|
-
display: flex;
|
|
5
|
-
justify-content: center;
|
|
6
|
-
flex-direction: column;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.upper-header {
|
|
10
|
-
display: flex;
|
|
11
|
-
justify-content: flex-end;
|
|
12
|
-
height: $tp-co-transaction-search-result-upper-header-height;
|
|
13
|
-
padding-left: $tp-co-transaction-search-result-upper-header-padding-left;
|
|
14
|
-
|
|
15
|
-
.header-buttons-wrapper {
|
|
16
|
-
display: flex;
|
|
17
|
-
padding: $tp-co-transaction-search-result-header-buttons-wrapper-padding;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
.button-wrapper {
|
|
21
|
-
cursor: pointer;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.toggle-sidebar-button {
|
|
25
|
-
height: $tp-co-transaction-search-result-header-sidebar-button-size;
|
|
26
|
-
width: $tp-co-transaction-search-result-header-sidebar-button-size;
|
|
27
|
-
padding: 0;
|
|
28
|
-
&:not(.circle).has-icon {
|
|
29
|
-
padding-left: 0;
|
|
30
|
-
}
|
|
31
|
-
.co-icon {
|
|
32
|
-
width: $tp-co-transaction-search-result-header-sidebar-icon-size;
|
|
33
|
-
height: $tp-co-transaction-search-result-header-sidebar-icon-size;
|
|
34
|
-
}
|
|
35
|
-
&.fullscreen {
|
|
36
|
-
height: $tp-co-transaction-search-filter-button-icon-size;
|
|
37
|
-
width: $tp-co-transaction-search-filter-button-icon-size;
|
|
38
|
-
.co-icon {
|
|
39
|
-
width: $tp-co-transaction-search-filter-button-icon-size;
|
|
40
|
-
height: $tp-co-transaction-search-filter-button-icon-size;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
.transaction-search-filter-button {
|
|
45
|
-
height: $tp-co-transaction-search-filter-button-size;
|
|
46
|
-
width: $tp-co-transaction-search-filter-button-size;
|
|
47
|
-
border-radius: $tp-co-transaction-search-filter-button-border-radius;
|
|
48
|
-
//padding: $tp-co-transaction-search-filter-button-padding;
|
|
49
|
-
justify-content: center;
|
|
50
|
-
.co-icon {
|
|
51
|
-
width: $tp-co-transaction-search-filter-button-icon-size;
|
|
52
|
-
height: $tp-co-transaction-search-filter-button-icon-size;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
.toggle-sidebar-button-wrapper {
|
|
56
|
-
&.sidebar {
|
|
57
|
-
.toggle-sidebar-button {
|
|
58
|
-
//justify-content: center;
|
|
59
|
-
//width: $tp-co-transaction-search-result-header-sidebar-button-size;
|
|
60
|
-
//co-icon {
|
|
61
|
-
// width: $tp-co-transaction-search-result-header-sidebar-button-size;
|
|
62
|
-
// height: $tp-co-transaction-search-result-header-sidebar-button-size;
|
|
63
|
-
//}
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.transparent {
|
|
68
|
-
background-color: transparent;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
.close-search-button-wrapper {
|
|
72
|
-
display: flex;
|
|
73
|
-
column-gap: $tp-co-transaction-search-result-header-search-button-wrapper-column-gap;
|
|
74
|
-
&.sidebar {
|
|
75
|
-
margin-bottom: 5px;
|
|
76
|
-
.toggle-sidebar-button {
|
|
77
|
-
justify-content: center;
|
|
78
|
-
width: $tp-co-transaction-search-result-header-sidebar-button-size;
|
|
79
|
-
height: $tp-co-transaction-search-result-header-sidebar-button-size;
|
|
80
|
-
co-icon {
|
|
81
|
-
height: $tp-co-transaction-search-result-header-sidebar-close-button-size;
|
|
82
|
-
width: $tp-co-transaction-search-result-header-sidebar-close-button-size;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
.header-searchbar-wrapper {
|
|
90
|
-
display: flex;
|
|
91
|
-
justify-content: center;
|
|
92
|
-
flex-direction: row;
|
|
93
|
-
align-items: center;
|
|
94
|
-
column-gap: $tp-co-transaction-search-header-column-gap;
|
|
95
|
-
.header-searchbar-title {
|
|
96
|
-
font-size: $tp-co-transaction-search-header-label-font-size;
|
|
97
|
-
font-weight: $tp-co-transaction-search-header-label-font-weight;
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
.header-search-bar-button-wrapper {
|
|
101
|
-
display: flex;
|
|
102
|
-
align-items: center;
|
|
103
|
-
column-gap: $tp-co-transaction-search-header-button-wrapper-column-gap;
|
|
104
|
-
}
|
|
105
|
-
.transaction-search-general {
|
|
106
|
-
&.fullscreen {
|
|
107
|
-
co-input-text {
|
|
108
|
-
width: $tp-co-transaction-search-input-text-fullscreen-width;
|
|
109
|
-
transition: width 0.2s ease-in-out;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
&.sidebar {
|
|
114
|
-
co-input-text {
|
|
115
|
-
width: $tp-co-transaction-search-input-text-sidebar-width;
|
|
116
|
-
transition: width 0.2s ease-in-out;
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
.view-mode-buttons-wrapper {
|
|
121
|
-
padding: $tp-co-transaction-search-view-modes-wrapper-padding;
|
|
122
|
-
}
|
|
123
|
-
.transaction-add-button {
|
|
124
|
-
cursor: pointer;
|
|
125
|
-
height: $tp-co-transaction-search-header-plus-button-size;
|
|
126
|
-
width: $tp-co-transaction-search-header-plus-button-size;
|
|
127
|
-
padding: 0;
|
|
128
|
-
display: flex;
|
|
129
|
-
align-items: center;
|
|
130
|
-
justify-content: center;
|
|
131
|
-
border-style: $tp-co-transaction-search-header-plus-button-border-style;
|
|
132
|
-
border-width: $tp-co-transaction-search-header-plus-button-border-width;
|
|
133
|
-
border-radius: $tp-co-transaction-search-header-plus-button-border-radius;
|
|
134
|
-
.co-icon {
|
|
135
|
-
width: $tp-co-transaction-search-header-plus-button-icon-size;
|
|
136
|
-
height: $tp-co-transaction-search-header-plus-button-icon-size;
|
|
137
|
-
}
|
|
138
|
-
svg {
|
|
139
|
-
width: 90%;
|
|
140
|
-
height: 90%;
|
|
141
|
-
}
|
|
142
|
-
&:not(.circle).has-icon {
|
|
143
|
-
padding-left: 0;
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
}
|
package/lib/component/transaction-search/transaction-search-header/style/_material-definition.scss
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
$tp-co-transaction-search-header-input-text-width: 300px !default;
|
|
2
|
-
$tp-co-transaction-search-header-label-color: $tp-color-font !default;
|
|
3
|
-
$tp-co-transaction-search-header-label-font-size: 18px !default;
|
|
4
|
-
$tp-co-transaction-search-header-label-font-weight: bold !default;
|
|
5
|
-
$tp-co-transaction-search-header-column-gap: 20px !default;
|
|
6
|
-
$tp-co-transaction-search-header-button-wrapper-column-gap: 0 !default;
|
|
7
|
-
$tp-co-transaction-search-header-plus-button-size: 26px !default;
|
|
8
|
-
$tp-co-transaction-search-header-plus-button-icon-size: 20px !default;
|
|
9
|
-
$tp-co-transaction-search-header-plus-button-color: $tp-color-label !default;
|
|
10
|
-
$tp-co-transaction-search-header-plus-button-border-style: solid !default;
|
|
11
|
-
$tp-co-transaction-search-header-plus-button-border-width: 0 !default;
|
|
12
|
-
$tp-co-transaction-search-header-plus-button-border-color: $tp-color-font !default;
|
|
13
|
-
$tp-co-transaction-search-header-plus-button-border-radius: 5px !default;
|
|
14
|
-
$tp-co-transaction-search-header-plus-button-background-color: $tp-default-background-accent !default;
|
|
15
|
-
|
|
16
|
-
$tp-co-transaction-search-input-text-fullscreen-width: 440px !default;
|
|
17
|
-
$tp-co-transaction-search-input-text-sidebar-width: 250px !default;
|
|
18
|
-
$tp-co-transaction-search-input-text-sidebar-height: 40px !default;
|
|
19
|
-
$tp-co-transaction-search-input-text-label-margin-left: 5% !default;
|
|
20
|
-
|
|
21
|
-
$cc-co-transaction-searchbar-width: 370px !default;
|
|
22
|
-
$tp-co-transaction-filter-button-color: $cc-color-light !default;
|
|
23
|
-
$tp-co-transaction-search-filter-button-padding: 20px 0 !default;
|
|
24
|
-
$tp-co-transaction-search-filter-button-width: 90% !default;
|
|
25
|
-
$tp-co-transaction-search-filter-button-size: 32px !default;
|
|
26
|
-
$tp-co-transaction-search-filter-button-border-radius: 5px !default;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
@include export-module('co-transaction-search-header-theme') {
|
|
2
|
-
.co-transaction-search-header {
|
|
3
|
-
.header-searchbar-title {
|
|
4
|
-
color: $tp-co-transaction-search-header-label-color;
|
|
5
|
-
}
|
|
6
|
-
.transaction-add-button {
|
|
7
|
-
border-color: $tp-co-transaction-search-header-plus-button-border-color;
|
|
8
|
-
background-color: $tp-co-transaction-search-header-plus-button-background-color;
|
|
9
|
-
svg { // for fontawesome icons
|
|
10
|
-
fill: $tp-co-transaction-search-header-plus-button-color;
|
|
11
|
-
}
|
|
12
|
-
& [fill] { // for own icons
|
|
13
|
-
fill: $tp-co-transaction-search-header-plus-button-color;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from "@angular/core";
|
|
2
|
-
import { ContentViewMode } from "../../../enum/content-view-mode.enum";
|
|
3
|
-
import { Icon } from "../../../enum/icon.enum";
|
|
4
|
-
import { SearchViewMode } from "../../../enum/search-view-mode.enum";
|
|
5
|
-
import { DictionaryService } from "../../../service/dictionary.service";
|
|
6
|
-
import { IconCacheService } from "../../../service/icon-cache.service";
|
|
7
|
-
import { TransactionSearchService } from "../service/transaction-search.service";
|
|
8
|
-
import { TransactionEventService } from "../../../service/transaction-event.service";
|
|
9
|
-
export declare class TransactionSearchHeaderComponent {
|
|
10
|
-
searchService: TransactionSearchService;
|
|
11
|
-
iconCacheService: IconCacheService;
|
|
12
|
-
private _dictionary;
|
|
13
|
-
private _transactionEventService;
|
|
14
|
-
readonly icon: typeof Icon;
|
|
15
|
-
readonly contentViewModes: typeof ContentViewMode;
|
|
16
|
-
readonly searchViewModes: typeof SearchViewMode;
|
|
17
|
-
iconSlideIn: import("@angular/platform-browser").SafeHtml;
|
|
18
|
-
iconResize: import("@angular/platform-browser").SafeHtml;
|
|
19
|
-
iconCancel: import("@angular/platform-browser").SafeHtml;
|
|
20
|
-
set transactionType(value: string);
|
|
21
|
-
activeSearchViewMode: SearchViewMode;
|
|
22
|
-
activeContentViewMode: ContentViewMode;
|
|
23
|
-
viewModeChange: EventEmitter<ContentViewMode>;
|
|
24
|
-
filterButtonClick: EventEmitter<void>;
|
|
25
|
-
resizeClick: EventEmitter<void>;
|
|
26
|
-
closeClick: EventEmitter<void>;
|
|
27
|
-
showClass(): boolean;
|
|
28
|
-
label: string;
|
|
29
|
-
searchPlaceholder: string;
|
|
30
|
-
constructor(searchService: TransactionSearchService, iconCacheService: IconCacheService, _dictionary: DictionaryService, _transactionEventService: TransactionEventService);
|
|
31
|
-
get fullscreen(): boolean;
|
|
32
|
-
onResizeClick(): void;
|
|
33
|
-
onCloseClick(): void;
|
|
34
|
-
onViewModeChange(viewMode: any): void;
|
|
35
|
-
handleAddTransactionClick(): void;
|
|
36
|
-
}
|