@progress/kendo-vue-common 8.0.3-develop.2 → 8.0.3-develop.4

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 (62) hide show
  1. package/Draggable.d.ts +74 -0
  2. package/FormComponent.d.ts +91 -0
  3. package/browser-support.service.d.ts +14 -0
  4. package/canUseDOM.d.ts +12 -0
  5. package/classNames.d.ts +11 -0
  6. package/clone.d.ts +27 -0
  7. package/constants/main.d.ts +15 -0
  8. package/defaultSlots.d.ts +11 -0
  9. package/dist/cdn/js/kendo-vue-common.js +1 -1
  10. package/focus.d.ts +27 -0
  11. package/getActiveElement.d.ts +15 -0
  12. package/getTabIndex.d.ts +11 -0
  13. package/getter.d.ts +11 -0
  14. package/guid.d.ts +12 -0
  15. package/hasRelativeStackingContext.d.ts +9 -0
  16. package/icons/BaseIconProps.d.ts +84 -0
  17. package/icons/FontIcon.d.ts +94 -0
  18. package/icons/Icon.d.ts +97 -0
  19. package/icons/SvgIcon.d.ts +158 -0
  20. package/icons/constants.d.ts +20 -0
  21. package/icons/getIconName.d.ts +12 -0
  22. package/icons/models/flip.d.ts +18 -0
  23. package/icons/models/size.d.ts +22 -0
  24. package/icons/models/theme-color.d.ts +28 -0
  25. package/index.d.mts +39 -3324
  26. package/index.d.ts +39 -3324
  27. package/index.js +1 -1
  28. package/index.mjs +74 -74
  29. package/isObject.d.ts +11 -0
  30. package/isRtl.d.ts +15 -0
  31. package/keys.d.ts +28 -0
  32. package/listeners.d.ts +15 -0
  33. package/navigation.d.ts +53 -0
  34. package/noop.d.ts +12 -0
  35. package/package.json +1 -1
  36. package/providers/AdaptiveModeProvider.d.ts +63 -0
  37. package/refs.d.ts +15 -0
  38. package/rowHeightService.d.ts +31 -0
  39. package/scrollbarWidth.d.ts +15 -0
  40. package/setter.d.ts +11 -0
  41. package/templateRendering.d.ts +26 -0
  42. package/theme.d.ts +14 -0
  43. package/treeDataOperations.d.ts +50 -0
  44. package/unstyled/animations.d.ts +116 -0
  45. package/unstyled/buttons.d.ts +219 -0
  46. package/unstyled/common.d.ts +17 -0
  47. package/unstyled/dateinputs.d.ts +469 -0
  48. package/unstyled/dateinputs.mjs +1 -1
  49. package/unstyled/dropdowns.d.ts +338 -0
  50. package/unstyled/dropdowns.mjs +3 -3
  51. package/unstyled/form.d.ts +74 -0
  52. package/unstyled/grid.d.ts +12 -0
  53. package/unstyled/icons.d.ts +102 -0
  54. package/unstyled/inputs.d.ts +228 -0
  55. package/unstyled/interfaces/common.d.ts +111 -0
  56. package/unstyled/json-classes.d.ts +378 -0
  57. package/unstyled/labels.d.ts +111 -0
  58. package/unstyled/labels.mjs +1 -1
  59. package/unstyled/main.d.ts +26 -0
  60. package/unstyled/popup.d.ts +51 -0
  61. package/validate-package.d.ts +21 -0
  62. package/watermark/WatermarkOverlay.d.ts +69 -0
@@ -0,0 +1,469 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { WidgetClassStructure } from './interfaces/common';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export interface DateTimeSizeClasses {
13
+ /** Small size class for the date-time picker */
14
+ small?: string;
15
+ /** Medium size class for the date-time picker */
16
+ medium?: string;
17
+ /** Large size class for the date-time picker */
18
+ large?: string;
19
+ }
20
+ /**
21
+ * @hidden
22
+ */
23
+ export interface DateTimeFillModeClasses {
24
+ /** Solid fill mode class for the date-time picker */
25
+ solid?: string;
26
+ /** Outline fill mode class for the date-time picker */
27
+ outline?: string;
28
+ /** Flat fill mode class for the date-time picker */
29
+ flat?: string;
30
+ }
31
+ /**
32
+ * @hidden
33
+ */
34
+ export interface DateTimeRoundedClasses {
35
+ /** Small rounded class for the date-time picker */
36
+ small?: string;
37
+ /** Medium rounded class for the date-time picker */
38
+ medium?: string;
39
+ /** Large rounded class for the date-time picker */
40
+ large?: string;
41
+ }
42
+ /**
43
+ * @hidden
44
+ */
45
+ export interface TimeFooterClasses {
46
+ /** Main footer class for time date input */
47
+ main?: string;
48
+ /** Actions container class within the footer */
49
+ actions?: string;
50
+ /** Stretched state class for the footer actions */
51
+ stretched?: string;
52
+ /** Horizontal alignment class for the footer actions */
53
+ horizontal?: string;
54
+ }
55
+ /**
56
+ * @hidden
57
+ */
58
+ export interface TimePartClasses {
59
+ /** Main class for the part of the date input */
60
+ main?: string;
61
+ /** Disabled state class for the part */
62
+ disabled?: string;
63
+ }
64
+ /**
65
+ * @hidden
66
+ */
67
+ export interface TimeContainerClasses {
68
+ /** Main container class for the date input */
69
+ main?: string;
70
+ /** Scrollable state class for the container */
71
+ scrollable?: string;
72
+ /** Content class within the container */
73
+ content?: string;
74
+ }
75
+ /**
76
+ * @hidden
77
+ */
78
+ export interface TimeListWrapperClasses {
79
+ /** Main wrapper class for the list */
80
+ main?: string;
81
+ /** Focused state class for the list wrapper */
82
+ focused?: string;
83
+ }
84
+ /**
85
+ * @hidden
86
+ */
87
+ export interface TimeClasses {
88
+ /** Footer configuration for the date input */
89
+ footer?: TimeFooterClasses;
90
+ /** Cancel action class for the date input */
91
+ cancel?: string;
92
+ /** Accept action class for the date input */
93
+ accept?: string;
94
+ /** Part configuration for the date input */
95
+ part?: TimePartClasses;
96
+ /** Header class for the date input */
97
+ header?: string;
98
+ /** Now action class for the date input */
99
+ now?: string;
100
+ /** List container class for the date input */
101
+ listContainer?: string;
102
+ /** Highlighted state class for the date input */
103
+ highlight?: string;
104
+ /** List wrapper configuration for the date input */
105
+ listWrapper?: TimeListWrapperClasses;
106
+ /** List class for the date input */
107
+ list?: string;
108
+ /** Main container configuration for the date input */
109
+ container?: TimeContainerClasses;
110
+ /** Container selector class for the date input */
111
+ containerSelector?: string;
112
+ /** Separator class for the date input */
113
+ separator?: string;
114
+ /** Unordered list class */
115
+ ul?: string;
116
+ /** List item class */
117
+ li?: string;
118
+ /** Title class for the date input */
119
+ title?: string;
120
+ /** Scrollable placeholder class for the date input */
121
+ scrollablePlaceholder?: string;
122
+ }
123
+ /**
124
+ * @hidden
125
+ */
126
+ export declare const uTime: WidgetClassStructure;
127
+ /**
128
+ * @hidden
129
+ */
130
+ export interface TimePickerWrapperClasses {
131
+ /** Main class for the timepicker wrapper */
132
+ main?: string;
133
+ /** Input class for the timepicker */
134
+ input?: string;
135
+ /** Size configurations for the timepicker */
136
+ size?: DateTimeSizeClasses;
137
+ /** Fill mode configurations for the timepicker */
138
+ fillMode?: DateTimeFillModeClasses;
139
+ /** Rounded configurations for the timepicker */
140
+ rounded?: DateTimeRoundedClasses;
141
+ /** Disabled state class for the timepicker */
142
+ disabled?: string;
143
+ /** Required state class for the timepicker */
144
+ required?: string;
145
+ /** Invalid state class for the timepicker */
146
+ invalid?: string;
147
+ }
148
+ /**
149
+ * @hidden
150
+ */
151
+ export interface TimePopupClasses {
152
+ /** Main class for the timepicker popup */
153
+ main?: string;
154
+ /** Container class for the popup list */
155
+ container?: string;
156
+ }
157
+ /**
158
+ * @hidden
159
+ */
160
+ export interface TimeSelectorClasses {
161
+ /** Main class for the time selector */
162
+ main?: string;
163
+ /** Size configurations for the time selector */
164
+ size?: DateTimeSizeClasses;
165
+ /** Disabled state class for the time selector */
166
+ disabled?: string;
167
+ /** Reset class for the time selector */
168
+ reset?: string;
169
+ }
170
+ /**
171
+ * @hidden
172
+ */
173
+ export interface TimePickerClasses {
174
+ /** Wrapper configuration for the timepicker */
175
+ wrapper?: TimePickerWrapperClasses;
176
+ /** Button class for the input component of the timepicker */
177
+ inputButton?: string;
178
+ /** Popup configuration for the timepicker */
179
+ popup?: TimePopupClasses;
180
+ /** Time selector configuration for the timepicker */
181
+ timeSelector?: TimeSelectorClasses;
182
+ }
183
+ /**
184
+ * @hidden
185
+ */
186
+ export declare const uTimePicker: WidgetClassStructure;
187
+ /**
188
+ * @hidden
189
+ */
190
+ export interface CalendarWrapperClasses {
191
+ /** Main class for the calendar wrapper */
192
+ main?: string;
193
+ /** Prefix for the infinite calendar state */
194
+ infinite?: string;
195
+ /** Disabled state class for the calendar wrapper */
196
+ disabled?: string;
197
+ /** Week number class for the calendar */
198
+ weekNumber?: string;
199
+ /** Size configurations for the calendar */
200
+ size?: DateTimeSizeClasses;
201
+ }
202
+ /**
203
+ * @hidden
204
+ */
205
+ export interface CalendarViewClasses {
206
+ /** Main class for the calendar view */
207
+ main?: string;
208
+ /** Vertical alignment class for the calendar view */
209
+ vertical?: string;
210
+ /** Month view class for the calendar */
211
+ month?: string;
212
+ /** Year view class for the calendar */
213
+ year?: string;
214
+ /** Decade view class for the calendar */
215
+ decade?: string;
216
+ /** Century view class for the calendar */
217
+ century?: string;
218
+ }
219
+ /**
220
+ * @hidden
221
+ */
222
+ export interface CalendarTableClasses {
223
+ /** Main class for the calendar table */
224
+ main?: string;
225
+ /** Weekdays class for the calendar */
226
+ weekdays?: string;
227
+ }
228
+ /**
229
+ * @hidden
230
+ */
231
+ export interface CalendarTdClasses {
232
+ /** Main class for the table cell */
233
+ main?: string;
234
+ /** Range start class for the table cell */
235
+ rangeStart?: string;
236
+ /** Range end class for the table cell */
237
+ rangeEnd?: string;
238
+ /** Range middle class for the table cell */
239
+ rangeMid?: string;
240
+ /** Range split end class for the table cell */
241
+ rangeSplitEnd?: string;
242
+ /** Range split start class for the table cell */
243
+ rangeSplitStart?: string;
244
+ /** Active state class for the table cell */
245
+ active?: string;
246
+ /** Focused state class for the table cell */
247
+ focused?: string;
248
+ /** Selected state class for the table cell */
249
+ selected?: string;
250
+ /** Today’s date class for the table cell */
251
+ today?: string;
252
+ /** Weekend class for the table cell */
253
+ weekend?: string;
254
+ /** Disabled state class for the table cell */
255
+ disabled?: string;
256
+ /** Other month class for the table cell */
257
+ isOtherMonth?: string;
258
+ /** Empty state class for the table cell */
259
+ isEmpty?: string;
260
+ /** Week state class for the table cell */
261
+ isWeek?: string;
262
+ }
263
+ /**
264
+ * @hidden
265
+ */
266
+ export interface CalendarHeaderClasses {
267
+ /** Main class for the calendar header */
268
+ main?: string;
269
+ /** Vertical alignment class for the calendar header */
270
+ vertical?: string;
271
+ }
272
+ /**
273
+ * @hidden
274
+ */
275
+ export interface CalendarTodayClasses {
276
+ /** Main class for today's calendar entry */
277
+ main?: string;
278
+ /** Disabled state class for today’s calendar entry */
279
+ disabled?: string;
280
+ }
281
+ /**
282
+ * @hidden
283
+ */
284
+ export interface CalendarScrollableClasses {
285
+ /** Main class for the scrollable calendar area */
286
+ main?: string;
287
+ /** Content class for the scrollable area */
288
+ content?: string;
289
+ /** Horizontal scrollable state class */
290
+ horizontal?: string;
291
+ }
292
+ /**
293
+ * @hidden
294
+ */
295
+ export interface CalendarClasses {
296
+ /** Wrapper configuration for the calendar */
297
+ wrapper?: CalendarWrapperClasses;
298
+ /** View configuration for the calendar */
299
+ view?: CalendarViewClasses;
300
+ /** Navigation class for the calendar */
301
+ navigation?: string;
302
+ /** Navigation highlight class for the calendar */
303
+ navigationHighlight?: string;
304
+ /** Table configuration for the calendar */
305
+ table?: CalendarTableClasses;
306
+ /** Header class for the calendar */
307
+ thead?: string;
308
+ /** Row class for the calendar */
309
+ tr?: string;
310
+ /** Header cell class for the calendar */
311
+ th?: string;
312
+ /** Caption class for the calendar */
313
+ caption?: string;
314
+ /** Body class for the calendar */
315
+ tbody?: string;
316
+ /** Unordered list class for the calendar */
317
+ ul?: string;
318
+ /** List item class for the calendar */
319
+ li?: string;
320
+ /** Table cell configuration for the calendar */
321
+ td?: CalendarTdClasses;
322
+ /** Title class for the calendar */
323
+ title?: string;
324
+ /** Header configuration for the calendar */
325
+ header?: CalendarHeaderClasses;
326
+ /** Spacer class for the calendar */
327
+ spacer?: string;
328
+ /** Navigation class for the calendar */
329
+ nav?: string;
330
+ /** Today configuration for the calendar */
331
+ today?: CalendarTodayClasses;
332
+ /** Scrollable configuration for the calendar */
333
+ scrollable?: CalendarScrollableClasses;
334
+ /** Scrollable selector class for the calendar */
335
+ scrollableSelector?: string;
336
+ /** Scrollable placeholder configuration for the calendar */
337
+ scrollablePlaceholder?: {
338
+ /** Main class for the scrollable placeholder */
339
+ main?: string;
340
+ /** Horizontal scrollable placeholder class */
341
+ horizontal?: string;
342
+ };
343
+ /** Link class for the calendar */
344
+ link?: string;
345
+ /** Navigation marker class for the calendar */
346
+ navigationMarker?: string;
347
+ }
348
+ /**
349
+ * @hidden
350
+ */
351
+ export declare const uCalendar: WidgetClassStructure;
352
+ /**
353
+ * @hidden
354
+ */
355
+ export interface DateTimeSpinnerClasses {
356
+ /** Main class for the input spinner */
357
+ main?: string;
358
+ /** Button class for the input spinner */
359
+ button?: string;
360
+ }
361
+ /**
362
+ * @hidden
363
+ */
364
+ export interface DateInputClasses {
365
+ /** Wrapper configuration for the date input */
366
+ wrapper?: {
367
+ /** Main class for the date input wrapper */
368
+ main?: string;
369
+ /** Prefix for the inner input element */
370
+ input?: string;
371
+ /** Size configurations for the date input */
372
+ size?: DateTimeSizeClasses;
373
+ /** Fill mode configurations for the date input */
374
+ fillMode?: DateTimeFillModeClasses;
375
+ /** Rounded configurations for the date input */
376
+ rounded?: DateTimeRoundedClasses;
377
+ /** Disabled state class for the date input */
378
+ disabled?: string;
379
+ /** Required state class for the date input */
380
+ required?: string;
381
+ /** Invalid state class for the date input */
382
+ invalid?: string;
383
+ };
384
+ /** Inner input class for the date input */
385
+ inputInner?: string;
386
+ /** Configuration for the input spinner */
387
+ inputSpinner?: DateTimeSpinnerClasses;
388
+ /** Spinner increase action class */
389
+ spinnerIncrease?: string;
390
+ /** Spinner decrease action class */
391
+ spinnerDecrease?: string;
392
+ /** Clear button class for the date input */
393
+ clearButton?: string;
394
+ }
395
+ /**
396
+ * @hidden
397
+ */
398
+ export declare const uDateInput: WidgetClassStructure;
399
+ /**
400
+ * @hidden
401
+ */
402
+ export interface DateTimePopupClasses {
403
+ /** Main class for the popup container */
404
+ main?: string;
405
+ /** Reset class for the popup */
406
+ reset?: string;
407
+ }
408
+ /**
409
+ * @hidden
410
+ */
411
+ export interface DateTimePickerClasses {
412
+ /** Wrapper configuration for the date-time picker */
413
+ wrapper?: {
414
+ /** Main class for the date-time picker wrapper */
415
+ main?: string;
416
+ /** Prefix for the inner input element */
417
+ input?: string;
418
+ /** Size configurations for the date-time picker */
419
+ size?: DateTimeSizeClasses;
420
+ /** Fill mode configurations for the date-time picker */
421
+ fillMode?: DateTimeFillModeClasses;
422
+ /** Rounded configurations for the date-time picker */
423
+ rounded?: DateTimeRoundedClasses;
424
+ /** Disabled state class for the date-time picker */
425
+ disabled?: string;
426
+ /** Required state class for the date-time picker */
427
+ required?: string;
428
+ /** Invalid state class for the date-time picker */
429
+ invalid?: string;
430
+ };
431
+ /** Input button class for the date-time picker */
432
+ inputButton?: string;
433
+ /** Configuration for the popup */
434
+ popup?: DateTimePopupClasses;
435
+ /** Wrap configurations for the date-time picker */
436
+ wrap?: {
437
+ /** Main class for the wrap element */
438
+ main?: string;
439
+ /** Date tab class for the wrap */
440
+ date?: string;
441
+ /** Time tab class for the wrap */
442
+ time?: string;
443
+ /** Disabled state class for the wrap */
444
+ disabled?: string;
445
+ };
446
+ /** Footer configurations for the time section */
447
+ timeFooter?: {
448
+ /** Main class for the time footer */
449
+ main?: string;
450
+ /** Actions class for the footer */
451
+ actions?: string;
452
+ /** Stretched state class for the footer */
453
+ stretched?: string;
454
+ };
455
+ /** Button group class for the date-time picker */
456
+ buttonGroup?: string;
457
+ /** Selector class for the date-time picker */
458
+ selector?: string;
459
+ /** Wrap class for the calendar */
460
+ calendarWrap?: string;
461
+ /** Wrap class for the time section */
462
+ timeWrap?: string;
463
+ /** Configuration for the time selector */
464
+ timeSelector?: TimeSelectorClasses;
465
+ }
466
+ /**
467
+ * @hidden
468
+ */
469
+ export declare const uDateTimePicker: WidgetClassStructure;
@@ -6,7 +6,7 @@
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
8
  import { getClassByName as d } from "./common.mjs";
9
- import { base as e, states as s, containers as o, elements as b, dateInputs as n, actions as C, orientationMap as F, sizeMap as h, components as v, inputPrefix as p, roundedMap as P, fillModeMap as W, calendarPrefix as c, cssUtils as G, directionMap as E, inputs as I } from "./json-classes.mjs";
9
+ import { calendarPrefix as c, dateInputs as n, base as e, elements as b, states as s, orientationMap as F, containers as o, cssUtils as G, actions as C, directionMap as E, sizeMap as h, inputs as I, inputPrefix as p, roundedMap as P, fillModeMap as W, components as v } from "./json-classes.mjs";
10
10
  const x = {
11
11
  footer: {
12
12
  main: `${e.prefix}-${n.time}-${b.footer}`,