@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.
- 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,228 @@
|
|
|
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 RadioButtonClasses {
|
|
13
|
+
/** Input configurations */
|
|
14
|
+
input?: {
|
|
15
|
+
/** Class for the radio input */
|
|
16
|
+
radio?: string;
|
|
17
|
+
/** Size configurations for the radio input */
|
|
18
|
+
size?: {
|
|
19
|
+
/** Prefix for size classes */
|
|
20
|
+
prefix?: string;
|
|
21
|
+
/** Class for small size radio input */
|
|
22
|
+
small?: string;
|
|
23
|
+
/** Class for medium size radio input */
|
|
24
|
+
medium?: string;
|
|
25
|
+
/** Class for large size radio input */
|
|
26
|
+
large?: string;
|
|
27
|
+
};
|
|
28
|
+
/** Class for invalid state */
|
|
29
|
+
invalid?: string;
|
|
30
|
+
/** Class for checked state */
|
|
31
|
+
checked?: string;
|
|
32
|
+
};
|
|
33
|
+
/** Class for wrapping container */
|
|
34
|
+
wrap?: string;
|
|
35
|
+
/** Class for the label */
|
|
36
|
+
label?: string;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* @hidden
|
|
40
|
+
*/
|
|
41
|
+
export declare const radioButtonClasses: RadioButtonClasses;
|
|
42
|
+
/**
|
|
43
|
+
* @hidden
|
|
44
|
+
*/
|
|
45
|
+
export declare const uRadioButton: WidgetClassStructure;
|
|
46
|
+
/**
|
|
47
|
+
* @hidden
|
|
48
|
+
*/
|
|
49
|
+
export interface RadioGroupClasses {
|
|
50
|
+
/** Unordered list (ul) configurations */
|
|
51
|
+
ul?: {
|
|
52
|
+
/** Main class for the ul element */
|
|
53
|
+
main?: string;
|
|
54
|
+
/** Class for horizontal list layout */
|
|
55
|
+
horizontal?: string;
|
|
56
|
+
/** Class for vertical list layout */
|
|
57
|
+
vertical?: string;
|
|
58
|
+
};
|
|
59
|
+
/** Item configurations inside the ul */
|
|
60
|
+
item?: {
|
|
61
|
+
/** Main class for the list item (li) element */
|
|
62
|
+
main?: string;
|
|
63
|
+
/** Class for disabled state of list item */
|
|
64
|
+
disabled?: string;
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* @hidden
|
|
69
|
+
*/
|
|
70
|
+
export declare const radioGroupClasses: RadioGroupClasses;
|
|
71
|
+
/**
|
|
72
|
+
* @hidden
|
|
73
|
+
*/
|
|
74
|
+
export declare const uRadioGroup: WidgetClassStructure;
|
|
75
|
+
/**
|
|
76
|
+
* @hidden
|
|
77
|
+
*/
|
|
78
|
+
export interface MaskedTextBoxClasses {
|
|
79
|
+
/** Wrapper configurations for the masked input */
|
|
80
|
+
wrapper?: {
|
|
81
|
+
/** Main class for the wrapper */
|
|
82
|
+
main?: string;
|
|
83
|
+
/** Class for the input element */
|
|
84
|
+
input?: string;
|
|
85
|
+
/** Size configurations for the input */
|
|
86
|
+
size?: {
|
|
87
|
+
/** Small size class */
|
|
88
|
+
small?: string;
|
|
89
|
+
/** Medium size class */
|
|
90
|
+
medium?: string;
|
|
91
|
+
/** Large size class */
|
|
92
|
+
large?: string;
|
|
93
|
+
};
|
|
94
|
+
/** Fill mode configurations for the input */
|
|
95
|
+
fillMode?: {
|
|
96
|
+
/** Solid fill mode class */
|
|
97
|
+
solid?: string;
|
|
98
|
+
/** Outline fill mode class */
|
|
99
|
+
outline?: string;
|
|
100
|
+
/** Flat fill mode class */
|
|
101
|
+
flat?: string;
|
|
102
|
+
};
|
|
103
|
+
/** Rounded border configurations */
|
|
104
|
+
rounded?: {
|
|
105
|
+
/** Small rounded border class */
|
|
106
|
+
small?: string;
|
|
107
|
+
/** Medium rounded border class */
|
|
108
|
+
medium?: string;
|
|
109
|
+
/** Large rounded border class */
|
|
110
|
+
large?: string;
|
|
111
|
+
};
|
|
112
|
+
/** Disabled state class */
|
|
113
|
+
disabled?: string;
|
|
114
|
+
/** Invalid state class */
|
|
115
|
+
invalid?: string;
|
|
116
|
+
/** RTL (right-to-left) layout class */
|
|
117
|
+
isRtl?: string;
|
|
118
|
+
};
|
|
119
|
+
/** Class for the inner part of the input */
|
|
120
|
+
inputInner?: string;
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* @hidden
|
|
124
|
+
*/
|
|
125
|
+
export declare const uMaskedTextBox: WidgetClassStructure;
|
|
126
|
+
/**
|
|
127
|
+
* @hidden
|
|
128
|
+
*/
|
|
129
|
+
export interface TextBoxClasses {
|
|
130
|
+
/** Wrapper configurations for the text box */
|
|
131
|
+
wrapper?: {
|
|
132
|
+
/** Main class for the wrapper */
|
|
133
|
+
main?: string;
|
|
134
|
+
/** Class for the input element */
|
|
135
|
+
input?: string;
|
|
136
|
+
/** Size configurations for the input */
|
|
137
|
+
size?: {
|
|
138
|
+
/** Small size class */
|
|
139
|
+
small?: string;
|
|
140
|
+
/** Medium size class */
|
|
141
|
+
medium?: string;
|
|
142
|
+
/** Large size class */
|
|
143
|
+
large?: string;
|
|
144
|
+
};
|
|
145
|
+
/** Fill mode configurations for the input */
|
|
146
|
+
fillMode?: {
|
|
147
|
+
/** Solid fill mode class */
|
|
148
|
+
solid?: string;
|
|
149
|
+
/** Outline fill mode class */
|
|
150
|
+
outline?: string;
|
|
151
|
+
/** Flat fill mode class */
|
|
152
|
+
flat?: string;
|
|
153
|
+
};
|
|
154
|
+
/** Rounded border configurations */
|
|
155
|
+
rounded?: {
|
|
156
|
+
/** Small rounded border class */
|
|
157
|
+
small?: string;
|
|
158
|
+
/** Medium rounded border class */
|
|
159
|
+
medium?: string;
|
|
160
|
+
/** Large rounded border class */
|
|
161
|
+
large?: string;
|
|
162
|
+
};
|
|
163
|
+
/** Disabled state class */
|
|
164
|
+
disabled?: string;
|
|
165
|
+
/** Focused state class */
|
|
166
|
+
focused?: string;
|
|
167
|
+
/** Required state class */
|
|
168
|
+
required?: string;
|
|
169
|
+
/** Invalid state class */
|
|
170
|
+
invalid?: string;
|
|
171
|
+
/** RTL (right-to-left) layout class */
|
|
172
|
+
isRtl?: string;
|
|
173
|
+
};
|
|
174
|
+
/** Class for the inner part of the input */
|
|
175
|
+
inputInner?: string;
|
|
176
|
+
/** Prefix configurations for the input */
|
|
177
|
+
prefix?: {
|
|
178
|
+
/** Main class for the prefix */
|
|
179
|
+
main?: string;
|
|
180
|
+
/** Orientation configurations for the prefix */
|
|
181
|
+
orientation?: {
|
|
182
|
+
/** Horizontal orientation class */
|
|
183
|
+
horizontal?: string;
|
|
184
|
+
/** Vertical orientation class */
|
|
185
|
+
vertical?: string;
|
|
186
|
+
};
|
|
187
|
+
};
|
|
188
|
+
/** Suffix configurations for the input */
|
|
189
|
+
suffix?: {
|
|
190
|
+
/** Main class for the suffix */
|
|
191
|
+
main?: string;
|
|
192
|
+
/** Orientation configurations for the suffix */
|
|
193
|
+
orientation?: {
|
|
194
|
+
/** Horizontal orientation class */
|
|
195
|
+
horizontal?: string;
|
|
196
|
+
/** Vertical orientation class */
|
|
197
|
+
vertical?: string;
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* @hidden
|
|
203
|
+
*/
|
|
204
|
+
export declare const uTextBox: WidgetClassStructure;
|
|
205
|
+
/**
|
|
206
|
+
* @hidden
|
|
207
|
+
*/
|
|
208
|
+
export interface InputClasses {
|
|
209
|
+
/** Input element configurations */
|
|
210
|
+
input?: {
|
|
211
|
+
/** Main class for the input, combining size, rounded, and fill mode */
|
|
212
|
+
main?: string;
|
|
213
|
+
/** Disabled state class */
|
|
214
|
+
disabled?: string;
|
|
215
|
+
/** Required state class */
|
|
216
|
+
required?: string;
|
|
217
|
+
/** Invalid state class */
|
|
218
|
+
invalid?: string;
|
|
219
|
+
/** RTL (right-to-left) layout class */
|
|
220
|
+
isRtl?: string;
|
|
221
|
+
};
|
|
222
|
+
/** Clear button class */
|
|
223
|
+
clearButton?: string;
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* @hidden
|
|
227
|
+
*/
|
|
228
|
+
export declare const uInput: WidgetClassStructure;
|
|
@@ -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 { AnimationClasses } from '../animations';
|
|
9
|
+
import { ButtonClasses, ButtonGroupClasses, DropDownButtonClasses } from '../buttons';
|
|
10
|
+
import { CalendarClasses, DateInputClasses, DateTimePickerClasses, TimeClasses, TimePickerClasses } from '../dateinputs';
|
|
11
|
+
import { ComboBoxClasses, DropDownBaseClasses, DropDownListClasses, DropDownsActionSheetClasses } from '../dropdowns';
|
|
12
|
+
import { FormClasses } from '../form';
|
|
13
|
+
import { SVGIconClasses } from '../icons';
|
|
14
|
+
import { InputClasses, MaskedTextBoxClasses, RadioButtonClasses, RadioGroupClasses, TextBoxClasses } from '../inputs';
|
|
15
|
+
import { ErrorClasses, FloatingLabelClasses, HintClasses, LabelClasses } from '../labels';
|
|
16
|
+
import { PopupClasses } from '../popup';
|
|
17
|
+
/**
|
|
18
|
+
* @hidden
|
|
19
|
+
*/
|
|
20
|
+
export interface WidgetClassStructure {
|
|
21
|
+
[key: string]: (props: {
|
|
22
|
+
[key: string]: any;
|
|
23
|
+
}) => {
|
|
24
|
+
[key: string]: boolean;
|
|
25
|
+
} | string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Animation classes
|
|
29
|
+
* @hidden
|
|
30
|
+
*/
|
|
31
|
+
export interface AnimationsClassStructure {
|
|
32
|
+
uAnimation?: AnimationClasses;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Icons classes
|
|
36
|
+
* @hidden
|
|
37
|
+
*/
|
|
38
|
+
export interface IconsClassStructure {
|
|
39
|
+
uSvgIcon?: SVGIconClasses;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Buttons classes
|
|
43
|
+
* @hidden
|
|
44
|
+
*/
|
|
45
|
+
export interface ButtonsClassStructure {
|
|
46
|
+
uButton?: ButtonClasses;
|
|
47
|
+
uButtonGroup?: ButtonGroupClasses;
|
|
48
|
+
uDropDownButton?: DropDownButtonClasses;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Popup classes
|
|
52
|
+
* @hidden
|
|
53
|
+
*/
|
|
54
|
+
export interface PopupClassStructure {
|
|
55
|
+
uPopup?: PopupClasses;
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Inputs classes
|
|
59
|
+
* @hidden
|
|
60
|
+
*/
|
|
61
|
+
export interface InputsClassStructure {
|
|
62
|
+
uMaskedTextBox?: MaskedTextBoxClasses;
|
|
63
|
+
uRadioGroup?: RadioGroupClasses;
|
|
64
|
+
uRadioButton?: RadioButtonClasses;
|
|
65
|
+
uTextBox?: TextBoxClasses;
|
|
66
|
+
uInput?: InputClasses;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* DropDowns classes
|
|
70
|
+
* @hidden
|
|
71
|
+
*/
|
|
72
|
+
export interface DropDownsClassStructure {
|
|
73
|
+
uDropDownsActionSheet?: DropDownsActionSheetClasses;
|
|
74
|
+
uDropDownsBase?: DropDownBaseClasses;
|
|
75
|
+
uDropDownList?: DropDownListClasses;
|
|
76
|
+
uComboBox?: ComboBoxClasses;
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Labels classes
|
|
80
|
+
* @hidden
|
|
81
|
+
*/
|
|
82
|
+
export interface LabelsClassStructure {
|
|
83
|
+
uError?: ErrorClasses;
|
|
84
|
+
uHint?: HintClasses;
|
|
85
|
+
uLabel?: LabelClasses;
|
|
86
|
+
uFloatingLabel?: FloatingLabelClasses;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Form classes
|
|
90
|
+
* @hidden
|
|
91
|
+
*/
|
|
92
|
+
export interface FormClassStructure {
|
|
93
|
+
uForm?: FormClasses;
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* DateInputs classes
|
|
97
|
+
* @hidden
|
|
98
|
+
*/
|
|
99
|
+
export interface DateInputsClassStructure {
|
|
100
|
+
uCalendar?: CalendarClasses;
|
|
101
|
+
uDateInput?: DateInputClasses;
|
|
102
|
+
uDateTimePicker?: DateTimePickerClasses;
|
|
103
|
+
uTime?: TimeClasses;
|
|
104
|
+
uTimePicker?: TimePickerClasses;
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* @hidden
|
|
108
|
+
*/
|
|
109
|
+
export interface GridClassStructure {
|
|
110
|
+
uGrid?: WidgetClassStructure;
|
|
111
|
+
}
|
|
@@ -0,0 +1,378 @@
|
|
|
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
|
+
type PresetOption = Record<Exclude<any, null>, string>;
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export interface KendoTheme {
|
|
13
|
+
base: PresetOption;
|
|
14
|
+
animation: PresetOption;
|
|
15
|
+
containers: PresetOption;
|
|
16
|
+
components: PresetOption;
|
|
17
|
+
cssUtils: PresetOption;
|
|
18
|
+
elements: PresetOption;
|
|
19
|
+
sizeMap: PresetOption;
|
|
20
|
+
directionMap: PresetOption;
|
|
21
|
+
fillModeMap: PresetOption;
|
|
22
|
+
themeColorMap: PresetOption;
|
|
23
|
+
roundedMap: PresetOption;
|
|
24
|
+
cursor: PresetOption;
|
|
25
|
+
dimensions: PresetOption;
|
|
26
|
+
states: PresetOption;
|
|
27
|
+
actions: PresetOption;
|
|
28
|
+
inputs: PresetOption;
|
|
29
|
+
dateInputs: PresetOption;
|
|
30
|
+
forms: PresetOption;
|
|
31
|
+
labels: PresetOption;
|
|
32
|
+
popup: PresetOption;
|
|
33
|
+
icon: PresetOption;
|
|
34
|
+
grid: PresetOption;
|
|
35
|
+
orientationMap: PresetOption;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* @hidden
|
|
39
|
+
*/
|
|
40
|
+
export declare const base: {
|
|
41
|
+
prefix: string;
|
|
42
|
+
important: string;
|
|
43
|
+
rtl: string;
|
|
44
|
+
rounded: string;
|
|
45
|
+
value: string;
|
|
46
|
+
state: string;
|
|
47
|
+
filter: string;
|
|
48
|
+
virtual: string;
|
|
49
|
+
infinite: string;
|
|
50
|
+
clear: string;
|
|
51
|
+
reset: string;
|
|
52
|
+
data: string;
|
|
53
|
+
nodata: string;
|
|
54
|
+
scroller: string;
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* @hidden
|
|
58
|
+
*/
|
|
59
|
+
export declare const cssUtils: {
|
|
60
|
+
center: string;
|
|
61
|
+
hbox: string;
|
|
62
|
+
vstack: string;
|
|
63
|
+
hstack: string;
|
|
64
|
+
overflow: string;
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* @hidden
|
|
68
|
+
*/
|
|
69
|
+
export declare const components: {
|
|
70
|
+
actionsheet: string;
|
|
71
|
+
calendar: string;
|
|
72
|
+
buttongroup: string;
|
|
73
|
+
dateinput: string;
|
|
74
|
+
datetime: string;
|
|
75
|
+
datetimepicker: string;
|
|
76
|
+
dropdownlist: string;
|
|
77
|
+
combobox: string;
|
|
78
|
+
maskedtextbox: string;
|
|
79
|
+
menu: string;
|
|
80
|
+
searchbox: string;
|
|
81
|
+
timepicker: string;
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* @hidden
|
|
85
|
+
*/
|
|
86
|
+
export declare const sizeMap: PresetOption;
|
|
87
|
+
/**
|
|
88
|
+
* @hidden
|
|
89
|
+
*/
|
|
90
|
+
export declare const fillModeMap: PresetOption;
|
|
91
|
+
/**
|
|
92
|
+
* @hidden
|
|
93
|
+
*/
|
|
94
|
+
export declare const themeColorMap: PresetOption;
|
|
95
|
+
/**
|
|
96
|
+
* @hidden
|
|
97
|
+
*/
|
|
98
|
+
export declare const roundedMap: PresetOption;
|
|
99
|
+
/**
|
|
100
|
+
* @hidden
|
|
101
|
+
*/
|
|
102
|
+
export declare const orientationMap: PresetOption;
|
|
103
|
+
/**
|
|
104
|
+
* @hidden
|
|
105
|
+
*/
|
|
106
|
+
export declare const dimensions: {
|
|
107
|
+
height: string;
|
|
108
|
+
width: string;
|
|
109
|
+
};
|
|
110
|
+
/**
|
|
111
|
+
* @hidden
|
|
112
|
+
*/
|
|
113
|
+
export declare const cursor: {
|
|
114
|
+
default: string;
|
|
115
|
+
};
|
|
116
|
+
/**
|
|
117
|
+
* @hidden
|
|
118
|
+
*/
|
|
119
|
+
export declare const directionMap: {
|
|
120
|
+
up: string;
|
|
121
|
+
down: string;
|
|
122
|
+
left: string;
|
|
123
|
+
right: string;
|
|
124
|
+
start: string;
|
|
125
|
+
mid: string;
|
|
126
|
+
end: string;
|
|
127
|
+
};
|
|
128
|
+
/**
|
|
129
|
+
* @hidden
|
|
130
|
+
*/
|
|
131
|
+
export declare const containers: {
|
|
132
|
+
actions: string;
|
|
133
|
+
container: string;
|
|
134
|
+
content: string;
|
|
135
|
+
group: string;
|
|
136
|
+
row: string;
|
|
137
|
+
nav: string;
|
|
138
|
+
wrap: string;
|
|
139
|
+
wrapper: string;
|
|
140
|
+
list: string;
|
|
141
|
+
placeholder: string;
|
|
142
|
+
popup: string;
|
|
143
|
+
item: string;
|
|
144
|
+
part: string;
|
|
145
|
+
picker: string;
|
|
146
|
+
separator: string;
|
|
147
|
+
spacer: string;
|
|
148
|
+
tab: string;
|
|
149
|
+
titlebar: string;
|
|
150
|
+
optionLabel: string;
|
|
151
|
+
view: string;
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* @hidden
|
|
155
|
+
*/
|
|
156
|
+
export declare const elements: {
|
|
157
|
+
table: string;
|
|
158
|
+
text: string;
|
|
159
|
+
button: string;
|
|
160
|
+
tbody: string;
|
|
161
|
+
thead: string;
|
|
162
|
+
tr: string;
|
|
163
|
+
th: string;
|
|
164
|
+
td: string;
|
|
165
|
+
header: string;
|
|
166
|
+
footer: string;
|
|
167
|
+
icon: string;
|
|
168
|
+
title: string;
|
|
169
|
+
subtitle: string;
|
|
170
|
+
link: string;
|
|
171
|
+
label: string;
|
|
172
|
+
ul: string;
|
|
173
|
+
caption: string;
|
|
174
|
+
};
|
|
175
|
+
/**
|
|
176
|
+
* @hidden
|
|
177
|
+
*/
|
|
178
|
+
export declare const actions: {
|
|
179
|
+
increase: string;
|
|
180
|
+
decrease: string;
|
|
181
|
+
cancel: string;
|
|
182
|
+
accept: string;
|
|
183
|
+
split: string;
|
|
184
|
+
};
|
|
185
|
+
/**
|
|
186
|
+
* @hidden
|
|
187
|
+
*/
|
|
188
|
+
export declare const states: {
|
|
189
|
+
active: string;
|
|
190
|
+
adaptive: string;
|
|
191
|
+
first: string;
|
|
192
|
+
focus: string;
|
|
193
|
+
pending: string;
|
|
194
|
+
last: string;
|
|
195
|
+
draggable: string;
|
|
196
|
+
filterable: string;
|
|
197
|
+
grouping: string;
|
|
198
|
+
selected: string;
|
|
199
|
+
highlighted: string;
|
|
200
|
+
disabled: string;
|
|
201
|
+
hidden: string;
|
|
202
|
+
highlight: string;
|
|
203
|
+
invalid: string;
|
|
204
|
+
loading: string;
|
|
205
|
+
required: string;
|
|
206
|
+
checked: string;
|
|
207
|
+
empty: string;
|
|
208
|
+
scrollable: string;
|
|
209
|
+
sorted: string;
|
|
210
|
+
sort: string;
|
|
211
|
+
sticky: string;
|
|
212
|
+
stretched: string;
|
|
213
|
+
order: string;
|
|
214
|
+
alt: string;
|
|
215
|
+
edit: string;
|
|
216
|
+
template: string;
|
|
217
|
+
shown: string;
|
|
218
|
+
horizontal: string;
|
|
219
|
+
vertical: string;
|
|
220
|
+
fullscreen: string;
|
|
221
|
+
bottom: string;
|
|
222
|
+
};
|
|
223
|
+
/**
|
|
224
|
+
* @hidden
|
|
225
|
+
*/
|
|
226
|
+
export declare const animationStyles: {
|
|
227
|
+
[key: string]: string;
|
|
228
|
+
};
|
|
229
|
+
/**
|
|
230
|
+
* @hidden
|
|
231
|
+
*/
|
|
232
|
+
export declare const inputs: {
|
|
233
|
+
input: string;
|
|
234
|
+
inner: string;
|
|
235
|
+
spin: string;
|
|
236
|
+
spinner: string;
|
|
237
|
+
maskedtextbox: string;
|
|
238
|
+
radio: string;
|
|
239
|
+
textbox: string;
|
|
240
|
+
prefix: string;
|
|
241
|
+
suffix: string;
|
|
242
|
+
};
|
|
243
|
+
/**
|
|
244
|
+
* @hidden
|
|
245
|
+
*/
|
|
246
|
+
export declare const dateInputs: {
|
|
247
|
+
week: string;
|
|
248
|
+
weekdays: string;
|
|
249
|
+
weekend: string;
|
|
250
|
+
month: string;
|
|
251
|
+
year: string;
|
|
252
|
+
decade: string;
|
|
253
|
+
century: string;
|
|
254
|
+
number: string;
|
|
255
|
+
navigation: string;
|
|
256
|
+
marker: string;
|
|
257
|
+
now: string;
|
|
258
|
+
range: string;
|
|
259
|
+
today: string;
|
|
260
|
+
other: string;
|
|
261
|
+
date: string;
|
|
262
|
+
time: string;
|
|
263
|
+
selector: string;
|
|
264
|
+
timeselector: string;
|
|
265
|
+
};
|
|
266
|
+
/**
|
|
267
|
+
* @hidden
|
|
268
|
+
*/
|
|
269
|
+
export declare const icon: {
|
|
270
|
+
prefix: string;
|
|
271
|
+
svg: string;
|
|
272
|
+
i: string;
|
|
273
|
+
color: string;
|
|
274
|
+
flipH: string;
|
|
275
|
+
flipV: string;
|
|
276
|
+
};
|
|
277
|
+
/**
|
|
278
|
+
* @hidden
|
|
279
|
+
*/
|
|
280
|
+
export declare const labels: {
|
|
281
|
+
label: string;
|
|
282
|
+
text: string;
|
|
283
|
+
floatingLabel: string;
|
|
284
|
+
container: string;
|
|
285
|
+
hint: string;
|
|
286
|
+
error: string;
|
|
287
|
+
};
|
|
288
|
+
/**
|
|
289
|
+
* @hidden
|
|
290
|
+
*/
|
|
291
|
+
export declare const forms: {
|
|
292
|
+
form: string;
|
|
293
|
+
fieldset: string;
|
|
294
|
+
legend: string;
|
|
295
|
+
separator: string;
|
|
296
|
+
field: string;
|
|
297
|
+
};
|
|
298
|
+
/**
|
|
299
|
+
* @hidden
|
|
300
|
+
*/
|
|
301
|
+
export declare const popup: {
|
|
302
|
+
prefix: string;
|
|
303
|
+
};
|
|
304
|
+
/**
|
|
305
|
+
* @hidden
|
|
306
|
+
*/
|
|
307
|
+
export declare const grid: {
|
|
308
|
+
prefix: string;
|
|
309
|
+
ariaRoot: string;
|
|
310
|
+
tableWrap: string;
|
|
311
|
+
master: string;
|
|
312
|
+
column: string;
|
|
313
|
+
cell: string;
|
|
314
|
+
cellInner: string;
|
|
315
|
+
row: string;
|
|
316
|
+
group: string;
|
|
317
|
+
hierarchy: string;
|
|
318
|
+
detail: string;
|
|
319
|
+
noRecords: string;
|
|
320
|
+
pager: string;
|
|
321
|
+
};
|
|
322
|
+
/**
|
|
323
|
+
* @hidden
|
|
324
|
+
*/
|
|
325
|
+
export declare const gridRowReorder: {
|
|
326
|
+
drop: string;
|
|
327
|
+
drag: string;
|
|
328
|
+
hint: string;
|
|
329
|
+
vertical: string;
|
|
330
|
+
horizontal: string;
|
|
331
|
+
clue: string;
|
|
332
|
+
reorder: string;
|
|
333
|
+
};
|
|
334
|
+
/**
|
|
335
|
+
* @hidden
|
|
336
|
+
*/
|
|
337
|
+
export declare const inputPrefix: string;
|
|
338
|
+
/**
|
|
339
|
+
* @hidden
|
|
340
|
+
*/
|
|
341
|
+
export declare const calendarPrefix: string;
|
|
342
|
+
/**
|
|
343
|
+
* @hidden
|
|
344
|
+
*/
|
|
345
|
+
export declare const maskedPrefix: string;
|
|
346
|
+
/**
|
|
347
|
+
* @hidden
|
|
348
|
+
*/
|
|
349
|
+
export declare const radioPrefix: string;
|
|
350
|
+
/**
|
|
351
|
+
* @hidden
|
|
352
|
+
*/
|
|
353
|
+
export declare const buttonPrefix: string;
|
|
354
|
+
/**
|
|
355
|
+
* @hidden
|
|
356
|
+
*/
|
|
357
|
+
export declare const ddbPrefix: string;
|
|
358
|
+
/**
|
|
359
|
+
* @hidden
|
|
360
|
+
*/
|
|
361
|
+
export declare const pickerPrefix: string;
|
|
362
|
+
/**
|
|
363
|
+
* @hidden
|
|
364
|
+
*/
|
|
365
|
+
export declare const dropDownListPrefix: string;
|
|
366
|
+
/**
|
|
367
|
+
* @hidden
|
|
368
|
+
*/
|
|
369
|
+
export declare const comboBoxPrefix: string;
|
|
370
|
+
/**
|
|
371
|
+
* @hidden
|
|
372
|
+
*/
|
|
373
|
+
export declare const gridPrefix: string;
|
|
374
|
+
/**
|
|
375
|
+
* @hidden
|
|
376
|
+
*/
|
|
377
|
+
export declare const jsonTheme: KendoTheme;
|
|
378
|
+
export {};
|