@webitel/ui-sdk 25.4.60 → 25.4.62
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 +9 -0
- package/dist/ui-sdk.js +5 -1
- package/dist/ui-sdk.umd.cjs +14 -14
- package/package.json +1 -1
- package/src/components/wt-tree-line/wt-tree-line.vue +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [v25.4.60] - 2025-04-10
|
|
2
|
+
### :bug: Bug Fixes
|
|
3
|
+
- [`52238a0`](https://github.com/webitel/webitel-ui-sdk/commit/52238a012ec712064a342d011e1614cb3b47656c) - locale in navigation[WTEL-6674](https://webitel.atlassian.net/browse/WTEL-6674) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
4
|
+
|
|
5
|
+
### :recycle: Refactors
|
|
6
|
+
- [`f411f6d`](https://github.com/webitel/webitel-ui-sdk/commit/f411f6d1a6d78d29de6a54bb88941f24897664e9) - filter options namings [WTEL-6522](https://webitel.atlassian.net/browse/WTEL-6522) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
7
|
+
|
|
8
|
+
|
|
1
9
|
## [v25.4.59] - 2025-04-09
|
|
2
10
|
### :recycle: Refactors
|
|
3
11
|
- [`684efa9`](https://github.com/webitel/webitel-ui-sdk/commit/684efa96e24821573afa43c6fbbf68ddf41f311d) - filter options naming refactors and preview api response refactor [WTEL-6522](https://webitel.atlassian.net/browse/WTEL-6522) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
@@ -1882,3 +1890,4 @@
|
|
|
1882
1890
|
[v25.4.57]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.56...v25.4.57
|
|
1883
1891
|
[v25.4.58]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.57...v25.4.58
|
|
1884
1892
|
[v25.4.59]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.58...v25.4.59
|
|
1893
|
+
[v25.4.60]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.59...v25.4.60
|
package/dist/ui-sdk.js
CHANGED
|
@@ -25098,7 +25098,11 @@ const K9 = {
|
|
|
25098
25098
|
c();
|
|
25099
25099
|
return;
|
|
25100
25100
|
}
|
|
25101
|
-
(y = n.data[n.childrenProp]) != null && y.length
|
|
25101
|
+
if ((y = n.data[n.childrenProp]) != null && y.length) {
|
|
25102
|
+
d.value = !d.value;
|
|
25103
|
+
return;
|
|
25104
|
+
}
|
|
25105
|
+
a(
|
|
25102
25106
|
"update:modelValue",
|
|
25103
25107
|
n.itemData ? n.data[n.itemData] : n.data
|
|
25104
25108
|
);
|