@webitel/ui-sdk 26.8.36 → 26.8.38
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/dist/ui-sdk.js
CHANGED
|
@@ -22187,6 +22187,12 @@ var W = {
|
|
|
22187
22187
|
white-space: nowrap;
|
|
22188
22188
|
text-overflow: ellipsis;
|
|
22189
22189
|
}
|
|
22190
|
+
|
|
22191
|
+
.wt-chip__label {
|
|
22192
|
+
display: flex;
|
|
22193
|
+
align-items: center;
|
|
22194
|
+
gap: var(--spacing-xs);
|
|
22195
|
+
}
|
|
22190
22196
|
`
|
|
22191
22197
|
}, Sa = {
|
|
22192
22198
|
root: Ui.sizes,
|
package/dist/ui-sdk.umd.cjs
CHANGED
|
@@ -4893,6 +4893,12 @@ to the external chat partner.`),s.looseObject({}).describe(`ProviderSendTypingRe
|
|
|
4893
4893
|
white-space: nowrap;
|
|
4894
4894
|
text-overflow: ellipsis;
|
|
4895
4895
|
}
|
|
4896
|
+
|
|
4897
|
+
.wt-chip__label {
|
|
4898
|
+
display: flex;
|
|
4899
|
+
align-items: center;
|
|
4900
|
+
gap: var(--spacing-xs);
|
|
4901
|
+
}
|
|
4896
4902
|
`},jjt={root:ejt.sizes,colorScheme:ejt.colorScheme},Mjt={root:tjt.sizes,colorScheme:tjt.colorScheme},Njt={root:njt.sizes,colorScheme:njt.colorScheme,css:({dt:e})=>`
|
|
4897
4903
|
.p-galleria-mask {
|
|
4898
4904
|
z-index: ${e(`galleria.mask.zIndex`)} !important;
|
package/package.json
CHANGED
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
</template>
|
|
38
38
|
|
|
39
39
|
<script setup lang="ts">
|
|
40
|
-
import
|
|
40
|
+
import { OnlineSkillsAPI } from '@webitel/api-services/api';
|
|
41
|
+
import type { EngineForAgentPauseCause } from '@webitel/api-services/gen';
|
|
41
42
|
import { ref } from 'vue';
|
|
42
43
|
import { useI18n } from 'vue-i18n';
|
|
43
44
|
import { useStore } from 'vuex';
|
|
44
45
|
import { PauseNotAllowedError } from 'webitel-sdk';
|
|
45
|
-
import { OnlineSkillsAPI } from '../../../../packages/api-services/src/api/clients/onlineSkills/onlineSkills';
|
|
46
46
|
import WtSwitcher from '../../../components/wt-switcher/wt-switcher.vue';
|
|
47
47
|
import { AgentStatus } from '../../../enums';
|
|
48
48
|
import type { LookupOption } from '../../../types';
|
|
@@ -87,7 +87,7 @@ const PauseCauseAPI = PauseCauseAPIFactory(api);
|
|
|
87
87
|
const { t } = useI18n();
|
|
88
88
|
|
|
89
89
|
const isPauseCausePopup = ref(false);
|
|
90
|
-
const pauseCauses = ref<
|
|
90
|
+
const pauseCauses = ref<EngineForAgentPauseCause[]>([]);
|
|
91
91
|
const error = ref(null);
|
|
92
92
|
const chosenStatus = ref('');
|
|
93
93
|
|