@webitel/ui-sdk 23.12.37 → 23.12.39-vite
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/favicon.ico +0 -0
- package/dist/plyr.svg +70 -0
- package/dist/style.css +1 -0
- package/dist/ui-sdk.mjs +22666 -0
- package/dist/ui-sdk.umd.js +37 -43322
- package/package.json +19 -38
- package/src/components/on-demand/wt-cc-agent-status-timers/wt-cc-agent-status-timers.vue +3 -3
- package/src/components/transitions/wt-expand-transition.vue +2 -2
- package/src/components/wt-app-header/wt-app-header.vue +2 -2
- package/src/components/wt-app-header/wt-app-navigator.vue +6 -5
- package/src/components/wt-app-header/wt-header-actions.vue +30 -14
- package/src/components/wt-avatar/wt-avatar.vue +2 -2
- package/src/components/wt-badge/wt-badge.vue +3 -3
- package/src/components/wt-button/_variables.scss +2 -2
- package/src/components/wt-button/wt-button.vue +5 -3
- package/src/components/wt-button-select/__tests__/WtButtonSelect.spec.js +4 -4
- package/src/components/wt-button-select/wt-button-select.vue +3 -3
- package/src/components/wt-checkbox/wt-checkbox.vue +12 -7
- package/src/components/wt-chip/wt-chip.vue +6 -3
- package/src/components/wt-context-menu/wt-context-menu.vue +4 -4
- package/src/components/wt-copy-action/wt-copy-action.vue +6 -6
- package/src/components/wt-datepicker/wt-datepicker.vue +14 -12
- package/src/components/wt-divider/wt-divider.vue +1 -1
- package/src/components/wt-dummy/wt-dummy.vue +6 -2
- package/src/components/wt-error-page/wt-error-page.vue +10 -4
- package/src/components/wt-expansion-panel/wt-expansion-panel.vue +4 -4
- package/src/components/wt-filters-panel-wrapper/wt-filters-panel-wrapper.vue +7 -4
- package/src/components/wt-headline/wt-headline.vue +4 -4
- package/src/components/wt-headline-nav/wt-headline-nav.vue +11 -4
- package/src/components/wt-hint/wt-hint.vue +4 -4
- package/src/components/wt-icon/_variables.scss +1 -1
- package/src/components/wt-icon/wt-icon.vue +5 -5
- package/src/components/wt-icon-action/_internals/wt-add-icon-action.vue +2 -2
- package/src/components/wt-icon-action/_internals/wt-delete-icon-action.vue +2 -2
- package/src/components/wt-icon-action/_internals/wt-download-icon-action.vue +2 -2
- package/src/components/wt-icon-action/_internals/wt-edit-icon-action.vue +2 -2
- package/src/components/wt-icon-action/_internals/wt-history-icon-action.vue +2 -2
- package/src/components/wt-icon-action/_internals/wt-refresh-icon-action.vue +2 -2
- package/src/components/wt-icon-action/wt-icon-action.vue +1 -1
- package/src/components/wt-icon-btn/wt-icon-btn.vue +1 -1
- package/src/components/wt-indicator/wt-indicator.vue +6 -3
- package/src/components/wt-input/Readme.md +96 -0
- package/src/components/wt-input/wt-input.vue +193 -182
- package/src/components/wt-input-info/wt-input-info.vue +2 -2
- package/src/components/wt-item-link/wt-item-link.vue +1 -1
- package/src/components/wt-label/wt-label.vue +2 -2
- package/src/components/wt-load-bar/wt-load-bar.vue +5 -2
- package/src/components/wt-loader/_internals/wt-loader--md.vue +11 -2
- package/src/components/wt-loader/_internals/wt-loader--sm.vue +9 -2
- package/src/components/wt-loader/wt-loader.vue +10 -3
- package/src/components/wt-navigation-bar/wt-navigation-bar.vue +16 -8
- package/src/components/wt-notification/wt-notification.vue +3 -3
- package/src/components/wt-notifications-bar/wt-notifications-bar.vue +9 -5
- package/src/components/wt-page-header/wt-page-header.vue +7 -8
- package/src/components/wt-page-wrapper/wt-page-wrapper.vue +8 -5
- package/src/components/wt-pagination/wt-pagination.vue +17 -15
- package/src/components/wt-player/wt-player.vue +16 -16
- package/src/components/wt-popup/wt-popup.vue +13 -7
- package/src/components/wt-progress-bar/wt-progress-bar.vue +11 -7
- package/src/components/wt-radio/wt-radio.vue +15 -7
- package/src/components/wt-rounded-action/wt-rounded-action.vue +2 -2
- package/src/components/wt-search-bar/__tests__/WtSearchBar.spec.js +1 -1
- package/src/components/wt-search-bar/wt-search-bar.vue +6 -5
- package/src/components/wt-select/_multiselect.scss +0 -1
- package/src/components/wt-select/wt-select.vue +33 -19
- package/src/components/wt-slider/wt-slider.vue +5 -5
- package/src/components/wt-status-select/wt-status-select.vue +9 -9
- package/src/components/wt-stepper/wt-stepper.vue +8 -6
- package/src/components/wt-switcher/wt-switcher.vue +12 -7
- package/src/components/wt-table/wt-table.vue +110 -72
- package/src/components/wt-table-actions/wt-table-actions.vue +14 -14
- package/src/components/wt-table-column-select/wt-table-column-select.vue +28 -26
- package/src/components/wt-tabs/wt-tabs.vue +7 -7
- package/src/components/wt-tags-input/wt-tags-input.vue +23 -15
- package/src/components/wt-textarea/wt-textarea.vue +15 -10
- package/src/components/wt-time-input/wt-time-input.vue +7 -4
- package/src/components/wt-timepicker/wt-timepicker.vue +19 -15
- package/src/components/wt-tooltip/_internals/wt-tooltip-floating.vue +2 -2
- package/src/components/wt-tooltip/wt-tooltip.vue +4 -4
- package/src/composables/useCachedInterval/__tests__/useCachedInterval.spec.js +5 -5
- package/src/css/styleguide/colors/_colors.scss +25 -24
- package/src/css/styleguide/colors/reusable/_text-field.scss +20 -0
- package/src/locale/.DS_Store +0 -0
- package/src/locale/en/en.js +1 -0
- package/src/locale/es/es.js +1 -0
- package/src/locale/i18n.js +1 -1
- package/src/locale/kz/kz.js +4 -0
- package/src/locale/ru/ru.js +1 -0
- package/src/locale/ua/ua.js +1 -0
- package/src/mixins/validationMixin/useValidation.js +2 -2
- package/src/modules/AgentStatusSelect/components/__tests__/wt-cc-agent-status-select.spec.js +4 -4
- package/src/modules/AgentStatusSelect/components/_internals/wt-cc-pause-cause-popup.vue +11 -9
- package/src/modules/AgentStatusSelect/components/_internals/wt-cc-status-select-error-popup.vue +6 -5
- package/src/modules/AgentStatusSelect/components/wt-cc-agent-status-select.vue +3 -3
- package/src/modules/AuditForm/components/__tests__/audit-form.spec.js +1 -1
- package/src/modules/AuditForm/components/audit-form-question-read-wrapper.vue +10 -6
- package/src/modules/AuditForm/components/audit-form-question-write-wrapper.vue +8 -8
- package/src/modules/AuditForm/components/audit-form-question.vue +8 -8
- package/src/modules/AuditForm/components/audit-form.vue +6 -5
- package/src/modules/AuditForm/components/questions/options/audit-form-question-options-write-row.vue +4 -4
- package/src/modules/AuditForm/components/questions/options/audit-form-question-options.vue +7 -4
- package/src/modules/AuditForm/components/questions/score/audit-form-question-score.vue +3 -3
- package/src/modules/CSVExport/__tests__/CSVExport.spec.js +2 -2
- package/src/modules/DeleteConfirmationPopup/__tests__/delete-confirmation-popup.spec.js +6 -6
- package/src/modules/DeleteConfirmationPopup/components/delete-confirmation-popup.vue +13 -6
- package/src/modules/FilesExport/__tests__/FilesExport.spec.js +3 -3
- package/src/modules/Filters/components/filter-pagination.vue +1 -1
- package/src/modules/Filters/components/filter-table-fields.vue +1 -1
- package/src/modules/Notifications/store/__tests__/NotificationsStoreModule.actions.spec.js +3 -3
- package/src/modules/QueryFilters/classes/__tests__/ApiFilterSchema.spec.js +1 -1
- package/src/modules/QueryFilters/components/__tests__/abstract-api-filter.spec.js +4 -4
- package/src/modules/QueryFilters/components/__tests__/filter-datetime.spec.js +2 -2
- package/src/modules/QueryFilters/components/__tests__/filter-from-to.spec.js +4 -4
- package/src/modules/QueryFilters/components/__tests__/filter-search.spec.js +2 -2
- package/src/modules/QueryFilters/components/abstract-api-filter.vue +2 -2
- package/src/modules/QueryFilters/components/abstract-enum-filter.vue +2 -2
- package/src/modules/QueryFilters/components/filter-datetime.vue +2 -2
- package/src/modules/QueryFilters/components/filter-from-to.vue +12 -10
- package/src/modules/QueryFilters/components/filter-search.vue +2 -2
- package/src/modules/QueryFilters/components/filter-table-fields.vue +7 -7
- package/src/modules/QueryFilters/mixins/__tests__/apiFilterMixin.spec.js +1 -1
- package/src/modules/QueryFilters/mixins/__tests__/enumFilterMixin.spec.js +2 -2
- package/src/modules/QueryFilters/mixins/__tests__/paginationFilterMixin.spec.js +2 -2
- package/src/modules/QueryFilters/mixins/__tests__/sortFilterMixin.spec.js +1 -1
- package/src/modules/QueryFilters/store/__tests__/QueryFiltersStoreModule.spec.js +2 -2
- package/src/modules/Userinfo/components/__tests__/auth.spec.js +4 -4
- package/src/modules/Userinfo/components/the-auth.vue +7 -4
- package/src/store/BaseStoreModules/__tests__/BaseStoreModule.spec.js +6 -6
- package/dist/demo.html +0 -1
- package/dist/img/plyr.svg +0 -68
- package/dist/img/sprite/account.svg +0 -4
- package/dist/img/sprite/adfs.svg +0 -5
- package/dist/img/sprite/app-navigator.svg +0 -11
- package/dist/img/sprite/arrow-down.svg +0 -3
- package/dist/img/sprite/arrow-left.svg +0 -3
- package/dist/img/sprite/arrow-mix.svg +0 -5
- package/dist/img/sprite/arrow-right.svg +0 -3
- package/dist/img/sprite/arrow-up.svg +0 -3
- package/dist/img/sprite/attach.svg +0 -3
- package/dist/img/sprite/attention.svg +0 -3
- package/dist/img/sprite/azure.svg +0 -19
- package/dist/img/sprite/back.svg +0 -4
- package/dist/img/sprite/bell-badged.svg +0 -4
- package/dist/img/sprite/bell.svg +0 -3
- package/dist/img/sprite/bucket.svg +0 -3
- package/dist/img/sprite/calendar.svg +0 -3
- package/dist/img/sprite/call--filled.svg +0 -3
- package/dist/img/sprite/call-add-to--filled.svg +0 -4
- package/dist/img/sprite/call-add-to.svg +0 -4
- package/dist/img/sprite/call-disconnect--filled.svg +0 -3
- package/dist/img/sprite/call-disconnect.svg +0 -3
- package/dist/img/sprite/call-end--filled.svg +0 -3
- package/dist/img/sprite/call-end.svg +0 -3
- package/dist/img/sprite/call-inbound--filled.svg +0 -4
- package/dist/img/sprite/call-inbound.svg +0 -3
- package/dist/img/sprite/call-missed--filled.svg +0 -4
- package/dist/img/sprite/call-missed.svg +0 -3
- package/dist/img/sprite/call-outbound--filled.svg +0 -3
- package/dist/img/sprite/call-outbound.svg +0 -3
- package/dist/img/sprite/call-ringing--filled.svg +0 -5
- package/dist/img/sprite/call-ringing.svg +0 -3
- package/dist/img/sprite/call-transfer--filled.svg +0 -4
- package/dist/img/sprite/call-transfer.svg +0 -3
- package/dist/img/sprite/call.svg +0 -3
- package/dist/img/sprite/chat--filled.svg +0 -3
- package/dist/img/sprite/chat-emoji.svg +0 -3
- package/dist/img/sprite/chat-end--filled.svg +0 -3
- package/dist/img/sprite/chat-end.svg +0 -4
- package/dist/img/sprite/chat-group.svg +0 -5
- package/dist/img/sprite/chat-join.svg +0 -4
- package/dist/img/sprite/chat-message-status-read.svg +0 -3
- package/dist/img/sprite/chat-message-status-sent.svg +0 -3
- package/dist/img/sprite/chat-quick-response--filled.svg +0 -3
- package/dist/img/sprite/chat-quick-response.svg +0 -3
- package/dist/img/sprite/chat-reply.svg +0 -3
- package/dist/img/sprite/chat-send.svg +0 -6
- package/dist/img/sprite/chat-transfer--filled.svg +0 -3
- package/dist/img/sprite/chat-transfer.svg +0 -4
- package/dist/img/sprite/chat.svg +0 -3
- package/dist/img/sprite/checkbox--checked--filled.svg +0 -3
- package/dist/img/sprite/checkbox--checked.svg +0 -3
- package/dist/img/sprite/checkbox.svg +0 -3
- package/dist/img/sprite/clear.svg +0 -3
- package/dist/img/sprite/close--filled.svg +0 -3
- package/dist/img/sprite/close.svg +0 -3
- package/dist/img/sprite/collapse.svg +0 -5
- package/dist/img/sprite/column-select.svg +0 -4
- package/dist/img/sprite/conference.svg +0 -8
- package/dist/img/sprite/contacts.svg +0 -3
- package/dist/img/sprite/copy.svg +0 -3
- package/dist/img/sprite/docs.svg +0 -6
- package/dist/img/sprite/done.svg +0 -4
- package/dist/img/sprite/download.svg +0 -5
- package/dist/img/sprite/edit.svg +0 -3
- package/dist/img/sprite/email.svg +0 -3
- package/dist/img/sprite/expand.svg +0 -5
- package/dist/img/sprite/eye--closed.svg +0 -5
- package/dist/img/sprite/eye--opened.svg +0 -4
- package/dist/img/sprite/filter.svg +0 -5
- package/dist/img/sprite/generate.svg +0 -4
- package/dist/img/sprite/google.svg +0 -6
- package/dist/img/sprite/history.svg +0 -4
- package/dist/img/sprite/hold.svg +0 -3
- package/dist/img/sprite/idle.svg +0 -4
- package/dist/img/sprite/index.js +0 -1
- package/dist/img/sprite/instagram.svg +0 -28
- package/dist/img/sprite/job--accept.svg +0 -4
- package/dist/img/sprite/job--end.svg +0 -4
- package/dist/img/sprite/job.svg +0 -5
- package/dist/img/sprite/link.svg +0 -8
- package/dist/img/sprite/lock.svg +0 -3
- package/dist/img/sprite/logout.svg +0 -3
- package/dist/img/sprite/mail--color.svg +0 -4
- package/dist/img/sprite/mail.svg +0 -3
- package/dist/img/sprite/menu.svg +0 -3
- package/dist/img/sprite/messenger-facebook--filled.svg +0 -3
- package/dist/img/sprite/messenger-facebook.svg +0 -9
- package/dist/img/sprite/messenger-infobip.svg +0 -5
- package/dist/img/sprite/messenger-messenger.svg +0 -12
- package/dist/img/sprite/messenger-telegram--filled.svg +0 -3
- package/dist/img/sprite/messenger-telegram.svg +0 -10
- package/dist/img/sprite/messenger-viber--filled.svg +0 -3
- package/dist/img/sprite/messenger-viber.svg +0 -3
- package/dist/img/sprite/messenger-web-chat.svg +0 -7
- package/dist/img/sprite/messenger-whatsapp--filled.svg +0 -4
- package/dist/img/sprite/messenger-whatsapp.svg +0 -10
- package/dist/img/sprite/meta.svg +0 -17
- package/dist/img/sprite/mic-muted.svg +0 -6
- package/dist/img/sprite/mic.svg +0 -4
- package/dist/img/sprite/move.svg +0 -6
- package/dist/img/sprite/note.svg +0 -3
- package/dist/img/sprite/numpad.svg +0 -24
- package/dist/img/sprite/options.svg +0 -5
- package/dist/img/sprite/pause.svg +0 -3
- package/dist/img/sprite/pin.svg +0 -3
- package/dist/img/sprite/play.svg +0 -4
- package/dist/img/sprite/plus.svg +0 -3
- package/dist/img/sprite/preview-tag-application.svg +0 -6
- package/dist/img/sprite/preview-tag-audio.svg +0 -4
- package/dist/img/sprite/preview-tag-image.svg +0 -4
- package/dist/img/sprite/preview-tag-video.svg +0 -4
- package/dist/img/sprite/prompter.svg +0 -3
- package/dist/img/sprite/queue-member.svg +0 -3
- package/dist/img/sprite/radio--checked.svg +0 -4
- package/dist/img/sprite/radio.svg +0 -3
- package/dist/img/sprite/rec-off.svg +0 -3
- package/dist/img/sprite/rec.svg +0 -4
- package/dist/img/sprite/refresh.svg +0 -4
- package/dist/img/sprite/role.svg +0 -3
- package/dist/img/sprite/rounded-info.svg +0 -3
- package/dist/img/sprite/scorecard.svg +0 -4
- package/dist/img/sprite/search.svg +0 -3
- package/dist/img/sprite/send-arrow.svg +0 -4
- package/dist/img/sprite/settings.svg +0 -3
- package/dist/img/sprite/sort-arrow-down.svg +0 -4
- package/dist/img/sprite/sort-arrow-up.svg +0 -4
- package/dist/img/sprite/sound-off.svg +0 -4
- package/dist/img/sprite/sound-on.svg +0 -3
- package/dist/img/sprite/star--filled.svg +0 -3
- package/dist/img/sprite/star.svg +0 -3
- package/dist/img/sprite/stop.svg +0 -4
- package/dist/img/sprite/stt-download.svg +0 -4
- package/dist/img/sprite/stt-search.svg +0 -3
- package/dist/img/sprite/stt.svg +0 -4
- package/dist/img/sprite/telegram-bot.svg +0 -6
- package/dist/img/sprite/tick.svg +0 -3
- package/dist/img/sprite/tts-download.svg +0 -5
- package/dist/img/sprite/unpin.svg +0 -5
- package/dist/img/sprite/upload.svg +0 -5
- package/dist/img/sprite/user.svg +0 -3
- package/dist/img/sprite/video-cam-off.svg +0 -4
- package/dist/img/sprite/video-cam.svg +0 -3
- package/dist/img/sprite/zoom-in.svg +0 -3
- package/dist/img/sprite/zoom-out.svg +0 -4
- package/dist/ui-sdk.common.js +0 -43304
- package/dist/ui-sdk.common.js.map +0 -1
- package/dist/ui-sdk.css +0 -1
- package/dist/ui-sdk.umd.js.map +0 -1
- package/dist/ui-sdk.umd.min.js +0 -35
- package/dist/ui-sdk.umd.min.js.map +0 -1
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
}"
|
|
9
9
|
>
|
|
10
10
|
<wt-label
|
|
11
|
-
v-bind="labelProps"
|
|
12
11
|
v-if="hasLabel"
|
|
12
|
+
v-bind="labelProps"
|
|
13
13
|
:for="name"
|
|
14
14
|
:outline="outline"
|
|
15
15
|
:disabled="disabled"
|
|
@@ -19,7 +19,9 @@
|
|
|
19
19
|
<slot
|
|
20
20
|
v-bind="{ label }"
|
|
21
21
|
name="label"
|
|
22
|
-
>
|
|
22
|
+
>
|
|
23
|
+
{{ label }}
|
|
24
|
+
</slot>
|
|
23
25
|
</wt-label>
|
|
24
26
|
<div class="wt-time-input__wrapper">
|
|
25
27
|
<input
|
|
@@ -36,7 +38,8 @@
|
|
|
36
38
|
<wt-input-info
|
|
37
39
|
v-if="showInfo"
|
|
38
40
|
:invalid="invalid"
|
|
39
|
-
>
|
|
41
|
+
>
|
|
42
|
+
{{ validationText }}
|
|
40
43
|
</wt-input-info>
|
|
41
44
|
</div>
|
|
42
45
|
</template>
|
|
@@ -45,7 +48,7 @@
|
|
|
45
48
|
import validationMixin from '../../mixins/validationMixin/validationMixin';
|
|
46
49
|
|
|
47
50
|
export default {
|
|
48
|
-
name: '
|
|
51
|
+
name: 'WtTimeInput',
|
|
49
52
|
mixins: [validationMixin],
|
|
50
53
|
props: {
|
|
51
54
|
/**
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
2
|
+
<div
|
|
3
|
+
class="wt-timepicker"
|
|
4
|
+
:class="{'wt-timepicker--invalid': invalid}"
|
|
5
|
+
>
|
|
3
6
|
<wt-label
|
|
4
|
-
v-bind="labelProps"
|
|
5
7
|
v-if="label"
|
|
8
|
+
v-bind="labelProps"
|
|
6
9
|
:invalid="invalid"
|
|
7
10
|
>
|
|
8
11
|
{{ `${label} (${format})` }}
|
|
@@ -13,36 +16,37 @@
|
|
|
13
16
|
:value="hour"
|
|
14
17
|
:v="v"
|
|
15
18
|
:label="label ? null : $t('webitelUI.timepicker.hour') "
|
|
16
|
-
:
|
|
19
|
+
:max-value="dateMode ? null : 23"
|
|
17
20
|
:disabled="disabled"
|
|
18
21
|
hide-input-info
|
|
19
22
|
@input="hour = $event"
|
|
20
|
-
|
|
23
|
+
/>
|
|
21
24
|
<wt-time-input
|
|
22
25
|
v-if="isMin"
|
|
23
26
|
:value="min"
|
|
24
27
|
:v="v"
|
|
25
28
|
:label="label ? null : $t('webitelUI.timepicker.min')"
|
|
26
|
-
:
|
|
29
|
+
:max-value="59"
|
|
27
30
|
:disabled="disabled"
|
|
28
31
|
hide-input-info
|
|
29
32
|
@input="min = $event"
|
|
30
|
-
|
|
33
|
+
/>
|
|
31
34
|
<wt-time-input
|
|
32
35
|
v-if="isSec"
|
|
33
36
|
:value="sec"
|
|
34
37
|
:v="v"
|
|
35
|
-
:label="label ? null :
|
|
36
|
-
:
|
|
38
|
+
:label="label ? null : $t('webitelUI.timepicker.sec')"
|
|
39
|
+
:max-value="59"
|
|
37
40
|
:disabled="disabled"
|
|
38
41
|
hide-input-info
|
|
39
42
|
@input="sec = $event"
|
|
40
|
-
|
|
43
|
+
/>
|
|
41
44
|
</div>
|
|
42
45
|
<wt-input-info
|
|
43
46
|
v-if="isValidation"
|
|
44
47
|
:invalid="invalid"
|
|
45
|
-
>
|
|
48
|
+
>
|
|
49
|
+
{{ validationText }}
|
|
46
50
|
</wt-input-info>
|
|
47
51
|
</div>
|
|
48
52
|
</template>
|
|
@@ -54,8 +58,12 @@ const SEC_IN_HOUR = 60 * 60;
|
|
|
54
58
|
const SEC_IN_MIN = 60;
|
|
55
59
|
|
|
56
60
|
export default {
|
|
57
|
-
name: '
|
|
61
|
+
name: 'WtTimepicker',
|
|
58
62
|
mixins: [validationMixin],
|
|
63
|
+
model: {
|
|
64
|
+
prop: 'value',
|
|
65
|
+
event: 'input',
|
|
66
|
+
},
|
|
59
67
|
props: {
|
|
60
68
|
value: {
|
|
61
69
|
type: [String, Number],
|
|
@@ -82,10 +90,6 @@ export default {
|
|
|
82
90
|
description: 'Object with props, passed down to wt-label as props',
|
|
83
91
|
},
|
|
84
92
|
},
|
|
85
|
-
model: {
|
|
86
|
-
prop: 'value',
|
|
87
|
-
event: 'input',
|
|
88
|
-
},
|
|
89
93
|
|
|
90
94
|
computed: {
|
|
91
95
|
isHour() {
|
|
@@ -3,27 +3,27 @@
|
|
|
3
3
|
:class="{
|
|
4
4
|
'wt-tooltip--contrast': contrast,
|
|
5
5
|
'wt-tooltip--visible': isVisible,
|
|
6
|
-
|
|
6
|
+
}"
|
|
7
7
|
class="wt-tooltip"
|
|
8
8
|
>
|
|
9
9
|
<div
|
|
10
10
|
ref="activator"
|
|
11
11
|
class="wt-tooltip__activator"
|
|
12
12
|
>
|
|
13
|
-
<slot name="activator"
|
|
13
|
+
<slot name="activator" />
|
|
14
14
|
</div>
|
|
15
15
|
<wt-tooltip-floating
|
|
16
16
|
v-if="isVisible"
|
|
17
17
|
ref="floating"
|
|
18
|
-
class="wt-tooltip__floating"
|
|
19
18
|
v-clickaway="hideTooltip"
|
|
19
|
+
class="wt-tooltip__floating"
|
|
20
20
|
:class="[popperClass]"
|
|
21
21
|
:style="floatingStyles"
|
|
22
22
|
:triggers="popperTriggers"
|
|
23
23
|
@show="showTooltip"
|
|
24
24
|
@hide="hideTooltip"
|
|
25
25
|
>
|
|
26
|
-
<slot v-bind="{ hide: hideTooltip }"
|
|
26
|
+
<slot v-bind="{ hide: hideTooltip }" />
|
|
27
27
|
</wt-tooltip-floating>
|
|
28
28
|
</div>
|
|
29
29
|
</template>
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { useCachedInterval } from '../useCachedInterval';
|
|
2
2
|
|
|
3
3
|
describe('useCachedInterval', () => {
|
|
4
|
-
it('subscribe', (
|
|
5
|
-
const callback =
|
|
4
|
+
it('subscribe', async () => {
|
|
5
|
+
const callback = vi.fn();
|
|
6
6
|
const { subscribe } = useCachedInterval({ timeout: 10 });
|
|
7
7
|
subscribe(callback);
|
|
8
8
|
expect(callback).toHaveBeenCalledTimes(1);
|
|
9
|
-
setTimeout(() => {
|
|
9
|
+
return await new Promise((resolve, reject) => setTimeout(() => {
|
|
10
10
|
expect(callback).toHaveBeenCalledTimes(2);
|
|
11
|
-
|
|
12
|
-
}, 10);
|
|
11
|
+
resolve();
|
|
12
|
+
}, 10));
|
|
13
13
|
});
|
|
14
14
|
});
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@import './deprecated';
|
|
2
2
|
@import './palette';
|
|
3
|
+
@import './reusable/text-field';
|
|
3
4
|
|
|
4
5
|
:root {
|
|
5
6
|
// dp colors
|
|
@@ -35,59 +36,59 @@
|
|
|
35
36
|
--success-color: var(--green-darken-4);
|
|
36
37
|
--success-hover-color: var(--green-darken-3);
|
|
37
38
|
--success-light-color: var(--green-lighten-4);
|
|
38
|
-
--on-
|
|
39
|
+
--success-on-color: var(--black);
|
|
39
40
|
|
|
40
41
|
// warning colors
|
|
41
42
|
--warning-color: var(--orange-accent-2);
|
|
42
43
|
--warning-hover-color: var(--orange-accent-1);
|
|
43
44
|
--warning-light-color: var(--orange-lighten-4);
|
|
44
|
-
--on-
|
|
45
|
+
--warning-on-color: var(--black);
|
|
45
46
|
|
|
46
47
|
// error colors
|
|
47
48
|
--error-color: var(--red-accent-2);
|
|
48
49
|
--error-hover-color: var(--red-lighten-2);
|
|
49
50
|
--error-light-color: var(--red-lighten-4);
|
|
50
|
-
--on-
|
|
51
|
+
--error-on-color: var(--black);
|
|
51
52
|
|
|
52
53
|
// info colors
|
|
53
54
|
--info-color: var(--blue-darken-1);
|
|
54
55
|
--info-hover-color: var(--blue-lighten-1);
|
|
55
56
|
--info-light-color: var(--blue-lighten-4);
|
|
56
|
-
--on-
|
|
57
|
+
--info-on-color: var(--black);
|
|
57
58
|
|
|
58
59
|
// job colors
|
|
59
60
|
--job-color: var(--blue-darken-1);
|
|
60
61
|
--job-hover-color: var(--blue-lighten-1);
|
|
61
62
|
--job-light-color: var(--blue-lighten-4);
|
|
62
|
-
--on-
|
|
63
|
+
--job-on-color: var(--black);
|
|
63
64
|
|
|
64
65
|
// chat colors
|
|
65
66
|
--chat-color: var(--indigo-accent-2);
|
|
66
67
|
--chat-hover-color: var(--indigo-accent-2);
|
|
67
68
|
--chat-light-color: var(--indigo-lighten-4);
|
|
68
|
-
--on-
|
|
69
|
+
--chat-on-color: var(--black);
|
|
69
70
|
|
|
70
71
|
// transfer colors
|
|
71
72
|
--transfer-color: var(--indigo-lighten-1);
|
|
72
73
|
--transfer-hover-color: var(--indigo-lighten-2);
|
|
73
74
|
--transfer-light-color: var(--indigo-lighten-4);
|
|
74
|
-
--on-
|
|
75
|
+
--transfer-on-color: var(--white);
|
|
75
76
|
|
|
76
77
|
// primary colors
|
|
77
78
|
--primary-color: var(--amber-accent-3);
|
|
78
79
|
--primary-hover-color: var(--amber-accent-2);
|
|
79
80
|
--primary-light-color: var(--amber-lighten-4);
|
|
80
|
-
--on-
|
|
81
|
+
--primary-on-color: var(--black);
|
|
81
82
|
|
|
82
83
|
// accent colors
|
|
83
84
|
--accent-color: var(--purple-lighten-1);
|
|
84
85
|
--sub-accent-color: var(--indigo-darken-3);
|
|
85
86
|
|
|
86
87
|
// typography colors
|
|
87
|
-
--main-
|
|
88
|
-
--
|
|
89
|
-
--
|
|
90
|
-
--link-color: var(--info-color);
|
|
88
|
+
--text-main-color: var(--grey-darken-3);
|
|
89
|
+
--text-disabled-color: var(--grey-lighten-1);
|
|
90
|
+
--text-error-color: var(--error-color);
|
|
91
|
+
--text-link-color: var(--info-color);
|
|
91
92
|
}
|
|
92
93
|
|
|
93
94
|
:root.theme--dark {
|
|
@@ -124,57 +125,57 @@
|
|
|
124
125
|
--success-color: var(--green-darken-4);
|
|
125
126
|
--success-hover-color: var(--green-darken-3);
|
|
126
127
|
--success-light-color: var(--green-lighten-3);
|
|
127
|
-
--on-
|
|
128
|
+
--success-on-color: var(--white);
|
|
128
129
|
|
|
129
130
|
// warning colors
|
|
130
131
|
--warning-color: var(--orange-accent-2);
|
|
131
132
|
--warning-hover-color: var(--orange-accent-1);
|
|
132
133
|
--warning-light-color: var(--orange-lighten-3);
|
|
133
|
-
--on-
|
|
134
|
+
--warning-on-color: var(--white);
|
|
134
135
|
|
|
135
136
|
// error colors
|
|
136
137
|
--error-color: var(--red-accent-2);
|
|
137
138
|
--error-hover-color: var(--red-lighten-2);
|
|
138
139
|
--error-light-color: var(--red-lighten-3);
|
|
139
|
-
--on-
|
|
140
|
+
--error-on-color: var(--white);
|
|
140
141
|
|
|
141
142
|
// info colors
|
|
142
143
|
--info-color: var(--blue-darken-1);
|
|
143
144
|
--info-hover-color: var(--blue-lighten-1);
|
|
144
145
|
--info-light-color: var(--blue-lighten-3);
|
|
145
|
-
--on-
|
|
146
|
+
--info-on-color: var(--white);
|
|
146
147
|
|
|
147
148
|
// job colors
|
|
148
149
|
--job-color: var(--blue-darken-1);
|
|
149
150
|
--job-hover-color: var(--blue-lighten-1);
|
|
150
151
|
--job-light-color: var(--blue-lighten-3);
|
|
151
|
-
--on-
|
|
152
|
+
--job-on-color: var(--white);
|
|
152
153
|
|
|
153
154
|
// chat colors
|
|
154
155
|
--chat-color: var(--indigo-accent-2);
|
|
155
156
|
--chat-hover-color: var(--indigo-accent-2);
|
|
156
157
|
--chat-light-color: var(--indigo-lighten-3);
|
|
157
|
-
--on-
|
|
158
|
+
--chat-on-color: var(--white);
|
|
158
159
|
|
|
159
160
|
// transfer colors
|
|
160
161
|
--transfer-color: var(--indigo-darken-1);
|
|
161
162
|
--transfer-hover-color: var(--indigo-lighten-1);
|
|
162
163
|
--transfer-light-color: var(--indigo-lighten-4);
|
|
163
|
-
--on-
|
|
164
|
+
--transfer-on-color: var(--white);
|
|
164
165
|
|
|
165
166
|
// primary colors
|
|
166
167
|
--primary-color: var(--amber-accent-2);
|
|
167
168
|
--primary-hover-color: var(--amber-accent-3);
|
|
168
169
|
--primary-light-color: var(--amber-lighten-4);
|
|
169
|
-
--on-
|
|
170
|
+
--primary-on-color: var(--black);
|
|
170
171
|
|
|
171
172
|
// accent colors
|
|
172
173
|
--accent-color: var(--purple-lighten-1);
|
|
173
174
|
--sub-accent-color: var(--indigo-darken-3);
|
|
174
175
|
|
|
175
176
|
// typography colors
|
|
176
|
-
--main-
|
|
177
|
-
--
|
|
178
|
-
--
|
|
179
|
-
--link-color: var(--info-color);
|
|
177
|
+
--text-main-color: var(--grey-lighten-3);
|
|
178
|
+
--text-disabled-color: var(--grey-darken-1);
|
|
179
|
+
--text-error-color: var(--error-color);
|
|
180
|
+
--text-link-color: var(--info-color);
|
|
180
181
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// shared text field colors
|
|
2
|
+
|
|
3
|
+
:root {
|
|
4
|
+
// TODO: move to separate helper-text component
|
|
5
|
+
--wt-helper-text-color: var(--text-main-color);
|
|
6
|
+
--wt-helper-text-disabled-color: var(--text-disabled-color);
|
|
7
|
+
|
|
8
|
+
--wt-text-field-error-text-color: var(--error-color);
|
|
9
|
+
--wt-text-field-placeholder-color: var(--text-main-color);
|
|
10
|
+
--wt-text-field-placeholder-error-color: var(--error-color);
|
|
11
|
+
--wt-text-field-placeholder-disabled-color: var(--text-disabled-color);
|
|
12
|
+
|
|
13
|
+
--wt-text-field-input-border-color: var(--grey-darken-1);
|
|
14
|
+
--wt-text-field-input-border-disabled-color: var(--dp-16-surface-color);
|
|
15
|
+
--wt-text-field-input-border-error-color: var(--error-color);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
:root.theme--dark {
|
|
19
|
+
--wt-text-field-input-border-color: var(--grey-lighten-1);
|
|
20
|
+
}
|
|
Binary file
|
package/src/locale/en/en.js
CHANGED
package/src/locale/es/es.js
CHANGED
package/src/locale/i18n.js
CHANGED
package/src/locale/kz/kz.js
CHANGED
package/src/locale/ru/ru.js
CHANGED
package/src/locale/ua/ua.js
CHANGED
|
@@ -3,12 +3,12 @@ import { useI18n } from 'vue-i18n';
|
|
|
3
3
|
|
|
4
4
|
export function useValidation({ v, customValidators }) {
|
|
5
5
|
const { t } = useI18n();
|
|
6
|
-
const isValidation = computed(() => !!v.value && !!Object.keys(v.value).length);
|
|
6
|
+
const isValidation = computed(() => !!v && !!v.value && !!Object.keys(v.value).length);
|
|
7
7
|
const invalid = computed(() => isValidation.value && v.value.$error);
|
|
8
8
|
|
|
9
9
|
const validationText = computed(() => {
|
|
10
10
|
let validationText = '';
|
|
11
|
-
if (isValidation && invalid) {
|
|
11
|
+
if (isValidation.value && invalid) {
|
|
12
12
|
if (v.value.required?.$invalid) validationText = t('validation.required');
|
|
13
13
|
else if (v.value.numeric?.$invalid) validationText = t('validation.numeric');
|
|
14
14
|
else if (v.value.email?.$invalid) validationText = t('validation.email');
|
package/src/modules/AgentStatusSelect/components/__tests__/wt-cc-agent-status-select.spec.js
CHANGED
|
@@ -6,13 +6,13 @@ import * as PauseCauseAPIFactory from '../../api/pause-cause';
|
|
|
6
6
|
import WtCcAgentStatusSelect from '../wt-cc-agent-status-select.vue';
|
|
7
7
|
|
|
8
8
|
const pauseCauses = [{ name: 'jest1' }, { name: 'jest2' }];
|
|
9
|
-
const getAgentPauseCausesMock =
|
|
9
|
+
const getAgentPauseCausesMock = vi.fn(() => ({ items: pauseCauses }));
|
|
10
10
|
// https://stackoverflow.com/a/63727813
|
|
11
|
-
|
|
11
|
+
vi.spyOn(PauseCauseAPIFactory, 'default').mockImplementation(() => ({ getList: getAgentPauseCausesMock }));
|
|
12
12
|
|
|
13
|
-
const agentStatusMock =
|
|
13
|
+
const agentStatusMock = vi.fn(() => {});
|
|
14
14
|
// https://stackoverflow.com/a/63727813
|
|
15
|
-
|
|
15
|
+
vi.spyOn(AgentStatusAPIFactory, 'default').mockImplementation(() => ({ patch: agentStatusMock }));
|
|
16
16
|
|
|
17
17
|
const agent = {
|
|
18
18
|
status: '',
|
|
@@ -4,16 +4,16 @@
|
|
|
4
4
|
min-width="480"
|
|
5
5
|
@close="close"
|
|
6
6
|
>
|
|
7
|
-
<template
|
|
7
|
+
<template #title>
|
|
8
8
|
{{ $t('webitelUI.agentStatusSelect.pauseCausePopup.title') }}
|
|
9
9
|
</template>
|
|
10
|
-
<template
|
|
10
|
+
<template #main>
|
|
11
11
|
<form @submit.prevent="setPause">
|
|
12
12
|
<ul>
|
|
13
13
|
<li
|
|
14
|
-
class="wt-cc-pause-cause-popup-option"
|
|
15
14
|
v-for="(option) of pauseCause"
|
|
16
15
|
:key="option.id"
|
|
16
|
+
class="wt-cc-pause-cause-popup-option"
|
|
17
17
|
>
|
|
18
18
|
<wt-radio
|
|
19
19
|
class="wt-cc-pause-cause-popup-option__radio"
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
:value="option.id"
|
|
22
22
|
:label="option.name"
|
|
23
23
|
@input="select(option)"
|
|
24
|
-
|
|
24
|
+
/>
|
|
25
25
|
<div class="wt-cc-pause-cause-popup-option__limits-wrapper">
|
|
26
26
|
<span
|
|
27
27
|
:class="{
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
'wt-cc-pause-cause-popup-option__duration--overflow': option.isOverflow,
|
|
29
|
+
}"
|
|
30
30
|
>
|
|
31
31
|
{{ option.duration }}
|
|
32
32
|
</span>
|
|
@@ -37,16 +37,18 @@
|
|
|
37
37
|
</ul>
|
|
38
38
|
</form>
|
|
39
39
|
</template>
|
|
40
|
-
<template
|
|
40
|
+
<template #actions>
|
|
41
41
|
<wt-button
|
|
42
42
|
:disabled="!selected"
|
|
43
43
|
@click="setPause"
|
|
44
|
-
>
|
|
44
|
+
>
|
|
45
|
+
{{ $t('reusable.ok') }}
|
|
45
46
|
</wt-button>
|
|
46
47
|
<wt-button
|
|
47
48
|
color="secondary"
|
|
48
49
|
@click="close"
|
|
49
|
-
>
|
|
50
|
+
>
|
|
51
|
+
{{ $t('reusable.cancel') }}
|
|
50
52
|
</wt-button>
|
|
51
53
|
</template>
|
|
52
54
|
</wt-popup>
|
package/src/modules/AgentStatusSelect/components/_internals/wt-cc-status-select-error-popup.vue
CHANGED
|
@@ -4,25 +4,26 @@
|
|
|
4
4
|
min-width="480"
|
|
5
5
|
@close="close"
|
|
6
6
|
>
|
|
7
|
-
<template
|
|
7
|
+
<template #header>
|
|
8
8
|
{{ $t('webitelUI.agentStatusSelect.statusSelectErrorPopup.title') }}
|
|
9
9
|
</template>
|
|
10
|
-
<template
|
|
10
|
+
<template #main>
|
|
11
11
|
<article class="wt-cc-status-select-error-popup__main-wrapper">
|
|
12
12
|
<wt-icon
|
|
13
13
|
icon="attention"
|
|
14
14
|
color="danger"
|
|
15
|
-
|
|
15
|
+
/>
|
|
16
16
|
<p class="wt-cc-status-select-error-popup__message">
|
|
17
17
|
{{ $t('webitelUI.agentStatusSelect.statusSelectErrorPopup.message') }}
|
|
18
18
|
</p>
|
|
19
19
|
</article>
|
|
20
20
|
</template>
|
|
21
|
-
<template
|
|
21
|
+
<template #actions>
|
|
22
22
|
<wt-button
|
|
23
23
|
color="secondary"
|
|
24
24
|
@click="close"
|
|
25
|
-
>
|
|
25
|
+
>
|
|
26
|
+
{{ $t('reusable.ok') }}
|
|
26
27
|
</wt-button>
|
|
27
28
|
</template>
|
|
28
29
|
</wt-popup>
|
|
@@ -4,18 +4,18 @@
|
|
|
4
4
|
:status="status"
|
|
5
5
|
:status-duration="statusDuration"
|
|
6
6
|
@change="handleStatusSelectInput"
|
|
7
|
-
|
|
7
|
+
/>
|
|
8
8
|
<pause-cause-popup
|
|
9
9
|
v-if="isPauseCausePopup"
|
|
10
10
|
:options="pauseCauses"
|
|
11
11
|
@change="handlePauseCauseInput"
|
|
12
12
|
@close="closePauseCausePopup"
|
|
13
|
-
|
|
13
|
+
/>
|
|
14
14
|
<status-select-error-popup
|
|
15
15
|
v-if="error"
|
|
16
16
|
:error="error"
|
|
17
17
|
@close="error = null"
|
|
18
|
-
|
|
18
|
+
/>
|
|
19
19
|
</article>
|
|
20
20
|
</template>
|
|
21
21
|
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
useDestroyableSortable,
|
|
7
7
|
} from '../../../../composables/useDestroyableSortable/useDestroyableSortable';
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
vi.mock('../../../../composables/useDestroyableSortable/useDestroyableSortable');
|
|
10
10
|
|
|
11
11
|
useDestroyableSortable.mockImplementation(() => ({ reloadSortable: ref(false) }));
|
|
12
12
|
|
|
@@ -14,12 +14,14 @@
|
|
|
14
14
|
:class="{
|
|
15
15
|
'audit-form-question-read-text--required': question.required,
|
|
16
16
|
}"
|
|
17
|
-
>
|
|
17
|
+
>
|
|
18
|
+
{{ question.question }}
|
|
19
|
+
</p>
|
|
18
20
|
<wt-icon
|
|
19
|
-
class="audit-form-question-read__drag-icon"
|
|
20
21
|
v-if="!disableDragging && !first"
|
|
22
|
+
class="audit-form-question-read__drag-icon"
|
|
21
23
|
icon="move"
|
|
22
|
-
|
|
24
|
+
/>
|
|
23
25
|
</header>
|
|
24
26
|
<section class="audit-form-question-read-content">
|
|
25
27
|
<component
|
|
@@ -28,12 +30,14 @@
|
|
|
28
30
|
:result="result"
|
|
29
31
|
mode="read"
|
|
30
32
|
@change:result="!readonly && emit('change:result', $event)"
|
|
31
|
-
|
|
33
|
+
/>
|
|
32
34
|
<div
|
|
33
35
|
v-show="isResult"
|
|
34
36
|
class="audit-form-question--clear"
|
|
35
37
|
@click="emit('change:result', {})"
|
|
36
|
-
>
|
|
38
|
+
>
|
|
39
|
+
{{ $t('webitelUI.auditForm.clearSelection') }}
|
|
40
|
+
</div>
|
|
37
41
|
</section>
|
|
38
42
|
</article>
|
|
39
43
|
</template>
|
|
@@ -126,6 +130,6 @@ const isResult = computed(() => !isEmpty(props.result));
|
|
|
126
130
|
.audit-form-question--clear {
|
|
127
131
|
margin-top: var(--spacing-sm);;
|
|
128
132
|
cursor: pointer;
|
|
129
|
-
color: var(--link-color);
|
|
133
|
+
color: var(--text-link-color);
|
|
130
134
|
}
|
|
131
135
|
</style>
|