ca-components 0.0.39 → 0.0.41

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 (46) hide show
  1. package/esm2022/lib/components/ca-filters/ca-filter.component.mjs +151 -22
  2. package/esm2022/lib/components/ca-filters/components/ca-dispatcher-filter/ca-dispatcher-filter.component.mjs +242 -0
  3. package/esm2022/lib/components/ca-filters/components/ca-dispatcher-filter/config/ca-dispatcher-filter.config.mjs +15 -0
  4. package/esm2022/lib/components/ca-filters/components/ca-dispatcher-filter/config/ca-driver-filter.config.mjs +15 -0
  5. package/esm2022/lib/components/ca-filters/components/ca-dispatcher-filter/config/ca-fuel-stop-filter.config.mjs +15 -0
  6. package/esm2022/lib/components/ca-filters/components/ca-pm-filter/ca-pm-filter.component.mjs +6 -7
  7. package/esm2022/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.mjs +43 -20
  8. package/esm2022/lib/components/ca-filters/components/ca-state-filter/config/ca-state-filter.config.mjs +15 -0
  9. package/esm2022/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.mjs +3 -3
  10. package/esm2022/lib/components/ca-filters/pipes/filter-conditions-clear.pipe.mjs +21 -5
  11. package/esm2022/lib/components/ca-filters/pipes/filter-conditions-set.pipe.mjs +29 -6
  12. package/esm2022/lib/components/ca-filters/pipes/filter-popover-conditions.pipe.mjs +42 -4
  13. package/esm2022/lib/components/ca-filters/utils/constants/directive.constants.mjs +285 -1
  14. package/esm2022/lib/components/ca-map/enums/toolbar-filter-string.enum.mjs +17 -1
  15. package/esm2022/lib/components/ca-period-content/ca-period-content.component.mjs +3 -3
  16. package/esm2022/lib/components/ca-period-content/components/ca-period-content-extra-info/ca-period-content-extra-info.component.mjs +3 -3
  17. package/esm2022/lib/components/ca-period-content/components/ca-period-content-payment/ca-period-content-payment.component.mjs +3 -3
  18. package/esm2022/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.mjs +12 -3
  19. package/esm2022/lib/components/ca-period-content/utils/svg-routes/period-content.routes.mjs +3 -3
  20. package/fesm2022/ca-components.mjs +681 -90
  21. package/fesm2022/ca-components.mjs.map +1 -1
  22. package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
  23. package/lib/components/ca-filters/components/{ca-user-filter/ca-user-filter.component.d.ts → ca-dispatcher-filter/ca-dispatcher-filter.component.d.ts} +5 -6
  24. package/lib/components/ca-filters/components/{ca-user-filter/config/ca-user-filter.config.d.ts → ca-dispatcher-filter/config/ca-dispatcher-filter.config.d.ts} +1 -1
  25. package/lib/components/ca-filters/components/ca-dispatcher-filter/config/ca-driver-filter.config.d.ts +4 -0
  26. package/lib/components/ca-filters/components/ca-dispatcher-filter/config/ca-fuel-stop-filter.config.d.ts +4 -0
  27. package/lib/components/ca-filters/components/ca-pm-filter/ca-pm-filter.component.d.ts +2 -3
  28. package/lib/components/ca-filters/components/ca-state-filter/ca-state-filter.component.d.ts +6 -4
  29. package/lib/components/ca-filters/components/ca-state-filter/config/ca-state-filter.config.d.ts +4 -0
  30. package/lib/components/ca-filters/pipes/filter-conditions-clear.pipe.d.ts +2 -2
  31. package/lib/components/ca-filters/pipes/filter-conditions-set.pipe.d.ts +2 -2
  32. package/lib/components/ca-filters/pipes/filter-popover-conditions.pipe.d.ts +2 -2
  33. package/lib/components/ca-filters/utils/constants/directive.constants.d.ts +7 -0
  34. package/lib/components/ca-map/enums/toolbar-filter-string.enum.d.ts +16 -0
  35. package/lib/components/ca-period-content/components/ca-period-content-user-info/ca-period-content-user-info.component.d.ts +2 -0
  36. package/package.json +1 -1
  37. package/src/assets/ca-components/svg/common/actions/action_add.svg +4 -0
  38. package/src/assets/ca-components/svg/common/actions/action_check.svg +4 -0
  39. package/src/assets/ca-components/svg/common/actions/action_play.svg +4 -0
  40. package/src/assets/ca-components/svg/common/actions/action_recheck.svg +5 -0
  41. package/src/assets/ca-components/svg/common/actions/action_stop.svg +4 -0
  42. package/src/assets/ca-components/svg/common/actions/action_write.svg +5 -0
  43. package/src/assets/ca-components/svg/common/actions/action_x.svg +4 -0
  44. package/src/assets/ca-components/svg/common/ic_fuel.svg +4 -0
  45. package/esm2022/lib/components/ca-filters/components/ca-user-filter/ca-user-filter.component.mjs +0 -226
  46. package/esm2022/lib/components/ca-filters/components/ca-user-filter/config/ca-user-filter.config.mjs +0 -15
@@ -0,0 +1,15 @@
1
+ export class CaStateFilterConfig {
2
+ static getStateSearch() {
3
+ return {
4
+ name: 'search',
5
+ type: 'text',
6
+ label: 'Search State',
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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2Etc3RhdGUtZmlsdGVyLmNvbmZpZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NhLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2NhLWZpbHRlcnMvY29tcG9uZW50cy9jYS1zdGF0ZS1maWx0ZXIvY29uZmlnL2NhLXN0YXRlLWZpbHRlci5jb25maWcudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxPQUFPLG1CQUFtQjtJQUM5QixNQUFNLENBQUMsY0FBYztRQUNuQixPQUFPO1lBQ0wsSUFBSSxFQUFFLFFBQVE7WUFDZCxJQUFJLEVBQUUsTUFBTTtZQUNaLEtBQUssRUFBRSxjQUFjO1lBQ3JCLGVBQWUsRUFBRSxXQUFXO1lBQzVCLFdBQVcsRUFBRSxxQkFBcUI7WUFDbEMseUJBQXlCLEVBQUUsSUFBSTtZQUMvQixVQUFVLEVBQUUsSUFBSTtZQUNoQixVQUFVLEVBQUUsS0FBSztTQUNsQixDQUFDO0lBQ0osQ0FBQztDQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSUNhSW5wdXQgfSBmcm9tICcuLi8uLi8uLi8uLi9jYS1pbnB1dC9jb25maWcvY2EtaW5wdXQuY29uZmlnJztcblxuZXhwb3J0IGNsYXNzIENhU3RhdGVGaWx0ZXJDb25maWcge1xuICBzdGF0aWMgZ2V0U3RhdGVTZWFyY2goKTogSUNhSW5wdXQge1xuICAgIHJldHVybiB7XG4gICAgICBuYW1lOiAnc2VhcmNoJyxcbiAgICAgIHR5cGU6ICd0ZXh0JyxcbiAgICAgIGxhYmVsOiAnU2VhcmNoIFN0YXRlJyxcbiAgICAgIHBsYWNlaG9sZGVySWNvbjogJ2ljX3NlYXJjaCcsXG4gICAgICBjdXN0b21DbGFzczogJ2ZpbHRlci1zZWFyY2gtaW5wdXQnLFxuICAgICAgcGxhY2Vob2xkZXJJbnN0ZWFkT2ZMYWJlbDogdHJ1ZSxcbiAgICAgIGJsYWNrSW5wdXQ6IHRydWUsXG4gICAgICBpc0Rpc2FibGVkOiBmYWxzZSxcbiAgICB9O1xuICB9XG59XG4iXX0=