@webitel/ui-sdk 24.12.138 → 24.12.140
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 +13 -0
- package/dist/ui-sdk.js +3716 -3698
- package/dist/ui-sdk.umd.cjs +15 -15
- package/package.json +1 -1
- package/src/components/wt-tree/wt-tree.vue +2 -0
- package/src/components/wt-tree-line/wt-tree-line.vue +47 -4
- package/src/modules/Filters/v2/filters/classes/FiltersManager.ts +4 -4
- package/src/modules/Filters/v2/filters/components/config/dynamic-filter-config-view.vue +10 -1
- package/src/modules/Filters/v2/filters/components/preview/dynamic-filter-preview.vue +7 -5
- package/src/modules/Filters/v2/filters/components/values/index.js +16 -16
- package/src/modules/Filters/v2/filters/components/values/service-case/config.js +2 -2
- package/src/modules/Filters/v2/filters/components/values/service-case/service-case-filter-value-field.vue +73 -73
- package/src/modules/Filters/v2/filters/components/values/service-case/service-case-filter-value-preview.vue +25 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [v24.12.139] - 2025-02-25
|
|
2
|
+
### :sparkles: New Features
|
|
3
|
+
- [`c84ef09`](https://github.com/webitel/webitel-ui-sdk/commit/c84ef09648e7f69694ed50bceb5a14eafed1811d) - dynamic-filter-preview.vue "dummy" prop, fixed FiltersManager.ts reset method [WTEL-6308](https://webitel.atlassian.net/browse/WTEL-6308) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## [v24.12.138] - 2025-02-25
|
|
7
|
+
### :bug: Bug Fixes
|
|
8
|
+
- [`7ad954c`](https://github.com/webitel/webitel-ui-sdk/commit/7ad954c124f0c4c612d056b3a33bb91eff4b6e03) - yes/no transcript and recording filters fix [WTEL-6286](https://webitel.atlassian.net/browse/WTEL-6286) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
9
|
+
- [`7c6b085`](https://github.com/webitel/webitel-ui-sdk/commit/7c6b0851dcc98fdbe55d916cb52b129e0fb20169) - local link run dev failure *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
10
|
+
|
|
11
|
+
|
|
1
12
|
## [v24.12.136] - 2025-02-24
|
|
2
13
|
### :bug: Bug Fixes
|
|
3
14
|
- [`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))*
|
|
@@ -1253,3 +1264,5 @@
|
|
|
1253
1264
|
[v24.12.134]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.133...v24.12.134
|
|
1254
1265
|
[v24.12.135]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.134...v24.12.135
|
|
1255
1266
|
[v24.12.136]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.135...v24.12.136
|
|
1267
|
+
[v24.12.138]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.137...v24.12.138
|
|
1268
|
+
[v24.12.139]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.138...v24.12.139
|