@webitel/ui-sdk 25.12.25 → 25.12.26

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.
Files changed (47) hide show
  1. package/dist/{install-Dlm9F6VX.js → install-CrrAB4P5.js} +24 -24
  2. package/dist/{plyr-C2xH9S2_.js → plyr-C3Uj3y6H.js} +1 -1
  3. package/dist/ui-sdk.js +1 -1
  4. package/dist/ui-sdk.umd.cjs +11 -11
  5. package/dist/{vidstack-Bq6c3Bam-LBg_N7NA.js → vidstack-Bq6c3Bam-qlp5tBOT.js} +2 -2
  6. package/dist/{vidstack-D2pY00kU-B54jdjLZ.js → vidstack-D2pY00kU-CgOqqLnl.js} +2 -2
  7. package/dist/{vidstack-DDXt6fpN-0R_qWhr7.js → vidstack-DDXt6fpN-BqBO9dqI.js} +1 -1
  8. package/dist/{vidstack-D_-9AA6_-C20rEPA8.js → vidstack-D_-9AA6_-B_AxbMpy.js} +1 -1
  9. package/dist/{vidstack-DqAw8m9J-BVoQCcQn.js → vidstack-DqAw8m9J-DyYO78jE.js} +1 -1
  10. package/dist/{vidstack-audio-CVUfqXtN.js → vidstack-audio-BcC_A5EM.js} +2 -2
  11. package/dist/{vidstack-dash-DH1tKEgp.js → vidstack-dash-BIJxAfqI.js} +3 -3
  12. package/dist/{vidstack-google-cast-Chb7A1N-.js → vidstack-google-cast-DHfvKys1.js} +3 -3
  13. package/dist/{vidstack-hls-isJ6fzIa.js → vidstack-hls--7YShOeE.js} +3 -3
  14. package/dist/{vidstack-video-Oj0vav_S.js → vidstack-video-DS-N7qQ5.js} +2 -2
  15. package/dist/{vidstack-vimeo-t7YlxjO1.js → vidstack-vimeo-BZB0pZh_.js} +3 -3
  16. package/dist/{vidstack-youtube-Dx4AYrj5.js → vidstack-youtube-1XqeoBGJ.js} +2 -2
  17. package/package.json +1 -1
  18. package/src/plugins/primevue/theme/components/breadcrumb/breadcrumb.js +1 -1
  19. package/src/plugins/primevue/theme/components/button/button.js +1 -1
  20. package/src/plugins/primevue/theme/components/checkbox/checkbox.js +1 -1
  21. package/src/plugins/primevue/theme/components/chip/chip.js +1 -2
  22. package/src/plugins/primevue/theme/components/divider/divider.js +1 -1
  23. package/src/plugins/primevue/theme/components/galleria/galleria.js +1 -1
  24. package/src/plugins/primevue/theme/components/menubar/menubar.js +1 -1
  25. package/src/plugins/primevue/theme/components/popover/popover.js +1 -1
  26. package/src/plugins/primevue/theme/components/radio/radio.js +1 -1
  27. package/src/plugins/primevue/theme/components/slider/slider.js +1 -1
  28. package/src/plugins/primevue/theme/components/switcher/switcher.js +1 -1
  29. package/src/plugins/primevue/theme/components/table/table.js +1 -1
  30. package/src/plugins/primevue/theme/components/textarea/textarea.js +1 -1
  31. package/src/plugins/primevue/theme/components/toolbar/toolbar.js +1 -1
  32. package/src/plugins/primevue/theme/components/tooltip/tooltip.js +1 -1
  33. package/types/plugins/primevue/theme/components/breadcrumb/breadcrumb.d.ts +24 -22
  34. package/types/plugins/primevue/theme/components/button/button.d.ts +55 -53
  35. package/types/plugins/primevue/theme/components/checkbox/checkbox.d.ts +36 -34
  36. package/types/plugins/primevue/theme/components/chip/chip.d.ts +20 -18
  37. package/types/plugins/primevue/theme/components/divider/divider.d.ts +19 -17
  38. package/types/plugins/primevue/theme/components/galleria/galleria.d.ts +94 -92
  39. package/types/plugins/primevue/theme/components/menubar/menubar.d.ts +10 -8
  40. package/types/plugins/primevue/theme/components/popover/popover.d.ts +10 -8
  41. package/types/plugins/primevue/theme/components/radio/radio.d.ts +36 -34
  42. package/types/plugins/primevue/theme/components/slider/slider.d.ts +27 -25
  43. package/types/plugins/primevue/theme/components/switcher/switcher.d.ts +20 -18
  44. package/types/plugins/primevue/theme/components/table/table.d.ts +103 -101
  45. package/types/plugins/primevue/theme/components/textarea/textarea.d.ts +29 -27
  46. package/types/plugins/primevue/theme/components/toolbar/toolbar.d.ts +8 -6
  47. package/types/plugins/primevue/theme/components/tooltip/tooltip.d.ts +12 -10
@@ -1,6 +1,25 @@
1
1
  export default breadcrumb;
2
- declare const breadcrumb: {
3
- colorScheme: {
2
+ declare namespace breadcrumb {
3
+ let root: {
4
+ root: {
5
+ padding: string;
6
+ gap: string;
7
+ transitionDuration: string;
8
+ };
9
+ item: {
10
+ borderRadius: string;
11
+ gap: string;
12
+ focusRing: {
13
+ width: string;
14
+ style: string;
15
+ offset: string;
16
+ };
17
+ };
18
+ separator: {
19
+ size: string;
20
+ };
21
+ };
22
+ let colorScheme: {
4
23
  light: {
5
24
  root: {
6
25
  background: string;
@@ -44,24 +63,7 @@ declare const breadcrumb: {
44
63
  };
45
64
  };
46
65
  };
47
- css: ({ dt }: {
66
+ function css({ dt }: {
48
67
  dt: any;
49
- }) => string;
50
- root: {
51
- padding: string;
52
- gap: string;
53
- transitionDuration: string;
54
- };
55
- item: {
56
- borderRadius: string;
57
- gap: string;
58
- focusRing: {
59
- width: string;
60
- style: string;
61
- offset: string;
62
- };
63
- };
64
- separator: {
65
- size: string;
66
- };
67
- };
68
+ }): string;
69
+ }
@@ -1,6 +1,48 @@
1
1
  export default button;
2
- declare const button: {
3
- colorScheme: {
2
+ declare namespace button {
3
+ let root: {
4
+ borderRadius: string;
5
+ roundedBorderRadius: string;
6
+ gap: string;
7
+ paddingX: string;
8
+ paddingY: string;
9
+ iconOnlyWidth: string;
10
+ sm: {
11
+ fontSize: string;
12
+ paddingX: string;
13
+ paddingY: string;
14
+ iconOnlyWidth: string;
15
+ };
16
+ lg: {
17
+ fontSize: string;
18
+ paddingX: string;
19
+ paddingY: string;
20
+ iconOnlyWidth: string;
21
+ };
22
+ icon: {
23
+ xs: {
24
+ padding: string;
25
+ };
26
+ sm: {
27
+ padding: string;
28
+ };
29
+ md: {
30
+ padding: string;
31
+ };
32
+ };
33
+ label: {
34
+ fontWeight: string;
35
+ };
36
+ raisedShadow: string;
37
+ focusRing: {
38
+ width: string;
39
+ style: string;
40
+ offset: string;
41
+ };
42
+ badgeSize: string;
43
+ transitionDuration: string;
44
+ };
45
+ let colorScheme: {
4
46
  light: {
5
47
  root: {
6
48
  primary: {
@@ -452,55 +494,15 @@ declare const button: {
452
494
  };
453
495
  };
454
496
  };
455
- extend: {
456
- transfer: {
457
- background: string;
458
- hoverBackground: string;
459
- color: string;
460
- hoverColor: string;
461
- };
462
- };
463
- css: ({ dt }: {
497
+ namespace extend {
498
+ namespace transfer {
499
+ let background: string;
500
+ let hoverBackground: string;
501
+ let color: string;
502
+ let hoverColor: string;
503
+ }
504
+ }
505
+ function css({ dt }: {
464
506
  dt: any;
465
- }) => string;
466
- borderRadius: string;
467
- roundedBorderRadius: string;
468
- gap: string;
469
- paddingX: string;
470
- paddingY: string;
471
- iconOnlyWidth: string;
472
- sm: {
473
- fontSize: string;
474
- paddingX: string;
475
- paddingY: string;
476
- iconOnlyWidth: string;
477
- };
478
- lg: {
479
- fontSize: string;
480
- paddingX: string;
481
- paddingY: string;
482
- iconOnlyWidth: string;
483
- };
484
- icon: {
485
- xs: {
486
- padding: string;
487
- };
488
- sm: {
489
- padding: string;
490
- };
491
- md: {
492
- padding: string;
493
- };
494
- };
495
- label: {
496
- fontWeight: string;
497
- };
498
- raisedShadow: string;
499
- focusRing: {
500
- width: string;
501
- style: string;
502
- offset: string;
503
- };
504
- badgeSize: string;
505
- transitionDuration: string;
506
- };
507
+ }): string;
508
+ }
@@ -1,6 +1,37 @@
1
1
  export default checkbox;
2
- declare const checkbox: {
3
- colorScheme: {
2
+ declare namespace checkbox {
3
+ let root: {
4
+ root: {
5
+ borderRadius: string;
6
+ width: string;
7
+ height: string;
8
+ wrapperWidth: string;
9
+ wrapperHeight: string;
10
+ sm: {
11
+ width: string;
12
+ height: string;
13
+ };
14
+ lg: {
15
+ width: string;
16
+ height: string;
17
+ };
18
+ focusRing: {
19
+ width: string;
20
+ style: string;
21
+ offset: string;
22
+ };
23
+ };
24
+ icon: {
25
+ size: string;
26
+ sm: {
27
+ size: string;
28
+ };
29
+ lg: {
30
+ size: string;
31
+ };
32
+ };
33
+ };
34
+ let colorScheme: {
4
35
  light: {
5
36
  root: {
6
37
  background: string;
@@ -60,36 +91,7 @@ declare const checkbox: {
60
91
  };
61
92
  };
62
93
  };
63
- css: ({ dt }: {
94
+ function css({ dt }: {
64
95
  dt: any;
65
- }) => string;
66
- root: {
67
- borderRadius: string;
68
- width: string;
69
- height: string;
70
- wrapperWidth: string;
71
- wrapperHeight: string;
72
- sm: {
73
- width: string;
74
- height: string;
75
- };
76
- lg: {
77
- width: string;
78
- height: string;
79
- };
80
- focusRing: {
81
- width: string;
82
- style: string;
83
- offset: string;
84
- };
85
- };
86
- icon: {
87
- size: string;
88
- sm: {
89
- size: string;
90
- };
91
- lg: {
92
- size: string;
93
- };
94
- };
95
- };
96
+ }): string;
97
+ }
@@ -1,6 +1,21 @@
1
1
  export default chip;
2
- declare const chip: {
3
- colorScheme: {
2
+ declare namespace chip {
3
+ let root: {
4
+ borderRadius: string;
5
+ paddingX: string;
6
+ paddingY: string;
7
+ gap: string;
8
+ transitionDuration: string;
9
+ removeIcon: {
10
+ size: string;
11
+ focusRing: {
12
+ width: string;
13
+ style: string;
14
+ offset: string;
15
+ };
16
+ };
17
+ };
18
+ let colorScheme: {
4
19
  light: {
5
20
  background: string;
6
21
  color: string;
@@ -104,20 +119,7 @@ declare const chip: {
104
119
  };
105
120
  };
106
121
  };
107
- css: ({ dt }: {
122
+ function css({ dt }: {
108
123
  dt: any;
109
- }) => string;
110
- borderRadius: string;
111
- paddingX: string;
112
- paddingY: string;
113
- gap: string;
114
- transitionDuration: string;
115
- removeIcon: {
116
- size: string;
117
- focusRing: {
118
- width: string;
119
- style: string;
120
- offset: string;
121
- };
122
- };
123
- };
124
+ }): string;
125
+ }
@@ -1,6 +1,22 @@
1
1
  export default divider;
2
- declare const divider: {
3
- colorScheme: {
2
+ declare namespace divider {
3
+ let root: {
4
+ horizontal: {
5
+ margin: string;
6
+ padding: string;
7
+ content: {
8
+ padding: string;
9
+ };
10
+ };
11
+ vertical: {
12
+ margin: string;
13
+ padding: string;
14
+ content: {
15
+ padding: string;
16
+ };
17
+ };
18
+ };
19
+ let colorScheme: {
4
20
  light: {
5
21
  root: {
6
22
  borderColor: string;
@@ -20,18 +36,4 @@ declare const divider: {
20
36
  };
21
37
  };
22
38
  };
23
- horizontal: {
24
- margin: string;
25
- padding: string;
26
- content: {
27
- padding: string;
28
- };
29
- };
30
- vertical: {
31
- margin: string;
32
- padding: string;
33
- content: {
34
- padding: string;
35
- };
36
- };
37
- };
39
+ }
@@ -1,6 +1,95 @@
1
1
  export default galleria;
2
- declare const galleria: {
3
- colorScheme: {
2
+ declare namespace galleria {
3
+ let root: {
4
+ root: {
5
+ borderWidth: string;
6
+ borderRadius: string;
7
+ transitionDuration: string;
8
+ };
9
+ mask: {
10
+ zIndex: string;
11
+ };
12
+ activeImageContainer: {
13
+ width: string;
14
+ height: string;
15
+ };
16
+ fullscreenImage: {
17
+ maxHeight: string;
18
+ maxWidth9: string;
19
+ };
20
+ navButton: {
21
+ size: string;
22
+ gutter: string;
23
+ prev: {
24
+ borderRadius: string;
25
+ };
26
+ next: {
27
+ borderRadius: string;
28
+ };
29
+ focusRing: {
30
+ width: string;
31
+ style: string;
32
+ offset: string;
33
+ };
34
+ };
35
+ navIcon: {
36
+ size: string;
37
+ };
38
+ thumbnailsContent: {
39
+ padding: string;
40
+ };
41
+ thumbnailImage: {
42
+ width: string;
43
+ height: string;
44
+ };
45
+ thumbnailNavButton: {
46
+ size: string;
47
+ borderRadius: string;
48
+ gutter: string;
49
+ focusRing: {
50
+ width: string;
51
+ style: string;
52
+ offset: string;
53
+ };
54
+ };
55
+ thumbnailNavButtonIcon: {
56
+ size: string;
57
+ };
58
+ caption: {
59
+ padding: string;
60
+ };
61
+ indicatorList: {
62
+ gap: string;
63
+ padding: string;
64
+ };
65
+ indicatorButton: {
66
+ width: string;
67
+ height: string;
68
+ borderRadius: string;
69
+ focusRing: {
70
+ width: string;
71
+ style: string;
72
+ offset: string;
73
+ };
74
+ };
75
+ closeButton: {
76
+ size: string;
77
+ gutter: string;
78
+ borderRadius: string;
79
+ focusRing: {
80
+ width: string;
81
+ style: string;
82
+ offset: string;
83
+ };
84
+ };
85
+ closeButtonIcon: {
86
+ size: string;
87
+ };
88
+ footer: {
89
+ padding: string;
90
+ };
91
+ };
92
+ let colorScheme: {
4
93
  light: {
5
94
  root: {
6
95
  borderColor: string;
@@ -140,94 +229,7 @@ declare const galleria: {
140
229
  };
141
230
  };
142
231
  };
143
- css: ({ dt }: {
232
+ function css({ dt }: {
144
233
  dt: any;
145
- }) => string;
146
- root: {
147
- borderWidth: string;
148
- borderRadius: string;
149
- transitionDuration: string;
150
- };
151
- mask: {
152
- zIndex: string;
153
- };
154
- activeImageContainer: {
155
- width: string;
156
- height: string;
157
- };
158
- fullscreenImage: {
159
- maxHeight: string;
160
- maxWidth9: string;
161
- };
162
- navButton: {
163
- size: string;
164
- gutter: string;
165
- prev: {
166
- borderRadius: string;
167
- };
168
- next: {
169
- borderRadius: string;
170
- };
171
- focusRing: {
172
- width: string;
173
- style: string;
174
- offset: string;
175
- };
176
- };
177
- navIcon: {
178
- size: string;
179
- };
180
- thumbnailsContent: {
181
- padding: string;
182
- };
183
- thumbnailImage: {
184
- width: string;
185
- height: string;
186
- };
187
- thumbnailNavButton: {
188
- size: string;
189
- borderRadius: string;
190
- gutter: string;
191
- focusRing: {
192
- width: string;
193
- style: string;
194
- offset: string;
195
- };
196
- };
197
- thumbnailNavButtonIcon: {
198
- size: string;
199
- };
200
- caption: {
201
- padding: string;
202
- };
203
- indicatorList: {
204
- gap: string;
205
- padding: string;
206
- };
207
- indicatorButton: {
208
- width: string;
209
- height: string;
210
- borderRadius: string;
211
- focusRing: {
212
- width: string;
213
- style: string;
214
- offset: string;
215
- };
216
- };
217
- closeButton: {
218
- size: string;
219
- gutter: string;
220
- borderRadius: string;
221
- focusRing: {
222
- width: string;
223
- style: string;
224
- offset: string;
225
- };
226
- };
227
- closeButtonIcon: {
228
- size: string;
229
- };
230
- footer: {
231
- padding: string;
232
- };
233
- };
234
+ }): string;
235
+ }
@@ -1,6 +1,11 @@
1
1
  export default menubar;
2
- declare const menubar: {
3
- colorScheme: {
2
+ declare namespace menubar {
3
+ let root: {
4
+ gap: string;
5
+ padding: string;
6
+ borderRadius: string;
7
+ };
8
+ let colorScheme: {
4
9
  light: {
5
10
  background: string;
6
11
  borderColor: string;
@@ -14,10 +19,7 @@ declare const menubar: {
14
19
  transitionDuration: string;
15
20
  };
16
21
  };
17
- css: ({ dt }: {
22
+ function css({ dt }: {
18
23
  dt: any;
19
- }) => string;
20
- gap: string;
21
- padding: string;
22
- borderRadius: string;
23
- };
24
+ }): string;
25
+ }
@@ -1,6 +1,13 @@
1
1
  export default popover;
2
- declare const popover: {
3
- colorScheme: {
2
+ declare namespace popover {
3
+ let root: {
4
+ padding: string;
5
+ gutter: string;
6
+ arrowOffset: string;
7
+ borderRadius: string;
8
+ shadow: string;
9
+ };
10
+ let colorScheme: {
4
11
  light: {
5
12
  background: string;
6
13
  borderColor: string;
@@ -12,9 +19,4 @@ declare const popover: {
12
19
  color: string;
13
20
  };
14
21
  };
15
- padding: string;
16
- gutter: string;
17
- arrowOffset: string;
18
- borderRadius: string;
19
- shadow: string;
20
- };
22
+ }
@@ -1,6 +1,37 @@
1
1
  export default radio;
2
- declare const radio: {
3
- colorScheme: {
2
+ declare namespace radio {
3
+ let root: {
4
+ root: {
5
+ width: string;
6
+ height: string;
7
+ focusRing: {
8
+ width: string;
9
+ style: string;
10
+ offset: string;
11
+ };
12
+ transitionDuration: string;
13
+ sm: {
14
+ width: string;
15
+ height: string;
16
+ };
17
+ lg: {
18
+ width: string;
19
+ height: string;
20
+ };
21
+ wrapperWidth: string;
22
+ wrapperHeight: string;
23
+ };
24
+ icon: {
25
+ size: string;
26
+ sm: {
27
+ size: string;
28
+ };
29
+ lg: {
30
+ size: string;
31
+ };
32
+ };
33
+ };
34
+ let colorScheme: {
4
35
  light: {
5
36
  root: {
6
37
  background: string;
@@ -56,36 +87,7 @@ declare const radio: {
56
87
  };
57
88
  };
58
89
  };
59
- css: ({ dt }: {
90
+ function css({ dt }: {
60
91
  dt: any;
61
- }) => string;
62
- root: {
63
- width: string;
64
- height: string;
65
- focusRing: {
66
- width: string;
67
- style: string;
68
- offset: string;
69
- };
70
- transitionDuration: string;
71
- sm: {
72
- width: string;
73
- height: string;
74
- };
75
- lg: {
76
- width: string;
77
- height: string;
78
- };
79
- wrapperWidth: string;
80
- wrapperHeight: string;
81
- };
82
- icon: {
83
- size: string;
84
- sm: {
85
- size: string;
86
- };
87
- lg: {
88
- size: string;
89
- };
90
- };
91
- };
92
+ }): string;
93
+ }