@webitel/ui-sdk 23.12.118 → 23.12.120
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/package.json
CHANGED
package/src/locale/en/en.js
CHANGED
|
@@ -142,7 +142,7 @@ export default {
|
|
|
142
142
|
[EngineRoutingSchemaType.Chat]: 'Chat',
|
|
143
143
|
[EngineRoutingSchemaType.Voice]: 'Voice',
|
|
144
144
|
[EngineRoutingSchemaType.Service]: 'Service',
|
|
145
|
-
[EngineRoutingSchemaType.Processing]: '
|
|
145
|
+
[EngineRoutingSchemaType.Processing]: 'Forms',
|
|
146
146
|
},
|
|
147
147
|
},
|
|
148
148
|
},
|
package/src/locale/ru/ru.js
CHANGED
|
@@ -138,10 +138,10 @@ export default {
|
|
|
138
138
|
},
|
|
139
139
|
flow: {
|
|
140
140
|
type: {
|
|
141
|
-
[EngineRoutingSchemaType.Chat]: '
|
|
142
|
-
[EngineRoutingSchemaType.Voice]: '
|
|
143
|
-
[EngineRoutingSchemaType.Service]: '
|
|
144
|
-
[EngineRoutingSchemaType.Processing]: '
|
|
141
|
+
[EngineRoutingSchemaType.Chat]: 'Текстовая',
|
|
142
|
+
[EngineRoutingSchemaType.Voice]: 'Голосовая',
|
|
143
|
+
[EngineRoutingSchemaType.Service]: 'Служебная',
|
|
144
|
+
[EngineRoutingSchemaType.Processing]: 'Формы',
|
|
145
145
|
},
|
|
146
146
|
},
|
|
147
147
|
},
|
package/src/locale/ua/ua.js
CHANGED
|
@@ -138,10 +138,10 @@ export default {
|
|
|
138
138
|
},
|
|
139
139
|
flow: {
|
|
140
140
|
type: {
|
|
141
|
-
[EngineRoutingSchemaType.Chat]: '
|
|
142
|
-
[EngineRoutingSchemaType.Voice]: '
|
|
143
|
-
[EngineRoutingSchemaType.Service]: '
|
|
144
|
-
[EngineRoutingSchemaType.Processing]: '
|
|
141
|
+
[EngineRoutingSchemaType.Chat]: 'Текстова',
|
|
142
|
+
[EngineRoutingSchemaType.Voice]: 'Голосова',
|
|
143
|
+
[EngineRoutingSchemaType.Service]: 'Службова',
|
|
144
|
+
[EngineRoutingSchemaType.Processing]: 'Форми',
|
|
145
145
|
},
|
|
146
146
|
},
|
|
147
147
|
},
|
|
@@ -122,12 +122,15 @@ export default class TableStoreModule extends BaseStoreModule {
|
|
|
122
122
|
});
|
|
123
123
|
},
|
|
124
124
|
UPDATE_HEADER_SORT: (context, { header, nextSortOrder }) => {
|
|
125
|
-
const headers = context.state.headers.map((oldHeader) =>
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
:
|
|
130
|
-
|
|
125
|
+
const headers = context.state.headers.map((oldHeader) => {
|
|
126
|
+
const sortFieldValue = oldHeader?.sort;
|
|
127
|
+
return {
|
|
128
|
+
...oldHeader,
|
|
129
|
+
sort: oldHeader.field === header.field
|
|
130
|
+
? nextSortOrder
|
|
131
|
+
: sortFieldValue,
|
|
132
|
+
};
|
|
133
|
+
});
|
|
131
134
|
context.commit('SET_HEADERS', headers);
|
|
132
135
|
},
|
|
133
136
|
PATCH_ITEM_PROPERTY: async (context, {
|