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

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
package/Draggable.d.ts ADDED
@@ -0,0 +1,74 @@
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
+ /**
9
+ * @hidden
10
+ */
11
+ export interface DraggableProps {
12
+ key?: any;
13
+ onPressHandler?: (draggableEvent: any, element: HTMLElement) => void;
14
+ onDragHandler?: (draggableEvent: any, element: HTMLElement) => void;
15
+ onReleaseHandler?: (draggableEvent: any) => void;
16
+ }
17
+ /**
18
+ * @hidden
19
+ */
20
+ export interface DraggableMethods {
21
+ [key: string]: any;
22
+ press: (event: any) => void;
23
+ drag: (event: any) => void;
24
+ release: (event: any) => void;
25
+ }
26
+ /**
27
+ * @hidden
28
+ */
29
+ export interface DraggableData {
30
+ element: any | null;
31
+ draggable: any;
32
+ }
33
+ /**
34
+ * @hidden
35
+ */
36
+ export interface DraggableAll extends DraggableMethods, DraggableData {
37
+ }
38
+ /**
39
+ * @hidden
40
+ */
41
+ export interface DraggablePressEvent {
42
+ event: any;
43
+ element: HTMLElement;
44
+ }
45
+ /**
46
+ * @hidden
47
+ */
48
+ export interface DraggableDragEvent {
49
+ event: any;
50
+ element: HTMLElement;
51
+ }
52
+ /**
53
+ * @hidden
54
+ */
55
+ export interface DraggableReleaseEvent {
56
+ event: any;
57
+ }
58
+ /**
59
+ * @hidden
60
+ */
61
+ declare const Draggable: import('vue').DefineComponent<{}, {}, {}, {}, {
62
+ press(event: any): void;
63
+ drag(event: any): void;
64
+ release(event: any): void;
65
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
66
+ press: any;
67
+ drag: any;
68
+ release: any;
69
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
70
+ onPress?: (...args: any[] | unknown[]) => any;
71
+ onDrag?: (...args: any[] | unknown[]) => any;
72
+ onRelease?: (...args: any[] | unknown[]) => any;
73
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
74
+ export { Draggable };
@@ -0,0 +1,91 @@
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
+ /**
9
+ * Represents the basic props of the KendoVue form components.
10
+ * @hidden
11
+ *
12
+ * For runnable examples on forms support, refer to the documentation of the respective form component:
13
+ * * [DateInput]({% slug forms_dateinput %})
14
+ * * [DatePicker]({% slug forms_datepicker %})
15
+ * * [TimePicker]({% slug forms_timepicker %})
16
+ * * [DateTimePicker]({% slug forms_datetimepicker %})
17
+ * * [AutoComplete]({% slug forms_autocomplete %})
18
+ * * [ComboBox]({% slug forms_combobox %})
19
+ * * [DropDownList]({% slug forms_dropdownlist %})
20
+ * * [MultiSelect]({% slug forms_multiselect %})
21
+ * * [Input]({% slug forms_input %})
22
+ * * [MaskedTextBox]({% slug forms_maskedtextbox %})
23
+ * * [NumericTextBox]({% slug forms_numerictextbox %})
24
+ */
25
+ export interface FormComponentProps {
26
+ /**
27
+ * Controls the form error message of the component. If set to an empty string, no error will be thrown.
28
+ *
29
+ */
30
+ validationMessage?: string;
31
+ /**
32
+ * Specifies if `null` is a valid value for the component.
33
+ *
34
+ */
35
+ required?: boolean;
36
+ /**
37
+ * Specifies the `name` property of the `input` DOM element.
38
+ *
39
+ */
40
+ name?: string;
41
+ /**
42
+ * Overrides the validity state of the component.
43
+ * If `valid` is set, the `required` property will be ignored.
44
+ *
45
+ */
46
+ valid?: boolean;
47
+ /**
48
+ * If set to `false`, no visual representation of the invalid state of the component will be applied.
49
+ *
50
+ */
51
+ validityStyles?: boolean;
52
+ /**
53
+ * @hidden
54
+ */
55
+ value?: any;
56
+ /**
57
+ * @hidden
58
+ */
59
+ defaultValue?: any;
60
+ }
61
+ /**
62
+ * Represents the `validity` state of the KendoVue form components.
63
+ *
64
+ * For runnable examples on forms support, refer to the documentation of the respective form component:
65
+ * * [DateInput]({% slug forms_dateinput %})
66
+ * * [DatePicker]({% slug forms_datepicker %})
67
+ * * [TimePicker]({% slug forms_timepicker %})
68
+ * * [DateTimePicker]({% slug forms_timepicker %})
69
+ * * [AutoComplete]({% slug forms_autocomplete %})
70
+ * * [ComboBox]({% slug forms_combobox %})
71
+ * * [DropDownList]({% slug forms_dropdownlist %})
72
+ * * [MultiSelect]({% slug forms_multiselect %})
73
+ * * [Input]({% slug forms_input %})
74
+ * * [MaskedTextBox]({% slug forms_maskedtextbox %})
75
+ * * [NumericTextBox]({% slug forms_numerictextbox %})
76
+ *
77
+ * @hidden
78
+ */
79
+ export interface FormComponentValidity {
80
+ readonly badInput?: boolean;
81
+ readonly customError: boolean;
82
+ readonly patternMismatch?: boolean;
83
+ readonly rangeOverflow?: boolean;
84
+ readonly rangeUnderflow?: boolean;
85
+ readonly stepMismatch?: boolean;
86
+ readonly tooLong?: boolean;
87
+ readonly tooShort?: boolean;
88
+ readonly typeMismatch?: boolean;
89
+ readonly valid: boolean;
90
+ readonly valueMissing: boolean;
91
+ }
@@ -0,0 +1,14 @@
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
+ /**
9
+ * @hidden
10
+ */
11
+ export declare class BrowserSupportService {
12
+ private scrollbar;
13
+ get scrollbarWidth(): number;
14
+ }
package/canUseDOM.d.ts ADDED
@@ -0,0 +1,12 @@
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
+ /**
9
+ * @hidden
10
+ */
11
+ declare const canUseDOM: boolean;
12
+ export { canUseDOM };
@@ -0,0 +1,11 @@
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
+ /**
9
+ * @hidden
10
+ */
11
+ export declare const classNames: (...args: any[]) => string;
package/clone.d.ts ADDED
@@ -0,0 +1,27 @@
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
+ /**
9
+ * @hidden
10
+ */
11
+ export declare const cloneDate: (date?: Date) => Date | null;
12
+ /**
13
+ * @hidden
14
+ */
15
+ export declare function clone(obj: any): any;
16
+ /**
17
+ * @hidden
18
+ */
19
+ export declare function cloneObject(obj: any, result: any): void;
20
+ /**
21
+ * @hidden
22
+ */
23
+ export declare function cloneValue(value: any, nextValue: any): any;
24
+ /**
25
+ * @hidden
26
+ */
27
+ export declare function cloneArray(array: any[]): any;
@@ -0,0 +1,15 @@
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
+ /**
9
+ * @hidden
10
+ */
11
+ export declare const FIELD_REGEX: RegExp;
12
+ /** @hidden */
13
+ export declare const ADAPTIVE_SMALL_BREAKPOINT: number;
14
+ /** @hidden */
15
+ export declare const ADAPTIVE_MEDIUM_BREAKPOINT: number;
@@ -0,0 +1,11 @@
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
+ /**
9
+ * @hidden
10
+ */
11
+ export declare function getDefaultSlots(component: any): any;