@webitel/ui-sdk 24.10.81 → 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 +7 -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/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,11 @@
|
|
|
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
|
+
|
|
3
9
|
## [v24.10.80] - 2024-11-15
|
|
4
10
|
### :sparkles: New Features
|
|
5
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))*
|
|
@@ -227,3 +233,4 @@
|
|
|
227
233
|
[v24.10.78]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.77...v24.10.78
|
|
228
234
|
[v24.10.79]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.78...v24.10.79
|
|
229
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
|