@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.
- package/Draggable.d.ts +74 -0
- package/FormComponent.d.ts +91 -0
- package/browser-support.service.d.ts +14 -0
- package/canUseDOM.d.ts +12 -0
- package/classNames.d.ts +11 -0
- package/clone.d.ts +27 -0
- package/constants/main.d.ts +15 -0
- package/defaultSlots.d.ts +11 -0
- package/dist/cdn/js/kendo-vue-common.js +1 -1
- package/focus.d.ts +27 -0
- package/getActiveElement.d.ts +15 -0
- package/getTabIndex.d.ts +11 -0
- package/getter.d.ts +11 -0
- package/guid.d.ts +12 -0
- package/hasRelativeStackingContext.d.ts +9 -0
- package/icons/BaseIconProps.d.ts +84 -0
- package/icons/FontIcon.d.ts +94 -0
- package/icons/Icon.d.ts +97 -0
- package/icons/SvgIcon.d.ts +158 -0
- package/icons/constants.d.ts +20 -0
- package/icons/getIconName.d.ts +12 -0
- package/icons/models/flip.d.ts +18 -0
- package/icons/models/size.d.ts +22 -0
- package/icons/models/theme-color.d.ts +28 -0
- package/index.d.mts +39 -3324
- package/index.d.ts +39 -3324
- package/index.js +1 -1
- package/index.mjs +74 -74
- package/isObject.d.ts +11 -0
- package/isRtl.d.ts +15 -0
- package/keys.d.ts +28 -0
- package/listeners.d.ts +15 -0
- package/navigation.d.ts +53 -0
- package/noop.d.ts +12 -0
- package/package.json +1 -1
- package/providers/AdaptiveModeProvider.d.ts +63 -0
- package/refs.d.ts +15 -0
- package/rowHeightService.d.ts +31 -0
- package/scrollbarWidth.d.ts +15 -0
- package/setter.d.ts +11 -0
- package/templateRendering.d.ts +26 -0
- package/theme.d.ts +14 -0
- package/treeDataOperations.d.ts +50 -0
- package/unstyled/animations.d.ts +116 -0
- package/unstyled/buttons.d.ts +219 -0
- package/unstyled/common.d.ts +17 -0
- package/unstyled/dateinputs.d.ts +469 -0
- package/unstyled/dateinputs.mjs +1 -1
- package/unstyled/dropdowns.d.ts +338 -0
- package/unstyled/dropdowns.mjs +3 -3
- package/unstyled/form.d.ts +74 -0
- package/unstyled/grid.d.ts +12 -0
- package/unstyled/icons.d.ts +102 -0
- package/unstyled/inputs.d.ts +228 -0
- package/unstyled/interfaces/common.d.ts +111 -0
- package/unstyled/json-classes.d.ts +378 -0
- package/unstyled/labels.d.ts +111 -0
- package/unstyled/labels.mjs +1 -1
- package/unstyled/main.d.ts +26 -0
- package/unstyled/popup.d.ts +51 -0
- package/validate-package.d.ts +21 -0
- 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 };
|
package/classNames.d.ts
ADDED
|
@@ -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;
|