@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
|
@@ -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;
|
package/unstyled/labels.mjs
CHANGED
|
@@ -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,
|
|
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 };
|