@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
@@ -0,0 +1,111 @@
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 LabelClasses {
13
+ /** Label */
14
+ label?: {
15
+ /** Main class for the label */
16
+ main?: string;
17
+ /** Class applied when the label is in an empty state */
18
+ empty?: string;
19
+ /** Class applied when the label is in an invalid state */
20
+ invalid?: string;
21
+ /** Class applied when the label is disabled */
22
+ disabled?: string;
23
+ };
24
+ }
25
+ /**
26
+ * @hidden
27
+ */
28
+ export declare const uLabel: WidgetClassStructure;
29
+ /**
30
+ * @hidden
31
+ */
32
+ export interface FloatingLabelClasses {
33
+ /** Wrapper element configurations */
34
+ wrapper?: {
35
+ /** Main class for the wrapper */
36
+ main?: string;
37
+ /** Class applied when the element is focused */
38
+ focused?: string;
39
+ /** Class applied when the element is empty */
40
+ empty?: string;
41
+ /** Class for non-empty state (empty in this case) */
42
+ notEmpty?: string;
43
+ /** Class for disabled state */
44
+ disabled?: string;
45
+ /** Class applied when in RTL mode */
46
+ isRtl?: string;
47
+ };
48
+ /** Label element configurations */
49
+ label?: {
50
+ /** Main class for the label */
51
+ main?: string;
52
+ /** Class applied when the label is focused */
53
+ focused?: string;
54
+ /** Class applied when the label is empty */
55
+ empty?: string;
56
+ /** Class for non-empty label state */
57
+ notEmpty?: string;
58
+ /** Class applied when the label is in an invalid state */
59
+ invalid?: string;
60
+ /** Class applied when the label is disabled */
61
+ disabled?: string;
62
+ };
63
+ }
64
+ /**
65
+ * @hidden
66
+ */
67
+ export declare const uFloatingLabel: WidgetClassStructure;
68
+ /**
69
+ * @hidden
70
+ */
71
+ export interface ErrorClasses {
72
+ /** Wrapper element configurations */
73
+ wrapper?: {
74
+ /** Main class for the wrapper */
75
+ main?: string;
76
+ /** Direction-related configurations */
77
+ direction?: {
78
+ /** Class for start-aligned text */
79
+ start?: string;
80
+ /** Class for end-aligned text */
81
+ end?: string;
82
+ };
83
+ };
84
+ }
85
+ /**
86
+ * @hidden
87
+ */
88
+ export declare const uError: WidgetClassStructure;
89
+ /**
90
+ * @hidden
91
+ */
92
+ export interface HintClasses {
93
+ /** Wrapper element configurations */
94
+ wrapper?: {
95
+ /** Main class for the wrapper */
96
+ main?: string;
97
+ /** Direction-related configurations */
98
+ direction?: {
99
+ /** Class for start-aligned text */
100
+ start?: string;
101
+ /** Class for end-aligned text */
102
+ end?: string;
103
+ /** Class for disabled state */
104
+ disabled?: string;
105
+ };
106
+ };
107
+ }
108
+ /**
109
+ * @hidden
110
+ */
111
+ export declare const uHint: WidgetClassStructure;
@@ -5,7 +5,7 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { base as i, labels as o, states as r, themeColorMap as x, directionMap as a } from "./json-classes.mjs";
8
+ import { base as i, labels as o, directionMap as a, states as r, themeColorMap as x } from "./json-classes.mjs";
9
9
  const u = `${i.prefix}-${o.label}`, m = `${i.prefix}-${o.floatingLabel}`, y = `${i.prefix}-${o.error}`, b = `${i.prefix}-${o.hint}`, p = {
10
10
  label: {
11
11
  main: u,
@@ -0,0 +1,26 @@
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 { AnimationsClassStructure, ButtonsClassStructure, IconsClassStructure, DateInputsClassStructure, DropDownsClassStructure, GridClassStructure, InputsClassStructure, LabelsClassStructure, FormClassStructure, PopupClassStructure, WidgetClassStructure } from './interfaces/common';
9
+ export * from './animations';
10
+ export * from './icons';
11
+ export * from './buttons';
12
+ export * from './dropdowns';
13
+ export * from './dateinputs';
14
+ export * from './inputs';
15
+ export * from './labels';
16
+ export * from './form';
17
+ export * from './popup';
18
+ export * from './grid';
19
+ export * from './json-classes';
20
+ /**
21
+ * @hidden
22
+ * All classes
23
+ */
24
+ export interface AllClassStructure extends AnimationsClassStructure, ButtonsClassStructure, DropDownsClassStructure, GridClassStructure, IconsClassStructure, LabelsClassStructure, FormClassStructure, PopupClassStructure, ButtonsClassStructure, PopupClassStructure, GridClassStructure, InputsClassStructure, DropDownsClassStructure, DateInputsClassStructure {
25
+ }
26
+ export { type AnimationsClassStructure, type ButtonsClassStructure, type GridClassStructure, type IconsClassStructure, type DateInputsClassStructure, type DropDownsClassStructure, type InputsClassStructure, type LabelsClassStructure, type FormClassStructure, type PopupClassStructure, type WidgetClassStructure };
@@ -0,0 +1,51 @@
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 SlideAnimationClasses {
13
+ /** Enter animation prefix for sliding up */
14
+ enter?: string;
15
+ /** Exit animation prefix for sliding up */
16
+ exit?: string;
17
+ }
18
+ /**
19
+ * @hidden
20
+ */
21
+ export interface SlideClasses {
22
+ /** Animation settings for sliding up */
23
+ up?: SlideAnimationClasses;
24
+ /** Animation settings for sliding down */
25
+ down?: SlideAnimationClasses;
26
+ /** Animation settings for sliding left */
27
+ left?: SlideAnimationClasses;
28
+ /** Animation settings for sliding right */
29
+ right?: SlideAnimationClasses;
30
+ }
31
+ /**
32
+ * @hidden
33
+ */
34
+ export interface PopupClasses {
35
+ /** Prefix for the animation container */
36
+ animationContainer?: string;
37
+ /** Prefix for the shown animation container */
38
+ animationContainerShown?: string;
39
+ /** Prefix for child animations within the animation */
40
+ animationChild?: string;
41
+ /** Prefix for the popup animation */
42
+ popup?: string;
43
+ /** Slide animation configurations for different directions */
44
+ slide?: SlideClasses;
45
+ /** Active slide animation configurations for different directions */
46
+ slideActive?: SlideClasses;
47
+ }
48
+ /**
49
+ * @hidden
50
+ */
51
+ export declare const uPopup: WidgetClassStructure;
@@ -0,0 +1,21 @@
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 validatePackage(packageMetadata: any): void;
12
+ /**
13
+ * @hidden
14
+ */
15
+ export declare function shouldShowValidationUI(packageMetadata: any): boolean;
16
+ /**
17
+ * @hidden
18
+ *
19
+ * Returns the notification message to display, if any.
20
+ */
21
+ export declare const getLicenseMessage: (e: any) => string | undefined;
@@ -0,0 +1,69 @@
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 WatermarkOverlay: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
12
+ message: {
13
+ type: StringConstructor;
14
+ default: any;
15
+ };
16
+ }>, {}, {
17
+ watermarkStyles: {
18
+ position: string;
19
+ width: string;
20
+ height: string;
21
+ top: number;
22
+ left: number;
23
+ right: number;
24
+ bottom: number;
25
+ opacity: number;
26
+ 'z-index': number;
27
+ 'pointer-events': string;
28
+ 'background-image': string;
29
+ };
30
+ bannerStyles: {
31
+ display: string;
32
+ justifyContent: string;
33
+ alignItems: string;
34
+ position: string;
35
+ top: string;
36
+ right: string;
37
+ padding: string;
38
+ 'border-radius': string;
39
+ 'box-shadow': string;
40
+ 'font-size': string;
41
+ 'font-weight': number;
42
+ 'line-height': string;
43
+ 'background-color': string;
44
+ color: string;
45
+ 'z-index': number;
46
+ };
47
+ bannerButtonStyles: {
48
+ display: string;
49
+ position: string;
50
+ border: string;
51
+ 'border-radius': string;
52
+ padding: string;
53
+ 'background-color': string;
54
+ transition: string;
55
+ outline: string;
56
+ cursor: string;
57
+ };
58
+ showBanner: boolean;
59
+ }, {}, {
60
+ onCloseBannerClick(): void;
61
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
62
+ message: {
63
+ type: StringConstructor;
64
+ default: any;
65
+ };
66
+ }>> & Readonly<{}>, {
67
+ message: string;
68
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
69
+ export { WatermarkOverlay };