@webitel/ui-sdk 24.12.134 → 24.12.136
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.
- package/CHANGELOG.md +12 -0
- package/dist/ui-sdk.js +2103 -2103
- package/dist/ui-sdk.umd.cjs +13 -13
- package/package.json +1 -1
- package/src/modules/Filters/v2/filters/components/values/_shared/composables/useFromToSecToPreviewTime.ts +41 -0
- package/src/modules/Filters/v2/filters/components/values/created-at-from/created-at-from-filter-value-preview.vue +1 -1
- package/src/modules/Filters/v2/filters/components/values/created-at-to/created-at-to-filter-value-preview.vue +1 -1
- package/src/modules/Filters/v2/filters/components/values/talk-duration/TalkDurationFilter.d.ts +4 -0
- package/src/modules/Filters/v2/filters/components/values/talk-duration/talk-duration-filter-value-field.vue +2 -6
- package/src/modules/Filters/v2/filters/components/values/talk-duration/talk-duration-filter-value-preview.vue +12 -11
- package/src/modules/Filters/v2/filters/components/values/total-duration/TotalDurationFilter.d.ts +4 -0
- package/src/modules/Filters/v2/filters/components/values/total-duration/total-duration-filter-value-field.vue +2 -5
- 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,13 @@
|
|
|
1
|
+
## [v24.12.135] - 2025-02-24
|
|
2
|
+
### :bug: Bug Fixes
|
|
3
|
+
- [`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))*
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## [v24.12.134] - 2025-02-24
|
|
7
|
+
### :bug: Bug Fixes
|
|
8
|
+
- [`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))*
|
|
9
|
+
|
|
10
|
+
|
|
1
11
|
## [v24.12.133] - 2025-02-24
|
|
2
12
|
### :sparkles: New Features
|
|
3
13
|
- [`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 +1245,5 @@
|
|
|
1235
1245
|
[v24.12.131]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.130...v24.12.131
|
|
1236
1246
|
[v24.12.132]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.131...v24.12.132
|
|
1237
1247
|
[v24.12.133]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.132...v24.12.133
|
|
1248
|
+
[v24.12.134]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.133...v24.12.134
|
|
1249
|
+
[v24.12.135]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.134...v24.12.135
|