@sachin9822/reports-lib 0.0.211 → 0.0.212
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/karma.conf.js +44 -0
- package/ng-package.json +17 -0
- package/package.json +16 -31
- package/src/assets/images/BreadcrumbArrow.png +0 -0
- package/src/lib/assets/images/Search.svg +10 -0
- package/src/lib/assets/images/XMLogo.png +0 -0
- package/src/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.html +27 -0
- package/src/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.scss +46 -0
- package/src/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.spec.ts +23 -0
- package/src/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.ts +292 -0
- package/src/lib/components/accounting-report/accounting-report.component.html +64 -0
- package/src/lib/components/accounting-report/accounting-report.component.scss +24 -0
- package/src/lib/components/accounting-report/accounting-report.component.spec.ts +23 -0
- package/src/lib/components/accounting-report/accounting-report.component.ts +738 -0
- package/src/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.html +46 -0
- package/src/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.scss +2 -0
- package/src/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.spec.ts +23 -0
- package/src/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.ts +247 -0
- package/src/lib/components/branch-activity-send-report/branch-activity-send-report.component.html +46 -0
- package/src/lib/components/branch-activity-send-report/branch-activity-send-report.component.scss +3 -0
- package/src/lib/components/branch-activity-send-report/branch-activity-send-report.component.spec.ts +23 -0
- package/src/lib/components/branch-activity-send-report/branch-activity-send-report.component.ts +276 -0
- package/src/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.html +51 -0
- package/src/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.scss +7 -0
- package/src/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.spec.ts +23 -0
- package/src/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.ts +840 -0
- package/src/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.html +68 -0
- package/src/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.scss +65 -0
- package/src/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.spec.ts +23 -0
- package/src/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.ts +290 -0
- package/src/lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component.html +25 -0
- package/src/lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component.scss +1 -0
- package/src/lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component.spec.ts +23 -0
- package/src/lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component.ts +213 -0
- package/src/lib/components/funding-report/funding-report.component.html +49 -0
- package/src/lib/components/funding-report/funding-report.component.scss +1 -0
- package/src/lib/components/funding-report/funding-report.component.spec.ts +23 -0
- package/src/lib/components/funding-report/funding-report.component.ts +221 -0
- package/src/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.html +26 -0
- package/src/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.scss +1 -0
- package/src/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.spec.ts +23 -0
- package/src/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.ts +267 -0
- package/src/lib/components/statement-of-accounts-report/statement-of-accounts-report.component.html +95 -0
- package/src/lib/components/statement-of-accounts-report/statement-of-accounts-report.component.scss +54 -0
- package/src/lib/components/statement-of-accounts-report/statement-of-accounts-report.component.spec.ts +23 -0
- package/src/lib/components/statement-of-accounts-report/statement-of-accounts-report.component.ts +904 -0
- package/src/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.html +49 -0
- package/src/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.scss +2 -0
- package/src/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.spec.ts +32 -0
- package/src/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.ts +304 -0
- package/src/lib/components/transaction-monitoring-report/transaction-monitoring-report.component.html +46 -0
- package/src/lib/components/transaction-monitoring-report/transaction-monitoring-report.component.scss +7 -0
- package/src/lib/components/transaction-monitoring-report/transaction-monitoring-report.component.ts +343 -0
- package/src/lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component.html +25 -0
- package/src/lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component.scss +23 -0
- package/src/lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component.spec.ts +23 -0
- package/src/lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component.ts +745 -0
- package/src/lib/models/acc-gl-details-enquiry-report/accgl-details-enquiry-reportmodel.ts +10 -0
- package/src/lib/models/acc-gl-details-enquiry-report/journal-voucher-entry-model.ts +20 -0
- package/src/lib/models/accounting-report/accounting-report-branch-group.ts +7 -0
- package/src/lib/models/accounting-report/accounting-report-entry-model.ts +25 -0
- package/src/lib/models/accounting-report/accounting-report-model.ts +7 -0
- package/{lib/models/accounting-report/accounting-report-sub-group.d.ts → src/lib/models/accounting-report/accounting-report-sub-group.ts} +3 -2
- package/{lib/models/app-config.model.d.ts → src/lib/models/app-config.model.ts} +8 -7
- package/src/lib/models/branch-activity-receive-report/branch-activity-receive.model.ts +18 -0
- package/src/lib/models/branch-activity-report/branch-activity-send-report-request-domain-model.ts +16 -0
- package/src/lib/models/branch-activity-report/branch-activity-send-report.ts +26 -0
- package/src/lib/models/cancellation-transaction-report/cancellation-transaction.model.ts +65 -0
- package/src/lib/models/component-loading-states.ts +5 -0
- package/src/lib/models/credit-limit-status-enquiry-report/credit-limit-status-enquiry.model.ts +28 -0
- package/{lib/models/revenue-per-transaction-report/revenue-per-transaction.model.d.ts → src/lib/models/revenue-per-transaction-report/revenue-per-transaction.model.ts} +1 -1
- package/src/lib/models/statement-of-account-report/statement-of-accounts.model.ts +21 -0
- package/src/lib/models/transaction-enquiry-report/transaction-enquiry.model.ts +127 -0
- package/src/lib/models/transaction-monitoring-report/transaction-monitoring-report-request-domain-model.ts +16 -0
- package/src/lib/models/transaction-monitoring-report/transaction-monitoring-report.ts +29 -0
- package/src/lib/models/trial-balance-accounts-report/trial-balance-accounts.models.ts +46 -0
- package/src/lib/reports-lib-routing.module.ts +20 -0
- package/src/lib/reports-lib.component.spec.ts +23 -0
- package/src/lib/reports-lib.component.ts +20 -0
- package/src/lib/reports-lib.module.ts +102 -0
- package/src/lib/reports-lib.service.spec.ts +16 -0
- package/src/lib/reports-lib.service.ts +9 -0
- package/src/lib/services/config.service.ts +43 -0
- package/src/lib/services/report.service.spec.ts +16 -0
- package/src/lib/services/report.service.ts +463 -0
- package/src/lib/shared/export-generic.service.ts +557 -0
- package/src/lib/shared/export.service.spec.ts +16 -0
- package/src/lib/shared/export.service.ts +457 -0
- package/src/lib/shared/loader/loader.component.html +8 -0
- package/src/lib/shared/loader/loader.component.scss +52 -0
- package/src/lib/shared/loader/loader.component.ts +10 -0
- package/src/lib/shared/metadata/metadata.component.html +42 -0
- package/src/lib/shared/metadata/metadata.component.scss +95 -0
- package/src/lib/shared/metadata/metadata.component.spec.ts +23 -0
- package/src/lib/shared/metadata/metadata.component.ts +38 -0
- package/src/lib/shared/page-size-selector/page-size-selector.component.html +7 -0
- package/src/lib/shared/page-size-selector/page-size-selector.component.scss +42 -0
- package/src/lib/shared/page-size-selector/page-size-selector.component.spec.ts +23 -0
- package/src/lib/shared/page-size-selector/page-size-selector.component.ts +38 -0
- package/src/lib/shared/search-filter/search-filter.component.html +601 -0
- package/src/lib/shared/search-filter/search-filter.component.scss +203 -0
- package/src/lib/shared/search-filter/search-filter.component.spec.ts +23 -0
- package/src/lib/shared/search-filter/search-filter.component.ts +2387 -0
- package/src/lib/shared/shared.module.ts +13 -0
- package/{public-api.d.ts → src/public-api.ts} +17 -7
- package/src/styles/ag-grid-report-style.scss +71 -0
- package/src/styles/common-ag-grid-style.scss +146 -0
- package/src/styles/common-report-style.scss +395 -0
- package/src/styles/common-style.scss +615 -0
- package/src/test.ts +27 -0
- package/tsconfig.lib.json +15 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +17 -0
- package/esm2020/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.mjs +0 -240
- package/esm2020/lib/components/accounting-report/accounting-report.component.mjs +0 -596
- package/esm2020/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.mjs +0 -218
- package/esm2020/lib/components/branch-activity-send-report/branch-activity-send-report.component.mjs +0 -243
- package/esm2020/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.mjs +0 -700
- package/esm2020/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.mjs +0 -255
- package/esm2020/lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component.mjs +0 -192
- package/esm2020/lib/components/funding-report/funding-report.component.mjs +0 -198
- package/esm2020/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.mjs +0 -244
- package/esm2020/lib/components/statement-of-accounts-report/statement-of-accounts-report.component.mjs +0 -776
- package/esm2020/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.mjs +0 -266
- package/esm2020/lib/components/transaction-monitoring-report/transaction-monitoring-report.component.mjs +0 -311
- package/esm2020/lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component.mjs +0 -631
- package/esm2020/lib/models/acc-gl-details-enquiry-report/accgl-details-enquiry-reportmodel.mjs +0 -2
- package/esm2020/lib/models/acc-gl-details-enquiry-report/journal-voucher-entry-model.mjs +0 -2
- package/esm2020/lib/models/accounting-report/accounting-report-branch-group.mjs +0 -2
- package/esm2020/lib/models/accounting-report/accounting-report-entry-model.mjs +0 -2
- package/esm2020/lib/models/accounting-report/accounting-report-model.mjs +0 -2
- package/esm2020/lib/models/accounting-report/accounting-report-sub-group.mjs +0 -2
- package/esm2020/lib/models/app-config.model.mjs +0 -2
- package/esm2020/lib/models/branch-activity-receive-report/branch-activity-receive.model.mjs +0 -2
- package/esm2020/lib/models/branch-activity-report/branch-activity-send-report-request-domain-model.mjs +0 -6
- package/esm2020/lib/models/branch-activity-report/branch-activity-send-report.mjs +0 -3
- package/esm2020/lib/models/cancellation-transaction-report/cancellation-transaction.model.mjs +0 -10
- package/esm2020/lib/models/component-loading-states.mjs +0 -7
- package/esm2020/lib/models/credit-limit-status-enquiry-report/credit-limit-status-enquiry.model.mjs +0 -5
- package/esm2020/lib/models/revenue-per-transaction-report/revenue-per-transaction.model.mjs +0 -2
- package/esm2020/lib/models/statement-of-account-report/statement-of-accounts.model.mjs +0 -2
- package/esm2020/lib/models/transaction-enquiry-report/transaction-enquiry.model.mjs +0 -8
- package/esm2020/lib/models/transaction-monitoring-report/transaction-monitoring-report-request-domain-model.mjs +0 -6
- package/esm2020/lib/models/transaction-monitoring-report/transaction-monitoring-report.mjs +0 -5
- package/esm2020/lib/models/trial-balance-accounts-report/trial-balance-accounts.models.mjs +0 -3
- package/esm2020/lib/reports-lib-routing.module.mjs +0 -24
- package/esm2020/lib/reports-lib.component.mjs +0 -22
- package/esm2020/lib/reports-lib.module.mjs +0 -172
- package/esm2020/lib/reports-lib.service.mjs +0 -14
- package/esm2020/lib/services/config.service.mjs +0 -39
- package/esm2020/lib/services/report.service.mjs +0 -374
- package/esm2020/lib/shared/export-generic.service.mjs +0 -443
- package/esm2020/lib/shared/export.service.mjs +0 -379
- package/esm2020/lib/shared/loader/loader.component.mjs +0 -11
- package/esm2020/lib/shared/metadata/metadata.component.mjs +0 -51
- package/esm2020/lib/shared/page-size-selector/page-size-selector.component.mjs +0 -44
- package/esm2020/lib/shared/search-filter/search-filter.component.mjs +0 -2134
- package/esm2020/lib/shared/shared.module.mjs +0 -21
- package/esm2020/public-api.mjs +0 -41
- package/esm2020/sachin9822-reports-lib.mjs +0 -5
- package/fesm2015/sachin9822-reports-lib.mjs +0 -8402
- package/fesm2015/sachin9822-reports-lib.mjs.map +0 -1
- package/fesm2020/sachin9822-reports-lib.mjs +0 -8384
- package/fesm2020/sachin9822-reports-lib.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.d.ts +0 -70
- package/lib/components/accounting-report/accounting-report.component.d.ts +0 -76
- package/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.d.ts +0 -58
- package/lib/components/branch-activity-send-report/branch-activity-send-report.component.d.ts +0 -69
- package/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.d.ts +0 -78
- package/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.d.ts +0 -95
- package/lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component.d.ts +0 -55
- package/lib/components/funding-report/funding-report.component.d.ts +0 -55
- package/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.d.ts +0 -57
- package/lib/components/statement-of-accounts-report/statement-of-accounts-report.component.d.ts +0 -109
- package/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.d.ts +0 -76
- package/lib/components/transaction-monitoring-report/transaction-monitoring-report.component.d.ts +0 -68
- package/lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component.d.ts +0 -71
- package/lib/models/acc-gl-details-enquiry-report/accgl-details-enquiry-reportmodel.d.ts +0 -8
- package/lib/models/acc-gl-details-enquiry-report/journal-voucher-entry-model.d.ts +0 -18
- package/lib/models/accounting-report/accounting-report-branch-group.d.ts +0 -6
- package/lib/models/accounting-report/accounting-report-entry-model.d.ts +0 -24
- package/lib/models/accounting-report/accounting-report-model.d.ts +0 -6
- package/lib/models/branch-activity-receive-report/branch-activity-receive.model.d.ts +0 -18
- package/lib/models/branch-activity-report/branch-activity-send-report-request-domain-model.d.ts +0 -13
- package/lib/models/branch-activity-report/branch-activity-send-report.d.ts +0 -24
- package/lib/models/cancellation-transaction-report/cancellation-transaction.model.d.ts +0 -44
- package/lib/models/component-loading-states.d.ts +0 -5
- package/lib/models/credit-limit-status-enquiry-report/credit-limit-status-enquiry.model.d.ts +0 -26
- package/lib/models/statement-of-account-report/statement-of-accounts.model.d.ts +0 -18
- package/lib/models/transaction-enquiry-report/transaction-enquiry.model.d.ts +0 -113
- package/lib/models/transaction-monitoring-report/transaction-monitoring-report-request-domain-model.d.ts +0 -13
- package/lib/models/transaction-monitoring-report/transaction-monitoring-report.d.ts +0 -23
- package/lib/models/trial-balance-accounts-report/trial-balance-accounts.models.d.ts +0 -38
- package/lib/reports-lib-routing.module.d.ts +0 -7
- package/lib/reports-lib.component.d.ts +0 -8
- package/lib/reports-lib.module.d.ts +0 -33
- package/lib/reports-lib.service.d.ts +0 -6
- package/lib/services/config.service.d.ts +0 -20
- package/lib/services/report.service.d.ts +0 -80
- package/lib/shared/export-generic.service.d.ts +0 -50
- package/lib/shared/export.service.d.ts +0 -32
- package/lib/shared/loader/loader.component.d.ts +0 -5
- package/lib/shared/metadata/metadata.component.d.ts +0 -24
- package/lib/shared/page-size-selector/page-size-selector.component.d.ts +0 -15
- package/lib/shared/search-filter/search-filter.component.d.ts +0 -127
- package/lib/shared/shared.module.d.ts +0 -11
- /package/{lib → src}/assets/images/Search.svg +0 -0
- /package/{lib/assets/images/XMLogo.png → src/assets/images/XMCoral.png} +0 -0
- /package/{lib → src/lib}/assets/config/app-config.json +0 -0
- /package/{lib → src/lib}/assets/svg-loaders/blue-tail-spin.svg +0 -0
|
@@ -0,0 +1,13 @@
|
|
|
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,24 +1,34 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Public API Surface of reports-lib
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
// Services
|
|
1
6
|
export * from './lib/reports-lib.service';
|
|
2
7
|
export * from './lib/services/report.service';
|
|
3
|
-
export * from './lib/services/config.service'
|
|
8
|
+
export * from './lib/services/config.service'
|
|
4
9
|
export * from './lib/shared/export.service';
|
|
5
10
|
export * from './lib/shared/export-generic.service';
|
|
6
11
|
export * from './lib/shared/loader/loader.component';
|
|
12
|
+
|
|
13
|
+
// Components
|
|
7
14
|
export * from './lib/reports-lib.component';
|
|
8
15
|
export * from './lib/reports-lib.module';
|
|
9
16
|
export * from './lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component';
|
|
10
17
|
export * from './lib/components/transaction-enquiry-report/transaction-enquiry-report.component';
|
|
11
18
|
export * from './lib/components/branch-activity-send-report/branch-activity-send-report.component';
|
|
12
|
-
export * from './lib/components/branch-activity-receive-report/branch-activity-receive-report.component'
|
|
19
|
+
export * from './lib/components/branch-activity-receive-report/branch-activity-receive-report.component'
|
|
13
20
|
export * from './lib/components/cancellation-transaction-report/cancellation-transaction-report.component';
|
|
14
21
|
export * from './lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component';
|
|
15
|
-
export * from './lib/components/statement-of-accounts-report/statement-of-accounts-report.component'
|
|
22
|
+
export * from './lib/components/statement-of-accounts-report/statement-of-accounts-report.component'
|
|
16
23
|
export * from './lib/components/accounting-report/accounting-report.component';
|
|
17
24
|
export * from './lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component';
|
|
18
25
|
export * from './lib/components/funding-report/funding-report.component';
|
|
19
26
|
export * from './lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component';
|
|
20
27
|
export * from './lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component';
|
|
21
28
|
export * from './lib/components/transaction-monitoring-report/transaction-monitoring-report.component';
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
// Models
|
|
22
32
|
export * from './lib/models/transaction-enquiry-report/transaction-enquiry.model';
|
|
23
33
|
export * from './lib/models/app-config.model';
|
|
24
34
|
export * from './lib/models/branch-activity-report/branch-activity-send-report';
|
|
@@ -26,9 +36,9 @@ export * from './lib/models/branch-activity-report/branch-activity-send-report-r
|
|
|
26
36
|
export * from './lib/models/branch-activity-receive-report/branch-activity-receive.model';
|
|
27
37
|
export * from './lib/models/cancellation-transaction-report/cancellation-transaction.model';
|
|
28
38
|
export * from './lib/models/revenue-per-transaction-report/revenue-per-transaction.model';
|
|
29
|
-
export * from './lib/models/statement-of-account-report/statement-of-accounts.model'
|
|
39
|
+
export * from './lib/models/statement-of-account-report/statement-of-accounts.model'
|
|
30
40
|
export * from './lib/models/credit-limit-status-enquiry-report/credit-limit-status-enquiry.model';
|
|
31
41
|
export * from './lib/models/statement-of-account-report/statement-of-accounts.model';
|
|
32
|
-
export * from './lib/models/trial-balance-accounts-report/trial-balance-accounts.models'
|
|
33
|
-
export * from './lib/models/transaction-monitoring-report/transaction-monitoring-report-request-domain-model'
|
|
34
|
-
export * from './lib/models/transaction-monitoring-report/transaction-monitoring-report'
|
|
42
|
+
export * from './lib/models/trial-balance-accounts-report/trial-balance-accounts.models'
|
|
43
|
+
export * from './lib/models/transaction-monitoring-report/transaction-monitoring-report-request-domain-model'
|
|
44
|
+
export * from './lib/models/transaction-monitoring-report/transaction-monitoring-report'
|
|
@@ -0,0 +1,71 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,146 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,395 @@
|
|
|
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
|
+
}
|