@webitel/ui-sdk 24.10.80 → 24.10.81

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 CHANGED
@@ -1,5 +1,14 @@
1
1
 
2
2
 
3
+ ## [v24.10.80] - 2024-11-15
4
+ ### :sparkles: New Features
5
+ - [`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))*
6
+
7
+ ### :bug: Bug Fixes
8
+ - [`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))*
9
+ - [`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))*
10
+
11
+
3
12
  ## [v24.10.79] - 2024-11-15
4
13
  ### :bug: Bug Fixes
5
14
  - [`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 +226,4 @@
217
226
  [v24.10.77]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.76...v24.10.77
218
227
  [v24.10.78]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.77...v24.10.78
219
228
  [v24.10.79]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.78...v24.10.79
229
+ [v24.10.80]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.79...v24.10.80
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "24.10.80",
3
+ "version": "24.10.81",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -112,12 +112,14 @@ const getList = async (params) => {
112
112
  id,
113
113
  qin,
114
114
  );
115
- const { data, next } = applyTransform(response.data, [
115
+
116
+ const { items, next } = applyTransform({ ...response.data, items: response.data.data || [] }, [
116
117
  snakeToCamel(),
117
118
  merge(getDefaultGetListResponse()),
118
119
  ]);
120
+
119
121
  return {
120
- items: applyTransform(data, [(items) => items?.map((item) => formatAccessMode(item)), listResponseHandler]),
122
+ items: applyTransform(items, [(items) => items?.map((item) => formatAccessMode(item)), listResponseHandler]),
121
123
  next,
122
124
  };
123
125
  } catch (err) {