ca-components 0.0.17 → 0.0.19

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 (40) hide show
  1. package/esm2022/lib/components/ca-filters/ca-filter.component.mjs +174 -103
  2. package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +74 -65
  3. package/esm2022/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.mjs +1 -1
  4. package/esm2022/lib/components/ca-filters/components/ca-money-filter/enums/money-filter-string.enum.mjs +18 -0
  5. package/esm2022/lib/components/ca-filters/components/ca-pm-filter/ca-pm-filter.component.mjs +11 -18
  6. package/esm2022/lib/components/ca-filters/components/ca-service-filter/ca-service-filter.component.mjs +7 -8
  7. package/esm2022/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.mjs +7 -11
  8. package/esm2022/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.mjs +6 -6
  9. package/esm2022/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.mjs +11 -15
  10. package/esm2022/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.mjs +7 -8
  11. package/esm2022/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.mjs +7 -8
  12. package/esm2022/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.mjs +7 -9
  13. package/esm2022/lib/components/ca-filters/components/ca-user-filter/config/ca-user-filter.config.mjs +1 -1
  14. package/esm2022/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.mjs +6 -9
  15. package/esm2022/lib/components/ca-period-content/ca-period-content.component.mjs +17 -5
  16. package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +14 -10
  17. package/esm2022/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.mjs +21 -14
  18. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.mjs +3 -3
  19. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.mjs +10 -5
  20. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +7 -5
  21. package/esm2022/lib/pipes/date-from-string.pipe.mjs +41 -0
  22. package/fesm2022/ca-components.mjs +976 -943
  23. package/fesm2022/ca-components.mjs.map +1 -1
  24. package/lib/components/ca-filters/ca-filter.component.d.ts +7 -1
  25. package/lib/components/ca-filters/components/ca-money-filter/enums/money-filter-string.enum.d.ts +15 -0
  26. package/lib/components/ca-filters/components/ca-pm-filter/ca-pm-filter.component.d.ts +2 -2
  27. package/lib/components/ca-filters/components/ca-service-filter/ca-service-filter.component.d.ts +2 -2
  28. package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.d.ts +2 -2
  29. package/lib/components/ca-filters/components/ca-trailer-type-filter/ca-trailer-type-filter.component.d.ts +2 -2
  30. package/lib/components/ca-filters/components/ca-truck-type-filter/ca-truck-type-filter.component.d.ts +2 -2
  31. package/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.d.ts +2 -2
  32. package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.d.ts +2 -12
  33. package/lib/components/ca-period-content/ca-period-content.component.d.ts +7 -2
  34. package/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.d.ts +3 -2
  35. package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.d.ts +5 -4
  36. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.d.ts +1 -1
  37. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.d.ts +1 -1
  38. package/lib/pipes/date-from-string.pipe.d.ts +7 -0
  39. package/package.json +1 -1
  40. package/esm2022/assets/json/ca-table.json +0 -59
@@ -0,0 +1,18 @@
1
+ export var MoneyFilterStringEnum;
2
+ (function (MoneyFilterStringEnum) {
3
+ // Subfilter types
4
+ MoneyFilterStringEnum["SINGLE_FORM"] = "singleForm";
5
+ MoneyFilterStringEnum["SINGLE_FROM"] = "singleFrom";
6
+ MoneyFilterStringEnum["SINGLE_TO"] = "singleTo";
7
+ MoneyFilterStringEnum["MULTI_FROM_FIRST"] = "multiFromFirst";
8
+ MoneyFilterStringEnum["MULTI_FROM_FIRST_FROM"] = "multiFromFirstFrom";
9
+ MoneyFilterStringEnum["MULTI_FROM_FIRST_TO"] = "multiFromFirstTo";
10
+ MoneyFilterStringEnum["MULTI_FORM_SECOND"] = "multiFormSecond";
11
+ MoneyFilterStringEnum["MULTI_FORM_SECOND_FROM"] = "multiFormSecondFrom";
12
+ MoneyFilterStringEnum["MULTI_FORM_SECOND_TO"] = "multiFormSecondTo";
13
+ MoneyFilterStringEnum["MULTI_FORM_THIRD"] = "multiFormThird";
14
+ MoneyFilterStringEnum["MULTI_FORM_THIRD_FROM"] = "multiFormThirdFrom";
15
+ MoneyFilterStringEnum["MULTI_FORM_THIRD_TO"] = "multiFormThirdTo";
16
+ MoneyFilterStringEnum["CLEAR_ALL"] = "clearAll";
17
+ })(MoneyFilterStringEnum || (MoneyFilterStringEnum = {}));
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9uZXktZmlsdGVyLXN0cmluZy5lbnVtLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY2EtY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvY2EtZmlsdGVycy9jb21wb25lbnRzL2NhLW1vbmV5LWZpbHRlci9lbnVtcy9tb25leS1maWx0ZXItc3RyaW5nLmVudW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFOLElBQVkscUJBZ0JYO0FBaEJELFdBQVkscUJBQXFCO0lBQy9CLGtCQUFrQjtJQUVsQixtREFBMEIsQ0FBQTtJQUMxQixtREFBMEIsQ0FBQTtJQUMxQiwrQ0FBc0IsQ0FBQTtJQUN0Qiw0REFBbUMsQ0FBQTtJQUNuQyxxRUFBNEMsQ0FBQTtJQUM1QyxpRUFBd0MsQ0FBQTtJQUN4Qyw4REFBcUMsQ0FBQTtJQUNyQyx1RUFBOEMsQ0FBQTtJQUM5QyxtRUFBMEMsQ0FBQTtJQUMxQyw0REFBbUMsQ0FBQTtJQUNuQyxxRUFBNEMsQ0FBQTtJQUM1QyxpRUFBd0MsQ0FBQTtJQUN4QywrQ0FBc0IsQ0FBQTtBQUN4QixDQUFDLEVBaEJXLHFCQUFxQixLQUFyQixxQkFBcUIsUUFnQmhDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGVudW0gTW9uZXlGaWx0ZXJTdHJpbmdFbnVtIHtcbiAgLy8gU3ViZmlsdGVyIHR5cGVzXG5cbiAgU0lOR0xFX0ZPUk0gPSAnc2luZ2xlRm9ybScsXG4gIFNJTkdMRV9GUk9NID0gJ3NpbmdsZUZyb20nLFxuICBTSU5HTEVfVE8gPSAnc2luZ2xlVG8nLFxuICBNVUxUSV9GUk9NX0ZJUlNUID0gJ211bHRpRnJvbUZpcnN0JyxcbiAgTVVMVElfRlJPTV9GSVJTVF9GUk9NID0gJ211bHRpRnJvbUZpcnN0RnJvbScsXG4gIE1VTFRJX0ZST01fRklSU1RfVE8gPSAnbXVsdGlGcm9tRmlyc3RUbycsXG4gIE1VTFRJX0ZPUk1fU0VDT05EID0gJ211bHRpRm9ybVNlY29uZCcsXG4gIE1VTFRJX0ZPUk1fU0VDT05EX0ZST00gPSAnbXVsdGlGb3JtU2Vjb25kRnJvbScsXG4gIE1VTFRJX0ZPUk1fU0VDT05EX1RPID0gJ211bHRpRm9ybVNlY29uZFRvJyxcbiAgTVVMVElfRk9STV9USElSRCA9ICdtdWx0aUZvcm1UaGlyZCcsXG4gIE1VTFRJX0ZPUk1fVEhJUkRfRlJPTSA9ICdtdWx0aUZvcm1UaGlyZEZyb20nLFxuICBNVUxUSV9GT1JNX1RISVJEX1RPID0gJ211bHRpRm9ybVRoaXJkVG8nLFxuICBDTEVBUl9BTEwgPSAnY2xlYXJBbGwnLFxufVxuIl19