@webitel/ui-sdk 24.10.75 → 24.10.76
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,13 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [v24.10.75] - 2024-11-13
|
|
4
|
+
### :bug: Bug Fixes
|
|
5
|
+
- [`66327ee`](https://github.com/webitel/webitel-ui-sdk/commit/66327ee37bc3e08ac5837483a15aa2e3e5ab1cc9) - locale in useCardComponent composable[WTEL-5282](https://webitel.atlassian.net/browse/WTEL-5282) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
6
|
+
|
|
7
|
+
### :memo: Documentation Changes
|
|
8
|
+
- [`f43310f`](https://github.com/webitel/webitel-ui-sdk/commit/f43310f82a001035704109b487342223ce0ff479) - manual testing proposals docs [WTEL-5501](https://webitel.atlassian.net/browse/WTEL-5501) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
9
|
+
|
|
10
|
+
|
|
3
11
|
## [v24.10.74] - 2024-11-13
|
|
4
12
|
### :bug: Bug Fixes
|
|
5
13
|
- [`a5ee794`](https://github.com/webitel/webitel-ui-sdk/commit/a5ee79439ddd1f88512b3666a9a66a3c19b26f9f) - conflict and change lib version and rename props in wt-navigation-menu and wt-start-page[WTEL-4710](https://webitel.atlassian.net/browse/WTEL-4710) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
@@ -177,3 +185,4 @@
|
|
|
177
185
|
[v24.10.72]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.71...v24.10.72
|
|
178
186
|
[v24.10.73]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.72...v24.10.73
|
|
179
187
|
[v24.10.74]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.73...v24.10.74
|
|
188
|
+
[v24.10.75]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.74...v24.10.75
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "24.10.
|
|
3
|
+
"version": "24.10.76",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
"vue-multiselect": "^3.0.0-beta.3",
|
|
132
132
|
"vue-observe-visibility": "^2.0.0-alpha.1",
|
|
133
133
|
"vue-router": "^4.1.6",
|
|
134
|
-
"webitel-sdk": "^24.
|
|
134
|
+
"webitel-sdk": "^24.08.08",
|
|
135
135
|
"xlsx": "^0.18.5"
|
|
136
136
|
},
|
|
137
137
|
"devDependencies": {
|
|
@@ -41,10 +41,18 @@ export default {
|
|
|
41
41
|
|
|
42
42
|
setValue({ column, order }) {
|
|
43
43
|
const headers = this.headers.map((header) => {
|
|
44
|
-
|
|
44
|
+
if (header.sort === undefined) return header;
|
|
45
|
+
|
|
46
|
+
// reset all headers by default
|
|
47
|
+
let newSort = null;
|
|
48
|
+
|
|
49
|
+
if (header.value === column.value) {
|
|
50
|
+
newSort = order;
|
|
51
|
+
}
|
|
52
|
+
|
|
45
53
|
return {
|
|
46
54
|
...header,
|
|
47
|
-
sort:
|
|
55
|
+
sort: newSort,
|
|
48
56
|
};
|
|
49
57
|
});
|
|
50
58
|
const value = encodeSortQuery({ column, order });
|