@webitel/ui-sdk 26.8.5 → 26.8.7
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 +2 -2
- package/src/components/index.js +41 -0
- package/types/.tsbuildinfo +1 -1
- package/types/components/index.d.ts +216 -0
- package/types/components/on-demand/wt-call-media-action/wt-call-media-action.vue.d.ts +2 -2
- package/types/components/on-demand/wt-chat-emoji/wt-chat-emoji.vue.d.ts +1 -1
- package/types/components/on-demand/wt-display-chip-items/wt-display-chip-items.vue.d.ts +1 -1
- package/types/components/on-demand/wt-selection-popup/wt-selection-popup.vue.d.ts +4 -4
- package/types/components/transitions/cases/wt-replace-transition.vue.d.ts +1 -1
- package/types/components/transitions/wt-transition.vue.d.ts +2 -2
- package/types/components/wt-action-bar/WtActionBarActionsOrder.d.ts +2 -2
- package/types/components/wt-action-bar/wt-action-bar.vue.d.ts +23 -23
- package/types/components/wt-badge-new/wt-badge.vue.d.ts +1 -1
- package/types/components/wt-button/wt-button.vue.d.ts +2 -2
- package/types/components/wt-checkbox/wt-checkbox.vue.d.ts +2 -2
- package/types/components/wt-context-menu/wt-context-menu.vue.d.ts +2 -2
- package/types/components/wt-datepicker/wt-datepicker.vue.d.ts +12 -12
- package/types/components/wt-empty/wt-empty.vue.d.ts +2 -2
- package/types/components/wt-galleria/wt-galleria.vue.d.ts +2 -2
- package/types/components/wt-icon/wt-icon.vue.d.ts +1 -1
- package/types/components/wt-icon-action/wt-icon-action.vue.d.ts +1 -1
- package/types/components/wt-indicator/wt-indicator.vue.d.ts +2 -2
- package/types/components/wt-inline-add-panel/wt-inline-add-panel.vue.d.ts +1 -1
- package/types/components/wt-input-number/wt-input-number.vue.d.ts +4 -4
- package/types/components/wt-input-text/wt-input-text.vue.d.ts +4 -4
- package/types/components/wt-item-link/wt-item-link.vue.d.ts +4 -4
- package/types/components/wt-multi-select/wt-multi-select.vue.d.ts +4 -4
- package/types/components/wt-password/wt-password.vue.d.ts +2 -2
- package/types/components/wt-player/wt-player.vue.d.ts +1 -1
- package/types/components/wt-popover/wt-popover.vue.d.ts +2 -2
- package/types/components/wt-popup/wt-popup.vue.d.ts +1 -1
- package/types/components/wt-radio/wt-radio.vue.d.ts +2 -2
- package/types/components/wt-single-select/wt-single-select.vue.d.ts +2 -2
- package/types/components/wt-slider/wt-slider.vue.d.ts +3 -3
- package/types/components/wt-switcher/wt-switcher.vue.d.ts +1 -1
- package/types/components/wt-table/wt-table.vue.d.ts +4 -4
- package/types/components/wt-textarea/wt-textarea.vue.d.ts +2 -2
- package/types/components/wt-time-input/wt-time-input.vue.d.ts +3 -3
- package/types/components/wt-timepicker/wt-timepicker.vue.d.ts +3 -3
- package/types/components/wt-tooltip/_internals/wt-tooltip-floating.vue.d.ts +2 -2
- package/types/components/wt-vidstack-player/components/panels/video-call-controls-panel/video-call-controls-panel.vue.d.ts +2 -2
- package/types/mixins/validationMixin/useValidation.d.ts +1 -1
- package/types/mixins/validationMixin/validationMixin.d.ts +1 -1
- package/types/modules/AgentStatusSelect/components/_internals/wt-cc-pause-cause-popup.vue.d.ts +2 -2
- package/types/modules/AgentStatusSelect/components/wt-cc-agent-status-select.vue.d.ts +4 -4
- package/types/modules/AuditForm/components/audit-form-question.vue.d.ts +2 -2
- package/types/modules/CallSession/modules/VideoCall/video-call.vue.d.ts +2 -2
- package/types/modules/Flow/lookups/FlowTypeApplications.lookup.d.ts +5 -5
- package/types/modules/ObjectPermissions/components/_internal/permissions-tab-content.vue.d.ts +1 -1
- package/src/components/index.d.ts +0 -96
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "26.8.
|
|
3
|
+
"version": "26.8.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "npm run docs:dev",
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
"import": "./src/enums*"
|
|
220
220
|
},
|
|
221
221
|
"./components": {
|
|
222
|
-
"types": "./
|
|
222
|
+
"types": "./types/components/index.d.ts",
|
|
223
223
|
"import": "./src/components/index.js"
|
|
224
224
|
},
|
|
225
225
|
"./components*": {
|
package/src/components/index.js
CHANGED
|
@@ -48,126 +48,167 @@ import WtToast from './wt-toast/wt-toast.vue';
|
|
|
48
48
|
import WtTooltip from './wt-tooltip/wt-tooltip.vue';
|
|
49
49
|
|
|
50
50
|
// Async components - heavy or rarely used components
|
|
51
|
+
/** @type {typeof import('./wt-action-bar/wt-action-bar.vue').default} */
|
|
51
52
|
const WtActionBar = defineAsyncComponent(
|
|
52
53
|
() => import('./wt-action-bar/wt-action-bar.vue'),
|
|
53
54
|
);
|
|
55
|
+
/** @type {typeof import('./wt-button-select/wt-button-select.vue').default} */
|
|
54
56
|
const WtButtonSelect = defineAsyncComponent(
|
|
55
57
|
() => import('./wt-button-select/wt-button-select.vue'),
|
|
56
58
|
);
|
|
59
|
+
/** @type {typeof import('./wt-confirm-dialog/wt-confirm-dialog.vue').default} */
|
|
57
60
|
const WtConfirmDialog = defineAsyncComponent(
|
|
58
61
|
() => import('./wt-confirm-dialog/wt-confirm-dialog.vue'),
|
|
59
62
|
);
|
|
63
|
+
/** @type {typeof import('./wt-context-menu/wt-context-menu.vue').default} */
|
|
60
64
|
const WtContextMenu = defineAsyncComponent(
|
|
61
65
|
() => import('./wt-context-menu/wt-context-menu.vue'),
|
|
62
66
|
);
|
|
67
|
+
/** @type {typeof import('./wt-copy-action/wt-copy-action.vue').default} */
|
|
63
68
|
const WtCopyAction = defineAsyncComponent(
|
|
64
69
|
() => import('./wt-copy-action/wt-copy-action.vue'),
|
|
65
70
|
);
|
|
71
|
+
/** @type {typeof import('./wt-datepicker/wt-datepicker.vue').default} */
|
|
66
72
|
const WtDatepicker = defineAsyncComponent(
|
|
67
73
|
() => import('./wt-datepicker/wt-datepicker.vue'),
|
|
68
74
|
);
|
|
75
|
+
/** @type {typeof import('./wt-dual-panel/wt-dual-panel.vue').default} */
|
|
69
76
|
const WtDualPanel = defineAsyncComponent(
|
|
70
77
|
() => import('./wt-dual-panel/wt-dual-panel.vue'),
|
|
71
78
|
);
|
|
79
|
+
/** @type {typeof import('./wt-dummy/wt-dummy.vue').default} */
|
|
72
80
|
const WtDummy = defineAsyncComponent(() => import('./wt-dummy/wt-dummy.vue'));
|
|
81
|
+
/** @type {typeof import('./wt-error-page/wt-error-page.vue').default} */
|
|
73
82
|
const WtErrorPage = defineAsyncComponent(
|
|
74
83
|
() => import('./wt-error-page/wt-error-page.vue'),
|
|
75
84
|
);
|
|
85
|
+
/** @type {typeof import('./wt-expansion-panel/wt-expansion-panel.vue').default} */
|
|
76
86
|
const WtExpansionPanel = defineAsyncComponent(
|
|
77
87
|
() => import('./wt-expansion-panel/wt-expansion-panel.vue'),
|
|
78
88
|
);
|
|
89
|
+
/** @type {typeof import('./wt-expansion-card/wt-expansion-card.vue').default} */
|
|
79
90
|
const WtExpansionCard = defineAsyncComponent(
|
|
80
91
|
() => import('./wt-expansion-card/wt-expansion-card.vue'),
|
|
81
92
|
);
|
|
93
|
+
/** @type {typeof import('./wt-filters-panel-wrapper/wt-filters-panel-wrapper.vue').default} */
|
|
82
94
|
const WtFiltersPanelWrapper = defineAsyncComponent(
|
|
83
95
|
() => import('./wt-filters-panel-wrapper/wt-filters-panel-wrapper.vue'),
|
|
84
96
|
);
|
|
97
|
+
/** @type {typeof import('./wt-galleria/wt-galleria.vue').default} */
|
|
85
98
|
const WtGalleria = defineAsyncComponent(
|
|
86
99
|
() => import('./wt-galleria/wt-galleria.vue'),
|
|
87
100
|
);
|
|
101
|
+
/** @type {typeof import('./wt-notifications-bar/wt-notifications-bar.vue').default} */
|
|
88
102
|
const WtNotificationsBar = defineAsyncComponent(
|
|
89
103
|
() => import('./wt-notifications-bar/wt-notifications-bar.vue'),
|
|
90
104
|
);
|
|
105
|
+
/** @type {typeof import('./wt-page-header/wt-page-header.vue').default} */
|
|
91
106
|
const WtPageHeader = defineAsyncComponent(
|
|
92
107
|
() => import('./wt-page-header/wt-page-header.vue'),
|
|
93
108
|
);
|
|
109
|
+
/** @type {typeof import('./wt-pagination/wt-pagination.vue').default} */
|
|
94
110
|
const WtPagination = defineAsyncComponent(
|
|
95
111
|
() => import('./wt-pagination/wt-pagination.vue'),
|
|
96
112
|
);
|
|
113
|
+
/** @type {typeof import('./wt-player/wt-player.vue').default} */
|
|
97
114
|
const WtPlayer = defineAsyncComponent(
|
|
98
115
|
() => import('./wt-player/wt-player.vue'),
|
|
99
116
|
);
|
|
117
|
+
/** @type {typeof import('./wt-popover/wt-popover.vue').default} */
|
|
100
118
|
const WtPopover = defineAsyncComponent(
|
|
101
119
|
() => import('./wt-popover/wt-popover.vue'),
|
|
102
120
|
);
|
|
121
|
+
/** @type {typeof import('./wt-search-bar/wt-search-bar.vue').default} */
|
|
103
122
|
const WtSearchBar = defineAsyncComponent(
|
|
104
123
|
() => import('./wt-search-bar/wt-search-bar.vue'),
|
|
105
124
|
);
|
|
125
|
+
/** @type {typeof import('./wt-slider/wt-slider.vue').default} */
|
|
106
126
|
const WtSlider = defineAsyncComponent(
|
|
107
127
|
() => import('./wt-slider/wt-slider.vue'),
|
|
108
128
|
);
|
|
129
|
+
/** @type {typeof import('./wt-status-select/wt-status-select.vue').default} */
|
|
109
130
|
const WtStatusSelect = defineAsyncComponent(
|
|
110
131
|
() => import('./wt-status-select/wt-status-select.vue'),
|
|
111
132
|
);
|
|
133
|
+
/** @type {typeof import('./wt-stepper/wt-stepper.vue').default} */
|
|
112
134
|
const WtStepper = defineAsyncComponent(
|
|
113
135
|
() => import('./wt-stepper/wt-stepper.vue'),
|
|
114
136
|
);
|
|
137
|
+
/** @type {typeof import('./wt-table/wt-table.vue').default} */
|
|
115
138
|
const WtTable = defineAsyncComponent(() => import('./wt-table/wt-table.vue'));
|
|
139
|
+
/** @type {typeof import('./wt-table-actions/wt-table-actions.vue').default} */
|
|
116
140
|
const WtTableActions = defineAsyncComponent(
|
|
117
141
|
() => import('./wt-table-actions/wt-table-actions.vue'),
|
|
118
142
|
);
|
|
143
|
+
/** @type {typeof import('./wt-table-column-select/wt-table-column-select.vue').default} */
|
|
119
144
|
const WtTableColumnSelect = defineAsyncComponent(
|
|
120
145
|
() => import('./wt-table-column-select/wt-table-column-select.vue'),
|
|
121
146
|
);
|
|
147
|
+
/** @type {typeof import('./wt-tabs/wt-tabs.vue').default} */
|
|
122
148
|
const WtTabs = defineAsyncComponent(() => import('./wt-tabs/wt-tabs.vue'));
|
|
149
|
+
/** @type {typeof import('./wt-time-input/wt-time-input.vue').default} */
|
|
123
150
|
const WtTimeInput = defineAsyncComponent(
|
|
124
151
|
() => import('./wt-time-input/wt-time-input.vue'),
|
|
125
152
|
);
|
|
153
|
+
/** @type {typeof import('./wt-timepicker/wt-timepicker.vue').default} */
|
|
126
154
|
const WtTimepicker = defineAsyncComponent(
|
|
127
155
|
() => import('./wt-timepicker/wt-timepicker.vue'),
|
|
128
156
|
);
|
|
157
|
+
/** @type {typeof import('./wt-tree/wt-tree.vue').default} */
|
|
129
158
|
const WtTree = defineAsyncComponent(() => import('./wt-tree/wt-tree.vue'));
|
|
159
|
+
/** @type {typeof import('./wt-tree-table/wt-tree-table.vue').default} */
|
|
130
160
|
const WtTreeTable = defineAsyncComponent(
|
|
131
161
|
() => import('./wt-tree-table/wt-tree-table.vue'),
|
|
132
162
|
);
|
|
163
|
+
/** @type {typeof import('./wt-vidstack-player/wt-vidstack-player.vue').default} */
|
|
133
164
|
const WtVidstackPlayer = defineAsyncComponent(
|
|
134
165
|
() => import('./wt-vidstack-player/wt-vidstack-player.vue'),
|
|
135
166
|
);
|
|
167
|
+
/** @type {typeof import('./on-demand/wt-call-media-action/wt-call-media-action.vue').default} */
|
|
136
168
|
const WtCallMediaAction = defineAsyncComponent(
|
|
137
169
|
() => import('./on-demand/wt-call-media-action/wt-call-media-action.vue'),
|
|
138
170
|
);
|
|
171
|
+
/** @type {typeof import('./on-demand/wt-chat-emoji/wt-chat-emoji.vue').default} */
|
|
139
172
|
const WtChatEmoji = defineAsyncComponent(
|
|
140
173
|
() => import('./on-demand/wt-chat-emoji/wt-chat-emoji.vue'),
|
|
141
174
|
);
|
|
175
|
+
/** @type {typeof import('./on-demand/wt-display-chip-items/wt-display-chip-items.vue').default} */
|
|
142
176
|
const WtDisplayChipItems = defineAsyncComponent(
|
|
143
177
|
() => import('./on-demand/wt-display-chip-items/wt-display-chip-items.vue'),
|
|
144
178
|
);
|
|
179
|
+
/** @type {typeof import('./on-demand/wt-navigation-menu/components/wt-navigation-menu.vue').default} */
|
|
145
180
|
const WtNavigationMenu = defineAsyncComponent(
|
|
146
181
|
() =>
|
|
147
182
|
import('./on-demand/wt-navigation-menu/components/wt-navigation-menu.vue'),
|
|
148
183
|
);
|
|
184
|
+
/** @type {typeof import('./on-demand/wt-selection-popup/wt-selection-popup.vue').default} */
|
|
149
185
|
const WtSelectionPopup = defineAsyncComponent(
|
|
150
186
|
() => import('./on-demand/wt-selection-popup/wt-selection-popup.vue'),
|
|
151
187
|
);
|
|
188
|
+
/** @type {typeof import('./on-demand/wt-start-page/components/wt-start-page.vue').default} */
|
|
152
189
|
const WtStartPage = defineAsyncComponent(
|
|
153
190
|
() => import('./on-demand/wt-start-page/components/wt-start-page.vue'),
|
|
154
191
|
);
|
|
192
|
+
/** @type {typeof import('./on-demand/wt-type-extension-value-input/wt-type-extension-value-input.vue').default} */
|
|
155
193
|
const WtTypeExtensionValueInput = defineAsyncComponent(
|
|
156
194
|
() =>
|
|
157
195
|
import(
|
|
158
196
|
'./on-demand/wt-type-extension-value-input/wt-type-extension-value-input.vue'
|
|
159
197
|
),
|
|
160
198
|
);
|
|
199
|
+
/** @type {typeof import('./on-demand/wt-screen-recordings-action/wt-screen-recordings-action.vue').default} */
|
|
161
200
|
const WtScreenRecordingsAction = defineAsyncComponent(
|
|
162
201
|
() =>
|
|
163
202
|
import(
|
|
164
203
|
'./on-demand/wt-screen-recordings-action/wt-screen-recordings-action.vue'
|
|
165
204
|
),
|
|
166
205
|
);
|
|
206
|
+
/** @type {typeof import('./on-demand/wt-send-message-popup/wt-send-message-popup.vue').default} */
|
|
167
207
|
const WtSendMessagePopup = defineAsyncComponent(
|
|
168
208
|
() => import('./on-demand/wt-send-message-popup/wt-send-message-popup.vue'),
|
|
169
209
|
);
|
|
170
210
|
|
|
211
|
+
/** @type {typeof import('./wt-inline-add-panel/wt-inline-add-panel.vue').default} */
|
|
171
212
|
const WtInlineAddPanel = defineAsyncComponent(
|
|
172
213
|
() => import('./wt-inline-add-panel/wt-inline-add-panel.vue'),
|
|
173
214
|
);
|