@sachin9822/reports-lib 0.0.149 → 0.0.151

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.
Files changed (42) hide show
  1. package/esm2020/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.mjs +22 -8
  2. package/esm2020/lib/components/accounting-report/accounting-report.component.mjs +254 -0
  3. package/esm2020/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.mjs +463 -0
  4. package/esm2020/lib/components/branch-activity-send-report/branch-activity-send-report.component.mjs +33 -53
  5. package/esm2020/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.mjs +348 -0
  6. package/esm2020/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.mjs +28 -77
  7. package/esm2020/lib/models/accounting-report/accounting-report-entry-model.mjs +2 -0
  8. package/esm2020/lib/models/accounting-report/accounting-report-model.mjs +2 -0
  9. package/esm2020/lib/models/branch-activity-receive-report/branch-activity-receive.model.mjs +2 -0
  10. package/esm2020/lib/models/cancellation-transaction-report/cancellation-transaction.model.mjs +2 -0
  11. package/esm2020/lib/reports-lib.module.mjs +18 -5
  12. package/esm2020/lib/services/config.service.mjs +4 -3
  13. package/esm2020/lib/services/report.service.mjs +91 -1
  14. package/esm2020/lib/shared/export-generic.service.mjs +324 -0
  15. package/esm2020/lib/shared/export.service.mjs +2 -2
  16. package/esm2020/lib/shared/metadata/metadata.component.mjs +50 -0
  17. package/esm2020/lib/shared/page-size-selector/page-size-selector.component.mjs +2 -2
  18. package/esm2020/lib/shared/search-filter/search-filter.component.mjs +402 -23
  19. package/esm2020/lib/shared/shared.module.mjs +8 -6
  20. package/esm2020/public-api.mjs +7 -1
  21. package/fesm2015/sachin9822-reports-lib.mjs +2119 -294
  22. package/fesm2015/sachin9822-reports-lib.mjs.map +1 -1
  23. package/fesm2020/sachin9822-reports-lib.mjs +2083 -269
  24. package/fesm2020/sachin9822-reports-lib.mjs.map +1 -1
  25. package/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.d.ts +5 -2
  26. package/lib/components/accounting-report/accounting-report.component.d.ts +56 -0
  27. package/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.d.ts +52 -0
  28. package/lib/components/branch-activity-send-report/branch-activity-send-report.component.d.ts +4 -31
  29. package/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.d.ts +99 -0
  30. package/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.d.ts +4 -32
  31. package/lib/models/accounting-report/accounting-report-entry-model.d.ts +24 -0
  32. package/lib/models/accounting-report/accounting-report-model.d.ts +8 -0
  33. package/lib/models/branch-activity-receive-report/branch-activity-receive.model.d.ts +18 -0
  34. package/lib/models/cancellation-transaction-report/cancellation-transaction.model.d.ts +44 -0
  35. package/lib/reports-lib.module.d.ts +13 -10
  36. package/lib/services/report.service.d.ts +18 -0
  37. package/lib/shared/export-generic.service.d.ts +47 -0
  38. package/lib/shared/metadata/metadata.component.d.ts +24 -0
  39. package/lib/shared/search-filter/search-filter.component.d.ts +3 -0
  40. package/lib/shared/shared.module.d.ts +5 -3
  41. package/package.json +1 -1
  42. package/public-api.d.ts +6 -0
@@ -1,9 +1,11 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./page-size-selector/page-size-selector.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "@angular/forms";
3
+ import * as i2 from "./metadata/metadata.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "@ng-select/ng-select";
5
7
  export declare class SharedModule {
6
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.PageSizeSelectorComponent], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.PageSizeSelectorComponent]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.PageSizeSelectorComponent, typeof i2.MetadataComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.NgSelectModule], [typeof i1.PageSizeSelectorComponent, typeof i2.MetadataComponent]>;
8
10
  static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
9
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sachin9822/reports-lib",
3
- "version": "0.0.149",
3
+ "version": "0.0.151",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.2.0",
6
6
  "@angular/core": "^14.2.0"
package/public-api.d.ts CHANGED
@@ -2,13 +2,19 @@ export * from './lib/reports-lib.service';
2
2
  export * from './lib/services/report.service';
3
3
  export * from './lib/services/config.service';
4
4
  export * from './lib/shared/export.service';
5
+ export * from './lib/shared/export-generic.service';
5
6
  export * from './lib/shared/loader/loader.component';
6
7
  export * from './lib/reports-lib.component';
7
8
  export * from './lib/reports-lib.module';
8
9
  export * from './lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component';
9
10
  export * from './lib/components/transaction-enquiry-report/transaction-enquiry-report.component';
10
11
  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';
13
+ export * from './lib/components/cancellation-transaction-report/cancellation-transaction-report.component';
14
+ export * from './lib/components/accounting-report/accounting-report.component';
11
15
  export * from './lib/models/transaction-enquiry-report/transaction-enquiry.model';
12
16
  export * from './lib/models/app-config.model';
13
17
  export * from './lib/models/branch-activity-report/branch-activity-send-report';
14
18
  export * from './lib/models/branch-activity-report/branch-activity-send-report-request-domain-model';
19
+ export * from './lib/models/branch-activity-receive-report/branch-activity-receive.model';
20
+ export * from './lib/models/cancellation-transaction-report/cancellation-transaction.model';