@webitel/ui-sdk 24.12.94 → 24.12.96
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 +36 -0
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +2124 -2158
- package/dist/ui-sdk.umd.cjs +16 -16
- package/package.json +14 -8
- package/src/api/defaults/getDefaultInstance/getDefaultInstance.js +5 -2
- package/src/api/defaults/index.js +1 -1
- package/src/components/wt-dual-panel/wt-dual-panel.vue +1 -2
- package/src/components/wt-icon-action/iconMappings.js +1 -1
- package/src/composables/useAccessControl/v2/createUserAccessControl.ts +66 -0
- package/src/composables/useAccessControl/v2/types/CreateUserAccessControl.d.ts +21 -0
- package/src/enums/CrudAction/CrudAction.js +6 -0
- package/src/enums/CrudAction/CrudAction.ts +8 -0
- package/src/enums/WtObject/WtObject.js +51 -1
- package/src/enums/WtObject/WtObject.ts +51 -1
- package/src/enums/index.js +6 -19
- package/src/enums/index.ts +33 -0
- package/src/locale/en/en.js +2 -1
- package/src/locale/ru/ru.js +2 -1
- package/src/locale/ua/ua.js +2 -1
- package/src/mixins/validationMixin/useValidation.js +2 -0
- package/src/modules/Filters/v2/filters/components/config/dynamic-filter-config-form-label.vue +50 -0
- package/src/modules/Filters/v2/filters/components/{dynamic/config → config}/dynamic-filter-config-form.vue +14 -5
- package/src/modules/Filters/v2/filters/components/{dynamic/config → config}/dynamic-filter-config-view.vue +1 -1
- package/src/modules/Filters/v2/filters/components/{dynamic/dynamic-filter-add-action.vue → dynamic-filter-add-action.vue} +2 -1
- package/src/modules/Filters/v2/filters/components/{dynamic/preview → preview}/dynamic-filter-preview-info.vue +1 -1
- package/src/modules/Filters/v2/filters/components/{dynamic/preview → preview}/dynamic-filter-preview.vue +4 -4
- package/src/modules/Filters/v2/filters/components/table-filters-panel.vue +3 -3
- package/src/modules/Filters/v2/filters/components/values/users/config.js +4 -0
- package/src/modules/Filters/v2/filters/components/values/users/user-filter-value-field.vue +35 -0
- package/src/modules/Filters/v2/filters/components/values/users/user-filter-value-preview.vue +13 -0
- package/src/modules/Userinfo/api/userinfo.js +21 -34
- package/src/modules/Userinfo/store/UserinfoStoreModule.js +1 -1
- package/src/modules/Userinfo/v2/api/UserinfoAPI.ts +62 -0
- package/src/modules/Userinfo/v2/enums/GlobalActions/GlobalActions.ts +36 -0
- package/src/modules/Userinfo/v2/enums/ScopeClass/ScopeClass.ts +47 -0
- package/src/modules/Userinfo/v2/enums/index.ts +7 -0
- package/src/modules/Userinfo/v2/index.ts +0 -0
- package/src/modules/Userinfo/v2/mappings/mappings.ts +161 -0
- package/src/modules/Userinfo/v2/scripts/utils.ts +123 -0
- package/src/modules/Userinfo/v2/stores/__tests__/accessStore.spec.ts +136 -0
- package/src/modules/Userinfo/v2/stores/accessStore.ts +131 -0
- package/src/modules/Userinfo/v2/stores/userinfoStore.ts +56 -0
- package/src/modules/Userinfo/v2/types/UserAccess.d.ts +118 -0
- package/src/modules/Filters/v2/filters/components/static/search-filter.vue +0 -14
- /package/src/modules/Filters/v2/filters/components/{dynamic/dynamic-filter-panel-wrapper.vue → dynamic-filter-panel-wrapper.vue} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
|
+
## [v24.12.95] - 2025-02-07
|
|
2
|
+
### :sparkles: New Features
|
|
3
|
+
- [`7f82c8e`](https://github.com/webitel/webitel-ui-sdk/commit/7f82c8e043165fd824b201ea1b9972288d5f1076) - added validation for wt-select [WTEL-5922](https://webitel.atlassian.net/browse/WTEL-5922) *(commit by [@plnnsimon](https://github.com/plnnsimon))*
|
|
4
|
+
- [`a62b79e`](https://github.com/webitel/webitel-ui-sdk/commit/a62b79ef55178998d266310b6578ef743a9b9584) - crud action enum [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
5
|
+
|
|
6
|
+
### :bug: Bug Fixes
|
|
7
|
+
- [`d603d79`](https://github.com/webitel/webitel-ui-sdk/commit/d603d79d79bb474406066199b514919f7d8c71d9) - access control application access [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
8
|
+
- [`a1aa50c`](https://github.com/webitel/webitel-ui-sdk/commit/a1aa50cfe8a551f65b100ee0085d80d3933b56a0) - cc_skill scope class addded [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
9
|
+
- [`b67717c`](https://github.com/webitel/webitel-ui-sdk/commit/b67717c88778ef7be31bb8512103f566a9ed6cd3) - types and build fixes [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
10
|
+
- [`3ccf93b`](https://github.com/webitel/webitel-ui-sdk/commit/3ccf93ba8a5d10b8facf917d9fd101641f827cee) - old userinfo module api usage [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
11
|
+
- [`516a1bb`](https://github.com/webitel/webitel-ui-sdk/commit/516a1bb91cf9d714c6e184803ab2955b38671275) - enum imports [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
12
|
+
- [`cfbebd9`](https://github.com/webitel/webitel-ui-sdk/commit/cfbebd9c5487f59a4f2907e1c8b65d98bfbd8525) - tsc issues preventing build fixed [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
13
|
+
|
|
14
|
+
### :recycle: Refactors
|
|
15
|
+
- [`f874024`](https://github.com/webitel/webitel-ui-sdk/commit/f874024da0fe3b90fc0531f2ae0098a97df4949b) - user access v2 for directory/users [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5922) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
16
|
+
- [`ef4147a`](https://github.com/webitel/webitel-ui-sdk/commit/ef4147a8ab028d396c927332f04079c2ae72bd19) - access control composable testing and refactoring on admin/users [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
17
|
+
- [`66f2707`](https://github.com/webitel/webitel-ui-sdk/commit/66f270782d0c419ba5968c1322e27fa14f26c190) - enums compatibility in progress [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
18
|
+
- [`175c24f`](https://github.com/webitel/webitel-ui-sdk/commit/175c24f9a1c1302f913d1db27f63bce80ae0cca7) - compiled userinfo ts files [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
19
|
+
- [`9328dc0`](https://github.com/webitel/webitel-ui-sdk/commit/9328dc0a6cc607ad7882fa58ca736f96b47169dc) - upd user access mappings file [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
20
|
+
- [`0f3a0a9`](https://github.com/webitel/webitel-ui-sdk/commit/0f3a0a92325305ca5cc7b0a84866bb94d007160c) - access control refactors and fixes [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
21
|
+
- [`7a9ff09`](https://github.com/webitel/webitel-ui-sdk/commit/7a9ff09042a55824c7afb93623f89802244c4f24) - access control refactors and fixes [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
22
|
+
- [`a069a12`](https://github.com/webitel/webitel-ui-sdk/commit/a069a1287b09f97826ee2a6d50374dcd8bc93af1) - access control refactors and fixes [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
23
|
+
- [`6877d26`](https://github.com/webitel/webitel-ui-sdk/commit/6877d26988f56a644e143916ec7487b2d75498da) - access control refactors and fixes [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
24
|
+
- [`2d5225e`](https://github.com/webitel/webitel-ui-sdk/commit/2d5225e77607dc0b46927f769c6be2cc3fbb9652) - userinfo v2 module types, fixes, refactors [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
25
|
+
- [`16ab095`](https://github.com/webitel/webitel-ui-sdk/commit/16ab0958704ea7663ee9c392185b0f8cf1be4b20) - webitel applications enums rewritten and reused as ts files [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
26
|
+
- [`858c459`](https://github.com/webitel/webitel-ui-sdk/commit/858c4593a9bd430dd98f62fa8e768499d15a3418) - ts wt applications enums, im progress [WTEL-5592](https://webitel.atlassian.net/browse/WTEL-5592) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
27
|
+
- [`e271f67`](https://github.com/webitel/webitel-ui-sdk/commit/e271f677bc41730522441f5bfbac9702e9e22d21) - permissions prototype *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## [v24.12.94] - 2025-02-06
|
|
31
|
+
### :recycle: Refactors
|
|
32
|
+
- [`f57a4df`](https://github.com/webitel/webitel-ui-sdk/commit/f57a4df5599487ed0895d4386fcfc3160659bd7b) - websocket transferred to api folder [WTEL-5297](https://webitel.atlassian.net/browse/WTEL-5297) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
33
|
+
|
|
34
|
+
|
|
1
35
|
## [v24.12.93] - 2025-02-06
|
|
2
36
|
### :recycle: Refactors
|
|
3
37
|
- [`f4b1d5d`](https://github.com/webitel/webitel-ui-sdk/commit/f4b1d5dc9a1f883146e200d91381cd6ad3160e8a) - package.json fixing [WTEL-5297](https://webitel.atlassian.net/browse/WTEL-5297) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
|
|
@@ -1032,3 +1066,5 @@
|
|
|
1032
1066
|
[v24.12.91]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.90...v24.12.91
|
|
1033
1067
|
[v24.12.92]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.91...v24.12.92
|
|
1034
1068
|
[v24.12.93]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.92...v24.12.93
|
|
1069
|
+
[v24.12.94]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.93...v24.12.94
|
|
1070
|
+
[v24.12.95]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.94...v24.12.95
|