@webitel/ui-sdk 24.10.70 → 24.10.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 +14 -0
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +3189 -3107
- package/dist/ui-sdk.umd.cjs +11 -11
- package/package.json +1 -1
- package/src/components/index.js +2 -0
- package/src/components/wt-confirm-dialog/wt-confirm-dialog.vue +97 -0
- package/src/locale/en/en.js +2 -0
- package/src/locale/ru/ru.js +2 -0
- package/src/locale/ua/ua.js +2 -0
- package/src/modules/DeleteConfirmationPopup/components/delete-confirmation-popup.vue +9 -28
- package/src/modules/FilesExport/FilesExport.js +1 -2
- package/src/modules/FilesExport/mixins/exportFilesMixin.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [v24.10.71] - 2024-11-12
|
|
4
|
+
### :sparkles: New Features
|
|
5
|
+
- [`d0bcba0`](https://github.com/webitel/webitel-ui-sdk/commit/d0bcba0b49949566e9487da167b6557f76218585) - Update version [WTEL-5432](https://webitel.atlassian.net/browse/WTEL-5432)
|
|
6
|
+
- [`e09911a`](https://github.com/webitel/webitel-ui-sdk/commit/e09911a2ddfdf5479c8c1eeac102d9f8bba78c2e) - Update usage confirm dialog. Implement callback function [WTEL-5432](https://webitel.atlassian.net/browse/WTEL-5432)
|
|
7
|
+
- [`323aa43`](https://github.com/webitel/webitel-ui-sdk/commit/323aa4392fb59d15d9f16e8d5b75a5f2724d9ea8) - Remove docs and use specs for wt-confirm-dialog [WTEL-5432](https://webitel.atlassian.net/browse/WTEL-5432)
|
|
8
|
+
- [`8d8be47`](https://github.com/webitel/webitel-ui-sdk/commit/8d8be47c16be826aafcbcd6955472f65a445a9cf) - Update package version [WTEL-5432](https://webitel.atlassian.net/browse/WTEL-5432)
|
|
9
|
+
- [`474fb3a`](https://github.com/webitel/webitel-ui-sdk/commit/474fb3a2328d4fca5cba4eb364dd0443616ae500) - Update docs for wt-confirm-dialog. Update examples for confirm dialog. Update props and events wt-confirm-dialog [WTEL-5432](https://webitel.atlassian.net/browse/WTEL-5432)
|
|
10
|
+
- [`ac269ce`](https://github.com/webitel/webitel-ui-sdk/commit/ac269ce83b1f7f2d95afeae7b5edb4a911722753) - Implement wt-confirm-dialog component. Update delete-confirmation-popup module [WTEL-5432](https://webitel.atlassian.net/browse/WTEL-5432)
|
|
11
|
+
|
|
12
|
+
### :bug: Bug Fixes
|
|
13
|
+
- [`fc8b838`](https://github.com/webitel/webitel-ui-sdk/commit/fc8b838984b68f4d8b198394f7b8c567da3d3e56) - implement fix for delete-confirmation-popup [WTEL-5432](https://webitel.atlassian.net/browse/WTEL-5432)
|
|
14
|
+
|
|
15
|
+
|
|
3
16
|
## [v24.10.69] - 2024-11-11
|
|
4
17
|
### :recycle: Refactors
|
|
5
18
|
- [`f9f6155`](https://github.com/webitel/webitel-ui-sdk/commit/f9f615521aadf07c279f40f0bf937ec0c33439d5) - simplified plyr icons SO MUCH! (upd webitel-ui) [WTEL-5475](https://webitel.atlassian.net/browse/WTEL-5475) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
@@ -141,3 +154,4 @@
|
|
|
141
154
|
[v24.10.66]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.65...v24.10.66
|
|
142
155
|
[v24.10.67]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.66...v24.10.67
|
|
143
156
|
[v24.10.69]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.68...v24.10.69
|
|
157
|
+
[v24.10.71]: https://github.com/webitel/webitel-ui-sdk/compare/v24.10.69...v24.10.71
|