@webitel/ui-sdk 24.12.69 → 24.12.72
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 +18 -0
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +2590 -2594
- package/dist/ui-sdk.umd.cjs +14 -14
- package/package.json +1 -1
- package/src/api/types/ApiModule.type.ts +21 -0
- package/src/components/wt-popup/wt-popup.vue +29 -23
- package/src/components/wt-table/types/{table-header.ts → WtTable.type.ts} +1 -1
- package/src/components/wt-tree-table/wt-tree-table.vue +4 -4
- package/src/components/wt-tree-table-row/wt-tree-table-row.vue +10 -10
- package/src/composables/useWtTable/useWtTable.ts +11 -5
- package/src/modules/ObjectPermissions/components/permissions-tab.vue +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [v24.12.71] - 2025-01-22
|
|
2
|
+
### :sparkles: New Features
|
|
3
|
+
- [`acbd463`](https://github.com/webitel/webitel-ui-sdk/commit/acbd463ffc15ddf5319c1489c975ed67f646305c) - wt-table headers typing, api module typing [WTEL-5921](https://webitel.atlassian.net/browse/WTEL-5921) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## [v24.12.70] - 2025-01-22
|
|
7
|
+
### :bug: Bug Fixes
|
|
8
|
+
- [`5990f52`](https://github.com/webitel/webitel-ui-sdk/commit/5990f52992a1ee7b7c4760583db41be77b9ac597) - rollback activator slot for wt-popup [WTEL-3752](https://webitel.atlassian.net/browse/WTEL-3752) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## [v24.12.68] - 2025-01-22
|
|
12
|
+
### :bug: Bug Fixes
|
|
13
|
+
- [`a3114d7`](https://github.com/webitel/webitel-ui-sdk/commit/a3114d784e814bb8cbf2b7f22479e3cbc7efaf0b) - compareSize.ts script [WTEL-3752](https://webitel.atlassian.net/browse/WTEL-3752) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
## [v24.12.67] - 2025-01-21
|
|
2
17
|
### :sparkles: New Features
|
|
3
18
|
- [`66e81f2`](https://github.com/webitel/webitel-ui-sdk/commit/66e81f2f7ac9f1bc6d73d26d20b62274d634e92f) - wt-popup rewrite with composition api + TS, + added activator slot, + docs, + fixed tests [WTEL-3752](https://webitel.atlassian.net/browse/WTEL-3752) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
@@ -849,3 +864,6 @@
|
|
|
849
864
|
[v24.12.65]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.64...v24.12.65
|
|
850
865
|
[v24.12.66]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.65...v24.12.66
|
|
851
866
|
[v24.12.67]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.66...v24.12.67
|
|
867
|
+
[v24.12.68]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.67...v24.12.68
|
|
868
|
+
[v24.12.70]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.69...v24.12.70
|
|
869
|
+
[v24.12.71]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.70...v24.12.71
|