@progress/kendo-react-common 8.3.0-develop.5 → 8.3.0-develop.7
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/dist/cdn/js/kendo-react-common.js +1 -1
- package/index.d.mts +495 -29
- package/index.d.ts +495 -29
- package/index.js +1 -1
- package/index.mjs +151 -98
- package/package.json +1 -1
- package/unstyled/animations.js +1 -1
- package/unstyled/animations.mjs +1 -1
- package/unstyled/buttons.js +1 -1
- package/unstyled/buttons.mjs +77 -77
- package/unstyled/dateinputs.js +8 -0
- package/unstyled/dateinputs.mjs +556 -0
- package/unstyled/dropdowns.js +8 -0
- package/unstyled/dropdowns.mjs +231 -0
- package/unstyled/form.js +8 -0
- package/unstyled/form.mjs +50 -0
- package/unstyled/grid.js +1 -1
- package/unstyled/grid.mjs +71 -71
- package/unstyled/inputs.js +1 -1
- package/unstyled/inputs.mjs +191 -78
- package/unstyled/interfaces/common.js +8 -0
- package/unstyled/interfaces/common.mjs +17 -0
- package/unstyled/json-classes.js +1 -1
- package/unstyled/json-classes.mjs +178 -64
- package/unstyled/labels.js +8 -0
- package/unstyled/labels.mjs +99 -0
- package/unstyled/popup.js +1 -1
- package/unstyled/popup.mjs +1 -1
package/index.d.ts
CHANGED
|
@@ -12,6 +12,17 @@ import * as React_2 from 'react';
|
|
|
12
12
|
import { default as React_3 } from 'react';
|
|
13
13
|
import { validatePackage as validatePackage_2 } from '@progress/kendo-licensing';
|
|
14
14
|
|
|
15
|
+
/**
|
|
16
|
+
* @hidden
|
|
17
|
+
*/
|
|
18
|
+
export declare const actions: {
|
|
19
|
+
increase: string;
|
|
20
|
+
decrease: string;
|
|
21
|
+
cancel: string;
|
|
22
|
+
accept: string;
|
|
23
|
+
split: string;
|
|
24
|
+
};
|
|
25
|
+
|
|
15
26
|
/**
|
|
16
27
|
* @hidden
|
|
17
28
|
*/
|
|
@@ -20,7 +31,7 @@ export declare function addItem(item: any, operation: 'before' | 'after' | 'chil
|
|
|
20
31
|
/**
|
|
21
32
|
* @hidden
|
|
22
33
|
*/
|
|
23
|
-
export declare interface AllClassStructure extends AnimationsClassStructure, IconsClassStructure, ButtonsClassStructure, PopupClassStructure, GridClassStructure,
|
|
34
|
+
export declare interface AllClassStructure extends AnimationsClassStructure, ButtonsClassStructure, DropDownsClassStructure, GridClassStructure, IconsClassStructure, LabelsClassStructure, FormClassStructure, PopupClassStructure, ButtonsClassStructure, PopupClassStructure, GridClassStructure, InputsClassStructure, DropDownsClassStructure, DateInputsClassStructure {
|
|
24
35
|
}
|
|
25
36
|
|
|
26
37
|
/**
|
|
@@ -98,6 +109,24 @@ export declare interface AutoScrollOptions {
|
|
|
98
109
|
}> | null;
|
|
99
110
|
}
|
|
100
111
|
|
|
112
|
+
/**
|
|
113
|
+
* @hidden
|
|
114
|
+
*/
|
|
115
|
+
export declare const base: {
|
|
116
|
+
prefix: string;
|
|
117
|
+
important: string;
|
|
118
|
+
rtl: string;
|
|
119
|
+
rounded: string;
|
|
120
|
+
value: string;
|
|
121
|
+
state: string;
|
|
122
|
+
filter: string;
|
|
123
|
+
virtual: string;
|
|
124
|
+
infinite: string;
|
|
125
|
+
clear: string;
|
|
126
|
+
reset: string;
|
|
127
|
+
nodata: string;
|
|
128
|
+
};
|
|
129
|
+
|
|
101
130
|
/** @hidden */
|
|
102
131
|
declare interface BaseDraggableEvent {
|
|
103
132
|
/**
|
|
@@ -226,6 +255,11 @@ export declare class BrowserSupportService {
|
|
|
226
255
|
get scrollbarWidth(): number;
|
|
227
256
|
}
|
|
228
257
|
|
|
258
|
+
/**
|
|
259
|
+
* @hidden
|
|
260
|
+
*/
|
|
261
|
+
export declare const buttonPrefix: string;
|
|
262
|
+
|
|
229
263
|
/**
|
|
230
264
|
* @hidden
|
|
231
265
|
*/
|
|
@@ -234,6 +268,11 @@ export declare interface ButtonsClassStructure {
|
|
|
234
268
|
uDropDownButton?: WidgetClassStructure;
|
|
235
269
|
}
|
|
236
270
|
|
|
271
|
+
/**
|
|
272
|
+
* @hidden
|
|
273
|
+
*/
|
|
274
|
+
export declare const calendarPrefix: string;
|
|
275
|
+
|
|
237
276
|
/**
|
|
238
277
|
* @hidden
|
|
239
278
|
*/
|
|
@@ -289,6 +328,49 @@ export declare interface CollectionAction<T> {
|
|
|
289
328
|
item: T;
|
|
290
329
|
}
|
|
291
330
|
|
|
331
|
+
/**
|
|
332
|
+
* @hidden
|
|
333
|
+
*/
|
|
334
|
+
export declare const components: {
|
|
335
|
+
actionsheet: string;
|
|
336
|
+
calendar: string;
|
|
337
|
+
buttongroup: string;
|
|
338
|
+
dateinput: string;
|
|
339
|
+
datetime: string;
|
|
340
|
+
datetimepicker: string;
|
|
341
|
+
dropdownlist: string;
|
|
342
|
+
maskedtextbox: string;
|
|
343
|
+
menu: string;
|
|
344
|
+
searchbox: string;
|
|
345
|
+
timepicker: string;
|
|
346
|
+
};
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* @hidden
|
|
350
|
+
*/
|
|
351
|
+
export declare const containers: {
|
|
352
|
+
actions: string;
|
|
353
|
+
container: string;
|
|
354
|
+
content: string;
|
|
355
|
+
group: string;
|
|
356
|
+
row: string;
|
|
357
|
+
nav: string;
|
|
358
|
+
wrap: string;
|
|
359
|
+
wrapper: string;
|
|
360
|
+
list: string;
|
|
361
|
+
placeholder: string;
|
|
362
|
+
popup: string;
|
|
363
|
+
item: string;
|
|
364
|
+
part: string;
|
|
365
|
+
picker: string;
|
|
366
|
+
separator: string;
|
|
367
|
+
spacer: string;
|
|
368
|
+
tab: string;
|
|
369
|
+
titlebar: string;
|
|
370
|
+
optionlabel: string;
|
|
371
|
+
view: string;
|
|
372
|
+
};
|
|
373
|
+
|
|
292
374
|
/**
|
|
293
375
|
* @hidden
|
|
294
376
|
*/
|
|
@@ -297,6 +379,23 @@ declare function createId(childId: string | number, parentId?: string): string;
|
|
|
297
379
|
/** @hidden */
|
|
298
380
|
export declare const createPropsContext: <T extends unknown>() => React_2.Context<(p: T) => T>;
|
|
299
381
|
|
|
382
|
+
/**
|
|
383
|
+
* @hidden
|
|
384
|
+
*/
|
|
385
|
+
export declare const cssUtils: {
|
|
386
|
+
center: string;
|
|
387
|
+
hbox: string;
|
|
388
|
+
vstack: string;
|
|
389
|
+
overflow: string;
|
|
390
|
+
};
|
|
391
|
+
|
|
392
|
+
/**
|
|
393
|
+
* @hidden
|
|
394
|
+
*/
|
|
395
|
+
export declare const cursor: {
|
|
396
|
+
default: string;
|
|
397
|
+
};
|
|
398
|
+
|
|
300
399
|
/**
|
|
301
400
|
* @hidden
|
|
302
401
|
*/
|
|
@@ -313,6 +412,67 @@ export declare interface DataItemWrapper {
|
|
|
313
412
|
dataIndex: number;
|
|
314
413
|
}
|
|
315
414
|
|
|
415
|
+
/**
|
|
416
|
+
* @hidden
|
|
417
|
+
*/
|
|
418
|
+
export declare const dateInputs: {
|
|
419
|
+
week: string;
|
|
420
|
+
weekdays: string;
|
|
421
|
+
weekend: string;
|
|
422
|
+
month: string;
|
|
423
|
+
year: string;
|
|
424
|
+
decade: string;
|
|
425
|
+
century: string;
|
|
426
|
+
number: string;
|
|
427
|
+
navigation: string;
|
|
428
|
+
marker: string;
|
|
429
|
+
now: string;
|
|
430
|
+
range: string;
|
|
431
|
+
today: string;
|
|
432
|
+
other: string;
|
|
433
|
+
date: string;
|
|
434
|
+
time: string;
|
|
435
|
+
selector: string;
|
|
436
|
+
timeselector: string;
|
|
437
|
+
};
|
|
438
|
+
|
|
439
|
+
/**
|
|
440
|
+
* @hidden
|
|
441
|
+
*/
|
|
442
|
+
export declare interface DateInputsClassStructure {
|
|
443
|
+
uCalendar?: WidgetClassStructure;
|
|
444
|
+
uDateInput?: WidgetClassStructure;
|
|
445
|
+
uDateTimePicker?: WidgetClassStructure;
|
|
446
|
+
uTime?: WidgetClassStructure;
|
|
447
|
+
uTimePicker?: WidgetClassStructure;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
/**
|
|
451
|
+
* @hidden
|
|
452
|
+
*/
|
|
453
|
+
export declare const ddbPrefix: string;
|
|
454
|
+
|
|
455
|
+
/**
|
|
456
|
+
* @hidden
|
|
457
|
+
*/
|
|
458
|
+
export declare const dimensions: {
|
|
459
|
+
height: string;
|
|
460
|
+
width: string;
|
|
461
|
+
};
|
|
462
|
+
|
|
463
|
+
/**
|
|
464
|
+
* @hidden
|
|
465
|
+
*/
|
|
466
|
+
export declare const directionMap: {
|
|
467
|
+
up: string;
|
|
468
|
+
down: string;
|
|
469
|
+
left: string;
|
|
470
|
+
right: string;
|
|
471
|
+
start: string;
|
|
472
|
+
mid: string;
|
|
473
|
+
end: string;
|
|
474
|
+
};
|
|
475
|
+
|
|
316
476
|
/**
|
|
317
477
|
* @hidden
|
|
318
478
|
*/
|
|
@@ -472,6 +632,20 @@ export declare interface DraggableProps extends DraggableOptions {
|
|
|
472
632
|
export declare interface DraggableReleaseEvent extends BaseDraggableEvent {
|
|
473
633
|
}
|
|
474
634
|
|
|
635
|
+
/**
|
|
636
|
+
* @hidden
|
|
637
|
+
*/
|
|
638
|
+
export declare const dropDownListPrefix: string;
|
|
639
|
+
|
|
640
|
+
/**
|
|
641
|
+
* @hidden
|
|
642
|
+
*/
|
|
643
|
+
export declare interface DropDownsClassStructure {
|
|
644
|
+
uDropDownsActionSheet?: WidgetClassStructure;
|
|
645
|
+
uDropDownsBase?: WidgetClassStructure;
|
|
646
|
+
uDropDownList?: WidgetClassStructure;
|
|
647
|
+
}
|
|
648
|
+
|
|
475
649
|
/**
|
|
476
650
|
* Represents the KendoReact Droppable component.
|
|
477
651
|
*
|
|
@@ -551,6 +725,28 @@ declare type ElementMouse = {
|
|
|
551
725
|
[P in keyof Required<KendoMouse<any, any>>]: (event: React_2.MouseEvent<any>) => void;
|
|
552
726
|
};
|
|
553
727
|
|
|
728
|
+
/**
|
|
729
|
+
* @hidden
|
|
730
|
+
*/
|
|
731
|
+
export declare const elements: {
|
|
732
|
+
table: string;
|
|
733
|
+
text: string;
|
|
734
|
+
button: string;
|
|
735
|
+
tbody: string;
|
|
736
|
+
thead: string;
|
|
737
|
+
tr: string;
|
|
738
|
+
th: string;
|
|
739
|
+
td: string;
|
|
740
|
+
header: string;
|
|
741
|
+
footer: string;
|
|
742
|
+
icon: string;
|
|
743
|
+
title: string;
|
|
744
|
+
link: string;
|
|
745
|
+
label: string;
|
|
746
|
+
ul: string;
|
|
747
|
+
caption: string;
|
|
748
|
+
};
|
|
749
|
+
|
|
554
750
|
/**
|
|
555
751
|
* @hidden
|
|
556
752
|
*/
|
|
@@ -644,6 +840,11 @@ export declare interface FieldRenderPropsBase {
|
|
|
644
840
|
[customProp: string]: any;
|
|
645
841
|
}
|
|
646
842
|
|
|
843
|
+
/**
|
|
844
|
+
* @hidden
|
|
845
|
+
*/
|
|
846
|
+
export declare const fillModeMap: PresetOption;
|
|
847
|
+
|
|
647
848
|
/**
|
|
648
849
|
* @hidden
|
|
649
850
|
*/
|
|
@@ -675,6 +876,14 @@ export declare const focusFirstFocusableChild: (element: HTMLElement, elementsSe
|
|
|
675
876
|
*/
|
|
676
877
|
export declare const focusLastFocusableChild: (element: HTMLElement, elementsSelectors?: string[]) => void;
|
|
677
878
|
|
|
879
|
+
/**
|
|
880
|
+
* @hidden
|
|
881
|
+
*/
|
|
882
|
+
export declare interface FormClassStructure {
|
|
883
|
+
uForm?: WidgetClassStructure;
|
|
884
|
+
uFormField?: WidgetClassStructure;
|
|
885
|
+
}
|
|
886
|
+
|
|
678
887
|
/**
|
|
679
888
|
* @hidden
|
|
680
889
|
*/
|
|
@@ -776,6 +985,14 @@ export declare interface FormComponentValidity {
|
|
|
776
985
|
readonly valueMissing: boolean;
|
|
777
986
|
}
|
|
778
987
|
|
|
988
|
+
/**
|
|
989
|
+
* @hidden
|
|
990
|
+
*/
|
|
991
|
+
export declare const forms: {
|
|
992
|
+
form: string;
|
|
993
|
+
field: string;
|
|
994
|
+
};
|
|
995
|
+
|
|
779
996
|
/**
|
|
780
997
|
* @hidden
|
|
781
998
|
*/
|
|
@@ -876,6 +1093,25 @@ export declare const getTabIndex: (tabIndex?: number | string, disabled?: boolea
|
|
|
876
1093
|
*/
|
|
877
1094
|
export declare function getter(field: string): (values: any) => any;
|
|
878
1095
|
|
|
1096
|
+
/**
|
|
1097
|
+
* @hidden
|
|
1098
|
+
*/
|
|
1099
|
+
export declare const grid: {
|
|
1100
|
+
prefix: string;
|
|
1101
|
+
ariaRoot: string;
|
|
1102
|
+
tableWrap: string;
|
|
1103
|
+
master: string;
|
|
1104
|
+
column: string;
|
|
1105
|
+
cell: string;
|
|
1106
|
+
cellInner: string;
|
|
1107
|
+
row: string;
|
|
1108
|
+
group: string;
|
|
1109
|
+
hierarchy: string;
|
|
1110
|
+
detail: string;
|
|
1111
|
+
noRecords: string;
|
|
1112
|
+
pager: string;
|
|
1113
|
+
};
|
|
1114
|
+
|
|
879
1115
|
/**
|
|
880
1116
|
* @hidden
|
|
881
1117
|
*/
|
|
@@ -883,6 +1119,11 @@ export declare interface GridClassStructure {
|
|
|
883
1119
|
uGrid?: WidgetClassStructure;
|
|
884
1120
|
}
|
|
885
1121
|
|
|
1122
|
+
/**
|
|
1123
|
+
* @hidden
|
|
1124
|
+
*/
|
|
1125
|
+
export declare const gridPrefix: string;
|
|
1126
|
+
|
|
886
1127
|
/**
|
|
887
1128
|
* @hidden
|
|
888
1129
|
*/
|
|
@@ -911,6 +1152,18 @@ export declare const hasRelativeStackingContext: (elementSource?: HTMLElement) =
|
|
|
911
1152
|
*/
|
|
912
1153
|
export declare const Icon: React_2.ForwardRefExoticComponent<IconProps & React_2.RefAttributes<IconHandle | null>>;
|
|
913
1154
|
|
|
1155
|
+
/**
|
|
1156
|
+
* @hidden
|
|
1157
|
+
*/
|
|
1158
|
+
export declare const icon: {
|
|
1159
|
+
prefix: string;
|
|
1160
|
+
svg: string;
|
|
1161
|
+
i: string;
|
|
1162
|
+
color: string;
|
|
1163
|
+
flipH: string;
|
|
1164
|
+
flipV: string;
|
|
1165
|
+
};
|
|
1166
|
+
|
|
914
1167
|
/**
|
|
915
1168
|
* Specifies the icon flip direction.
|
|
916
1169
|
*
|
|
@@ -1014,6 +1267,37 @@ export declare type IconThemeColor = 'inherit' | 'primary' | 'secondary' | 'tert
|
|
|
1014
1267
|
*/
|
|
1015
1268
|
export declare const IconWrap: React_2.ForwardRefExoticComponent<IconProps & SvgIconProps & React_2.RefAttributes<(IconHandle & SvgIconHandle) | null>>;
|
|
1016
1269
|
|
|
1270
|
+
/**
|
|
1271
|
+
* @hidden
|
|
1272
|
+
*/
|
|
1273
|
+
export declare const inputPrefix: string;
|
|
1274
|
+
|
|
1275
|
+
/**
|
|
1276
|
+
* @hidden
|
|
1277
|
+
*/
|
|
1278
|
+
export declare const inputs: {
|
|
1279
|
+
input: string;
|
|
1280
|
+
inner: string;
|
|
1281
|
+
spin: string;
|
|
1282
|
+
spinner: string;
|
|
1283
|
+
maskedtextbox: string;
|
|
1284
|
+
radio: string;
|
|
1285
|
+
textbox: string;
|
|
1286
|
+
prefix: string;
|
|
1287
|
+
suffix: string;
|
|
1288
|
+
};
|
|
1289
|
+
|
|
1290
|
+
/**
|
|
1291
|
+
* @hidden
|
|
1292
|
+
*/
|
|
1293
|
+
export declare interface InputsClassStructure {
|
|
1294
|
+
uMaskedTextBox?: WidgetClassStructure;
|
|
1295
|
+
uRadioGroup?: WidgetClassStructure;
|
|
1296
|
+
uRadioButton?: WidgetClassStructure;
|
|
1297
|
+
uTextBox?: WidgetClassStructure;
|
|
1298
|
+
uInput?: WidgetClassStructure;
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1017
1301
|
/**
|
|
1018
1302
|
* @hidden
|
|
1019
1303
|
*/
|
|
@@ -1122,25 +1406,30 @@ export declare interface KendoReactComponentBaseProps {
|
|
|
1122
1406
|
/**
|
|
1123
1407
|
* @hidden
|
|
1124
1408
|
*/
|
|
1125
|
-
declare interface KendoTheme {
|
|
1126
|
-
base:
|
|
1127
|
-
animation:
|
|
1128
|
-
containers:
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1409
|
+
export declare interface KendoTheme {
|
|
1410
|
+
base: PresetOption;
|
|
1411
|
+
animation: PresetOption;
|
|
1412
|
+
containers: PresetOption;
|
|
1413
|
+
components: PresetOption;
|
|
1414
|
+
cssUtils: PresetOption;
|
|
1415
|
+
elements: PresetOption;
|
|
1416
|
+
sizeMap: PresetOption;
|
|
1417
|
+
directionMap: PresetOption;
|
|
1418
|
+
fillModeMap: PresetOption;
|
|
1419
|
+
themeColorMap: PresetOption;
|
|
1420
|
+
roundedMap: PresetOption;
|
|
1421
|
+
cursor: PresetOption;
|
|
1422
|
+
dimensions: PresetOption;
|
|
1423
|
+
states: PresetOption;
|
|
1424
|
+
actions: PresetOption;
|
|
1425
|
+
inputs: PresetOption;
|
|
1426
|
+
dateInputs: PresetOption;
|
|
1427
|
+
forms: PresetOption;
|
|
1428
|
+
labels: PresetOption;
|
|
1429
|
+
popup: PresetOption;
|
|
1430
|
+
icon: PresetOption;
|
|
1431
|
+
grid: PresetOption;
|
|
1432
|
+
orientationMap: PresetOption;
|
|
1144
1433
|
}
|
|
1145
1434
|
|
|
1146
1435
|
/** @hidden */
|
|
@@ -1213,6 +1502,28 @@ export declare const Keys: {
|
|
|
1213
1502
|
delete: number;
|
|
1214
1503
|
};
|
|
1215
1504
|
|
|
1505
|
+
/**
|
|
1506
|
+
* @hidden
|
|
1507
|
+
*/
|
|
1508
|
+
export declare const labels: {
|
|
1509
|
+
label: string;
|
|
1510
|
+
text: string;
|
|
1511
|
+
floatingLabel: string;
|
|
1512
|
+
container: string;
|
|
1513
|
+
hint: string;
|
|
1514
|
+
error: string;
|
|
1515
|
+
};
|
|
1516
|
+
|
|
1517
|
+
/**
|
|
1518
|
+
* @hidden
|
|
1519
|
+
*/
|
|
1520
|
+
export declare interface LabelsClassStructure {
|
|
1521
|
+
uError?: WidgetClassStructure;
|
|
1522
|
+
uHint?: WidgetClassStructure;
|
|
1523
|
+
uLabel?: WidgetClassStructure;
|
|
1524
|
+
uFloatingLabel?: WidgetClassStructure;
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1216
1527
|
/**
|
|
1217
1528
|
* @hidden
|
|
1218
1529
|
*/
|
|
@@ -1268,9 +1579,7 @@ export declare type MarginEnum = 'xsmall' | 'small' | 'medium' | 'large' | 'xlar
|
|
|
1268
1579
|
/**
|
|
1269
1580
|
* @hidden
|
|
1270
1581
|
*/
|
|
1271
|
-
export declare
|
|
1272
|
-
uMaskedTextBox?: WidgetClassStructure;
|
|
1273
|
-
}
|
|
1582
|
+
export declare const maskedPrefix: string;
|
|
1274
1583
|
|
|
1275
1584
|
declare type MemoizedFn<TFunc extends (this: any, ...args: any[]) => any> = {
|
|
1276
1585
|
clear: () => void;
|
|
@@ -1450,6 +1759,23 @@ export declare const noop: () => void;
|
|
|
1450
1759
|
|
|
1451
1760
|
export { NormalizedDragEvent }
|
|
1452
1761
|
|
|
1762
|
+
/**
|
|
1763
|
+
* @hidden
|
|
1764
|
+
*/
|
|
1765
|
+
export declare const orientationMap: PresetOption;
|
|
1766
|
+
|
|
1767
|
+
/**
|
|
1768
|
+
* @hidden
|
|
1769
|
+
*/
|
|
1770
|
+
export declare const pickerPrefix: string;
|
|
1771
|
+
|
|
1772
|
+
/**
|
|
1773
|
+
* @hidden
|
|
1774
|
+
*/
|
|
1775
|
+
export declare const popup: {
|
|
1776
|
+
prefix: string;
|
|
1777
|
+
};
|
|
1778
|
+
|
|
1453
1779
|
/**
|
|
1454
1780
|
* @hidden
|
|
1455
1781
|
*/
|
|
@@ -1457,19 +1783,26 @@ export declare interface PopupClassStructure {
|
|
|
1457
1783
|
uPopup?: WidgetClassStructure;
|
|
1458
1784
|
}
|
|
1459
1785
|
|
|
1786
|
+
declare type PresetOption = Record<Exclude<any, null>, string>;
|
|
1787
|
+
|
|
1460
1788
|
/**
|
|
1461
1789
|
* @hidden
|
|
1462
1790
|
*/
|
|
1463
|
-
export declare
|
|
1464
|
-
|
|
1465
|
-
}
|
|
1791
|
+
export declare const radioButtonClasses: {
|
|
1792
|
+
[key: string]: any;
|
|
1793
|
+
};
|
|
1466
1794
|
|
|
1467
1795
|
/**
|
|
1468
1796
|
* @hidden
|
|
1469
1797
|
*/
|
|
1470
|
-
export declare
|
|
1471
|
-
|
|
1472
|
-
}
|
|
1798
|
+
export declare const radioGroupClasses: {
|
|
1799
|
+
[key: string]: any;
|
|
1800
|
+
};
|
|
1801
|
+
|
|
1802
|
+
/**
|
|
1803
|
+
* @hidden
|
|
1804
|
+
*/
|
|
1805
|
+
export declare const radioPrefix: string;
|
|
1473
1806
|
|
|
1474
1807
|
/**
|
|
1475
1808
|
* @hidden
|
|
@@ -1486,6 +1819,11 @@ export declare function resolveItemId(publicId: any, idField: string, items: any
|
|
|
1486
1819
|
*/
|
|
1487
1820
|
export declare function resolveItemsIds(publicIds: any[], idField: string, items: any[], childrenField: string): string[];
|
|
1488
1821
|
|
|
1822
|
+
/**
|
|
1823
|
+
* @hidden
|
|
1824
|
+
*/
|
|
1825
|
+
export declare const roundedMap: PresetOption;
|
|
1826
|
+
|
|
1489
1827
|
/**
|
|
1490
1828
|
* @hidden
|
|
1491
1829
|
*/
|
|
@@ -1532,6 +1870,11 @@ export declare function setter(field: string): any;
|
|
|
1532
1870
|
*/
|
|
1533
1871
|
export declare function shouldShowValidationUI(packageMetadata: any): boolean;
|
|
1534
1872
|
|
|
1873
|
+
/**
|
|
1874
|
+
* @hidden
|
|
1875
|
+
*/
|
|
1876
|
+
export declare const sizeMap: PresetOption;
|
|
1877
|
+
|
|
1535
1878
|
/**
|
|
1536
1879
|
* @hidden
|
|
1537
1880
|
*/
|
|
@@ -1541,6 +1884,44 @@ export declare class SortedPublicItemIds {
|
|
|
1541
1884
|
hasId(publicItemId: any): boolean;
|
|
1542
1885
|
}
|
|
1543
1886
|
|
|
1887
|
+
/**
|
|
1888
|
+
* @hidden
|
|
1889
|
+
*/
|
|
1890
|
+
export declare const states: {
|
|
1891
|
+
active: string;
|
|
1892
|
+
adaptive: string;
|
|
1893
|
+
first: string;
|
|
1894
|
+
focus: string;
|
|
1895
|
+
pending: string;
|
|
1896
|
+
last: string;
|
|
1897
|
+
draggable: string;
|
|
1898
|
+
filterable: string;
|
|
1899
|
+
grouping: string;
|
|
1900
|
+
selected: string;
|
|
1901
|
+
disabled: string;
|
|
1902
|
+
hidden: string;
|
|
1903
|
+
highlight: string;
|
|
1904
|
+
invalid: string;
|
|
1905
|
+
loading: string;
|
|
1906
|
+
required: string;
|
|
1907
|
+
checked: string;
|
|
1908
|
+
empty: string;
|
|
1909
|
+
scrollable: string;
|
|
1910
|
+
sorted: string;
|
|
1911
|
+
sort: string;
|
|
1912
|
+
sticky: string;
|
|
1913
|
+
stretched: string;
|
|
1914
|
+
order: string;
|
|
1915
|
+
alt: string;
|
|
1916
|
+
edit: string;
|
|
1917
|
+
template: string;
|
|
1918
|
+
shown: string;
|
|
1919
|
+
horizontal: string;
|
|
1920
|
+
vertical: string;
|
|
1921
|
+
fullscreen: string;
|
|
1922
|
+
bottom: string;
|
|
1923
|
+
};
|
|
1924
|
+
|
|
1544
1925
|
/**
|
|
1545
1926
|
* @hidden
|
|
1546
1927
|
*/
|
|
@@ -1628,6 +2009,11 @@ export declare const svgIconPropType: PropTypes.Requireable<PropTypes.InferProps
|
|
|
1628
2009
|
*/
|
|
1629
2010
|
export declare const TABBABLE_ELEMENTS: string[];
|
|
1630
2011
|
|
|
2012
|
+
/**
|
|
2013
|
+
* @hidden
|
|
2014
|
+
*/
|
|
2015
|
+
export declare const themeColorMap: PresetOption;
|
|
2016
|
+
|
|
1631
2017
|
/**
|
|
1632
2018
|
* @hidden
|
|
1633
2019
|
*/
|
|
@@ -1849,16 +2235,81 @@ export declare const uAnimation: WidgetClassStructure;
|
|
|
1849
2235
|
*/
|
|
1850
2236
|
export declare const uButton: WidgetClassStructure;
|
|
1851
2237
|
|
|
2238
|
+
/**
|
|
2239
|
+
* @hidden
|
|
2240
|
+
*/
|
|
2241
|
+
export declare const uCalendar: WidgetClassStructure;
|
|
2242
|
+
|
|
2243
|
+
/**
|
|
2244
|
+
* @hidden
|
|
2245
|
+
*/
|
|
2246
|
+
export declare const uDateInput: WidgetClassStructure;
|
|
2247
|
+
|
|
2248
|
+
/**
|
|
2249
|
+
* @hidden
|
|
2250
|
+
*/
|
|
2251
|
+
export declare const uDateTimePicker: WidgetClassStructure;
|
|
2252
|
+
|
|
1852
2253
|
/**
|
|
1853
2254
|
* @hidden
|
|
1854
2255
|
*/
|
|
1855
2256
|
export declare const uDropDownButton: WidgetClassStructure;
|
|
1856
2257
|
|
|
2258
|
+
/**
|
|
2259
|
+
* @hidden
|
|
2260
|
+
*/
|
|
2261
|
+
export declare const uDropDownList: WidgetClassStructure;
|
|
2262
|
+
|
|
2263
|
+
/**
|
|
2264
|
+
* @hidden
|
|
2265
|
+
*/
|
|
2266
|
+
export declare const uDropDownsActionSheet: WidgetClassStructure;
|
|
2267
|
+
|
|
2268
|
+
/**
|
|
2269
|
+
* @hidden
|
|
2270
|
+
*/
|
|
2271
|
+
export declare const uDropDownsBase: WidgetClassStructure;
|
|
2272
|
+
|
|
2273
|
+
/**
|
|
2274
|
+
* @hidden
|
|
2275
|
+
*/
|
|
2276
|
+
export declare const uError: WidgetClassStructure;
|
|
2277
|
+
|
|
2278
|
+
/**
|
|
2279
|
+
* @hidden
|
|
2280
|
+
*/
|
|
2281
|
+
export declare const uFloatingLabel: WidgetClassStructure;
|
|
2282
|
+
|
|
2283
|
+
/**
|
|
2284
|
+
* @hidden
|
|
2285
|
+
*/
|
|
2286
|
+
export declare const uForm: WidgetClassStructure;
|
|
2287
|
+
|
|
2288
|
+
/**
|
|
2289
|
+
* @hidden
|
|
2290
|
+
*/
|
|
2291
|
+
export declare const uFormField: WidgetClassStructure;
|
|
2292
|
+
|
|
1857
2293
|
/**
|
|
1858
2294
|
* @hidden
|
|
1859
2295
|
*/
|
|
1860
2296
|
export declare const uGrid: WidgetClassStructure;
|
|
1861
2297
|
|
|
2298
|
+
/**
|
|
2299
|
+
* @hidden
|
|
2300
|
+
*/
|
|
2301
|
+
export declare const uHint: WidgetClassStructure;
|
|
2302
|
+
|
|
2303
|
+
/**
|
|
2304
|
+
* @hidden
|
|
2305
|
+
*/
|
|
2306
|
+
export declare const uInput: WidgetClassStructure;
|
|
2307
|
+
|
|
2308
|
+
/**
|
|
2309
|
+
* @hidden
|
|
2310
|
+
*/
|
|
2311
|
+
export declare const uLabel: WidgetClassStructure;
|
|
2312
|
+
|
|
1862
2313
|
/**
|
|
1863
2314
|
* @hidden
|
|
1864
2315
|
*/
|
|
@@ -2008,6 +2459,21 @@ export declare const useZIndexContext: () => ZIndexContextType;
|
|
|
2008
2459
|
*/
|
|
2009
2460
|
export declare const uSvgIcon: WidgetClassStructure;
|
|
2010
2461
|
|
|
2462
|
+
/**
|
|
2463
|
+
* @hidden
|
|
2464
|
+
*/
|
|
2465
|
+
export declare const uTextBox: WidgetClassStructure;
|
|
2466
|
+
|
|
2467
|
+
/**
|
|
2468
|
+
* @hidden
|
|
2469
|
+
*/
|
|
2470
|
+
export declare const uTime: WidgetClassStructure;
|
|
2471
|
+
|
|
2472
|
+
/**
|
|
2473
|
+
* @hidden
|
|
2474
|
+
*/
|
|
2475
|
+
export declare const uTimePicker: WidgetClassStructure;
|
|
2476
|
+
|
|
2011
2477
|
/**
|
|
2012
2478
|
* @hidden
|
|
2013
2479
|
*/
|