@sachin9822/reports-lib 0.0.213 → 0.0.215
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/esm2020/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.mjs +240 -0
- package/esm2020/lib/components/accounting-report/accounting-report.component.mjs +614 -0
- package/esm2020/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.mjs +218 -0
- package/esm2020/lib/components/branch-activity-send-report/branch-activity-send-report.component.mjs +263 -0
- package/esm2020/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.mjs +718 -0
- package/esm2020/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.mjs +275 -0
- package/esm2020/lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component.mjs +192 -0
- package/esm2020/lib/components/funding-report/funding-report.component.mjs +198 -0
- package/esm2020/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.mjs +244 -0
- package/esm2020/lib/components/statement-of-accounts-report/statement-of-accounts-report.component.mjs +776 -0
- package/esm2020/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.mjs +282 -0
- package/esm2020/lib/components/transaction-monitoring-report/transaction-monitoring-report.component.mjs +332 -0
- package/esm2020/lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component.mjs +631 -0
- package/esm2020/lib/models/acc-gl-details-enquiry-report/accgl-details-enquiry-reportmodel.mjs +2 -0
- package/esm2020/lib/models/acc-gl-details-enquiry-report/journal-voucher-entry-model.mjs +2 -0
- package/esm2020/lib/models/accounting-report/accounting-report-branch-group.mjs +2 -0
- package/esm2020/lib/models/accounting-report/accounting-report-entry-model.mjs +2 -0
- package/esm2020/lib/models/accounting-report/accounting-report-model.mjs +2 -0
- package/esm2020/lib/models/accounting-report/accounting-report-sub-group.mjs +2 -0
- package/esm2020/lib/models/app-config.model.mjs +2 -0
- package/esm2020/lib/models/branch-activity-receive-report/branch-activity-receive.model.mjs +2 -0
- package/esm2020/lib/models/branch-activity-report/branch-activity-send-report-request-domain-model.mjs +6 -0
- package/esm2020/lib/models/branch-activity-report/branch-activity-send-report.mjs +3 -0
- package/esm2020/lib/models/cancellation-transaction-report/cancellation-transaction.model.mjs +10 -0
- package/esm2020/lib/models/component-loading-states.mjs +7 -0
- package/esm2020/lib/models/credit-limit-status-enquiry-report/credit-limit-status-enquiry.model.mjs +5 -0
- package/esm2020/lib/models/revenue-per-transaction-report/revenue-per-transaction.model.mjs +2 -0
- package/esm2020/lib/models/statement-of-account-report/statement-of-accounts.model.mjs +2 -0
- package/esm2020/lib/models/transaction-enquiry-report/transaction-enquiry.model.mjs +8 -0
- package/esm2020/lib/models/transaction-monitoring-report/transaction-monitoring-report-request-domain-model.mjs +6 -0
- package/esm2020/lib/models/transaction-monitoring-report/transaction-monitoring-report.mjs +5 -0
- package/esm2020/lib/models/trial-balance-accounts-report/trial-balance-accounts.models.mjs +3 -0
- package/esm2020/lib/reports-lib-routing.module.mjs +24 -0
- package/esm2020/lib/reports-lib.component.mjs +22 -0
- package/esm2020/lib/reports-lib.module.mjs +172 -0
- package/esm2020/lib/reports-lib.service.mjs +14 -0
- package/esm2020/lib/services/config.service.mjs +39 -0
- package/esm2020/lib/services/report.service.mjs +374 -0
- package/esm2020/lib/shared/export-generic.service.mjs +443 -0
- package/esm2020/lib/shared/export.service.mjs +379 -0
- package/esm2020/lib/shared/loader/loader.component.mjs +11 -0
- package/esm2020/lib/shared/metadata/metadata.component.mjs +51 -0
- package/esm2020/lib/shared/page-size-selector/page-size-selector.component.mjs +44 -0
- package/esm2020/lib/shared/search-filter/search-filter.component.mjs +2147 -0
- package/esm2020/lib/shared/shared.module.mjs +21 -0
- package/esm2020/public-api.mjs +41 -0
- package/esm2020/sachin9822-reports-lib.mjs +5 -0
- package/fesm2015/sachin9822-reports-lib.mjs +8649 -0
- package/fesm2015/sachin9822-reports-lib.mjs.map +1 -0
- package/fesm2020/sachin9822-reports-lib.mjs +8510 -0
- package/fesm2020/sachin9822-reports-lib.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.d.ts +70 -0
- package/lib/components/accounting-report/accounting-report.component.d.ts +76 -0
- package/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.d.ts +58 -0
- package/lib/components/branch-activity-send-report/branch-activity-send-report.component.d.ts +69 -0
- package/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.d.ts +78 -0
- package/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.d.ts +108 -0
- package/lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component.d.ts +55 -0
- package/lib/components/funding-report/funding-report.component.d.ts +55 -0
- package/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.d.ts +57 -0
- package/lib/components/statement-of-accounts-report/statement-of-accounts-report.component.d.ts +109 -0
- package/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.d.ts +76 -0
- package/lib/components/transaction-monitoring-report/transaction-monitoring-report.component.d.ts +69 -0
- package/lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component.d.ts +71 -0
- package/lib/models/acc-gl-details-enquiry-report/accgl-details-enquiry-reportmodel.d.ts +8 -0
- package/lib/models/acc-gl-details-enquiry-report/journal-voucher-entry-model.d.ts +18 -0
- package/lib/models/accounting-report/accounting-report-branch-group.d.ts +6 -0
- package/lib/models/accounting-report/accounting-report-entry-model.d.ts +24 -0
- package/lib/models/accounting-report/accounting-report-model.d.ts +6 -0
- package/{src/lib/models/accounting-report/accounting-report-sub-group.ts → lib/models/accounting-report/accounting-report-sub-group.d.ts} +2 -3
- package/{src/lib/models/app-config.model.ts → lib/models/app-config.model.d.ts} +7 -8
- package/lib/models/branch-activity-receive-report/branch-activity-receive.model.d.ts +18 -0
- package/lib/models/branch-activity-report/branch-activity-send-report-request-domain-model.d.ts +13 -0
- package/lib/models/branch-activity-report/branch-activity-send-report.d.ts +24 -0
- package/lib/models/cancellation-transaction-report/cancellation-transaction.model.d.ts +44 -0
- package/lib/models/component-loading-states.d.ts +5 -0
- package/lib/models/credit-limit-status-enquiry-report/credit-limit-status-enquiry.model.d.ts +26 -0
- package/{src/lib/models/revenue-per-transaction-report/revenue-per-transaction.model.ts → lib/models/revenue-per-transaction-report/revenue-per-transaction.model.d.ts} +1 -1
- package/lib/models/statement-of-account-report/statement-of-accounts.model.d.ts +18 -0
- package/lib/models/transaction-enquiry-report/transaction-enquiry.model.d.ts +113 -0
- package/lib/models/transaction-monitoring-report/transaction-monitoring-report-request-domain-model.d.ts +13 -0
- package/lib/models/transaction-monitoring-report/transaction-monitoring-report.d.ts +23 -0
- package/lib/models/trial-balance-accounts-report/trial-balance-accounts.models.d.ts +38 -0
- package/lib/reports-lib-routing.module.d.ts +7 -0
- package/lib/reports-lib.component.d.ts +8 -0
- package/lib/reports-lib.module.d.ts +33 -0
- package/lib/reports-lib.service.d.ts +6 -0
- package/lib/services/config.service.d.ts +20 -0
- package/lib/services/report.service.d.ts +80 -0
- package/lib/shared/export-generic.service.d.ts +50 -0
- package/lib/shared/export.service.d.ts +32 -0
- package/lib/shared/loader/loader.component.d.ts +5 -0
- package/lib/shared/metadata/metadata.component.d.ts +24 -0
- package/lib/shared/page-size-selector/page-size-selector.component.d.ts +15 -0
- package/lib/shared/search-filter/search-filter.component.d.ts +127 -0
- package/lib/shared/shared.module.d.ts +11 -0
- package/package.json +31 -16
- package/{src/public-api.ts → public-api.d.ts} +7 -17
- package/karma.conf.js +0 -44
- package/ng-package.json +0 -17
- package/src/assets/images/BreadcrumbArrow.png +0 -0
- package/src/assets/images/XMCoral.png +0 -0
- package/src/lib/assets/images/Search.svg +0 -10
- package/src/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.html +0 -27
- package/src/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.scss +0 -46
- package/src/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.spec.ts +0 -23
- package/src/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.ts +0 -292
- package/src/lib/components/accounting-report/accounting-report.component.html +0 -64
- package/src/lib/components/accounting-report/accounting-report.component.scss +0 -24
- package/src/lib/components/accounting-report/accounting-report.component.spec.ts +0 -23
- package/src/lib/components/accounting-report/accounting-report.component.ts +0 -738
- package/src/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.html +0 -46
- package/src/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.scss +0 -2
- package/src/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.spec.ts +0 -23
- package/src/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.ts +0 -247
- package/src/lib/components/branch-activity-send-report/branch-activity-send-report.component.html +0 -46
- package/src/lib/components/branch-activity-send-report/branch-activity-send-report.component.scss +0 -3
- package/src/lib/components/branch-activity-send-report/branch-activity-send-report.component.spec.ts +0 -23
- package/src/lib/components/branch-activity-send-report/branch-activity-send-report.component.ts +0 -276
- package/src/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.html +0 -51
- package/src/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.scss +0 -7
- package/src/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.spec.ts +0 -23
- package/src/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.ts +0 -840
- package/src/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.html +0 -68
- package/src/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.scss +0 -65
- package/src/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.spec.ts +0 -23
- package/src/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.ts +0 -290
- package/src/lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component.html +0 -25
- package/src/lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component.scss +0 -1
- package/src/lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component.spec.ts +0 -23
- package/src/lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component.ts +0 -213
- package/src/lib/components/funding-report/funding-report.component.html +0 -49
- package/src/lib/components/funding-report/funding-report.component.scss +0 -1
- package/src/lib/components/funding-report/funding-report.component.spec.ts +0 -23
- package/src/lib/components/funding-report/funding-report.component.ts +0 -221
- package/src/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.html +0 -26
- package/src/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.scss +0 -1
- package/src/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.spec.ts +0 -23
- package/src/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.ts +0 -267
- package/src/lib/components/statement-of-accounts-report/statement-of-accounts-report.component.html +0 -95
- package/src/lib/components/statement-of-accounts-report/statement-of-accounts-report.component.scss +0 -54
- package/src/lib/components/statement-of-accounts-report/statement-of-accounts-report.component.spec.ts +0 -23
- package/src/lib/components/statement-of-accounts-report/statement-of-accounts-report.component.ts +0 -904
- package/src/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.html +0 -49
- package/src/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.scss +0 -2
- package/src/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.spec.ts +0 -32
- package/src/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.ts +0 -304
- package/src/lib/components/transaction-monitoring-report/transaction-monitoring-report.component.html +0 -46
- package/src/lib/components/transaction-monitoring-report/transaction-monitoring-report.component.scss +0 -7
- package/src/lib/components/transaction-monitoring-report/transaction-monitoring-report.component.ts +0 -343
- package/src/lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component.html +0 -25
- package/src/lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component.scss +0 -23
- package/src/lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component.spec.ts +0 -23
- package/src/lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component.ts +0 -745
- package/src/lib/models/acc-gl-details-enquiry-report/accgl-details-enquiry-reportmodel.ts +0 -10
- package/src/lib/models/acc-gl-details-enquiry-report/journal-voucher-entry-model.ts +0 -20
- package/src/lib/models/accounting-report/accounting-report-branch-group.ts +0 -7
- package/src/lib/models/accounting-report/accounting-report-entry-model.ts +0 -25
- package/src/lib/models/accounting-report/accounting-report-model.ts +0 -7
- package/src/lib/models/branch-activity-receive-report/branch-activity-receive.model.ts +0 -18
- package/src/lib/models/branch-activity-report/branch-activity-send-report-request-domain-model.ts +0 -16
- package/src/lib/models/branch-activity-report/branch-activity-send-report.ts +0 -26
- package/src/lib/models/cancellation-transaction-report/cancellation-transaction.model.ts +0 -65
- package/src/lib/models/component-loading-states.ts +0 -5
- package/src/lib/models/credit-limit-status-enquiry-report/credit-limit-status-enquiry.model.ts +0 -28
- package/src/lib/models/statement-of-account-report/statement-of-accounts.model.ts +0 -21
- package/src/lib/models/transaction-enquiry-report/transaction-enquiry.model.ts +0 -127
- package/src/lib/models/transaction-monitoring-report/transaction-monitoring-report-request-domain-model.ts +0 -16
- package/src/lib/models/transaction-monitoring-report/transaction-monitoring-report.ts +0 -29
- package/src/lib/models/trial-balance-accounts-report/trial-balance-accounts.models.ts +0 -46
- package/src/lib/reports-lib-routing.module.ts +0 -20
- package/src/lib/reports-lib.component.spec.ts +0 -23
- package/src/lib/reports-lib.component.ts +0 -20
- package/src/lib/reports-lib.module.ts +0 -102
- package/src/lib/reports-lib.service.spec.ts +0 -16
- package/src/lib/reports-lib.service.ts +0 -9
- package/src/lib/services/config.service.ts +0 -43
- package/src/lib/services/report.service.spec.ts +0 -16
- package/src/lib/services/report.service.ts +0 -463
- package/src/lib/shared/export-generic.service.ts +0 -557
- package/src/lib/shared/export.service.spec.ts +0 -16
- package/src/lib/shared/export.service.ts +0 -457
- package/src/lib/shared/loader/loader.component.html +0 -8
- package/src/lib/shared/loader/loader.component.scss +0 -52
- package/src/lib/shared/loader/loader.component.ts +0 -10
- package/src/lib/shared/metadata/metadata.component.html +0 -42
- package/src/lib/shared/metadata/metadata.component.scss +0 -95
- package/src/lib/shared/metadata/metadata.component.spec.ts +0 -23
- package/src/lib/shared/metadata/metadata.component.ts +0 -38
- package/src/lib/shared/page-size-selector/page-size-selector.component.html +0 -7
- package/src/lib/shared/page-size-selector/page-size-selector.component.scss +0 -42
- package/src/lib/shared/page-size-selector/page-size-selector.component.spec.ts +0 -23
- package/src/lib/shared/page-size-selector/page-size-selector.component.ts +0 -38
- package/src/lib/shared/search-filter/search-filter.component.html +0 -601
- package/src/lib/shared/search-filter/search-filter.component.scss +0 -203
- package/src/lib/shared/search-filter/search-filter.component.spec.ts +0 -23
- package/src/lib/shared/search-filter/search-filter.component.ts +0 -2387
- package/src/lib/shared/shared.module.ts +0 -13
- package/src/styles/ag-grid-report-style.scss +0 -71
- package/src/styles/common-ag-grid-style.scss +0 -146
- package/src/styles/common-report-style.scss +0 -395
- package/src/styles/common-style.scss +0 -615
- package/src/test.ts +0 -27
- package/tsconfig.lib.json +0 -15
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -17
- /package/{src/lib → lib}/assets/config/app-config.json +0 -0
- /package/{src → lib}/assets/images/Search.svg +0 -0
- /package/{src/lib → lib}/assets/images/XMLogo.png +0 -0
- /package/{src/lib → lib}/assets/svg-loaders/blue-tail-spin.svg +0 -0
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { FormsModule } from '@angular/forms';
|
|
4
|
-
import { PageSizeSelectorComponent } from './page-size-selector/page-size-selector.component';
|
|
5
|
-
import { MetadataComponent } from './metadata/metadata.component';
|
|
6
|
-
import { NgSelectModule } from '@ng-select/ng-select';
|
|
7
|
-
|
|
8
|
-
@NgModule({
|
|
9
|
-
declarations: [PageSizeSelectorComponent, MetadataComponent],
|
|
10
|
-
imports: [CommonModule, FormsModule,NgSelectModule],
|
|
11
|
-
exports: [PageSizeSelectorComponent,MetadataComponent]
|
|
12
|
-
})
|
|
13
|
-
export class SharedModule { }
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
.transaction-grid ::ng-deep .ag-header {
|
|
2
|
-
background-color: #f9f9f9;
|
|
3
|
-
font-weight: 600;
|
|
4
|
-
font-size: 10px;
|
|
5
|
-
color: black;
|
|
6
|
-
border-right: 1px solid #e0e0e0;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
:host ::ng-deep .ag-header-cell {
|
|
10
|
-
padding: 2px !important;
|
|
11
|
-
align-items: center !important;
|
|
12
|
-
justify-content: center !important;
|
|
13
|
-
border-right: 1px solid #e0e0e0;
|
|
14
|
-
white-space: normal !important;
|
|
15
|
-
word-break: normal !important;
|
|
16
|
-
overflow-wrap: break-word !important;
|
|
17
|
-
text-align: center !important;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
::ng-deep .ag-header-cell-label {
|
|
22
|
-
display: flex !important;
|
|
23
|
-
justify-content: center !important; /* horizontal center */
|
|
24
|
-
align-items: center !important; /* vertical center */
|
|
25
|
-
width: 100%;
|
|
26
|
-
text-align: center !important;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
/* Also force header text itself to align center */
|
|
30
|
-
::ng-deep .ag-header-cell-text {
|
|
31
|
-
text-align: center !important;
|
|
32
|
-
width: 100% !important;
|
|
33
|
-
display: flex !important;
|
|
34
|
-
justify-content: center !important;
|
|
35
|
-
}
|
|
36
|
-
.transaction-grid ::ng-deep .ag-row {
|
|
37
|
-
border-bottom: 1px solid #e0e0e0;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.transaction-grid ::ng-deep .ag-cell {
|
|
41
|
-
font-size: 9px;
|
|
42
|
-
white-space: normal !important;
|
|
43
|
-
word-break: keep-all !important;
|
|
44
|
-
overflow-wrap: anywhere;
|
|
45
|
-
line-height: 1.4;
|
|
46
|
-
padding: 4px !important;
|
|
47
|
-
color: black;
|
|
48
|
-
font-weight: 500;
|
|
49
|
-
border-right: 0.5px solid #e0e0e0;
|
|
50
|
-
align-content: center;
|
|
51
|
-
user-select: text !important;
|
|
52
|
-
-webkit-user-select: text !important;
|
|
53
|
-
-moz-user-select: text !important;
|
|
54
|
-
-ms-user-select: text !important;
|
|
55
|
-
cursor: text;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
::ng-deep .ag-cell-label-container {
|
|
59
|
-
padding: 0px !important;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.ag-theme-alpine {
|
|
63
|
-
--ag-header-font-size: 10px;
|
|
64
|
-
--ag-font-size: 10px;
|
|
65
|
-
--ag-header-background-color: #fdfdfd;
|
|
66
|
-
--ag-header-foreground-color: rgb(0, 0, 0);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
::ng-deep .ag-paging-panel {
|
|
70
|
-
height: 30px !important;
|
|
71
|
-
}
|
|
@@ -1,146 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/* AG Grid root styling */
|
|
3
|
-
::ng-deep .ag-root {
|
|
4
|
-
user-select: text !important;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
/* Grid container */
|
|
8
|
-
::ng-deep .compact-grid {
|
|
9
|
-
font-weight: 500 !important;
|
|
10
|
-
line-height: 1.1 !important;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
/* Header cell styling */
|
|
14
|
-
::ng-deep .compact-grid .ag-header-cell {
|
|
15
|
-
padding: 1px 2px !important;
|
|
16
|
-
font-size: 10px !important;
|
|
17
|
-
font-weight: 700 !important;
|
|
18
|
-
line-height: 1.2 !important;
|
|
19
|
-
height: auto !important;
|
|
20
|
-
display: flex !important;
|
|
21
|
-
align-items: center !important;
|
|
22
|
-
justify-content: center !important;
|
|
23
|
-
text-align: center !important;
|
|
24
|
-
background-color: #f8f9fa;
|
|
25
|
-
// background-color: rgba(0, 0, 0, 0.04);
|
|
26
|
-
border-right: 1px solid #e0e0e0;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
::ng-deep .compact-grid .ag-header-cell-text {
|
|
30
|
-
font-size: 10px !important;
|
|
31
|
-
font-weight: 700 !important;
|
|
32
|
-
text-align: center !important;
|
|
33
|
-
width: 100%;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
/* Cell styling */
|
|
37
|
-
::ng-deep .compact-grid .ag-cell {
|
|
38
|
-
cursor: default !important;
|
|
39
|
-
border-right: 1px solid #e0e0e0;
|
|
40
|
-
padding: 2px 4px !important;
|
|
41
|
-
font-size: 9px !important;
|
|
42
|
-
display: flex !important;
|
|
43
|
-
align-items: center !important;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
::ng-deep .compact-grid .ag-cell-value {
|
|
47
|
-
cursor: text !important;
|
|
48
|
-
font-size: 9px !important;
|
|
49
|
-
padding: 0 3px 0 2 !important;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
/* Alignment classes */
|
|
55
|
-
::ng-deep .compact-grid .ag-right-aligned-cell {
|
|
56
|
-
text-align: right !important;
|
|
57
|
-
justify-content: flex-end !important;
|
|
58
|
-
text-overflow: 'ellipsis';
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
::ng-deep .ag-left-cols-cell {
|
|
62
|
-
text-align: left !important;
|
|
63
|
-
text-overflow: ellipsis !important;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
::ng-deep .compact-grid .ag-center-cols-cell {
|
|
71
|
-
text-align: center !important;
|
|
72
|
-
justify-content: center !important;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
/* Row styling */
|
|
76
|
-
::ng-deep .compact-grid .ag-row {
|
|
77
|
-
min-height: 20px !important;
|
|
78
|
-
// max-height: 60px !important;
|
|
79
|
-
max-height: none !important;
|
|
80
|
-
/* Control row height */
|
|
81
|
-
border-bottom: 1px solid #f0f0f0;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
::ng-deep .compact-grid .ag-row:hover {
|
|
85
|
-
background-color: #f8f9fa !important;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
/* Link cells */
|
|
89
|
-
::ng-deep .ag-cell-value.ag-cell-link {
|
|
90
|
-
cursor: pointer !important;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
/* Pagination styling */
|
|
96
|
-
::ng-deep .compact-grid .ag-paging-panel {
|
|
97
|
-
font-size: 11px !important;
|
|
98
|
-
height: 30px !important;
|
|
99
|
-
padding: 4px !important;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
::ng-deep .compact-grid .ag-paging-button {
|
|
103
|
-
height: 20px !important;
|
|
104
|
-
width: 20px !important;
|
|
105
|
-
font-size: 10px !important;
|
|
106
|
-
margin: 0 2px !important;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
::ng-deep .compact-grid .ag-paging-description {
|
|
110
|
-
font-size: 11px !important;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
/* All other cells - single line with ellipsis */
|
|
116
|
-
::ng-deep .compact-grid .compact-cell {
|
|
117
|
-
white-space: nowrap !important;
|
|
118
|
-
overflow: hidden !important;
|
|
119
|
-
text-overflow: ellipsis !important;
|
|
120
|
-
align-items: center !important;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
///===========================================================
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
/* Description cell - allow text wrapping but control height */
|
|
127
|
-
::ng-deep .compact-grid .description-cell {
|
|
128
|
-
white-space: normal !important;
|
|
129
|
-
word-break: normal !important;
|
|
130
|
-
overflow-wrap: break-word !important;
|
|
131
|
-
text-overflow: clip !important;
|
|
132
|
-
text-align: left !important;
|
|
133
|
-
padding: 3px 4px !important;
|
|
134
|
-
line-height: 1.5 !important;
|
|
135
|
-
display: block !important;
|
|
136
|
-
overflow: hidden !important;
|
|
137
|
-
max-height: none !important;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
::ng-deep .compact-cell-transaction {
|
|
141
|
-
white-space: nowrap !important;
|
|
142
|
-
overflow: hidden !important;
|
|
143
|
-
text-overflow: ellipsis !important;
|
|
144
|
-
align-items: left !important;
|
|
145
|
-
padding-left: 5px !important;
|
|
146
|
-
}
|
|
@@ -1,395 +0,0 @@
|
|
|
1
|
-
/* Button Report */
|
|
2
|
-
.btn-report{
|
|
3
|
-
border-radius: 3px;
|
|
4
|
-
background-color: #8091a5;
|
|
5
|
-
color: #fff !important;
|
|
6
|
-
font-size: 14px !important;
|
|
7
|
-
height: 32px;
|
|
8
|
-
min-width: 80px;
|
|
9
|
-
margin: 0 0 0 20px !important;
|
|
10
|
-
padding: 4px 15px !important;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
// Tooltip
|
|
14
|
-
.tooltip-block{
|
|
15
|
-
white-space: nowrap;
|
|
16
|
-
overflow: hidden;
|
|
17
|
-
text-overflow: ellipsis;
|
|
18
|
-
border: 1px solid #ccc !important;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
/* Date Picker */
|
|
22
|
-
.dpicker {
|
|
23
|
-
border: 1px solid #ccc !important;
|
|
24
|
-
font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" !important;
|
|
25
|
-
font-size: 12px !important;
|
|
26
|
-
font-weight: 400 !important;
|
|
27
|
-
height: 32px !important;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.dpicker:focus{
|
|
31
|
-
box-shadow: 0 0 5px 3px rgba(24,119,242,1.000) !important;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.cal{
|
|
35
|
-
height: 32px !important;
|
|
36
|
-
background-color: #1877F2;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.cal:focus{
|
|
40
|
-
box-shadow: none !important;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
/* Meta Data */
|
|
44
|
-
.labl {
|
|
45
|
-
font-size: 11.2px;
|
|
46
|
-
font-weight: bold !important;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.info {
|
|
50
|
-
font-size: 12px !important;
|
|
51
|
-
font-weight: 400;
|
|
52
|
-
padding-left: 0.5rem;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.label-data {
|
|
56
|
-
font-weight: 600 !important;
|
|
57
|
-
font-size: 0.7rem !important;
|
|
58
|
-
line-height: 1rem;
|
|
59
|
-
padding-top: 0.15rem !important;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.title {
|
|
63
|
-
text-align: center;
|
|
64
|
-
font-size: 18px;
|
|
65
|
-
font-weight: bold !important;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
// Export Options
|
|
69
|
-
.export-options{
|
|
70
|
-
font-size: 0.75rem;
|
|
71
|
-
height: 2rem !important;
|
|
72
|
-
width: 5rem !important;
|
|
73
|
-
margin-right: -1;
|
|
74
|
-
margin-left: 0.4rem;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.opt-cls{
|
|
78
|
-
display: block;
|
|
79
|
-
height:100%;
|
|
80
|
-
width: 5rem;
|
|
81
|
-
border: 1px solid #ccc !important;
|
|
82
|
-
border-radius: 4px !important;
|
|
83
|
-
margin-right: 1rem !important;
|
|
84
|
-
outline: none !important;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.opt-cls:focus{
|
|
88
|
-
box-shadow: 0 0 5px 3px rgba(24,119,242,1.000);
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.export-selector{
|
|
92
|
-
height: 2rem !important;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
// Search-Function
|
|
96
|
-
.search-btn {
|
|
97
|
-
height: 32px;
|
|
98
|
-
width: 36px;
|
|
99
|
-
background-color: #8091a5;
|
|
100
|
-
border: none;
|
|
101
|
-
border-top-right-radius: 4px;
|
|
102
|
-
border-bottom-right-radius: 4px;
|
|
103
|
-
border-top-left-radius: 0;
|
|
104
|
-
border-bottom-left-radius: 0;
|
|
105
|
-
display: flex;
|
|
106
|
-
justify-content: center;
|
|
107
|
-
align-items: center;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.search-btn:hover {
|
|
111
|
-
background-color: #8091a5;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.search-icon {
|
|
115
|
-
height: 16px;
|
|
116
|
-
width: 16px;
|
|
117
|
-
object-fit: contain;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.search-input {
|
|
121
|
-
outline: none !important;
|
|
122
|
-
border: 1px solid #ccc !important;
|
|
123
|
-
width: 190px;
|
|
124
|
-
height: 32px !important;
|
|
125
|
-
font-size: 0.75rem;
|
|
126
|
-
padding: 0.25rem 0.5rem;
|
|
127
|
-
border-top-left-radius: 4px;
|
|
128
|
-
border-bottom-left-radius: 4px;
|
|
129
|
-
border-top-right-radius: 0 !important;
|
|
130
|
-
border-bottom-right-radius: 0 !important;
|
|
131
|
-
text-transform: uppercase;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.search-input:focus{
|
|
135
|
-
box-shadow: 0 0 5px 3px rgba(24,119,242,1.000) !important;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.searchBox{
|
|
139
|
-
margin-right: auto;
|
|
140
|
-
display: flex;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
table {
|
|
145
|
-
width: 100%;
|
|
146
|
-
border-collapse: separate;
|
|
147
|
-
margin-bottom: 0 !important;
|
|
148
|
-
table-layout: fixed !important;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
td{
|
|
152
|
-
padding:0 1rem 6px 0!important;
|
|
153
|
-
border-right: 0 solid #ffffff !important;
|
|
154
|
-
background-color: white !important;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.meta-td{
|
|
158
|
-
padding: 0 !important;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.row-cls{
|
|
162
|
-
height: 2.5rem !important;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.inputbox{
|
|
166
|
-
padding-left: 1rem;
|
|
167
|
-
font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
168
|
-
;
|
|
169
|
-
}
|
|
170
|
-
// .inputbox input{
|
|
171
|
-
// height: 2rem;
|
|
172
|
-
// }
|
|
173
|
-
|
|
174
|
-
// ng-select style
|
|
175
|
-
/* Select Box */
|
|
176
|
-
::ng-deep .ng-select.ng-select-single .ng-select-container {
|
|
177
|
-
height: 32px I !important;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
::ng-deep .ng-select.ng-select-multiple .ng-select-container .ng-value-container {
|
|
181
|
-
max-height: 32px !important;
|
|
182
|
-
overflow-x: auto !important;
|
|
183
|
-
white-space: nowrap !important;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
// Above chnges to manage height
|
|
187
|
-
::ng-deep .ng-select.ng-select-multiple .ng-select-container .ng-value-container {
|
|
188
|
-
max-height: 32px !important; /* Adjust as needed */
|
|
189
|
-
overflow-x: auto !important;
|
|
190
|
-
white-space: nowrap !important;
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
::ng-deep .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value {
|
|
194
|
-
max-width: 200px !important; /* Adjust as needed */
|
|
195
|
-
overflow: hidden !important;
|
|
196
|
-
text-overflow: ellipsis !important;
|
|
197
|
-
white-space: nowrap !important;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
::ng-deep .ng-select .ng-select-container {
|
|
201
|
-
cursor: default;
|
|
202
|
-
display: flex;
|
|
203
|
-
outline: none;
|
|
204
|
-
overflow: hidden;
|
|
205
|
-
position: relative;
|
|
206
|
-
width: 100%;
|
|
207
|
-
// max-width: 18.25rem !important;
|
|
208
|
-
}
|
|
209
|
-
::ng-deep .ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
|
|
210
|
-
box-sizing: border-box;
|
|
211
|
-
cursor: pointer;
|
|
212
|
-
display: block;
|
|
213
|
-
white-space: nowrap;
|
|
214
|
-
overflow-x: scroll !important;
|
|
215
|
-
text-overflow:clip !important;
|
|
216
|
-
}
|
|
217
|
-
::ng-deep .ng-dropdown-panel .ng-dropdown-panel-items .ng-option::-webkit-scrollbar {
|
|
218
|
-
display: none !important;
|
|
219
|
-
width: 0 !important;
|
|
220
|
-
}
|
|
221
|
-
::ng-deep .ng-select .ng-select-container:focus-within{
|
|
222
|
-
box-shadow: 0 0 5px 3px rgba(24,119,242,1.000) !important;
|
|
223
|
-
}
|
|
224
|
-
::ng-deep .ng-select .ng-select-container:focus{
|
|
225
|
-
box-shadow: 0 0 5px 3px rgba(24,119,242,1.000) !important;
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
::ng-deep .ng-select .ng-select-container,
|
|
229
|
-
::ng-deep .ng-select.ng-select-single .ng-select-container,
|
|
230
|
-
::ng-deep .ng-select.ng-select-multiple .ng-select-container {
|
|
231
|
-
min-height: 32px !important;
|
|
232
|
-
height: 32px !important;
|
|
233
|
-
// line-height: 32px !important;
|
|
234
|
-
font-size: 12px !important; /* or adjust as needed */
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
// Ag-Grid css
|
|
238
|
-
/* theme overrides for AG Grid */
|
|
239
|
-
.ag-theme-alpine {
|
|
240
|
-
--ag-header-font-size: 9px;
|
|
241
|
-
--ag-font-size: 10px;
|
|
242
|
-
--ag-header-background-color: #fdfdfd;
|
|
243
|
-
--ag-header-foreground-color: rgb(0, 0, 0);
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
/* header cell label alignments */
|
|
247
|
-
.ag-theme-alpine .ag-header-cell-label,
|
|
248
|
-
.ag-theme-alpine .ag-header-group-cell-label {
|
|
249
|
-
justify-content: flex-start !important;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
/* AG Grid root container */
|
|
253
|
-
::ng-deep .ag-root {
|
|
254
|
-
user-select: text !important;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
/* Compact‐grid styling */
|
|
258
|
-
::ng-deep .compact-grid {
|
|
259
|
-
font-weight: 500 !important;
|
|
260
|
-
line-height: 1.1 !important;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
/* Header cell formatting */
|
|
264
|
-
::ng-deep .compact-grid .ag-header-cell {
|
|
265
|
-
padding: 1px 2px !important;
|
|
266
|
-
font-size: 10px !important;
|
|
267
|
-
font-weight: 700 !important;
|
|
268
|
-
line-height: 1.2 !important;
|
|
269
|
-
height: auto !important;
|
|
270
|
-
display: flex !important;
|
|
271
|
-
align-items: center !important;
|
|
272
|
-
justify-content: center !important;
|
|
273
|
-
text-align: center !important;
|
|
274
|
-
background-color: #f8f9fa;
|
|
275
|
-
border-right: 1px solid #e0e0e0;
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
.myGrid .ag-center-cols-clipper,
|
|
279
|
-
.myGrid .ag-body-viewport {
|
|
280
|
-
display: none;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
/* Header-cell text */
|
|
285
|
-
::ng-deep .compact-grid .ag-header-cell-text {
|
|
286
|
-
font-size: 10px !important;
|
|
287
|
-
font-weight: 700 !important;
|
|
288
|
-
text-align: center !important;
|
|
289
|
-
width: 100%;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
/* Data cells */
|
|
293
|
-
::ng-deep .compact-grid .ag-cell {
|
|
294
|
-
cursor: default !important;
|
|
295
|
-
border-right: 1px solid #e0e0e0;
|
|
296
|
-
padding: 2px 3px !important;
|
|
297
|
-
font-size: 9px !important;
|
|
298
|
-
display: flex !important;
|
|
299
|
-
align-items: center !important;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
::ng-deep .compact-grid .ag-cell-value {
|
|
303
|
-
cursor: text !important;
|
|
304
|
-
font-size: 9px !important;
|
|
305
|
-
padding: 0 3px 0 2px !important;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
/* Description cells (multi-line wrapping) */
|
|
309
|
-
::ng-deep .compact-grid .description-cell {
|
|
310
|
-
white-space: normal !important;
|
|
311
|
-
word-break: normal !important;
|
|
312
|
-
overflow-wrap: break-word !important;
|
|
313
|
-
text-overflow: clip !important;
|
|
314
|
-
text-align: left !important;
|
|
315
|
-
padding: 3px 4px !important;
|
|
316
|
-
line-height: 1.5 !important;
|
|
317
|
-
display: block !important;
|
|
318
|
-
overflow: hidden !important;
|
|
319
|
-
max-height: none !important;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
/* Truncated single-line cells */
|
|
323
|
-
::ng-deep .compact-grid .compact-cell {
|
|
324
|
-
white-space: nowrap !important;
|
|
325
|
-
overflow: hidden !important;
|
|
326
|
-
text-overflow: ellipsis !important;
|
|
327
|
-
align-items: center !important;
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
/* Transaction-specific truncation */
|
|
331
|
-
::ng-deep .compact-cell-transaction {
|
|
332
|
-
white-space: nowrap !important;
|
|
333
|
-
overflow: hidden !important;
|
|
334
|
-
text-overflow: ellipsis !important;
|
|
335
|
-
align-items: left !important;
|
|
336
|
-
padding-left: 5px !important;
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
/* Right‑aligned numeric cells */
|
|
340
|
-
::ng-deep .compact-grid .ag-right-aligned-cell {
|
|
341
|
-
text-align: right !important;
|
|
342
|
-
justify-content: flex-end !important;
|
|
343
|
-
text-overflow: ellipsis;
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
/* Left columns cell styling */
|
|
347
|
-
::ng-deep .ag-left-cols-cell {
|
|
348
|
-
text-align: left !important;
|
|
349
|
-
text-overflow: ellipsis !important;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
/* Center‑aligned columns */
|
|
353
|
-
::ng-deep .compact-grid .ag-center-cols-cell {
|
|
354
|
-
text-align: center !important;
|
|
355
|
-
justify-content: center !important;
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
/* Disable horizontal scroll overflow */
|
|
359
|
-
::ng-deep .ag-center-cols-viewport {
|
|
360
|
-
width: 100%;
|
|
361
|
-
overflow-x: hidden !important;
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
/* Row styling */
|
|
365
|
-
::ng-deep .compact-grid .ag-row {
|
|
366
|
-
min-height: 20px !important;
|
|
367
|
-
max-height: none !important;
|
|
368
|
-
border-bottom: 1px solid #f0f0f0;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
::ng-deep .compact-grid .ag-row:hover {
|
|
372
|
-
background-color: #f8f9fa !important;
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
/* Link cells cursor */
|
|
376
|
-
::ng-deep .ag-cell-value.ag-cell-link {
|
|
377
|
-
cursor: pointer !important;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
/* Pagination panel */
|
|
381
|
-
::ng-deep .ag-paging-panel {
|
|
382
|
-
border-top: 1px solid;
|
|
383
|
-
border-top-color: var(--ag-border-color);
|
|
384
|
-
color: var(--ag-secondary-foreground-color);
|
|
385
|
-
height: 30px;
|
|
386
|
-
font-size: 11px !important;
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
.panel-cls{
|
|
390
|
-
font-weight: bold;
|
|
391
|
-
font-size: 13px;
|
|
392
|
-
line-height: 1.2;
|
|
393
|
-
margin: 0;
|
|
394
|
-
padding: 2px 0;color: #16181E;
|
|
395
|
-
}
|