ca-components 0.0.89 → 0.0.91

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 (103) hide show
  1. package/esm2022/lib/components/ca-activity-log-list/ca-activity-log-list.component.mjs +84 -9
  2. package/esm2022/lib/components/ca-activity-log-list/config/activity-log-search-filter.config.mjs +16 -0
  3. package/esm2022/lib/components/ca-activity-log-list/config/index.mjs +2 -0
  4. package/esm2022/lib/components/ca-activity-log-list/models/company-user-avatar-file.model.mjs +2 -0
  5. package/esm2022/lib/components/ca-activity-log-list/models/company-user.model.mjs +1 -1
  6. package/esm2022/lib/components/ca-activity-log-list/models/index.mjs +2 -1
  7. package/esm2022/lib/components/ca-activity-log-list/utils/pipes/company-user-name-transform.pipe.mjs +20 -0
  8. package/esm2022/lib/components/ca-activity-log-list/utils/pipes/index.mjs +2 -1
  9. package/esm2022/lib/components/ca-chart/ca-chart.component.mjs +57 -12
  10. package/esm2022/lib/components/ca-chart/config/ca-base-chart-dataset.config.mjs +3 -3
  11. package/esm2022/lib/components/ca-chart/config/index.mjs +1 -1
  12. package/esm2022/lib/components/ca-chart/enums/chart-colors-enum.mjs +3 -1
  13. package/esm2022/lib/components/ca-chart/enums/chart-event-properties-enum.mjs +5 -0
  14. package/esm2022/lib/components/ca-chart/enums/chart-event-types-enum.mjs +5 -0
  15. package/esm2022/lib/components/ca-chart/enums/chart-plugin-ids-enum.mjs +6 -0
  16. package/esm2022/lib/components/ca-chart/enums/chart-types-enum.mjs +1 -1
  17. package/esm2022/lib/components/ca-chart/enums/cubic-interpolation-mode-enum.mjs +1 -1
  18. package/esm2022/lib/components/ca-chart/enums/index.mjs +4 -1
  19. package/esm2022/lib/components/ca-chart/models/chart-base-dataset.model.mjs +1 -1
  20. package/esm2022/lib/components/ca-chart/models/chart-data.model.mjs +1 -1
  21. package/esm2022/lib/components/ca-chart/models/chart-line-dataset.model.mjs +1 -1
  22. package/esm2022/lib/components/ca-chart/models/index.mjs +1 -1
  23. package/esm2022/lib/components/ca-chart/utils/guards/chart-type.guard.mjs +2 -2
  24. package/esm2022/lib/components/ca-chart/utils/guards/index.mjs +2 -2
  25. package/esm2022/lib/components/ca-chart/utils/helpers/chart.helper.mjs +55 -9
  26. package/esm2022/lib/components/ca-chart/utils/helpers/index.mjs +2 -2
  27. package/esm2022/lib/components/ca-filters/components/ca-user-filter/models/index.mjs +3 -0
  28. package/esm2022/lib/components/ca-right-side-panel/ca-right-side-panel.component.mjs +46 -12
  29. package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.mjs +10 -7
  30. package/esm2022/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.mjs +208 -22
  31. package/esm2022/lib/components/ca-right-side-panel/config/ca-right-side-panel.config.mjs +2 -2
  32. package/esm2022/lib/components/ca-right-side-panel/enums/activity-log-sort-type.enum.mjs +6 -0
  33. package/esm2022/lib/components/ca-right-side-panel/enums/filter-type.enum.mjs +8 -0
  34. package/esm2022/lib/components/ca-right-side-panel/enums/index.mjs +5 -1
  35. package/esm2022/lib/components/ca-right-side-panel/enums/modules-filter-item-label.enum.mjs +5 -0
  36. package/esm2022/lib/components/ca-right-side-panel/enums/right-side-panel-current-tab.enum.mjs +1 -1
  37. package/esm2022/lib/components/ca-right-side-panel/enums/selected-module.enum.mjs +2 -2
  38. package/esm2022/lib/components/ca-right-side-panel/enums/time-filter-type.enum.mjs +11 -0
  39. package/esm2022/lib/components/ca-right-side-panel/models/action-filter/action-filter-input-data.model.mjs +2 -0
  40. package/esm2022/lib/components/ca-right-side-panel/models/activity-log-filter-params.model.mjs +2 -0
  41. package/esm2022/lib/components/ca-right-side-panel/models/activity-log-filter.model.mjs +2 -0
  42. package/esm2022/lib/components/ca-right-side-panel/models/index.mjs +10 -1
  43. package/esm2022/lib/components/ca-right-side-panel/models/module-filter/module-filter-activity-log.model.mjs +2 -0
  44. package/esm2022/lib/components/ca-right-side-panel/models/module-filter/module-filter-input-data.model.mjs +2 -0
  45. package/esm2022/lib/components/ca-right-side-panel/models/navigation-item.model.mjs +1 -1
  46. package/esm2022/lib/components/ca-right-side-panel/models/time-filter/time-filter-event.model.mjs +2 -0
  47. package/esm2022/lib/components/ca-right-side-panel/models/user-filter/user-filter-avatar-file.model.mjs +2 -0
  48. package/esm2022/lib/components/ca-right-side-panel/models/user-filter/user-filter-data.model.mjs +2 -0
  49. package/esm2022/lib/components/ca-right-side-panel/models/user-filter/user-filter-input-data.model.mjs +2 -0
  50. package/esm2022/lib/components/ca-right-side-panel/utils/svg-routes/index.mjs +2 -0
  51. package/esm2022/lib/components/ca-right-side-panel/utils/svg-routes/right-side-panel-top-bar-svg.routes.mjs +10 -0
  52. package/fesm2022/ca-components.mjs +546 -79
  53. package/fesm2022/ca-components.mjs.map +1 -1
  54. package/lib/components/ca-activity-log-list/ca-activity-log-list.component.d.ts +28 -4
  55. package/lib/components/ca-activity-log-list/config/activity-log-search-filter.config.d.ts +5 -0
  56. package/lib/components/ca-activity-log-list/config/index.d.ts +1 -0
  57. package/lib/components/ca-activity-log-list/models/company-user-avatar-file.model.d.ts +9 -0
  58. package/lib/components/ca-activity-log-list/models/company-user.model.d.ts +2 -1
  59. package/lib/components/ca-activity-log-list/models/index.d.ts +1 -0
  60. package/lib/components/ca-activity-log-list/utils/pipes/company-user-name-transform.pipe.d.ts +7 -0
  61. package/lib/components/ca-activity-log-list/utils/pipes/index.d.ts +1 -0
  62. package/lib/components/ca-chart/ca-chart.component.d.ts +3 -1
  63. package/lib/components/ca-chart/config/ca-base-chart-dataset.config.d.ts +1 -1
  64. package/lib/components/ca-chart/enums/chart-colors-enum.d.ts +3 -1
  65. package/lib/components/ca-chart/enums/chart-event-properties-enum.d.ts +3 -0
  66. package/lib/components/ca-chart/enums/chart-event-types-enum.d.ts +3 -0
  67. package/lib/components/ca-chart/enums/chart-plugin-ids-enum.d.ts +4 -0
  68. package/lib/components/ca-chart/enums/index.d.ts +3 -0
  69. package/lib/components/ca-chart/models/chart-base-dataset.model.d.ts +2 -1
  70. package/lib/components/ca-chart/models/chart-data.model.d.ts +1 -1
  71. package/lib/components/ca-chart/models/chart-line-dataset.model.d.ts +5 -1
  72. package/lib/components/ca-chart/utils/guards/chart-type.guard.d.ts +1 -1
  73. package/lib/components/ca-chart/utils/guards/index.d.ts +1 -1
  74. package/lib/components/ca-chart/utils/helpers/chart.helper.d.ts +7 -1
  75. package/lib/components/ca-chart/utils/helpers/index.d.ts +1 -1
  76. package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
  77. package/lib/components/ca-filters/components/ca-user-filter/models/index.d.ts +2 -0
  78. package/lib/components/ca-right-side-panel/ca-right-side-panel.component.d.ts +11 -5
  79. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-menu/ca-right-side-panel-menu.component.d.ts +2 -1
  80. package/lib/components/ca-right-side-panel/components/ca-right-side-panel-top-bar/ca-right-side-panel-top-bar.component.d.ts +37 -8
  81. package/lib/components/ca-right-side-panel/enums/activity-log-sort-type.enum.d.ts +4 -0
  82. package/lib/components/ca-right-side-panel/enums/filter-type.enum.d.ts +6 -0
  83. package/lib/components/ca-right-side-panel/enums/index.d.ts +4 -0
  84. package/lib/components/ca-right-side-panel/enums/modules-filter-item-label.enum.d.ts +3 -0
  85. package/lib/components/ca-right-side-panel/enums/selected-module.enum.d.ts +1 -1
  86. package/lib/components/ca-right-side-panel/enums/time-filter-type.enum.d.ts +9 -0
  87. package/lib/components/ca-right-side-panel/models/action-filter/action-filter-input-data.model.d.ts +7 -0
  88. package/lib/components/ca-right-side-panel/models/activity-log-filter-params.model.d.ts +11 -0
  89. package/lib/components/ca-right-side-panel/models/activity-log-filter.model.d.ts +6 -0
  90. package/lib/components/ca-right-side-panel/models/index.d.ts +9 -0
  91. package/lib/components/ca-right-side-panel/models/module-filter/module-filter-activity-log.model.d.ts +6 -0
  92. package/lib/components/ca-right-side-panel/models/module-filter/module-filter-input-data.model.d.ts +5 -0
  93. package/lib/components/ca-right-side-panel/models/navigation-item.model.d.ts +1 -1
  94. package/lib/components/ca-right-side-panel/models/time-filter/time-filter-event.model.d.ts +8 -0
  95. package/lib/components/ca-right-side-panel/models/user-filter/user-filter-avatar-file.model.d.ts +9 -0
  96. package/lib/components/ca-right-side-panel/models/user-filter/user-filter-data.model.d.ts +7 -0
  97. package/lib/components/ca-right-side-panel/models/user-filter/user-filter-input-data.model.d.ts +7 -0
  98. package/lib/components/ca-right-side-panel/utils/svg-routes/index.d.ts +1 -0
  99. package/lib/components/ca-right-side-panel/utils/svg-routes/right-side-panel-top-bar-svg.routes.d.ts +9 -0
  100. package/package.json +2 -3
  101. package/src/assets/ca-components/svg/common/ic_action.svg +3 -0
  102. package/src/assets/ca-components/svg/common/ic_module.svg +5 -0
  103. package/src/assets/ca-components/svg/right-side-panel/ic_reload_refresh.svg +3 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.