@webitel/ui-sdk 26.8.5 → 26.8.6
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
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
export default Components;
|
|
2
|
+
/** @type {typeof import('./wt-action-bar/wt-action-bar.vue').default} */
|
|
3
|
+
export const WtActionBar: typeof import("./wt-action-bar/wt-action-bar.vue").default;
|
|
4
|
+
import WtAppHeader from './wt-app-header/wt-app-header.vue';
|
|
5
|
+
import WtAppNavigator from './wt-app-header/wt-app-navigator.vue';
|
|
6
|
+
import WtAvatar from './wt-avatar/wt-avatar.vue';
|
|
7
|
+
import WtBadge from './wt-badge/wt-badge.vue';
|
|
8
|
+
import WtBadgeNew from './wt-badge-new/wt-badge.vue';
|
|
9
|
+
import WtBreadcrumb from './wt-breadcrumb/wt-breadcrumb.vue';
|
|
10
|
+
import WtButton from './wt-button/wt-button.vue';
|
|
11
|
+
/** @type {typeof import('./wt-button-select/wt-button-select.vue').default} */
|
|
12
|
+
export const WtButtonSelect: typeof import("./wt-button-select/wt-button-select.vue").default;
|
|
13
|
+
/** @type {typeof import('./on-demand/wt-call-media-action/wt-call-media-action.vue').default} */
|
|
14
|
+
export const WtCallMediaAction: typeof import("./on-demand/wt-call-media-action/wt-call-media-action.vue").default;
|
|
15
|
+
import WtCallMediaMetric from './wt-call-media-metric/wt-call-media-metric.vue';
|
|
16
|
+
import WtCard from './wt-card/wt-card.vue';
|
|
17
|
+
/** @type {typeof import('./on-demand/wt-chat-emoji/wt-chat-emoji.vue').default} */
|
|
18
|
+
export const WtChatEmoji: typeof import("./on-demand/wt-chat-emoji/wt-chat-emoji.vue").default;
|
|
19
|
+
import WtCheckbox from './wt-checkbox/wt-checkbox.vue';
|
|
20
|
+
import WtChip from './wt-chip/wt-chip.vue';
|
|
21
|
+
/** @type {typeof import('./wt-confirm-dialog/wt-confirm-dialog.vue').default} */
|
|
22
|
+
export const WtConfirmDialog: typeof import("./wt-confirm-dialog/wt-confirm-dialog.vue").default;
|
|
23
|
+
/** @type {typeof import('./wt-context-menu/wt-context-menu.vue').default} */
|
|
24
|
+
export const WtContextMenu: typeof import("./wt-context-menu/wt-context-menu.vue").default;
|
|
25
|
+
/** @type {typeof import('./wt-copy-action/wt-copy-action.vue').default} */
|
|
26
|
+
export const WtCopyAction: typeof import("./wt-copy-action/wt-copy-action.vue").default;
|
|
27
|
+
/** @type {typeof import('./wt-datepicker/wt-datepicker.vue').default} */
|
|
28
|
+
export const WtDatepicker: typeof import("./wt-datepicker/wt-datepicker.vue").default;
|
|
29
|
+
import WtDatetimeText from './wt-datetime-text/wt-datetime-text.vue';
|
|
30
|
+
/** @type {typeof import('./on-demand/wt-display-chip-items/wt-display-chip-items.vue').default} */
|
|
31
|
+
export const WtDisplayChipItems: typeof import("./on-demand/wt-display-chip-items/wt-display-chip-items.vue").default;
|
|
32
|
+
import WtDivider from './wt-divider/wt-divider.vue';
|
|
33
|
+
/** @type {typeof import('./wt-dual-panel/wt-dual-panel.vue').default} */
|
|
34
|
+
export const WtDualPanel: typeof import("./wt-dual-panel/wt-dual-panel.vue").default;
|
|
35
|
+
/** @type {typeof import('./wt-dummy/wt-dummy.vue').default} */
|
|
36
|
+
export const WtDummy: typeof import("./wt-dummy/wt-dummy.vue").default;
|
|
37
|
+
import WtEmpty from './wt-empty/wt-empty.vue';
|
|
38
|
+
/** @type {typeof import('./wt-error-page/wt-error-page.vue').default} */
|
|
39
|
+
export const WtErrorPage: typeof import("./wt-error-page/wt-error-page.vue").default;
|
|
40
|
+
/** @type {typeof import('./wt-expansion-card/wt-expansion-card.vue').default} */
|
|
41
|
+
export const WtExpansionCard: typeof import("./wt-expansion-card/wt-expansion-card.vue").default;
|
|
42
|
+
/** @type {typeof import('./wt-expansion-panel/wt-expansion-panel.vue').default} */
|
|
43
|
+
export const WtExpansionPanel: typeof import("./wt-expansion-panel/wt-expansion-panel.vue").default;
|
|
44
|
+
/** @type {typeof import('./wt-filters-panel-wrapper/wt-filters-panel-wrapper.vue').default} */
|
|
45
|
+
export const WtFiltersPanelWrapper: typeof import("./wt-filters-panel-wrapper/wt-filters-panel-wrapper.vue").default;
|
|
46
|
+
/** @type {typeof import('./wt-galleria/wt-galleria.vue').default} */
|
|
47
|
+
export const WtGalleria: typeof import("./wt-galleria/wt-galleria.vue").default;
|
|
48
|
+
import WtHeaderActions from './wt-app-header/wt-header-actions.vue';
|
|
49
|
+
import WtHeadline from './wt-headline/wt-headline.vue';
|
|
50
|
+
import WtHint from './wt-hint/wt-hint.vue';
|
|
51
|
+
import WtIcon from './wt-icon/wt-icon.vue';
|
|
52
|
+
import WtIconAction from './wt-icon-action/wt-icon-action.vue';
|
|
53
|
+
import WtIconBtn from './wt-icon-btn/wt-icon-btn.vue';
|
|
54
|
+
import WtImage from './wt-image/wt-image.vue';
|
|
55
|
+
import WtIndicator from './wt-indicator/wt-indicator.vue';
|
|
56
|
+
/** @type {typeof import('./wt-inline-add-panel/wt-inline-add-panel.vue').default} */
|
|
57
|
+
export const WtInlineAddPanel: typeof import("./wt-inline-add-panel/wt-inline-add-panel.vue").default;
|
|
58
|
+
import WtInputNumber from './wt-input-number/wt-input-number.vue';
|
|
59
|
+
import WtInputText from './wt-input-text/wt-input-text.vue';
|
|
60
|
+
import WtIntersectionObserver from './wt-intersection-observer/wt-intersection-observer.vue';
|
|
61
|
+
import WtItemLink from './wt-item-link/wt-item-link.vue';
|
|
62
|
+
import WtLabel from './wt-label/wt-label.vue';
|
|
63
|
+
import WtLoadBar from './wt-load-bar/wt-load-bar.vue';
|
|
64
|
+
import WtLoader from './wt-loader/wt-loader.vue';
|
|
65
|
+
import WtLogo from './wt-logo/wt-logo.vue';
|
|
66
|
+
import WtMessage from './wt-message/wt-message.vue';
|
|
67
|
+
import WtMultiSelect from './wt-multi-select/wt-multi-select.vue';
|
|
68
|
+
import WtNavigationBar from './wt-navigation-bar/wt-navigation-bar.vue';
|
|
69
|
+
/** @type {typeof import('./on-demand/wt-navigation-menu/components/wt-navigation-menu.vue').default} */
|
|
70
|
+
export const WtNavigationMenu: typeof import("./on-demand/wt-navigation-menu/components/wt-navigation-menu.vue").default;
|
|
71
|
+
/** @type {typeof import('./wt-notifications-bar/wt-notifications-bar.vue').default} */
|
|
72
|
+
export const WtNotificationsBar: typeof import("./wt-notifications-bar/wt-notifications-bar.vue").default;
|
|
73
|
+
/** @type {typeof import('./wt-page-header/wt-page-header.vue').default} */
|
|
74
|
+
export const WtPageHeader: typeof import("./wt-page-header/wt-page-header.vue").default;
|
|
75
|
+
import WtPageWrapper from './wt-page-wrapper/wt-page-wrapper.vue';
|
|
76
|
+
/** @type {typeof import('./wt-pagination/wt-pagination.vue').default} */
|
|
77
|
+
export const WtPagination: typeof import("./wt-pagination/wt-pagination.vue").default;
|
|
78
|
+
import WtPassword from './wt-password/wt-password.vue';
|
|
79
|
+
/** @type {typeof import('./wt-player/wt-player.vue').default} */
|
|
80
|
+
export const WtPlayer: typeof import("./wt-player/wt-player.vue").default;
|
|
81
|
+
/** @type {typeof import('./wt-popover/wt-popover.vue').default} */
|
|
82
|
+
export const WtPopover: typeof import("./wt-popover/wt-popover.vue").default;
|
|
83
|
+
import WtPopup from './wt-popup/wt-popup.vue';
|
|
84
|
+
import WtProgressBar from './wt-progress-bar/wt-progress-bar.vue';
|
|
85
|
+
import WtRadio from './wt-radio/wt-radio.vue';
|
|
86
|
+
import WtReplaceTransition from './transitions/cases/wt-replace-transition.vue';
|
|
87
|
+
import WtRoundedAction from './wt-rounded-action/wt-rounded-action.vue';
|
|
88
|
+
/** @type {typeof import('./on-demand/wt-screen-recordings-action/wt-screen-recordings-action.vue').default} */
|
|
89
|
+
export const WtScreenRecordingsAction: typeof import("./on-demand/wt-screen-recordings-action/wt-screen-recordings-action.vue").default;
|
|
90
|
+
/** @type {typeof import('./wt-search-bar/wt-search-bar.vue').default} */
|
|
91
|
+
export const WtSearchBar: typeof import("./wt-search-bar/wt-search-bar.vue").default;
|
|
92
|
+
/** @type {typeof import('./on-demand/wt-selection-popup/wt-selection-popup.vue').default} */
|
|
93
|
+
export const WtSelectionPopup: typeof import("./on-demand/wt-selection-popup/wt-selection-popup.vue").default;
|
|
94
|
+
/** @type {typeof import('./on-demand/wt-send-message-popup/wt-send-message-popup.vue').default} */
|
|
95
|
+
export const WtSendMessagePopup: typeof import("./on-demand/wt-send-message-popup/wt-send-message-popup.vue").default;
|
|
96
|
+
import WtSingleSelect from './wt-single-select/wt-single-select.vue';
|
|
97
|
+
/** @type {typeof import('./wt-slider/wt-slider.vue').default} */
|
|
98
|
+
export const WtSlider: typeof import("./wt-slider/wt-slider.vue").default;
|
|
99
|
+
/** @type {typeof import('./on-demand/wt-start-page/components/wt-start-page.vue').default} */
|
|
100
|
+
export const WtStartPage: typeof import("./on-demand/wt-start-page/components/wt-start-page.vue").default;
|
|
101
|
+
/** @type {typeof import('./wt-status-select/wt-status-select.vue').default} */
|
|
102
|
+
export const WtStatusSelect: typeof import("./wt-status-select/wt-status-select.vue").default;
|
|
103
|
+
/** @type {typeof import('./wt-stepper/wt-stepper.vue').default} */
|
|
104
|
+
export const WtStepper: typeof import("./wt-stepper/wt-stepper.vue").default;
|
|
105
|
+
import WtSwitcher from './wt-switcher/wt-switcher.vue';
|
|
106
|
+
/** @type {typeof import('./wt-table/wt-table.vue').default} */
|
|
107
|
+
export const WtTable: typeof import("./wt-table/wt-table.vue").default;
|
|
108
|
+
/** @type {typeof import('./wt-table-actions/wt-table-actions.vue').default} */
|
|
109
|
+
export const WtTableActions: typeof import("./wt-table-actions/wt-table-actions.vue").default;
|
|
110
|
+
/** @type {typeof import('./wt-table-column-select/wt-table-column-select.vue').default} */
|
|
111
|
+
export const WtTableColumnSelect: typeof import("./wt-table-column-select/wt-table-column-select.vue").default;
|
|
112
|
+
/** @type {typeof import('./wt-tabs/wt-tabs.vue').default} */
|
|
113
|
+
export const WtTabs: typeof import("./wt-tabs/wt-tabs.vue").default;
|
|
114
|
+
import WtTextarea from './wt-textarea/wt-textarea.vue';
|
|
115
|
+
/** @type {typeof import('./wt-time-input/wt-time-input.vue').default} */
|
|
116
|
+
export const WtTimeInput: typeof import("./wt-time-input/wt-time-input.vue").default;
|
|
117
|
+
/** @type {typeof import('./wt-timepicker/wt-timepicker.vue').default} */
|
|
118
|
+
export const WtTimepicker: typeof import("./wt-timepicker/wt-timepicker.vue").default;
|
|
119
|
+
import WtToast from './wt-toast/wt-toast.vue';
|
|
120
|
+
import WtTooltip from './wt-tooltip/wt-tooltip.vue';
|
|
121
|
+
/** @type {typeof import('./wt-tree/wt-tree.vue').default} */
|
|
122
|
+
export const WtTree: typeof import("./wt-tree/wt-tree.vue").default;
|
|
123
|
+
/** @type {typeof import('./wt-tree-table/wt-tree-table.vue').default} */
|
|
124
|
+
export const WtTreeTable: typeof import("./wt-tree-table/wt-tree-table.vue").default;
|
|
125
|
+
/** @type {typeof import('./on-demand/wt-type-extension-value-input/wt-type-extension-value-input.vue').default} */
|
|
126
|
+
export const WtTypeExtensionValueInput: typeof import("./on-demand/wt-type-extension-value-input/wt-type-extension-value-input.vue").default;
|
|
127
|
+
/** @type {typeof import('./wt-vidstack-player/wt-vidstack-player.vue').default} */
|
|
128
|
+
export const WtVidstackPlayer: typeof import("./wt-vidstack-player/wt-vidstack-player.vue").default;
|
|
129
|
+
declare namespace Components {
|
|
130
|
+
export { WtActionBar };
|
|
131
|
+
export { WtImage };
|
|
132
|
+
export { WtEmpty };
|
|
133
|
+
export { WtLogo };
|
|
134
|
+
export { WtAvatar };
|
|
135
|
+
export { WtBadge };
|
|
136
|
+
export { WtBadgeNew };
|
|
137
|
+
export { WtMessage };
|
|
138
|
+
export { WtIcon };
|
|
139
|
+
export { WtIndicator };
|
|
140
|
+
export { WtButton };
|
|
141
|
+
export { WtChip };
|
|
142
|
+
export { WtConfirmDialog };
|
|
143
|
+
export { WtDivider };
|
|
144
|
+
export { WtTooltip };
|
|
145
|
+
export { WtLabel };
|
|
146
|
+
export { WtLoader };
|
|
147
|
+
export { WtRoundedAction };
|
|
148
|
+
export { WtReplaceTransition };
|
|
149
|
+
export { WtCheckbox };
|
|
150
|
+
export { WtDatepicker };
|
|
151
|
+
export { WtIconBtn };
|
|
152
|
+
export { WtInputNumber };
|
|
153
|
+
export { WtInputText };
|
|
154
|
+
export { WtPassword };
|
|
155
|
+
export { WtIntersectionObserver };
|
|
156
|
+
export { WtHint };
|
|
157
|
+
export { WtPopup };
|
|
158
|
+
export { WtProgressBar };
|
|
159
|
+
export { WtRadio };
|
|
160
|
+
export { WtSearchBar };
|
|
161
|
+
export { WtSlider };
|
|
162
|
+
export { WtSwitcher };
|
|
163
|
+
export { WtTabs };
|
|
164
|
+
export { WtTimeInput };
|
|
165
|
+
export { WtTimepicker };
|
|
166
|
+
export { WtTextarea };
|
|
167
|
+
export { WtToast };
|
|
168
|
+
export { WtAppHeader };
|
|
169
|
+
export { WtHeadline };
|
|
170
|
+
export { WtBreadcrumb };
|
|
171
|
+
export { WtNavigationBar };
|
|
172
|
+
export { WtAppNavigator };
|
|
173
|
+
export { WtFiltersPanelWrapper };
|
|
174
|
+
export { WtHeaderActions };
|
|
175
|
+
export { WtErrorPage };
|
|
176
|
+
export { WtNotificationsBar };
|
|
177
|
+
export { WtPageWrapper };
|
|
178
|
+
export { WtDualPanel };
|
|
179
|
+
export { WtPagination };
|
|
180
|
+
export { WtPlayer };
|
|
181
|
+
export { WtPopover };
|
|
182
|
+
export { WtStatusSelect };
|
|
183
|
+
export { WtTable };
|
|
184
|
+
export { WtTree };
|
|
185
|
+
export { WtTreeTable };
|
|
186
|
+
export { WtTableActions };
|
|
187
|
+
export { WtTableColumnSelect };
|
|
188
|
+
export { WtButtonSelect };
|
|
189
|
+
export { WtContextMenu };
|
|
190
|
+
export { WtCopyAction };
|
|
191
|
+
export { WtLoadBar };
|
|
192
|
+
export { WtIconAction };
|
|
193
|
+
export { WtPageHeader };
|
|
194
|
+
export { WtItemLink };
|
|
195
|
+
export { WtDummy };
|
|
196
|
+
export { WtStepper };
|
|
197
|
+
export { WtExpansionPanel };
|
|
198
|
+
export { WtNavigationMenu };
|
|
199
|
+
export { WtStartPage };
|
|
200
|
+
export { WtSelectionPopup };
|
|
201
|
+
export { WtDisplayChipItems };
|
|
202
|
+
export { WtGalleria };
|
|
203
|
+
export { WtVidstackPlayer };
|
|
204
|
+
export { WtChatEmoji };
|
|
205
|
+
export { WtExpansionCard };
|
|
206
|
+
export { WtDatetimeText };
|
|
207
|
+
export { WtCard };
|
|
208
|
+
export { WtSingleSelect };
|
|
209
|
+
export { WtMultiSelect };
|
|
210
|
+
export { WtScreenRecordingsAction };
|
|
211
|
+
export { WtInlineAddPanel };
|
|
212
|
+
export { WtCallMediaAction };
|
|
213
|
+
export { WtCallMediaMetric };
|
|
214
|
+
export { WtSendMessagePopup };
|
|
215
|
+
}
|
|
216
|
+
export { WtAppHeader, WtAppNavigator, WtAvatar, WtBadge, WtBadgeNew, WtBreadcrumb, WtButton, WtCallMediaMetric, WtCard, WtCheckbox, WtChip, WtDatetimeText, WtDivider, WtEmpty, WtHeaderActions, WtHeadline, WtHint, WtIcon, WtIconAction, WtIconBtn, WtImage, WtIndicator, WtInputNumber, WtInputText, WtIntersectionObserver, WtItemLink, WtLabel, WtLoadBar, WtLoader, WtLogo, WtMessage, WtMultiSelect, WtNavigationBar, WtPageWrapper, WtPassword, WtPopup, WtProgressBar, WtRadio, WtReplaceTransition, WtRoundedAction, WtSingleSelect, WtSwitcher, WtTextarea, WtToast, WtTooltip };
|
|
@@ -4,11 +4,11 @@ interface Props {
|
|
|
4
4
|
playingFileId?: string;
|
|
5
5
|
}
|
|
6
6
|
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
stop: () => any;
|
|
8
7
|
play: (file: EngineCallFile) => any;
|
|
8
|
+
stop: () => any;
|
|
9
9
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
10
|
-
onStop?: () => any;
|
|
11
10
|
onPlay?: (file: EngineCallFile) => any;
|
|
11
|
+
onStop?: () => any;
|
|
12
12
|
}>, {
|
|
13
13
|
playingFileId: string;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -49,8 +49,8 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
49
49
|
}>> & Readonly<{
|
|
50
50
|
"onInsert-emoji"?: (...args: any[]) => any;
|
|
51
51
|
}>, {
|
|
52
|
-
size: string;
|
|
53
52
|
filled: boolean;
|
|
53
|
+
size: string;
|
|
54
54
|
rounded: boolean;
|
|
55
55
|
popupTeleportTo: string;
|
|
56
56
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -25,9 +25,9 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
25
25
|
default: () => any[];
|
|
26
26
|
};
|
|
27
27
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
28
|
-
add: (...args: any[]) => void;
|
|
29
|
-
close: (...args: any[]) => void;
|
|
30
28
|
change: (...args: any[]) => void;
|
|
29
|
+
close: (...args: any[]) => void;
|
|
30
|
+
add: (...args: any[]) => void;
|
|
31
31
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
32
|
/**
|
|
33
33
|
* Popup title
|
|
@@ -49,9 +49,9 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
49
49
|
default: () => any[];
|
|
50
50
|
};
|
|
51
51
|
}>> & Readonly<{
|
|
52
|
-
onAdd?: (...args: any[]) => any;
|
|
53
|
-
onClose?: (...args: any[]) => any;
|
|
54
52
|
onChange?: (...args: any[]) => any;
|
|
53
|
+
onClose?: (...args: any[]) => any;
|
|
54
|
+
onAdd?: (...args: any[]) => any;
|
|
55
55
|
}>, {
|
|
56
56
|
options: unknown[];
|
|
57
57
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -42,9 +42,9 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
42
42
|
};
|
|
43
43
|
}>> & Readonly<{}>, {
|
|
44
44
|
mode: string;
|
|
45
|
+
appear: boolean;
|
|
45
46
|
duration: string;
|
|
46
47
|
pattern: string;
|
|
47
|
-
appear: boolean;
|
|
48
48
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
49
49
|
type __VLS_Slots = {
|
|
50
50
|
default?: (props: {}) => any;
|
|
@@ -39,10 +39,10 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
39
39
|
default: string;
|
|
40
40
|
};
|
|
41
41
|
}>> & Readonly<{}>, {
|
|
42
|
-
mode: string;
|
|
43
42
|
name: string;
|
|
44
|
-
|
|
43
|
+
mode: string;
|
|
45
44
|
appear: boolean;
|
|
45
|
+
duration: string;
|
|
46
46
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
47
47
|
type __VLS_Slots = {
|
|
48
48
|
default?: (props: {}) => any;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const tableActionsOrder: ("
|
|
2
|
-
export const sectionActionsOrder: ("
|
|
1
|
+
export const tableActionsOrder: ("copy" | "sort" | "filters" | "delete" | "refresh" | "add" | "upload" | "download" | "columns" | "variables" | "add-contact" | "download-pdf" | "logout")[];
|
|
2
|
+
export const sectionActionsOrder: ("copy" | "sort" | "filters" | "delete" | "refresh" | "add" | "upload" | "download" | "columns" | "variables" | "add-contact" | "download-pdf" | "logout")[];
|
|
@@ -89,75 +89,75 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
89
89
|
default: boolean;
|
|
90
90
|
};
|
|
91
91
|
}>> & Readonly<{}>, {
|
|
92
|
-
disabled: boolean;
|
|
93
92
|
mode: string;
|
|
93
|
+
disabled: boolean;
|
|
94
94
|
'sort:order': string;
|
|
95
95
|
include: unknown[];
|
|
96
96
|
exclude: unknown[];
|
|
97
97
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
98
98
|
type __VLS_Slots = {
|
|
99
|
-
|
|
100
|
-
action: "
|
|
99
|
+
copy?: (props: {
|
|
100
|
+
action: "copy" | "sort" | "filters" | "delete" | "refresh" | "add" | "upload" | "download" | "columns" | "variables" | "add-contact" | "download-pdf" | "logout";
|
|
101
|
+
size: string;
|
|
102
|
+
onClick: () => void;
|
|
103
|
+
}) => any;
|
|
104
|
+
sort?: (props: {
|
|
105
|
+
action: "copy" | "sort" | "filters" | "delete" | "refresh" | "add" | "upload" | "download" | "columns" | "variables" | "add-contact" | "download-pdf" | "logout";
|
|
101
106
|
size: string;
|
|
102
107
|
onClick: () => void;
|
|
103
108
|
}) => any;
|
|
104
109
|
filters?: (props: {
|
|
105
|
-
action: "
|
|
110
|
+
action: "copy" | "sort" | "filters" | "delete" | "refresh" | "add" | "upload" | "download" | "columns" | "variables" | "add-contact" | "download-pdf" | "logout";
|
|
111
|
+
size: string;
|
|
112
|
+
onClick: () => void;
|
|
113
|
+
}) => any;
|
|
114
|
+
delete?: (props: {
|
|
115
|
+
action: "copy" | "sort" | "filters" | "delete" | "refresh" | "add" | "upload" | "download" | "columns" | "variables" | "add-contact" | "download-pdf" | "logout";
|
|
106
116
|
size: string;
|
|
107
117
|
onClick: () => void;
|
|
108
118
|
}) => any;
|
|
109
119
|
refresh?: (props: {
|
|
110
|
-
action: "
|
|
120
|
+
action: "copy" | "sort" | "filters" | "delete" | "refresh" | "add" | "upload" | "download" | "columns" | "variables" | "add-contact" | "download-pdf" | "logout";
|
|
111
121
|
size: string;
|
|
112
122
|
onClick: () => void;
|
|
113
123
|
}) => any;
|
|
114
124
|
add?: (props: {
|
|
115
|
-
action: "
|
|
125
|
+
action: "copy" | "sort" | "filters" | "delete" | "refresh" | "add" | "upload" | "download" | "columns" | "variables" | "add-contact" | "download-pdf" | "logout";
|
|
116
126
|
size: string;
|
|
117
127
|
onClick: () => void;
|
|
118
128
|
}) => any;
|
|
119
129
|
upload?: (props: {
|
|
120
|
-
action: "
|
|
130
|
+
action: "copy" | "sort" | "filters" | "delete" | "refresh" | "add" | "upload" | "download" | "columns" | "variables" | "add-contact" | "download-pdf" | "logout";
|
|
121
131
|
size: string;
|
|
122
132
|
onClick: () => void;
|
|
123
133
|
}) => any;
|
|
124
134
|
download?: (props: {
|
|
125
|
-
action: "
|
|
126
|
-
size: string;
|
|
127
|
-
onClick: () => void;
|
|
128
|
-
}) => any;
|
|
129
|
-
copy?: (props: {
|
|
130
|
-
action: "delete" | "filters" | "refresh" | "add" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf" | "sort" | "logout";
|
|
135
|
+
action: "copy" | "sort" | "filters" | "delete" | "refresh" | "add" | "upload" | "download" | "columns" | "variables" | "add-contact" | "download-pdf" | "logout";
|
|
131
136
|
size: string;
|
|
132
137
|
onClick: () => void;
|
|
133
138
|
}) => any;
|
|
134
139
|
columns?: (props: {
|
|
135
|
-
action: "
|
|
140
|
+
action: "copy" | "sort" | "filters" | "delete" | "refresh" | "add" | "upload" | "download" | "columns" | "variables" | "add-contact" | "download-pdf" | "logout";
|
|
136
141
|
size: string;
|
|
137
142
|
onClick: () => void;
|
|
138
143
|
}) => any;
|
|
139
144
|
variables?: (props: {
|
|
140
|
-
action: "
|
|
145
|
+
action: "copy" | "sort" | "filters" | "delete" | "refresh" | "add" | "upload" | "download" | "columns" | "variables" | "add-contact" | "download-pdf" | "logout";
|
|
141
146
|
size: string;
|
|
142
147
|
onClick: () => void;
|
|
143
148
|
}) => any;
|
|
144
149
|
"add-contact"?: (props: {
|
|
145
|
-
action: "
|
|
150
|
+
action: "copy" | "sort" | "filters" | "delete" | "refresh" | "add" | "upload" | "download" | "columns" | "variables" | "add-contact" | "download-pdf" | "logout";
|
|
146
151
|
size: string;
|
|
147
152
|
onClick: () => void;
|
|
148
153
|
}) => any;
|
|
149
154
|
"download-pdf"?: (props: {
|
|
150
|
-
action: "
|
|
151
|
-
size: string;
|
|
152
|
-
onClick: () => void;
|
|
153
|
-
}) => any;
|
|
154
|
-
sort?: (props: {
|
|
155
|
-
action: "delete" | "filters" | "refresh" | "add" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact" | "download-pdf" | "sort" | "logout";
|
|
155
|
+
action: "copy" | "sort" | "filters" | "delete" | "refresh" | "add" | "upload" | "download" | "columns" | "variables" | "add-contact" | "download-pdf" | "logout";
|
|
156
156
|
size: string;
|
|
157
157
|
onClick: () => void;
|
|
158
158
|
}) => any;
|
|
159
159
|
logout?: (props: {
|
|
160
|
-
action: "
|
|
160
|
+
action: "copy" | "sort" | "filters" | "delete" | "refresh" | "add" | "upload" | "download" | "columns" | "variables" | "add-contact" | "download-pdf" | "logout";
|
|
161
161
|
size: string;
|
|
162
162
|
onClick: () => void;
|
|
163
163
|
}) => any;
|
|
@@ -10,8 +10,8 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
default?: (props: typeof __VLS_8) => any;
|
|
11
11
|
};
|
|
12
12
|
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
13
|
-
size: ComponentSize;
|
|
14
13
|
value: string | number;
|
|
14
|
+
size: ComponentSize;
|
|
15
15
|
severity: BadgeSeverity;
|
|
16
16
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
17
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -26,10 +26,10 @@ declare const __VLS_base: import("vue").DefineComponent<WtButtonProps, {}, {}, {
|
|
|
26
26
|
}, string, import("vue").PublicProps, Readonly<WtButtonProps> & Readonly<{
|
|
27
27
|
onClick?: (...args: any[]) => any;
|
|
28
28
|
}>, {
|
|
29
|
-
size: ComponentSize;
|
|
30
29
|
disabled: boolean;
|
|
31
|
-
|
|
30
|
+
size: ComponentSize;
|
|
32
31
|
color: ButtonColor;
|
|
32
|
+
icon: string;
|
|
33
33
|
iconPrefix: string;
|
|
34
34
|
loading: boolean;
|
|
35
35
|
wide: boolean;
|
|
@@ -44,9 +44,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
44
44
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
45
45
|
"onUpdate:selected"?: (value: boolean | string[]) => any;
|
|
46
46
|
}>, {
|
|
47
|
-
disabled: boolean;
|
|
48
|
-
label: string;
|
|
49
47
|
value: string | boolean;
|
|
48
|
+
label: string;
|
|
49
|
+
disabled: boolean;
|
|
50
50
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
51
51
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
52
52
|
declare const _default: typeof __VLS_export;
|
|
@@ -39,8 +39,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
39
39
|
default: () => string[];
|
|
40
40
|
};
|
|
41
41
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
42
|
-
"update:visible": (...args: any[]) => void;
|
|
43
42
|
click: (...args: any[]) => void;
|
|
43
|
+
"update:visible": (...args: any[]) => void;
|
|
44
44
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
45
45
|
options: {
|
|
46
46
|
type: ArrayConstructor;
|
|
@@ -76,8 +76,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
76
76
|
default: () => string[];
|
|
77
77
|
};
|
|
78
78
|
}>> & Readonly<{
|
|
79
|
-
"onUpdate:visible"?: (...args: any[]) => any;
|
|
80
79
|
onClick?: (...args: any[]) => any;
|
|
80
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
81
81
|
}>, {
|
|
82
82
|
disabled: boolean;
|
|
83
83
|
pt: Record<string, any>;
|
|
@@ -25,33 +25,33 @@ type __VLS_Slots = {} & {
|
|
|
25
25
|
label?: (props: typeof __VLS_7) => any;
|
|
26
26
|
};
|
|
27
27
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
28
|
-
"update:modelValue": (...args: unknown[]) => any;
|
|
29
|
-
"value-change": () => any;
|
|
30
|
-
focus: () => any;
|
|
31
28
|
blur: () => any;
|
|
32
|
-
|
|
33
|
-
hide: () => any;
|
|
29
|
+
focus: () => any;
|
|
34
30
|
input: () => any;
|
|
31
|
+
keydown: () => any;
|
|
32
|
+
"update:modelValue": (...args: unknown[]) => any;
|
|
33
|
+
hide: () => any;
|
|
34
|
+
show: () => any;
|
|
35
|
+
"value-change": () => any;
|
|
35
36
|
"date-select": () => any;
|
|
36
37
|
"today-click": () => any;
|
|
37
38
|
"clear-click": () => any;
|
|
38
39
|
"month-change": () => any;
|
|
39
40
|
"year-change": () => any;
|
|
40
|
-
keydown: () => any;
|
|
41
41
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
42
|
-
"onUpdate:modelValue"?: (...args: unknown[]) => any;
|
|
43
|
-
"onValue-change"?: () => any;
|
|
44
|
-
onFocus?: () => any;
|
|
45
42
|
onBlur?: () => any;
|
|
46
|
-
|
|
47
|
-
onHide?: () => any;
|
|
43
|
+
onFocus?: () => any;
|
|
48
44
|
onInput?: () => any;
|
|
45
|
+
onKeydown?: () => any;
|
|
46
|
+
"onUpdate:modelValue"?: (...args: unknown[]) => any;
|
|
47
|
+
onHide?: () => any;
|
|
48
|
+
onShow?: () => any;
|
|
49
|
+
"onValue-change"?: () => any;
|
|
49
50
|
"onDate-select"?: () => any;
|
|
50
51
|
"onToday-click"?: () => any;
|
|
51
52
|
"onClear-click"?: () => any;
|
|
52
53
|
"onMonth-change"?: () => any;
|
|
53
54
|
"onYear-change"?: () => any;
|
|
54
|
-
onKeydown?: () => any;
|
|
55
55
|
}>, {
|
|
56
56
|
customValidators: unknown[];
|
|
57
57
|
labelProps: Record<string, unknown>;
|
|
@@ -133,9 +133,9 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
133
133
|
"onClick:primary"?: (...args: any[]) => any;
|
|
134
134
|
"onClick:secondary"?: (...args: any[]) => any;
|
|
135
135
|
}>, {
|
|
136
|
-
size: string;
|
|
137
|
-
text: string;
|
|
138
136
|
title: string;
|
|
137
|
+
text: string;
|
|
138
|
+
size: string;
|
|
139
139
|
headline: string;
|
|
140
140
|
primaryActionText: string;
|
|
141
141
|
secondaryActionText: string;
|
|
@@ -27,11 +27,11 @@ type __VLS_ModelProps = {
|
|
|
27
27
|
};
|
|
28
28
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
29
29
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
30
|
-
"update:activeIndex": (value: number) => any;
|
|
31
30
|
"update:visible": (value: boolean) => any;
|
|
31
|
+
"update:activeIndex": (value: number) => any;
|
|
32
32
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
33
|
-
"onUpdate:activeIndex"?: (value: number) => any;
|
|
34
33
|
"onUpdate:visible"?: (value: boolean) => any;
|
|
34
|
+
"onUpdate:activeIndex"?: (value: number) => any;
|
|
35
35
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
36
36
|
declare const _default: typeof __VLS_export;
|
|
37
37
|
export default _default;
|
|
@@ -15,8 +15,8 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
|
|
|
15
15
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
16
16
|
onClick?: (...args: MouseEvent[]) => any;
|
|
17
17
|
}>, {
|
|
18
|
-
size: ComponentSize;
|
|
19
18
|
disabled: boolean;
|
|
19
|
+
size: ComponentSize;
|
|
20
20
|
color: IconColor;
|
|
21
21
|
iconPrefix: string;
|
|
22
22
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -53,7 +53,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
53
53
|
onClick?: (...args: any[]) => any;
|
|
54
54
|
onMousedown?: (...args: any[]) => any;
|
|
55
55
|
}>, {
|
|
56
|
-
size: string;
|
|
57
56
|
disabled: boolean;
|
|
57
|
+
size: string;
|
|
58
58
|
'sort:order': string;
|
|
59
59
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -17,7 +17,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
17
17
|
* @example '<wt-indicator text="Sample Text"></wt-indicator>'
|
|
18
18
|
*/
|
|
19
19
|
text: {
|
|
20
|
-
type: (
|
|
20
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
21
21
|
};
|
|
22
22
|
/**
|
|
23
23
|
* The size of the component
|
|
@@ -49,7 +49,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
49
49
|
* @example '<wt-indicator text="Sample Text"></wt-indicator>'
|
|
50
50
|
*/
|
|
51
51
|
text: {
|
|
52
|
-
type: (
|
|
52
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
53
53
|
};
|
|
54
54
|
/**
|
|
55
55
|
* The size of the component
|
|
@@ -13,8 +13,8 @@ declare const __VLS_base: import("vue").DefineComponent<WtInlineAddPanel, {}, {}
|
|
|
13
13
|
onReset?: (...args: any[]) => any;
|
|
14
14
|
onSubmit?: (...args: any[]) => any;
|
|
15
15
|
}>, {
|
|
16
|
-
direction: "row" | "column";
|
|
17
16
|
disabledAddAction: boolean;
|
|
17
|
+
direction: "row" | "column";
|
|
18
18
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
19
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
20
20
|
declare const _default: typeof __VLS_export;
|
|
@@ -40,14 +40,14 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
40
40
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
41
41
|
"onUpdate:modelValue"?: (value: number) => any;
|
|
42
42
|
}>, {
|
|
43
|
-
disabled: boolean;
|
|
44
|
-
label: string;
|
|
45
43
|
required: boolean;
|
|
44
|
+
label: string;
|
|
45
|
+
disabled: boolean;
|
|
46
|
+
placeholder: string;
|
|
46
47
|
step: number;
|
|
48
|
+
customValidators: unknown[];
|
|
47
49
|
min: number;
|
|
48
50
|
max: number;
|
|
49
|
-
placeholder: string;
|
|
50
|
-
customValidators: unknown[];
|
|
51
51
|
v: Record<string, unknown>;
|
|
52
52
|
regleValidation: RegleFieldStatus<number>;
|
|
53
53
|
labelProps: Record<string, unknown>;
|