ca-components 0.0.78 → 0.0.81

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 (62) hide show
  1. package/esm2022/lib/components/ca-filters/ca-filter.component.mjs +59 -5
  2. package/esm2022/lib/components/ca-filters/components/ca-dispatcher-filter/ca-dispatcher-filter.component.mjs +14 -35
  3. package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +10 -9
  4. package/esm2022/lib/components/ca-filters/components/ca-pm-filter/ca-pm-filter.component.mjs +8 -8
  5. package/esm2022/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.mjs +28 -23
  6. package/esm2022/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.mjs +13 -9
  7. package/esm2022/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.mjs +62 -37
  8. package/esm2022/lib/components/ca-filters/components/ca-trailer-type-filter/config/ca-trailer-type-filter.config.mjs +15 -0
  9. package/esm2022/lib/components/ca-filters/components/ca-trailer-type-filter/config/index.mjs +2 -0
  10. package/esm2022/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.mjs +61 -37
  11. package/esm2022/lib/components/ca-filters/components/ca-truck-type-filter/config/ca-truck-type-filter.config.mjs +15 -0
  12. package/esm2022/lib/components/ca-filters/pipes/filter-popover-conditions.pipe.mjs +2 -1
  13. package/esm2022/lib/components/ca-filters/utils/constants/directive.constants.mjs +141 -141
  14. package/esm2022/lib/components/ca-filters/utils/helpers/filter.helper.mjs +13 -12
  15. package/esm2022/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.mjs +10 -5
  16. package/esm2022/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.mjs +1 -1
  17. package/esm2022/lib/components/ca-todo/ca-todo.component.mjs +52 -153
  18. package/esm2022/lib/components/ca-todo/components/ca-todo-card.component.mjs +139 -0
  19. package/esm2022/lib/components/ca-todo/config/column.config.mjs +18 -0
  20. package/esm2022/lib/components/ca-todo/config/index.mjs +2 -0
  21. package/esm2022/lib/components/ca-todo/enums/column.enum.mjs +7 -0
  22. package/esm2022/lib/components/ca-todo/enums/index.mjs +2 -0
  23. package/esm2022/lib/components/ca-todo/models/image-config.model.mjs +2 -0
  24. package/esm2022/lib/components/ca-todo/models/index.mjs +3 -1
  25. package/esm2022/lib/components/ca-todo/models/todo-card-config.model.mjs +2 -0
  26. package/esm2022/lib/components/ca-todo/models/todo-config.model.mjs +1 -1
  27. package/esm2022/lib/components/ca-todo/utils/svg-routes/todo.routes.mjs +1 -1
  28. package/esm2022/lib/components/ca-upload-files/ca-upload-files.component.mjs +6 -3
  29. package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/ca-upload-dropzone.component.mjs +8 -12
  30. package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/file.helper.mjs +5 -7
  31. package/esm2022/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-config.model.mjs +1 -1
  32. package/esm2022/lib/models/array-status.model.mjs +1 -1
  33. package/fesm2022/ca-components.mjs +2539 -2375
  34. package/fesm2022/ca-components.mjs.map +1 -1
  35. package/lib/components/ca-filters/ca-filter.component.d.ts +8 -1
  36. package/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.d.ts +4 -3
  37. package/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.d.ts +5 -5
  38. package/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.d.ts +12 -5
  39. package/lib/components/ca-filters/components/ca-trailer-type-filter/config/ca-trailer-type-filter.config.d.ts +4 -0
  40. package/lib/components/ca-filters/components/ca-trailer-type-filter/config/index.d.ts +1 -0
  41. package/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.d.ts +13 -6
  42. package/lib/components/ca-filters/components/ca-truck-type-filter/config/ca-truck-type-filter.config.d.ts +4 -0
  43. package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.d.ts +4 -2
  44. package/lib/components/ca-todo/ca-todo.component.d.ts +19 -57
  45. package/lib/components/ca-todo/components/ca-todo-card.component.d.ts +56 -0
  46. package/lib/components/ca-todo/config/column.config.d.ts +6 -0
  47. package/lib/components/ca-todo/config/index.d.ts +1 -0
  48. package/lib/components/ca-todo/enums/column.enum.d.ts +5 -0
  49. package/lib/components/ca-todo/enums/index.d.ts +1 -0
  50. package/lib/components/ca-todo/models/image-config.model.d.ts +8 -0
  51. package/lib/components/ca-todo/models/index.d.ts +2 -0
  52. package/lib/components/ca-todo/models/todo-card-config.model.d.ts +9 -0
  53. package/lib/components/ca-todo/models/todo-config.model.d.ts +21 -13
  54. package/lib/components/ca-upload-files/ca-upload-files.component.d.ts +2 -1
  55. package/lib/components/ca-upload-files/components/ca-upload-dropzone/helpers/file.helper.d.ts +1 -1
  56. package/lib/components/ca-upload-files/components/ca-upload-dropzone/models/file-config.model.d.ts +1 -1
  57. package/lib/models/array-status.model.d.ts +2 -1
  58. package/package.json +1 -1
  59. package/esm2022/lib/components/ca-todo/services/file-service.mjs +0 -20
  60. package/esm2022/lib/components/ca-todo/services/index.mjs +0 -2
  61. package/lib/components/ca-todo/services/file-service.d.ts +0 -10
  62. package/lib/components/ca-todo/services/index.d.ts +0 -1
@@ -12,7 +12,7 @@ export class CaPayrollListSummaryOverviewTableComponent {
12
12
  this.openIndex = this.openIndex === index ? null : index;
13
13
  }
14
14
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CaPayrollListSummaryOverviewTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
15
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CaPayrollListSummaryOverviewTableComponent, isStandalone: true, selector: "app-ca-payroll-list-summary-overview-table", inputs: { data: "data" }, ngImport: i0, template: "<table class=\"table\">\n <tbody>\n <tr *ngFor=\"let item of data; let i = index; trackBy: identity\">\n <td>\n <app-ca-payroll-list-summary-overview\n [item]=\"item\"\n [index]=\"i\"\n [isExpanded]=\"openIndex === i\"\n (toggle)=\"toggleItem(i)\"\n >\n Lorem Ipsum lorem ipsum lorem ipsum\n </app-ca-payroll-list-summary-overview>\n </td>\n </tr>\n </tbody>\n</table>\n", styles: ["@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}thead,tbody,tfoot,tr,td,th{border:unset;cursor:pointer}.table>:not(caption)>*>*{background-color:#eee;padding:0 10px}.table tr{position:relative;z-index:99999}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: CaPayrollListSummaryOverviewComponent, selector: "app-ca-payroll-list-summary-overview", inputs: ["item", "isExpanded", "index", "animationMarginParams"], outputs: ["toggle"] }] }); }
15
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CaPayrollListSummaryOverviewTableComponent, isStandalone: true, selector: "app-ca-payroll-list-summary-overview-table", inputs: { data: "data" }, ngImport: i0, template: "<table class=\"table\">\n <tbody>\n <tr *ngFor=\"let item of data; let i = index; trackBy: identity\">\n <td>\n <app-ca-payroll-list-summary-overview\n [item]=\"item\"\n [index]=\"i\"\n [isExpanded]=\"openIndex === i\"\n (toggle)=\"toggleItem(i)\"\n >\n Lorem Ipsum lorem ipsum lorem ipsum\n </app-ca-payroll-list-summary-overview>\n </td>\n </tr>\n </tbody>\n</table>\n", styles: ["@keyframes dropdown{0%{margin-top:20px;visibility:hidden;opacity:0}to{opacity:1;margin-top:10px;visibility:visible!important}}@keyframes dropup{0%{margin-top:-19px;visibility:hidden;opacity:0}to{margin-top:inherit;visibility:visible!important}}thead,tbody,tfoot,tr,td,th{border:unset;cursor:pointer}.table>:not(caption)>*>*{background-color:#eee;padding:0 10px}.table tr{position:relative;z-index:99999}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: CaPayrollListSummaryOverviewComponent, selector: "app-ca-payroll-list-summary-overview", inputs: ["leftTemplate", "showLeftTemplate", "item", "isExpanded", "index", "animationMarginParams"], outputs: ["toggle"] }] }); }
16
16
  }
17
17
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CaPayrollListSummaryOverviewTableComponent, decorators: [{
18
18
  type: Component,