@webitel/ui-sdk 24.12.135 → 24.12.137

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 (21) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/ui-sdk.js +3204 -3200
  3. package/dist/ui-sdk.umd.cjs +15 -15
  4. package/package.json +1 -1
  5. package/src/api/clients/agents/agents.js +2 -4
  6. package/src/components/wt-icon-action/iconMappings.js +3 -1
  7. package/src/enums/IconAction/IconAction.enum.js +2 -0
  8. package/src/locale/en/en.js +3 -0
  9. package/src/locale/ru/ru.js +3 -0
  10. package/src/locale/ua/ua.js +3 -0
  11. package/src/modules/Filters/v2/filters/components/dynamic-filter-add-action.vue +1 -1
  12. package/src/modules/Filters/v2/filters/components/values/_shared/composables/useFromToSecToPreviewTime.ts +41 -0
  13. package/src/modules/Filters/v2/filters/components/values/created-at-from/created-at-from-filter-value-field.vue +1 -1
  14. package/src/modules/Filters/v2/filters/components/values/created-at-to/created-at-to-filter-value-field.vue +1 -1
  15. package/src/modules/Filters/v2/filters/components/values/score/score-from-to-filter-value-field.vue +4 -3
  16. package/src/modules/Filters/v2/filters/components/values/talk-duration/TalkDurationFilter.d.ts +4 -0
  17. package/src/modules/Filters/v2/filters/components/values/talk-duration/talk-duration-filter-value-field.vue +2 -6
  18. package/src/modules/Filters/v2/filters/components/values/talk-duration/talk-duration-filter-value-preview.vue +12 -11
  19. package/src/modules/Filters/v2/filters/components/values/total-duration/TotalDurationFilter.d.ts +4 -0
  20. package/src/modules/Filters/v2/filters/components/values/total-duration/total-duration-filter-value-field.vue +2 -5
  21. package/src/modules/Filters/v2/filters/components/values/total-duration/total-duration-filter-value-preview.vue +12 -11
package/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## [v24.12.136] - 2025-02-24
2
+ ### :bug: Bug Fixes
3
+ - [`b76a25d`](https://github.com/webitel/webitel-ui-sdk/commit/b76a25d09dc70ad621fefbe0805d302b2933a309) - total duration, talk duration filters previews fixed [WTEL-6289](https://webitel.atlassian.net/browse/WTEL-6289) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
4
+
5
+
6
+ ## [v24.12.135] - 2025-02-24
7
+ ### :bug: Bug Fixes
8
+ - [`15c5ddd`](https://github.com/webitel/webitel-ui-sdk/commit/15c5dddea82bb57b151e5b640ddb876cfcff6cf8) - filters/v2 createdAt filters preview show time [WTEL-6307](https://webitel.atlassian.net/browse/WTEL-6307) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
9
+
10
+
11
+ ## [v24.12.134] - 2025-02-24
12
+ ### :bug: Bug Fixes
13
+ - [`dee93e5`](https://github.com/webitel/webitel-ui-sdk/commit/dee93e5ba9da03fb7684e2b6e48997f98f20f5c6) - filters/v2 createdAt filters datepicker datetime format [WTEL-6307](https://webitel.atlassian.net/browse/WTEL-6307) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
14
+
15
+
1
16
  ## [v24.12.133] - 2025-02-24
2
17
  ### :sparkles: New Features
3
18
  - [`c64e3ea`](https://github.com/webitel/webitel-ui-sdk/commit/c64e3ea7c73234b99de8de242bb846901b97c98b) - implement slot for custom message on delete confirmation popup *(commit by [@stanislav-kozak](https://github.com/stanislav-kozak))*
@@ -1235,3 +1250,6 @@
1235
1250
  [v24.12.131]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.130...v24.12.131
1236
1251
  [v24.12.132]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.131...v24.12.132
1237
1252
  [v24.12.133]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.132...v24.12.133
1253
+ [v24.12.134]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.133...v24.12.134
1254
+ [v24.12.135]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.134...v24.12.135
1255
+ [v24.12.136]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.135...v24.12.136