@webitel/ui-sdk 24.10.80 → 24.10.82
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 +17 -0
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +3961 -3882
- package/dist/ui-sdk.umd.cjs +17 -17
- package/package.json +1 -1
- package/src/api/clients//321/201ontacts/contactChatMessagesHistory.js +2 -2
- package/src/api/clients//321/201ontacts/contacts.js +4 -2
- package/src/components/index.js +2 -0
- package/src/components/wt-dual-panel/__tests__/WtDualPanel.js +49 -0
- package/src/components/wt-dual-panel/_variables.scss +12 -0
- package/src/components/wt-dual-panel/wt-dual-panel.vue +131 -0
- package/src/components/wt-icon-action/IActionData.js +10 -0
- package/src/components/wt-table/wt-table.vue +28 -0
- package/src/css/pages/card-page.scss +41 -36
- package/src/enums/IconAction/IconAction.enum.js +2 -0
- package/src/modules/QueryFilters/mixins/sortFilterMixin.js +30 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [v24.10.81] - 2024-11-17
|
|
4
|
+
### :bug: Bug Fixes
|
|
5
|
+
- [`9113858`](https://github.com/webitel/webitel-ui-sdk/commit/9113858c25979cf03f0f619a33d6f5b1090848bd) - fixed contacts client empty result [WTEL-5537](https://webitel.atlassian.net/browse/WTEL-5537) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
6
|
+
- [`261a0e3`](https://github.com/webitel/webitel-ui-sdk/commit/261a0e3e77c8f3063f2d1a9eae048117d3e1d379) - error in useCardComponent[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## [v24.10.80] - 2024-11-15
|
|
10
|
+
### :sparkles: New Features
|
|
11
|
+
- [`add6f93`](https://github.com/webitel/webitel-ui-sdk/commit/add6f9397de8664e1db6328318633edf79dc6ca4) - add desabled prop in wt-action-bar[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
12
|
+
|
|
13
|
+
### :bug: Bug Fixes
|
|
14
|
+
- [`6265f77`](https://github.com/webitel/webitel-ui-sdk/commit/6265f77d3ba419e28b4ebf67255d87d27399afb2) - package.json version[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
15
|
+
- [`a592314`](https://github.com/webitel/webitel-ui-sdk/commit/a59231463ad31f54109282c0508c642f8afbc4dc) - doc for wt-action-bar[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
16
|
+
|
|
17
|
+
|
|
3
18
|
## [v24.10.79] - 2024-11-15
|
|
4
19
|
### :bug: Bug Fixes
|
|
5
20
|
- [`7a214f6`](https://github.com/webitel/webitel-ui-sdk/commit/7a214f6d3973180ab62dcc960808d6bea3ea3284) - version in package.json[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
@@ -217,3 +232,5 @@
|
|
|
217
232
|
[v24.10.77]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.76...v24.10.77
|
|
218
233
|
[v24.10.78]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.77...v24.10.78
|
|
219
234
|
[v24.10.79]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.78...v24.10.79
|
|
235
|
+
[v24.10.80]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.79...v24.10.80
|
|
236
|
+
[v24.10.81]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.80...v24.10.81
|