@webitel/ui-sdk 25.4.75 → 25.4.76
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 +13 -0
- package/package.json +1 -1
- package/src/locale/en/en.js +4 -5
- package/src/locale/ru/ru.js +4 -5
- package/src/locale/ua/ua.js +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [v25.4.76] - 2025-04-28
|
|
2
|
+
### :bug: Bug Fixes
|
|
3
|
+
- [`57b0ec0`](https://github.com/webitel/webitel-ui-sdk/commit/57b0ec0e4de78e6fc3d9c79bb87bf44f710b066e) - add 'ids' parameter to sysTypeRecordsList for improved query handling [WTEL-6788](https://webitel.atlassian.net/browse/WTEL-6788) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## [v25.4.75] - 2025-04-28
|
|
7
|
+
### :bug: Bug Fixes
|
|
8
|
+
- [`d207244`](https://github.com/webitel/webitel-ui-sdk/commit/d207244427760698e2b20394d5f17463cf78d9b7) - import errors in locale[WTEL-4610](https://webitel.atlassian.net/browse/WTEL-6410) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
9
|
+
- [`9358ff8`](https://github.com/webitel/webitel-ui-sdk/commit/9358ff8d1b6d469c64270fde866d5417f074315a) - webitel/ui-sdk version update[WTEL-6410](https://webitel.atlassian.net/browse/WTEL-6410) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
10
|
+
|
|
11
|
+
|
|
1
12
|
## [v25.4.74] - 2025-04-28
|
|
2
13
|
### :sparkles: New Features
|
|
3
14
|
- [`412e739`](https://github.com/webitel/webitel-ui-sdk/commit/412e739dd3b9e56dd44a6f9f9848ae36f5b33348) - ui-datalist/filters/custom: simplify name retrieval in searchRecords using lodash.get [https://webitel.atlassian.net/browse/WTEL-6787](https://webitel.atlassian.net/browse/WTEL-6787) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
@@ -2006,3 +2017,5 @@
|
|
|
2006
2017
|
[v25.4.72]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.71...v25.4.72
|
|
2007
2018
|
[v25.4.73]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.72...v25.4.73
|
|
2008
2019
|
[v25.4.74]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.73...v25.4.74
|
|
2020
|
+
[v25.4.75]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.74...v25.4.75
|
|
2021
|
+
[v25.4.76]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.75...v25.4.76
|
package/package.json
CHANGED
package/src/locale/en/en.js
CHANGED
|
@@ -19,7 +19,6 @@ import CrmSections from '../../enums/WebitelApplications/CrmSections.enum.js';
|
|
|
19
19
|
import AdminSections from '../../enums/WebitelApplications/AdminSections.enum.js';
|
|
20
20
|
import { AccessMode } from '../../modules/ObjectPermissions/_internals/enums/AccessMode.enum.js';
|
|
21
21
|
import { snakeToCamel } from '../../scripts';
|
|
22
|
-
import { FilterOption } from '../../../packages/ui-datalist/src/modules/filters/modules/filterConfig/enums/FilterOption';
|
|
23
22
|
|
|
24
23
|
export default {
|
|
25
24
|
// describes reusable buttons, actions, default titles, and other ui elements
|
|
@@ -557,7 +556,7 @@ export default {
|
|
|
557
556
|
contact: ({ linked }) => {
|
|
558
557
|
return linked('vocabulary.contact');
|
|
559
558
|
},
|
|
560
|
-
|
|
559
|
+
contactGroup: ({ linked }) => {
|
|
561
560
|
return linked('cases.groupPerformers');
|
|
562
561
|
},
|
|
563
562
|
createdAt: ({ linked }) => {
|
|
@@ -587,16 +586,16 @@ export default {
|
|
|
587
586
|
hasTranscription: ({ linked }) => {
|
|
588
587
|
return linked('objects.transcription');
|
|
589
588
|
},
|
|
590
|
-
|
|
589
|
+
hasUser: ({ linked }) => {
|
|
591
590
|
return linked('objects.user');
|
|
592
591
|
},
|
|
593
592
|
impacted: ({ linked }) => {
|
|
594
593
|
return linked('cases.impacted');
|
|
595
594
|
},
|
|
596
|
-
|
|
595
|
+
contactLabel: ({ linked }) => {
|
|
597
596
|
return linked('vocabulary.labels');
|
|
598
597
|
},
|
|
599
|
-
|
|
598
|
+
contactOwner: ({ linked }) => {
|
|
600
599
|
return linked('objects.owner');
|
|
601
600
|
},
|
|
602
601
|
priority: ({ linked }) => {
|
package/src/locale/ru/ru.js
CHANGED
|
@@ -5,7 +5,6 @@ import {
|
|
|
5
5
|
ChannelType,
|
|
6
6
|
EngineRoutingSchemaType,
|
|
7
7
|
} from 'webitel-sdk';
|
|
8
|
-
import { FilterOption } from '../../../packages/ui-datalist/src/modules/filters/modules/filterConfig/enums/FilterOption';
|
|
9
8
|
|
|
10
9
|
import {
|
|
11
10
|
AuditorSections,
|
|
@@ -553,7 +552,7 @@ export default {
|
|
|
553
552
|
contact: ({ linked }) => {
|
|
554
553
|
return linked('vocabulary.contact');
|
|
555
554
|
},
|
|
556
|
-
|
|
555
|
+
contactGroup: ({ linked }) => {
|
|
557
556
|
return linked('cases.groupPerformers');
|
|
558
557
|
},
|
|
559
558
|
createdAt: ({ linked }) => {
|
|
@@ -583,16 +582,16 @@ export default {
|
|
|
583
582
|
hasTranscription: ({ linked }) => {
|
|
584
583
|
return linked('objects.transcription');
|
|
585
584
|
},
|
|
586
|
-
|
|
585
|
+
hasUser: ({ linked }) => {
|
|
587
586
|
return linked('objects.user');
|
|
588
587
|
},
|
|
589
588
|
impacted: ({ linked }) => {
|
|
590
589
|
return linked('cases.impacted');
|
|
591
590
|
},
|
|
592
|
-
|
|
591
|
+
contactLabel: ({ linked }) => {
|
|
593
592
|
return linked('vocabulary.labels');
|
|
594
593
|
},
|
|
595
|
-
|
|
594
|
+
contactOwner: ({ linked }) => {
|
|
596
595
|
return linked('objects.owner');
|
|
597
596
|
},
|
|
598
597
|
priority: ({ linked }) => {
|
package/src/locale/ua/ua.js
CHANGED
|
@@ -5,7 +5,6 @@ import {
|
|
|
5
5
|
ChannelType,
|
|
6
6
|
EngineRoutingSchemaType,
|
|
7
7
|
} from 'webitel-sdk';
|
|
8
|
-
import { FilterOption } from '../../../packages/ui-datalist/src/modules/filters/modules/filterConfig/enums/FilterOption';
|
|
9
8
|
|
|
10
9
|
import {
|
|
11
10
|
AuditorSections,
|
|
@@ -553,7 +552,7 @@ export default {
|
|
|
553
552
|
contact: ({ linked }) => {
|
|
554
553
|
return linked('vocabulary.contact');
|
|
555
554
|
},
|
|
556
|
-
|
|
555
|
+
contactGroup: ({ linked }) => {
|
|
557
556
|
return linked('cases.groupPerformers');
|
|
558
557
|
},
|
|
559
558
|
createdAt: ({ linked }) => {
|
|
@@ -583,16 +582,16 @@ export default {
|
|
|
583
582
|
hasTranscription: ({ linked }) => {
|
|
584
583
|
return linked('objects.transcription');
|
|
585
584
|
},
|
|
586
|
-
|
|
585
|
+
hasUser: ({ linked }) => {
|
|
587
586
|
return linked('objects.user');
|
|
588
587
|
},
|
|
589
588
|
impacted: ({ linked }) => {
|
|
590
589
|
return linked('cases.impacted');
|
|
591
590
|
},
|
|
592
|
-
|
|
591
|
+
contactLabel: ({ linked }) => {
|
|
593
592
|
return linked('vocabulary.labels');
|
|
594
593
|
},
|
|
595
|
-
|
|
594
|
+
contactOwner: ({ linked }) => {
|
|
596
595
|
return linked('objects.owner');
|
|
597
596
|
},
|
|
598
597
|
priority: ({ linked }) => {
|