@webitel/ui-sdk 24.12.22 → 24.12.24
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 +18 -0
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +460 -435
- package/dist/ui-sdk.umd.cjs +9 -9
- package/package.json +2 -2
- package/src/api/clients/agents/agentChats.js +3 -1
- package/src/components/wt-datepicker/wt-datepicker.vue +25 -3
- package/src/components/wt-timepicker/wt-timepicker.vue +18 -1
- package/src/store/new/modules/tableStoreModule/tableStoreModule.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [v24.12.23] - 2024-12-16
|
|
4
|
+
### :sparkles: New Features
|
|
5
|
+
- [`60c918a`](https://github.com/webitel/webitel-ui-sdk/commit/60c918a4a7e738a399190c29da8c21fddcad1932) - implimented version [WTEL-5503](https://webitel.atlassian.net/browse/WTEL-5503) *(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))*
|
|
6
|
+
- [`1a19bd1`](https://github.com/webitel/webitel-ui-sdk/commit/1a19bd1bc799ea984598b7b99d75486fead1943a) - update agent chats api params [WTEL-5503](https://webitel.atlassian.net/browse/WTEL-5503) *(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))*
|
|
7
|
+
|
|
8
|
+
### :bug: Bug Fixes
|
|
9
|
+
- [`dbeb016`](https://github.com/webitel/webitel-ui-sdk/commit/dbeb01682efe411da4197a24933a22bdea98294e) - clear selected arr in delete record[WTEL-5730](https://webitel.atlassian.net/browse/WTEL-5730) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## [v24.12.22] - 2024-12-13
|
|
13
|
+
### :bug: Bug Fixes
|
|
14
|
+
- [`d7fc38d`](https://github.com/webitel/webitel-ui-sdk/commit/d7fc38d3c46998df9e79b932460ca96f8b9335f2) - conflict[WTEL-5711](https://webitel.atlassian.net/browse/WTEL-5711) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
15
|
+
- [`31a9aeb`](https://github.com/webitel/webitel-ui-sdk/commit/31a9aeb6b0a5b029503893f76278471745b49224) - change resetTableState action[WTEL-5711](https://webitel.atlassian.net/browse/WTEL-5711) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
16
|
+
- [`98f30da`](https://github.com/webitel/webitel-ui-sdk/commit/98f30da2b20c5b9347e225c3213ab6136ea16b5e) - add resetState in tableStoreModule[WTEL-5711](https://webitel.atlassian.net/browse/WTEL-5711) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
17
|
+
|
|
18
|
+
|
|
3
19
|
## [v24.12.21] - 2024-12-13
|
|
4
20
|
### :bug: Bug Fixes
|
|
5
21
|
- [`55398a0`](https://github.com/webitel/webitel-ui-sdk/commit/55398a0397d2923a5a99400887378834053fe440) - implement locales for useTableEmpty [WTEL-5642](https://webitel.atlassian.net/browse/WTEL-5642)
|
|
@@ -457,3 +473,5 @@
|
|
|
457
473
|
[v24.12.19]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.18...v24.12.19
|
|
458
474
|
[v24.12.20]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.19...v24.12.20
|
|
459
475
|
[v24.12.21]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.20...v24.12.21
|
|
476
|
+
[v24.12.22]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.21...v24.12.22
|
|
477
|
+
[v24.12.23]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.22...v24.12.23
|