@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,338 @@
|
|
|
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 DropDownBaseListItemClasses {
|
|
13
|
+
/** Main class for the list item */
|
|
14
|
+
main?: string;
|
|
15
|
+
/** Class for the selected state of the list item */
|
|
16
|
+
selected?: string;
|
|
17
|
+
/** Class for the focused state of the list item */
|
|
18
|
+
focused?: string;
|
|
19
|
+
/** Class for the first item in the list */
|
|
20
|
+
first?: string;
|
|
21
|
+
/** Class for the disabled state of the list item */
|
|
22
|
+
disabled?: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @hidden
|
|
26
|
+
*/
|
|
27
|
+
export interface DropDownBaseGroupLiClasses {
|
|
28
|
+
/** Class for the list of grouped items */
|
|
29
|
+
list?: string;
|
|
30
|
+
/** Class for the table representation of grouped items */
|
|
31
|
+
table?: string;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* @hidden
|
|
35
|
+
*/
|
|
36
|
+
export interface DropDownBaseGroupItemClasses {
|
|
37
|
+
/** Class for the text of list items in a group */
|
|
38
|
+
list?: string;
|
|
39
|
+
/** Class for the header cell text in a group table */
|
|
40
|
+
table?: string;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* @hidden
|
|
44
|
+
*/
|
|
45
|
+
export interface DropDownBaseOptionLabelClasses {
|
|
46
|
+
/** Main class for the option label */
|
|
47
|
+
main?: string;
|
|
48
|
+
/** Class for the selected state of the option label */
|
|
49
|
+
selected?: string;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* @hidden
|
|
53
|
+
*/
|
|
54
|
+
export interface DropDownBaseClasses {
|
|
55
|
+
/** Class for the clear button */
|
|
56
|
+
clearButton?: string;
|
|
57
|
+
/** Class for the sticky header of the grouped list */
|
|
58
|
+
groupStickyHeader?: string;
|
|
59
|
+
/** Class for the header text in the list */
|
|
60
|
+
listHeaderText?: string;
|
|
61
|
+
/** Class for the unordered list element */
|
|
62
|
+
ul?: string;
|
|
63
|
+
/** List item configurations */
|
|
64
|
+
li?: DropDownBaseListItemClasses;
|
|
65
|
+
/** Grouped list item configurations */
|
|
66
|
+
groupLi?: DropDownBaseGroupLiClasses;
|
|
67
|
+
/** Class for the text of regular list items */
|
|
68
|
+
itemText?: string;
|
|
69
|
+
/** Grouped item text configurations */
|
|
70
|
+
groupItemText?: DropDownBaseGroupItemClasses;
|
|
71
|
+
/** Class for the label of grouped items */
|
|
72
|
+
itemGroupLabel?: string;
|
|
73
|
+
/** Class for displaying no data message */
|
|
74
|
+
noData?: string;
|
|
75
|
+
/** Class for the height container */
|
|
76
|
+
heightContainer?: string;
|
|
77
|
+
/** Option label configurations */
|
|
78
|
+
optionLabel?: DropDownBaseOptionLabelClasses;
|
|
79
|
+
/** Class for the inner input */
|
|
80
|
+
inputInner?: string;
|
|
81
|
+
/** Class for the input icon */
|
|
82
|
+
inputIcon?: string;
|
|
83
|
+
/** Class for the search box component */
|
|
84
|
+
searchbox?: string;
|
|
85
|
+
/** Class for the list filter */
|
|
86
|
+
listFilter?: string;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* @hidden
|
|
90
|
+
*/
|
|
91
|
+
export declare const uDropDownsBase: WidgetClassStructure;
|
|
92
|
+
/**
|
|
93
|
+
* @hidden
|
|
94
|
+
*/
|
|
95
|
+
export interface DropDownsActionSheetClasses {
|
|
96
|
+
/** Wrapper configurations for the action sheet component */
|
|
97
|
+
wrapper?: {
|
|
98
|
+
/** Main class for the action sheet */
|
|
99
|
+
main?: string;
|
|
100
|
+
/** Class for the fullscreen state of the action sheet */
|
|
101
|
+
fullscreen?: string;
|
|
102
|
+
/** Class for the bottom state of the action sheet */
|
|
103
|
+
bottom?: string;
|
|
104
|
+
};
|
|
105
|
+
/** Class for the header text, centered */
|
|
106
|
+
header?: string;
|
|
107
|
+
/** Title bar configurations for the action sheet */
|
|
108
|
+
titleBar?: {
|
|
109
|
+
/** Main class for the title bar within the action sheet */
|
|
110
|
+
main?: string;
|
|
111
|
+
/** Class for positioning the title bar horizontally */
|
|
112
|
+
position?: string;
|
|
113
|
+
};
|
|
114
|
+
/** Class for the title of the action sheet */
|
|
115
|
+
title?: string;
|
|
116
|
+
/** Subtitle configurations for the action sheet */
|
|
117
|
+
subtitle?: {
|
|
118
|
+
/** Main class for the subtitle in the action sheet */
|
|
119
|
+
main?: string;
|
|
120
|
+
/** Class for centered text in the subtitle */
|
|
121
|
+
textCenter?: string;
|
|
122
|
+
};
|
|
123
|
+
/** Class for the actions container within the action sheet */
|
|
124
|
+
actions?: string;
|
|
125
|
+
/** Title bar group configurations for the action sheet */
|
|
126
|
+
titleBarGroup?: {
|
|
127
|
+
/** Main class for the title bar group */
|
|
128
|
+
main?: string;
|
|
129
|
+
/** Class for the filter within the action sheet */
|
|
130
|
+
filter?: string;
|
|
131
|
+
};
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* @hidden
|
|
135
|
+
*/
|
|
136
|
+
export declare const uDropDownsActionSheet: WidgetClassStructure;
|
|
137
|
+
/**
|
|
138
|
+
* @hidden
|
|
139
|
+
*/
|
|
140
|
+
export interface DropDownListClasses {
|
|
141
|
+
/** Wrapper configurations for the dropdown list component */
|
|
142
|
+
wrapper?: {
|
|
143
|
+
/** Main class for the dropdown list */
|
|
144
|
+
main?: string;
|
|
145
|
+
/** Class for the picker element */
|
|
146
|
+
picker?: string;
|
|
147
|
+
/** Size configurations for the picker */
|
|
148
|
+
size?: {
|
|
149
|
+
/** Class for the small size of the picker */
|
|
150
|
+
small?: string;
|
|
151
|
+
/** Class for the medium size of the picker */
|
|
152
|
+
medium?: string;
|
|
153
|
+
/** Class for the large size of the picker */
|
|
154
|
+
large?: string;
|
|
155
|
+
};
|
|
156
|
+
/** Fill mode configurations for the picker */
|
|
157
|
+
fillMode?: {
|
|
158
|
+
/** Class for the solid fill mode of the picker */
|
|
159
|
+
solid?: string;
|
|
160
|
+
/** Class for the outline fill mode of the picker */
|
|
161
|
+
outline?: string;
|
|
162
|
+
/** Class for the flat fill mode of the picker */
|
|
163
|
+
flat?: string;
|
|
164
|
+
/** Class for the link fill mode of the picker */
|
|
165
|
+
link?: string;
|
|
166
|
+
/** Class for the clear fill mode of the picker */
|
|
167
|
+
clear?: string;
|
|
168
|
+
};
|
|
169
|
+
/** Rounded configurations for the picker */
|
|
170
|
+
rounded?: {
|
|
171
|
+
/** Class for the small rounded picker */
|
|
172
|
+
small?: string;
|
|
173
|
+
/** Class for the medium rounded picker */
|
|
174
|
+
medium?: string;
|
|
175
|
+
/** Class for the large rounded picker */
|
|
176
|
+
large?: string;
|
|
177
|
+
};
|
|
178
|
+
/** Class for the disabled state of the picker */
|
|
179
|
+
disabled?: string;
|
|
180
|
+
/** Class for the focused state of the picker */
|
|
181
|
+
focused?: string;
|
|
182
|
+
/** Class for the invalid state of the picker */
|
|
183
|
+
invalid?: string;
|
|
184
|
+
/** Class for the loading state of the picker */
|
|
185
|
+
loading?: string;
|
|
186
|
+
/** Class for the required state of the picker */
|
|
187
|
+
required?: string;
|
|
188
|
+
};
|
|
189
|
+
/** Class for the loading icon associated with the input */
|
|
190
|
+
loadingIcon?: string;
|
|
191
|
+
/** Class for the input button within the dropdown list */
|
|
192
|
+
inputButton?: string;
|
|
193
|
+
/** List container configurations for the dropdown list */
|
|
194
|
+
listContainer?: {
|
|
195
|
+
/** Main class for the list container */
|
|
196
|
+
main?: string;
|
|
197
|
+
/** Class for the popup within the dropdown list */
|
|
198
|
+
popup?: string;
|
|
199
|
+
};
|
|
200
|
+
/** Class for the inner input of the dropdown list */
|
|
201
|
+
inputInner?: string;
|
|
202
|
+
/** Class for the input text of the dropdown list */
|
|
203
|
+
inputText?: string;
|
|
204
|
+
/** Class for the header of the list within the dropdown */
|
|
205
|
+
listHeader?: string;
|
|
206
|
+
/** List configurations for the dropdown list */
|
|
207
|
+
list?: {
|
|
208
|
+
/** Main class for the list */
|
|
209
|
+
main?: string;
|
|
210
|
+
/** Size configurations for the list */
|
|
211
|
+
size?: {
|
|
212
|
+
/** Class for the small size of the list */
|
|
213
|
+
small?: string;
|
|
214
|
+
/** Class for the medium size of the list */
|
|
215
|
+
medium?: string;
|
|
216
|
+
/** Class for the large size of the list */
|
|
217
|
+
large?: string;
|
|
218
|
+
};
|
|
219
|
+
/** Class for the virtual list configuration */
|
|
220
|
+
virtual?: string;
|
|
221
|
+
};
|
|
222
|
+
/** Class for the content of the list within the dropdown */
|
|
223
|
+
listContent?: string;
|
|
224
|
+
/** Class for the footer of the list within the dropdown */
|
|
225
|
+
listFooter?: string;
|
|
226
|
+
}
|
|
227
|
+
/**
|
|
228
|
+
* @hidden
|
|
229
|
+
*/
|
|
230
|
+
export declare const uDropDownList: WidgetClassStructure;
|
|
231
|
+
/**
|
|
232
|
+
* @hidden
|
|
233
|
+
*/
|
|
234
|
+
export interface ComboBoxClasses {
|
|
235
|
+
/** Wrapper configurations for the combo box component */
|
|
236
|
+
wrapper?: {
|
|
237
|
+
/** Main prefix for the combo box */
|
|
238
|
+
main?: string;
|
|
239
|
+
/** Class for the input element */
|
|
240
|
+
input?: string;
|
|
241
|
+
/** Size configurations for the input */
|
|
242
|
+
size?: {
|
|
243
|
+
/** Class for the small size of the input */
|
|
244
|
+
small?: string;
|
|
245
|
+
/** Class for the medium size of the input */
|
|
246
|
+
medium?: string;
|
|
247
|
+
/** Class for the large size of the input */
|
|
248
|
+
large?: string;
|
|
249
|
+
};
|
|
250
|
+
/** Fill mode configurations for the input */
|
|
251
|
+
fillMode?: {
|
|
252
|
+
/** Class for the solid fill mode of the input */
|
|
253
|
+
solid?: string;
|
|
254
|
+
/** Class for the outline fill mode of the input */
|
|
255
|
+
outline?: string;
|
|
256
|
+
/** Class for the flat fill mode of the input */
|
|
257
|
+
flat?: string;
|
|
258
|
+
/** Class for the link fill mode of the input */
|
|
259
|
+
link?: string;
|
|
260
|
+
/** Class for the clear fill mode of the input */
|
|
261
|
+
clear?: string;
|
|
262
|
+
};
|
|
263
|
+
/** Rounded configurations for the input */
|
|
264
|
+
rounded?: {
|
|
265
|
+
/** Class for the small rounded input */
|
|
266
|
+
small?: string;
|
|
267
|
+
/** Class for the medium rounded input */
|
|
268
|
+
medium?: string;
|
|
269
|
+
/** Class for the large rounded input */
|
|
270
|
+
large?: string;
|
|
271
|
+
};
|
|
272
|
+
/** Class for the disabled state of the input */
|
|
273
|
+
disabled?: string;
|
|
274
|
+
/** Class for the invalid state of the input */
|
|
275
|
+
invalid?: string;
|
|
276
|
+
/** Class for the loading state of the input */
|
|
277
|
+
loading?: string;
|
|
278
|
+
/** Class for the required state of the input */
|
|
279
|
+
required?: string;
|
|
280
|
+
};
|
|
281
|
+
/** Class for the loading icon associated with the input */
|
|
282
|
+
loadingIcon?: string;
|
|
283
|
+
/** Class for the input button within the combo box */
|
|
284
|
+
inputButton?: string;
|
|
285
|
+
/** List container configurations for the combo box */
|
|
286
|
+
listContainer?: {
|
|
287
|
+
/** Main prefix for the list container */
|
|
288
|
+
main?: string;
|
|
289
|
+
/** Class for the popup within the combo box */
|
|
290
|
+
popup?: string;
|
|
291
|
+
};
|
|
292
|
+
/** Class for the header of the list within the combo box */
|
|
293
|
+
listHeader?: string;
|
|
294
|
+
/** List configurations for the combo box */
|
|
295
|
+
list?: {
|
|
296
|
+
/** Main prefix for the list */
|
|
297
|
+
list?: string;
|
|
298
|
+
/** Class for the table element within the list */
|
|
299
|
+
table?: string;
|
|
300
|
+
/** Size configurations for the list */
|
|
301
|
+
size?: {
|
|
302
|
+
/** Class for the list size */
|
|
303
|
+
prefix?: string;
|
|
304
|
+
/** Class for the small size of the list */
|
|
305
|
+
small?: string;
|
|
306
|
+
/** Class for the medium size of the list */
|
|
307
|
+
medium?: string;
|
|
308
|
+
/** Class for the large size of the list */
|
|
309
|
+
large?: string;
|
|
310
|
+
};
|
|
311
|
+
/** Table size configurations for the list */
|
|
312
|
+
tableSize?: {
|
|
313
|
+
/** Class for the table size */
|
|
314
|
+
prefix?: string;
|
|
315
|
+
/** Class for the small size of the table */
|
|
316
|
+
small?: string;
|
|
317
|
+
/** Class for the medium size of the table */
|
|
318
|
+
medium?: string;
|
|
319
|
+
/** Class for the large size of the table */
|
|
320
|
+
large?: string;
|
|
321
|
+
};
|
|
322
|
+
/** Class for the virtual list configuration */
|
|
323
|
+
virtual?: string;
|
|
324
|
+
};
|
|
325
|
+
/** List content configurations for the combo box */
|
|
326
|
+
listContent?: {
|
|
327
|
+
/** Main prefix for the list content */
|
|
328
|
+
main?: string;
|
|
329
|
+
/** Class for the scroller within the list content */
|
|
330
|
+
scroller?: string;
|
|
331
|
+
};
|
|
332
|
+
/** Class for the footer of the list within the combo box */
|
|
333
|
+
listFooter?: string;
|
|
334
|
+
}
|
|
335
|
+
/**
|
|
336
|
+
* @hidden
|
|
337
|
+
*/
|
|
338
|
+
export declare const uComboBox: WidgetClassStructure;
|
package/unstyled/dropdowns.mjs
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { getClassByName as s } from "./common.mjs";
|
|
9
|
-
import { base as e, containers as i,
|
|
9
|
+
import { base as e, containers as i, elements as o, sizeMap as x, components as b, inputPrefix as p, states as u, icon as q, roundedMap as M, fillModeMap as z, comboBoxPrefix as y, pickerPrefix as g, inputs as F, dropDownListPrefix as P, cssUtils as k, dimensions as A } from "./json-classes.mjs";
|
|
10
10
|
const d = {
|
|
11
11
|
clearButton: `${e.prefix}-${e.clear}-${e.value}`,
|
|
12
12
|
groupStickyHeader: `${e.prefix}-${i.list}-${i.group}-${u.sticky}-${o.header}`,
|
|
@@ -30,7 +30,7 @@ const d = {
|
|
|
30
30
|
},
|
|
31
31
|
itemGroupLabel: `${e.prefix}-${i.list}-${i.item}-${i.group}-${o.label}`,
|
|
32
32
|
noData: `${e.prefix}-${e.nodata}`,
|
|
33
|
-
heightContainer: `${e.prefix}-${
|
|
33
|
+
heightContainer: `${e.prefix}-${A.height}-${i.container}`,
|
|
34
34
|
optionLabel: {
|
|
35
35
|
main: `${e.prefix}-${i.list}-${i.optionLabel}`,
|
|
36
36
|
selected: `${e.prefix}-${u.selected}`
|
|
@@ -239,7 +239,7 @@ const d = {
|
|
|
239
239
|
listFooter: s(h, "listFooter")
|
|
240
240
|
}, v = {
|
|
241
241
|
wrapper: {
|
|
242
|
-
main:
|
|
242
|
+
main: y,
|
|
243
243
|
input: p,
|
|
244
244
|
size: {
|
|
245
245
|
small: `${p}-${x.small}`,
|
|
@@ -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
|
+
import { WidgetClassStructure } from './interfaces/common';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export interface FormClasses {
|
|
13
|
+
/** Form configurations */
|
|
14
|
+
form?: {
|
|
15
|
+
/** Main class for the form */
|
|
16
|
+
main?: string;
|
|
17
|
+
/** Size configurations for the form */
|
|
18
|
+
size?: {
|
|
19
|
+
/** Prefix for size classes */
|
|
20
|
+
prefix?: string;
|
|
21
|
+
/** Class for small size */
|
|
22
|
+
small?: string;
|
|
23
|
+
/** Class for medium size */
|
|
24
|
+
medium?: string;
|
|
25
|
+
/** Class for large size */
|
|
26
|
+
large?: string;
|
|
27
|
+
};
|
|
28
|
+
/** Orientation configurations for the form */
|
|
29
|
+
orientation?: {
|
|
30
|
+
/** Class for horizontal orientation */
|
|
31
|
+
horizontal?: string;
|
|
32
|
+
/** Class for vertical orientation */
|
|
33
|
+
vertical?: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
/** Layout configurations for the form */
|
|
37
|
+
formLayout?: {
|
|
38
|
+
/** Main class for form layout */
|
|
39
|
+
main?: string;
|
|
40
|
+
};
|
|
41
|
+
/** Fieldset configurations within the form */
|
|
42
|
+
fieldset?: {
|
|
43
|
+
/** Main class for form fieldset */
|
|
44
|
+
main?: string;
|
|
45
|
+
/** Layout configurations for the form fieldset */
|
|
46
|
+
layout?: {
|
|
47
|
+
/** Main class for form fieldset layout */
|
|
48
|
+
main?: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
/** Class for the form legend */
|
|
52
|
+
legend?: {
|
|
53
|
+
/** Main class for form legend */
|
|
54
|
+
main?: string;
|
|
55
|
+
};
|
|
56
|
+
/** Field configurations within the form */
|
|
57
|
+
field?: {
|
|
58
|
+
/** Main class for form fields */
|
|
59
|
+
main?: string;
|
|
60
|
+
/** Class indicating right-to-left (RTL) layout */
|
|
61
|
+
isRtl?: string;
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* Separator configurations within the form.
|
|
65
|
+
*/
|
|
66
|
+
separator?: {
|
|
67
|
+
/** Main class for form field separator */
|
|
68
|
+
main?: string;
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* @hidden
|
|
73
|
+
*/
|
|
74
|
+
export declare const uForm: WidgetClassStructure;
|
|
@@ -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
|
+
import { WidgetClassStructure } from './interfaces/common';
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export declare const uGrid: WidgetClassStructure;
|
|
@@ -0,0 +1,102 @@
|
|
|
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
|
+
* Theme color options for the wrapper
|
|
12
|
+
*/
|
|
13
|
+
export interface ThemeColorClasses {
|
|
14
|
+
/** The text color should inherit from its parent */
|
|
15
|
+
inherit?: string;
|
|
16
|
+
/** Text color for the primary theme */
|
|
17
|
+
primary?: string;
|
|
18
|
+
/** Text color for the secondary theme */
|
|
19
|
+
secondary?: string;
|
|
20
|
+
/** Text color for the tertiary theme */
|
|
21
|
+
tertiary?: string;
|
|
22
|
+
/** Text color for informational messages */
|
|
23
|
+
info?: string;
|
|
24
|
+
/** Text color indicating success */
|
|
25
|
+
success?: string;
|
|
26
|
+
/** Text color for warnings */
|
|
27
|
+
warning?: string;
|
|
28
|
+
/** Text color indicating errors */
|
|
29
|
+
error?: string;
|
|
30
|
+
/** Text color for dark theme */
|
|
31
|
+
dark?: string;
|
|
32
|
+
/** Text color for light theme */
|
|
33
|
+
light?: string;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* @hidden
|
|
37
|
+
* Size options
|
|
38
|
+
*/
|
|
39
|
+
export interface SizeClasses {
|
|
40
|
+
/** Default size (16px by 16px) */
|
|
41
|
+
default?: string;
|
|
42
|
+
/** Extra small size (0.75 times the default size) */
|
|
43
|
+
xsmall?: string;
|
|
44
|
+
/** Small size (0.875 times the default size) */
|
|
45
|
+
small?: string;
|
|
46
|
+
/** Medium size, same as default (16px by 16px) */
|
|
47
|
+
medium?: string;
|
|
48
|
+
/** Large size (1.25 times the default size) */
|
|
49
|
+
large?: string;
|
|
50
|
+
/** Extra large size (1.5 times the default size) */
|
|
51
|
+
xlarge?: string;
|
|
52
|
+
/** Double extra large size (2 times the default size) */
|
|
53
|
+
xxlarge?: string;
|
|
54
|
+
/** Triple extra large size (3 times the default size) */
|
|
55
|
+
xxxlarge?: string;
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* @hidden
|
|
59
|
+
* Wrapper classes configuration
|
|
60
|
+
*/
|
|
61
|
+
export interface WrapperClasses {
|
|
62
|
+
/** Main wrapper class */
|
|
63
|
+
main?: string;
|
|
64
|
+
/** SVG prefix class */
|
|
65
|
+
svgPrefix?: string;
|
|
66
|
+
/** SVG name prefix class */
|
|
67
|
+
namePrefix?: string;
|
|
68
|
+
/** Horizontal flip transformation */
|
|
69
|
+
flipH?: string;
|
|
70
|
+
/** Vertical flip transformation */
|
|
71
|
+
flipV?: string;
|
|
72
|
+
/** Theme color options for the wrapper */
|
|
73
|
+
themeColor?: ThemeColorClasses;
|
|
74
|
+
/** Size options for the wrapper */
|
|
75
|
+
size?: SizeClasses;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* @hidden
|
|
79
|
+
* SVG classes configuration
|
|
80
|
+
*/
|
|
81
|
+
export interface SvgClasses {
|
|
82
|
+
/** Main SVG class, sets fill and flex behavior */
|
|
83
|
+
main?: string;
|
|
84
|
+
/** Horizontal flip transformation for the SVG */
|
|
85
|
+
flipH?: string;
|
|
86
|
+
/** Vertical flip transformation for the SVG */
|
|
87
|
+
flipV?: string;
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* @hidden
|
|
91
|
+
* SVGIcon Classes
|
|
92
|
+
*/
|
|
93
|
+
export interface SVGIconClasses {
|
|
94
|
+
/** Wrapper configuration*/
|
|
95
|
+
wrapper?: WrapperClasses;
|
|
96
|
+
/** SVG configuration */
|
|
97
|
+
svg?: SvgClasses;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* @hidden
|
|
101
|
+
*/
|
|
102
|
+
export declare const uSvgIcon: WidgetClassStructure;
|