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
@@ -0,0 +1,15 @@
1
+ export class CaTruckTypeFilterConfig {
2
+ static getTrailerTypeSearch() {
3
+ return {
4
+ name: 'search',
5
+ type: 'text',
6
+ label: 'Search Trailer',
7
+ placeholderIcon: 'ic_search',
8
+ customClass: 'filter-search-input',
9
+ placeholderInsteadOfLabel: true,
10
+ blackInput: true,
11
+ isDisabled: false,
12
+ };
13
+ }
14
+ }
15
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2EtdHJhaWxlci10eXBlLWZpbHRlci5jb25maWcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1maWx0ZXJzL2NvbXBvbmVudHMvY2EtdHJhaWxlci10eXBlLWZpbHRlci9jb25maWcvY2EtdHJhaWxlci10eXBlLWZpbHRlci5jb25maWcudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxPQUFPLHVCQUF1QjtJQUNsQyxNQUFNLENBQUMsb0JBQW9CO1FBQ3pCLE9BQU87WUFDTCxJQUFJLEVBQUUsUUFBUTtZQUNkLElBQUksRUFBRSxNQUFNO1lBQ1osS0FBSyxFQUFFLGdCQUFnQjtZQUN2QixlQUFlLEVBQUUsV0FBVztZQUM1QixXQUFXLEVBQUUscUJBQXFCO1lBQ2xDLHlCQUF5QixFQUFFLElBQUk7WUFDL0IsVUFBVSxFQUFFLElBQUk7WUFDaEIsVUFBVSxFQUFFLEtBQUs7U0FDbEIsQ0FBQztJQUNKLENBQUM7Q0FDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IElDYUlucHV0IH0gZnJvbSAnLi4vLi4vLi4vLi4vY2EtaW5wdXQvY29uZmlnL2NhLWlucHV0LmNvbmZpZyc7XG5cbmV4cG9ydCBjbGFzcyBDYVRydWNrVHlwZUZpbHRlckNvbmZpZyB7XG4gIHN0YXRpYyBnZXRUcmFpbGVyVHlwZVNlYXJjaCgpOiBJQ2FJbnB1dCB7XG4gICAgcmV0dXJuIHtcbiAgICAgIG5hbWU6ICdzZWFyY2gnLFxuICAgICAgdHlwZTogJ3RleHQnLFxuICAgICAgbGFiZWw6ICdTZWFyY2ggVHJhaWxlcicsXG4gICAgICBwbGFjZWhvbGRlckljb246ICdpY19zZWFyY2gnLFxuICAgICAgY3VzdG9tQ2xhc3M6ICdmaWx0ZXItc2VhcmNoLWlucHV0JyxcbiAgICAgIHBsYWNlaG9sZGVySW5zdGVhZE9mTGFiZWw6IHRydWUsXG4gICAgICBibGFja0lucHV0OiB0cnVlLFxuICAgICAgaXNEaXNhYmxlZDogZmFsc2UsXG4gICAgfTtcbiAgfVxufVxuIl19
@@ -0,0 +1,2 @@
1
+ export * from './ca-trailer-type-filter.config';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9jYS1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9jYS1maWx0ZXJzL2NvbXBvbmVudHMvY2EtdHJhaWxlci10eXBlLWZpbHRlci9jb25maWcvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxpQ0FBaUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vY2EtdHJhaWxlci10eXBlLWZpbHRlci5jb25maWcnO1xuIl19