@webitel/ui-sdk 24.12.102 → 24.12.116
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/{plyr.min-ClXVuhkx.js → plyr.min-BRLz1cd6.js} +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +9710 -9471
- package/dist/ui-sdk.umd.cjs +19 -19
- package/package.json +1 -1
- package/src/api/clients/roles/roles.js +1 -1
- package/src/components/wt-navigation-bar/types/WtNavigationBar.d.ts +18 -0
- package/src/components/wt-navigation-bar/wt-navigation-bar.vue +5 -1
- package/src/components/wt-tooltip/wt-tooltip.vue +10 -6
- package/src/composables/useAccessControl/v2/createUserAccessControl.ts +16 -6
- package/src/composables/useAccessControl/v2/types/CreateUserAccessControl.d.ts +2 -1
- package/src/composables/useWtTable/useWtTable.js +19 -20
- package/src/css/styleguide/placeholder/_placeholder.scss +0 -2
- package/src/enums/index.js +7 -7
- package/src/locale/en/en.js +80 -0
- package/src/locale/ru/ru.js +97 -0
- package/src/locale/ua/ua.js +97 -0
- package/src/modules/Filters/v2/filters/classes/FiltersManager.ts +3 -3
- package/src/modules/Filters/v2/filters/components/config/dynamic-filter-config-form-label.vue +2 -2
- package/src/modules/Filters/v2/filters/components/config/dynamic-filter-config-form.vue +13 -10
- package/src/modules/Filters/v2/filters/components/dynamic-filter-add-action.vue +17 -8
- package/src/modules/Filters/v2/filters/components/enums/amd-result-options.ts +38 -0
- package/src/modules/Filters/v2/filters/components/enums/boolean-options.ts +16 -0
- package/src/modules/Filters/v2/filters/components/enums/direction-options.ts +20 -0
- package/src/modules/Filters/v2/filters/components/enums/hangup-cause-options.ts +265 -0
- package/src/modules/Filters/v2/filters/components/enums/tag-options.ts +8 -0
- package/src/modules/Filters/v2/filters/components/preview/dynamic-filter-preview-info.vue +14 -27
- package/src/modules/Filters/v2/filters/components/preview/dynamic-filter-preview.vue +15 -6
- package/src/modules/Filters/v2/filters/components/values/_shared/durations/duration-filter-value-field.vue +48 -0
- package/src/modules/Filters/v2/filters/components/values/_shared/has-options/has-option-filter-value-field.vue +29 -0
- package/src/modules/Filters/v2/filters/components/values/agent/agent-filter-value-field.vue +57 -0
- package/src/modules/Filters/v2/filters/components/values/agent/agent-filter-value-preview.vue +32 -0
- package/src/modules/Filters/v2/filters/components/values/agent/config.js +4 -0
- package/src/modules/Filters/v2/filters/components/values/amd-result/amd-result-filter-value-field.vue +52 -0
- package/src/modules/Filters/v2/filters/components/values/amd-result/amd-result-filter-value-preview.vue +20 -0
- package/src/modules/Filters/v2/filters/components/values/cause/cause-filter-value-field.vue +52 -0
- package/src/modules/Filters/v2/filters/components/values/cause/cause-filter-value-preview.vue +19 -0
- package/src/modules/Filters/v2/filters/components/values/contact/config.js +4 -0
- package/src/modules/Filters/v2/filters/components/values/contact/contact-filter-value-field.vue +56 -0
- package/src/modules/Filters/v2/filters/components/values/contact/contact-filter-value-preview.vue +32 -0
- package/src/modules/Filters/v2/filters/components/values/created-at-from/created-at-from-filter-value-field.vue +23 -0
- package/src/modules/Filters/v2/filters/components/values/created-at-from/created-at-from-filter-value-preview.vue +15 -0
- package/src/modules/Filters/v2/filters/components/values/created-at-to/created-at-to-filter-value-field.vue +23 -0
- package/src/modules/Filters/v2/filters/components/values/created-at-to/created-at-to-filter-value-preview.vue +15 -0
- package/src/modules/Filters/v2/filters/components/values/direction/direction-filter-value-field.vue +51 -0
- package/src/modules/Filters/v2/filters/components/values/direction/direction-filter-value-preview.vue +17 -0
- package/src/modules/Filters/v2/filters/components/values/gateway/config.js +4 -0
- package/src/modules/Filters/v2/filters/components/values/gateway/gateway-filter-value-field.vue +56 -0
- package/src/modules/Filters/v2/filters/components/values/gateway/gateway-filter-value-preview.vue +32 -0
- package/src/modules/Filters/v2/filters/components/values/grantee/config.js +4 -0
- package/src/modules/Filters/v2/filters/components/values/grantee/grantee-filter-value-field.vue +56 -0
- package/src/modules/Filters/v2/filters/components/values/grantee/grantee-filter-value-preview.vue +32 -0
- package/src/modules/Filters/v2/filters/components/values/has-file/has-file-filter-value-field.vue +43 -0
- package/src/modules/Filters/v2/filters/components/values/has-file/has-file-filter-value-preview.vue +22 -0
- package/src/modules/Filters/v2/filters/components/values/has-transcription/has-transcription-filter-value-field.vue +43 -0
- package/src/modules/Filters/v2/filters/components/values/has-transcription/has-transcription-filter-value-preview.vue +22 -0
- package/src/modules/Filters/v2/filters/components/values/index.js +87 -0
- package/src/modules/Filters/v2/filters/components/values/queue/config.js +4 -0
- package/src/modules/Filters/v2/filters/components/values/queue/queue-filter-value-field.vue +56 -0
- package/src/modules/Filters/v2/filters/components/values/queue/queue-filter-value-preview.vue +32 -0
- package/src/modules/Filters/v2/filters/components/values/rated/rated-filter-value-field.vue +43 -0
- package/src/modules/Filters/v2/filters/components/values/rated/rated-filter-value-preview.vue +22 -0
- package/src/modules/Filters/v2/filters/components/values/rated-by/config.js +4 -0
- package/src/modules/Filters/v2/filters/components/values/rated-by/rated-by-filter-value-field.vue +56 -0
- package/src/modules/Filters/v2/filters/components/values/rated-by/rated-by-filter-value-preview.vue +32 -0
- package/src/modules/Filters/v2/filters/components/values/score/score-from-to-filter-value-field.vue +99 -0
- package/src/modules/Filters/v2/filters/components/values/score/score-from-to-filter-value-preview.vue +37 -0
- package/src/modules/Filters/v2/filters/components/values/tag/tag-filter-value-field.vue +52 -0
- package/src/modules/Filters/v2/filters/components/values/tag/tag-filter-value-preview.vue +18 -0
- package/src/modules/Filters/v2/filters/components/values/talk-duration/talk-duration-filter-value-field.vue +19 -0
- package/src/modules/Filters/v2/filters/components/values/talk-duration/talk-duration-filter-value-preview.vue +44 -0
- package/src/modules/Filters/v2/filters/components/values/team/config.js +4 -0
- package/src/modules/Filters/v2/filters/components/values/team/team-filter-value-field.vue +56 -0
- package/src/modules/Filters/v2/filters/components/values/team/team-filter-value-preview.vue +32 -0
- package/src/modules/Filters/v2/filters/components/values/total-duration/total-duration-filter-value-field.vue +19 -0
- package/src/modules/Filters/v2/filters/components/values/total-duration/total-duration-filter-value-preview.vue +44 -0
- package/src/modules/Filters/v2/filters/components/values/user/config.js +4 -0
- package/src/modules/Filters/v2/filters/components/values/user/user-filter-value-field.vue +56 -0
- package/src/modules/Filters/v2/filters/components/values/user/user-filter-value-preview.vue +32 -0
- package/src/modules/Filters/v2/filters/components/values/variable/variable-filter-value-field.vue +51 -0
- package/src/modules/Filters/v2/filters/components/values/variable/variable-filter-value-preview.vue +36 -0
- package/src/modules/Filters/v2/filters/types/Filter.d.ts +5 -0
- package/src/modules/Filters/v2/table/createTableStore.store.ts +12 -1
- package/src/modules/Filters/v2/types/tableStore.types.ts +1 -0
- package/src/modules/Filters/v2/filters/components/values/users/config.js +0 -4
- package/src/modules/Filters/v2/filters/components/values/users/user-filter-value-field.vue +0 -35
- package/src/modules/Filters/v2/filters/components/values/users/user-filter-value-preview.vue +0 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
|
+
## [v24.12.115] - 2025-02-18
|
|
2
|
+
### :sparkles: New Features
|
|
3
|
+
- [`3f3bea2`](https://github.com/webitel/webitel-ui-sdk/commit/3f3bea2ec612c8781d4c1e6aad73b961c46faf09) - pinia tableStore updateSelected method [WTEL-5921](https://webitel.atlassian.net/browse/WTEL-5921) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
4
|
+
- [`0c0ecac`](https://github.com/webitel/webitel-ui-sdk/commit/0c0ecacf3a988b64b2add2250a678adbc0272d3c) - add new previews[WTEL-5917](https://webitel.atlassian.net/browse/WTEL-5917) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
5
|
+
- [`22f0be6`](https://github.com/webitel/webitel-ui-sdk/commit/22f0be63f6df14fef29a0ce3fffaaab75e4c1f58) - add new preview component[WTEL-5917](https://webitel.atlassian.net/browse/WTEL-5917) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
6
|
+
- [`099d242`](https://github.com/webitel/webitel-ui-sdk/commit/099d2421bf5dbe2344833150466a31075c9323b3) - add new preview components[WTEL-5917](https://webitel.atlassian.net/browse/WTEL-5917) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
7
|
+
- [`57f832a`](https://github.com/webitel/webitel-ui-sdk/commit/57f832a5e8bfb9dc5ae363297b0df29f96a75a8a) - created at/direction/duration/user/variables preview filters[WTEL-5917](https://webitel.atlassian.net/browse/WTEL-5917) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
8
|
+
- [`9d26dd3`](https://github.com/webitel/webitel-ui-sdk/commit/9d26dd39a73a6745c28059be9334e080dce768f9) - add preview components in new filters[WTEL-5917](https://webitel.atlassian.net/browse/WTEL-5917) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
9
|
+
|
|
10
|
+
### :bug: Bug Fixes
|
|
11
|
+
- [`208cd10`](https://github.com/webitel/webitel-ui-sdk/commit/208cd10b7a5394f0f1a9e14bbdc652a8fc4c678b) - fixed placeholder font inheritance and dynamic-filter-config-form-label validation error *(commit by [@plnnsimon](https://github.com/plnnsimon))*
|
|
12
|
+
- [`e70b891`](https://github.com/webitel/webitel-ui-sdk/commit/e70b8910fa0e10c36b7962de9e8b4766eef21bf5) - set updates for dynamic filters fields names *(commit by [@plnnsimon](https://github.com/plnnsimon))*
|
|
13
|
+
- [`6e540ed`](https://github.com/webitel/webitel-ui-sdk/commit/6e540ed54525ffa3944fa8679ad7a07cceac67cd) - set updates for dynamic filters locales *(commit by [@plnnsimon](https://github.com/plnnsimon))*
|
|
14
|
+
- [`6fed2de`](https://github.com/webitel/webitel-ui-sdk/commit/6fed2de41d42f108abdb01ee76217335ae5823cd) - lvl-2 entities access control update regulation [WTEL-5445](https://webitel.atlassian.net/browse/WTEL-5445) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
15
|
+
- [`5f8cd45`](https://github.com/webitel/webitel-ui-sdk/commit/5f8cd4508a5a4caf1a2e63357ab5f1c8cb2e45ad) - removed font inheritance for wt-placeholder to fix style bug *(commit by [@plnnsimon](https://github.com/plnnsimon))*
|
|
16
|
+
- [`adc4777`](https://github.com/webitel/webitel-ui-sdk/commit/adc4777b55c0eb7369844b8616a037fc1f359fb7) - filter names [WTEL-5921](https://webitel.atlassian.net/browse/WTEL-5921) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
17
|
+
- [`7bcaf4b`](https://github.com/webitel/webitel-ui-sdk/commit/7bcaf4b199a78241a016633372ef06000927be3b) - small filters/v2 fixes [WTEL-5921](https://webitel.atlassian.net/browse/WTEL-5921) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
18
|
+
- [`1872fb8`](https://github.com/webitel/webitel-ui-sdk/commit/1872fb8cae5a9deda0d85f6d2fb9f893c1b10294) - set fixes for dynamic filters validation *(commit by [@plnnsimon](https://github.com/plnnsimon))*
|
|
19
|
+
- [`086bfae`](https://github.com/webitel/webitel-ui-sdk/commit/086bfaebd160b8c087a2e9a7cdf0cb3d85ffc845) - set fixes for wt-tooltip [WTEL-5916] (https://webitel.atlassian.net/browse/WTEL-5916) *(commit by [@plnnsimon](https://github.com/plnnsimon))*
|
|
20
|
+
- [`168a324`](https://github.com/webitel/webitel-ui-sdk/commit/168a3247d3e5baf450703d8afd087eff352ab1dd) - set fixes for dynamic preview components locales [WTEL-5916] (https://webitel.atlassian.net/browse/WTEL-5916) *(commit by [@plnnsimon](https://github.com/plnnsimon))*
|
|
21
|
+
- [`78f9149`](https://github.com/webitel/webitel-ui-sdk/commit/78f9149df2b3ead14299cfd3f6642cdc86888299) - import filter component[WTEL-5917](https://webitel.atlassian.net/browse/WTEL-5917) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
22
|
+
- [`ba64ae2`](https://github.com/webitel/webitel-ui-sdk/commit/ba64ae2ba90b90f52a29da4e852c8dbf3fa7d805) - @24.12.106 update version[WTEL-5917](https://webitel.atlassian.net/browse/WTEL-5917) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
23
|
+
- [`13ecf60`](https://github.com/webitel/webitel-ui-sdk/commit/13ecf60df89524572c546cfc49337d0a98e49db3) - after codereview[WTEL-5917](https://webitel.atlassian.net/browse/WTEL-5917) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
24
|
+
- [`a84d6c6`](https://github.com/webitel/webitel-ui-sdk/commit/a84d6c6b45a02eed14ce8380dc32102c37a6f9ad) - conflict[WTEL-5917](https://webitel.atlassian.net/browse/WTEL-5917) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
25
|
+
- [`b8ed014`](https://github.com/webitel/webitel-ui-sdk/commit/b8ed01446edf0446f8aa7cbb116059fa33826635) - merge changes[WTEL-5917](https://webitel.atlassian.net/browse/WTEL-5917) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
26
|
+
- [`32d96b9`](https://github.com/webitel/webitel-ui-sdk/commit/32d96b9ac1e629ad62e4ceef0f4c452bd1c300bc) - conflict[WTEL-5917](https://webitel.atlassian.net/browse/WTEL-5917) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
## [v24.12.102] - 2025-02-13
|
|
30
|
+
### :bug: Bug Fixes
|
|
31
|
+
- [`7636ad6`](https://github.com/webitel/webitel-ui-sdk/commit/7636ad6ed7e7d0ba6047291f196924e26a362553) - implimented version *(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))*
|
|
32
|
+
- [`7c8d937`](https://github.com/webitel/webitel-ui-sdk/commit/7c8d93716ebc62794d8b2efa72673231ba99c426) - added fixedActions props to wt-table component *(commit by [@liza-pohranichna](https://github.com/liza-pohranichna))*
|
|
33
|
+
|
|
34
|
+
|
|
1
35
|
## [v24.12.101] - 2025-02-12
|
|
2
36
|
### :bug: Bug Fixes
|
|
3
37
|
- [`7bc6052`](https://github.com/webitel/webitel-ui-sdk/commit/7bc6052197f4c4b9660010a00d7349708b0f680e) - access control [WTEL-5445](https://webitel.atlassian.net/browse/WTEL-5445) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
@@ -1109,3 +1143,5 @@
|
|
|
1109
1143
|
[v24.12.99]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.98...v24.12.99
|
|
1110
1144
|
[v24.12.100]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.99...v24.12.100
|
|
1111
1145
|
[v24.12.101]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.100...v24.12.101
|
|
1146
|
+
[v24.12.102]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.101...v24.12.102
|
|
1147
|
+
[v24.12.115]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.102...v24.12.115
|
|
@@ -5,7 +5,7 @@ function mt(e, i) {
|
|
|
5
5
|
if (typeof e != "object" || e === null) return e;
|
|
6
6
|
var t = e[Symbol.toPrimitive];
|
|
7
7
|
if (t !== void 0) {
|
|
8
|
-
var s = t.call(e, i
|
|
8
|
+
var s = t.call(e, i);
|
|
9
9
|
if (typeof s != "object") return s;
|
|
10
10
|
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
11
11
|
}
|