@webitel/ui-sdk 26.6.64 → 26.6.66
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/{clients-DtfBVBhI.js → clients-B1AOAvEK.js} +358 -81
- package/dist/{components-eoQi5zKf.js → components-C2Y_Q08L.js} +2993 -1402
- package/dist/toZonedTime-B8L5kbse.js +308 -0
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +12678 -578
- package/dist/ui-sdk.umd.cjs +1841 -1838
- package/dist/{wt-button-DSxkafVk.js → wt-button-uY5Q1GAg.js} +3 -2
- package/dist/{wt-chat-emoji-CROATNmD.js → wt-chat-emoji-B11mhNOu.js} +2 -2
- package/dist/wt-datepicker-BGSK1JFI.js +286 -0
- package/dist/{wt-display-chip-items-BYkx7GAw.js → wt-display-chip-items-DmQstZ3Y.js} +1 -1
- package/dist/{wt-player-C-Ucuchh.js → wt-player-B2SZ_NSb.js} +1 -1
- package/dist/{wt-send-message-popup-DuRb4ozr.js → wt-send-message-popup-DHdVFhOt.js} +2 -2
- package/dist/{wt-type-extension-value-input-BroXv_Jr.js → wt-type-extension-value-input-3100gKfK.js} +6 -6
- package/dist/{wt-vidstack-player-1BqwgHog.js → wt-vidstack-player-BWe7cgoj.js} +2 -2
- package/package.json +2 -1
- package/src/components/on-demand/wt-type-extension-value-input/wt-type-extension-value-input.vue +3 -3
- package/src/components/wt-button/wt-button.vue +2 -1
- package/src/components/wt-datepicker/wt-datepicker.vue +193 -253
- package/src/locale/en/en.js +2 -0
- package/src/locale/es/es.js +2 -0
- package/src/locale/kz/kz.js +2 -0
- package/src/locale/pl/pl.js +2 -0
- package/src/locale/ro/ro.js +2 -0
- package/src/locale/ru/ru.js +2 -0
- package/src/locale/uk/uk.js +2 -0
- package/src/locale/uz/uz.js +2 -0
- package/src/locale/vi/vi.js +2 -0
- package/src/modules/Filters/components/filter-datetime.vue +3 -3
- package/src/modules/QueryFilters/components/filter-datetime.vue +3 -3
- package/src/plugins/primevue/primevue.plugin.js +11 -1
- package/src/plugins/primevue/theme/components/button/button.js +1 -1
- package/src/plugins/primevue/theme/components/components.js +2 -0
- package/src/plugins/primevue/theme/components/datepicker/datepicker.js +8 -0
- package/types/components/wt-datepicker/wt-datepicker.vue.d.ts +62 -140
- package/types/components/wt-popover/wt-popover.vue.d.ts +1 -1
- package/types/locale/en/en.d.ts +2 -0
- package/types/locale/es/es.d.ts +2 -0
- package/types/locale/i18n.d.ts +18 -0
- package/types/locale/index.d.ts +18 -0
- package/types/locale/kz/kz.d.ts +2 -0
- package/types/locale/pl/pl.d.ts +2 -0
- package/types/locale/ro/ro.d.ts +2 -0
- package/types/locale/ru/ru.d.ts +2 -0
- package/types/locale/uk/uk.d.ts +2 -0
- package/types/locale/uz/uz.d.ts +2 -0
- package/types/locale/vi/vi.d.ts +2 -0
- package/types/plugins/primevue/theme/components/components.d.ts +2 -0
- package/types/plugins/primevue/theme/components/datepicker/datepicker.d.ts +214 -0
- package/dist/dist-uCh8HaP3.js +0 -1910
- package/dist/wt-datepicker-EX4vuaeW.js +0 -5774
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
export default datePicker;
|
|
2
|
+
declare namespace datePicker {
|
|
3
|
+
let root: {
|
|
4
|
+
root: {
|
|
5
|
+
transitionDuration: string;
|
|
6
|
+
};
|
|
7
|
+
panel: {
|
|
8
|
+
borderRadius: string;
|
|
9
|
+
shadow: string;
|
|
10
|
+
padding: string;
|
|
11
|
+
};
|
|
12
|
+
header: {
|
|
13
|
+
padding: string;
|
|
14
|
+
};
|
|
15
|
+
title: {
|
|
16
|
+
gap: string;
|
|
17
|
+
fontWeight: string;
|
|
18
|
+
};
|
|
19
|
+
dropdown: {
|
|
20
|
+
width: string;
|
|
21
|
+
sm: {
|
|
22
|
+
width: string;
|
|
23
|
+
};
|
|
24
|
+
lg: {
|
|
25
|
+
width: string;
|
|
26
|
+
};
|
|
27
|
+
borderRadius: string;
|
|
28
|
+
focusRing: {
|
|
29
|
+
width: string;
|
|
30
|
+
style: string;
|
|
31
|
+
color: string;
|
|
32
|
+
offset: string;
|
|
33
|
+
shadow: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
selectMonth: {
|
|
37
|
+
padding: string;
|
|
38
|
+
borderRadius: string;
|
|
39
|
+
};
|
|
40
|
+
selectYear: {
|
|
41
|
+
padding: string;
|
|
42
|
+
borderRadius: string;
|
|
43
|
+
};
|
|
44
|
+
group: {
|
|
45
|
+
gap: string;
|
|
46
|
+
};
|
|
47
|
+
dayView: {
|
|
48
|
+
margin: string;
|
|
49
|
+
};
|
|
50
|
+
weekDay: {
|
|
51
|
+
padding: string;
|
|
52
|
+
fontWeight: string;
|
|
53
|
+
};
|
|
54
|
+
date: {
|
|
55
|
+
width: string;
|
|
56
|
+
height: string;
|
|
57
|
+
borderRadius: string;
|
|
58
|
+
padding: string;
|
|
59
|
+
focusRing: {
|
|
60
|
+
width: string;
|
|
61
|
+
style: string;
|
|
62
|
+
color: string;
|
|
63
|
+
offset: string;
|
|
64
|
+
shadow: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
monthView: {
|
|
68
|
+
margin: string;
|
|
69
|
+
};
|
|
70
|
+
month: {
|
|
71
|
+
padding: string;
|
|
72
|
+
borderRadius: string;
|
|
73
|
+
};
|
|
74
|
+
yearView: {
|
|
75
|
+
margin: string;
|
|
76
|
+
};
|
|
77
|
+
year: {
|
|
78
|
+
padding: string;
|
|
79
|
+
borderRadius: string;
|
|
80
|
+
};
|
|
81
|
+
buttonbar: {
|
|
82
|
+
padding: string;
|
|
83
|
+
};
|
|
84
|
+
timePicker: {
|
|
85
|
+
padding: string;
|
|
86
|
+
gap: string;
|
|
87
|
+
buttonGap: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
let colorScheme: {
|
|
91
|
+
light: {
|
|
92
|
+
panel: {
|
|
93
|
+
background: string;
|
|
94
|
+
borderColor: string;
|
|
95
|
+
color: string;
|
|
96
|
+
};
|
|
97
|
+
header: {
|
|
98
|
+
background: string;
|
|
99
|
+
borderColor: string;
|
|
100
|
+
color: string;
|
|
101
|
+
};
|
|
102
|
+
dropdown: {
|
|
103
|
+
background: string;
|
|
104
|
+
hoverBackground: string;
|
|
105
|
+
activeBackground: string;
|
|
106
|
+
borderColor: string;
|
|
107
|
+
hoverBorderColor: string;
|
|
108
|
+
activeBorderColor: string;
|
|
109
|
+
color: string;
|
|
110
|
+
hoverColor: string;
|
|
111
|
+
activeColor: string;
|
|
112
|
+
};
|
|
113
|
+
inputIcon: {
|
|
114
|
+
color: string;
|
|
115
|
+
};
|
|
116
|
+
selectMonth: {
|
|
117
|
+
hoverBackground: string;
|
|
118
|
+
color: string;
|
|
119
|
+
hoverColor: string;
|
|
120
|
+
};
|
|
121
|
+
selectYear: {
|
|
122
|
+
hoverBackground: string;
|
|
123
|
+
color: string;
|
|
124
|
+
hoverColor: string;
|
|
125
|
+
};
|
|
126
|
+
group: {
|
|
127
|
+
borderColor: string;
|
|
128
|
+
};
|
|
129
|
+
weekDay: {
|
|
130
|
+
color: string;
|
|
131
|
+
};
|
|
132
|
+
date: {
|
|
133
|
+
hoverBackground: string;
|
|
134
|
+
selectedBackground: string;
|
|
135
|
+
rangeSelectedBackground: string;
|
|
136
|
+
color: string;
|
|
137
|
+
hoverColor: string;
|
|
138
|
+
selectedColor: string;
|
|
139
|
+
rangeSelectedColor: string;
|
|
140
|
+
};
|
|
141
|
+
today: {
|
|
142
|
+
background: string;
|
|
143
|
+
color: string;
|
|
144
|
+
};
|
|
145
|
+
buttonbar: {
|
|
146
|
+
borderColor: string;
|
|
147
|
+
};
|
|
148
|
+
timePicker: {
|
|
149
|
+
borderColor: string;
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
dark: {
|
|
153
|
+
panel: {
|
|
154
|
+
background: string;
|
|
155
|
+
borderColor: string;
|
|
156
|
+
color: string;
|
|
157
|
+
};
|
|
158
|
+
header: {
|
|
159
|
+
background: string;
|
|
160
|
+
borderColor: string;
|
|
161
|
+
color: string;
|
|
162
|
+
};
|
|
163
|
+
dropdown: {
|
|
164
|
+
background: string;
|
|
165
|
+
hoverBackground: string;
|
|
166
|
+
activeBackground: string;
|
|
167
|
+
borderColor: string;
|
|
168
|
+
hoverBorderColor: string;
|
|
169
|
+
activeBorderColor: string;
|
|
170
|
+
color: string;
|
|
171
|
+
hoverColor: string;
|
|
172
|
+
activeColor: string;
|
|
173
|
+
};
|
|
174
|
+
inputIcon: {
|
|
175
|
+
color: string;
|
|
176
|
+
};
|
|
177
|
+
selectMonth: {
|
|
178
|
+
hoverBackground: string;
|
|
179
|
+
color: string;
|
|
180
|
+
hoverColor: string;
|
|
181
|
+
};
|
|
182
|
+
selectYear: {
|
|
183
|
+
hoverBackground: string;
|
|
184
|
+
color: string;
|
|
185
|
+
hoverColor: string;
|
|
186
|
+
};
|
|
187
|
+
group: {
|
|
188
|
+
borderColor: string;
|
|
189
|
+
};
|
|
190
|
+
weekDay: {
|
|
191
|
+
color: string;
|
|
192
|
+
};
|
|
193
|
+
date: {
|
|
194
|
+
hoverBackground: string;
|
|
195
|
+
selectedBackground: string;
|
|
196
|
+
rangeSelectedBackground: string;
|
|
197
|
+
color: string;
|
|
198
|
+
hoverColor: string;
|
|
199
|
+
selectedColor: string;
|
|
200
|
+
rangeSelectedColor: string;
|
|
201
|
+
};
|
|
202
|
+
today: {
|
|
203
|
+
background: string;
|
|
204
|
+
color: string;
|
|
205
|
+
};
|
|
206
|
+
buttonbar: {
|
|
207
|
+
borderColor: string;
|
|
208
|
+
};
|
|
209
|
+
timePicker: {
|
|
210
|
+
borderColor: string;
|
|
211
|
+
};
|
|
212
|
+
};
|
|
213
|
+
};
|
|
214
|
+
}
|