@sachin9822/reports-lib 0.0.148 → 0.0.150

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 (48) 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/report.service.mjs +91 -1
  13. package/esm2020/lib/shared/export-generic.service.mjs +324 -0
  14. package/esm2020/lib/shared/export.service.mjs +2 -2
  15. package/esm2020/lib/shared/metadata/metadata.component.mjs +50 -0
  16. package/esm2020/lib/shared/page-size-selector/page-size-selector.component.mjs +2 -2
  17. package/esm2020/lib/shared/search-filter/search-filter.component.mjs +402 -23
  18. package/esm2020/lib/shared/shared.module.mjs +8 -6
  19. package/esm2020/public-api.mjs +7 -1
  20. package/esm2020/sachin9822-reports-lib.mjs +5 -0
  21. package/fesm2015/sachin9822-reports-lib.mjs +4054 -0
  22. package/fesm2015/sachin9822-reports-lib.mjs.map +1 -0
  23. package/fesm2020/sachin9822-reports-lib.mjs +4013 -0
  24. package/fesm2020/sachin9822-reports-lib.mjs.map +1 -0
  25. package/index.d.ts +1 -1
  26. package/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.d.ts +5 -2
  27. package/lib/components/accounting-report/accounting-report.component.d.ts +56 -0
  28. package/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.d.ts +52 -0
  29. package/lib/components/branch-activity-send-report/branch-activity-send-report.component.d.ts +4 -31
  30. package/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.d.ts +99 -0
  31. package/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.d.ts +4 -32
  32. package/lib/models/accounting-report/accounting-report-entry-model.d.ts +24 -0
  33. package/lib/models/accounting-report/accounting-report-model.d.ts +8 -0
  34. package/lib/models/branch-activity-receive-report/branch-activity-receive.model.d.ts +18 -0
  35. package/lib/models/cancellation-transaction-report/cancellation-transaction.model.d.ts +44 -0
  36. package/lib/reports-lib.module.d.ts +13 -10
  37. package/lib/services/report.service.d.ts +18 -0
  38. package/lib/shared/export-generic.service.d.ts +47 -0
  39. package/lib/shared/metadata/metadata.component.d.ts +24 -0
  40. package/lib/shared/search-filter/search-filter.component.d.ts +3 -0
  41. package/lib/shared/shared.module.d.ts +5 -3
  42. package/package.json +1 -1
  43. package/public-api.d.ts +6 -0
  44. package/esm2020/xpressmoney-reports-lib.mjs +0 -5
  45. package/fesm2015/xpressmoney-reports-lib.mjs +0 -2230
  46. package/fesm2015/xpressmoney-reports-lib.mjs.map +0 -1
  47. package/fesm2020/xpressmoney-reports-lib.mjs +0 -2200
  48. package/fesm2020/xpressmoney-reports-lib.mjs.map +0 -1
@@ -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.148",
3
+ "version": "0.0.150",
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';
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public-api';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoieHByZXNzbW9uZXktcmVwb3J0cy1saWIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9wcm9qZWN0cy9yZXBvcnRzLWxpYi9zcmMveHByZXNzbW9uZXktcmVwb3J0cy1saWIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==