@progress/kendo-react-common 8.2.1-develop.5 → 8.3.0-develop.10
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/hocs/use-unstyled-hoc.js +8 -0
- package/hocs/use-unstyled-hoc.mjs +17 -0
- package/icons/SvgIcon.js +1 -1
- package/icons/SvgIcon.mjs +52 -56
- package/index.d.mts +635 -0
- package/index.d.ts +635 -0
- package/index.js +1 -1
- package/index.mjs +194 -118
- package/package.json +1 -1
- package/unstyled/animations.js +8 -0
- package/unstyled/animations.mjs +185 -0
- package/unstyled/buttons.js +8 -0
- package/unstyled/buttons.mjs +253 -0
- 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 +8 -0
- package/unstyled/grid.mjs +319 -0
- package/unstyled/icons.js +8 -0
- package/unstyled/icons.mjs +53 -0
- package/unstyled/inputs.js +8 -0
- package/unstyled/inputs.mjs +262 -0
- package/unstyled/interfaces/common.js +8 -0
- package/unstyled/interfaces/common.mjs +17 -0
- package/unstyled/json-classes.js +8 -0
- package/unstyled/json-classes.mjs +315 -0
- package/unstyled/labels.js +8 -0
- package/unstyled/labels.mjs +99 -0
- package/unstyled/main.js +8 -0
- package/unstyled/main.mjs +14 -0
- package/unstyled/popup.js +8 -0
- package/unstyled/popup.mjs +91 -0
package/index.d.mts
CHANGED
|
@@ -9,13 +9,45 @@ import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
|
9
9
|
import { NormalizedDragEvent } from '@progress/kendo-draggable-common';
|
|
10
10
|
import PropTypes from 'prop-types';
|
|
11
11
|
import * as React_2 from 'react';
|
|
12
|
+
import { default as React_3 } from 'react';
|
|
12
13
|
import { validatePackage as validatePackage_2 } from '@progress/kendo-licensing';
|
|
13
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
|
+
|
|
14
26
|
/**
|
|
15
27
|
* @hidden
|
|
16
28
|
*/
|
|
17
29
|
export declare function addItem(item: any, operation: 'before' | 'after' | 'child', childrenField: string, targetItemId: string, items: any[]): any[];
|
|
18
30
|
|
|
31
|
+
/**
|
|
32
|
+
* @hidden
|
|
33
|
+
*/
|
|
34
|
+
export declare interface AllClassStructure extends AnimationsClassStructure, ButtonsClassStructure, DropDownsClassStructure, GridClassStructure, IconsClassStructure, LabelsClassStructure, FormClassStructure, PopupClassStructure, ButtonsClassStructure, PopupClassStructure, GridClassStructure, InputsClassStructure, DropDownsClassStructure, DateInputsClassStructure {
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* @hidden
|
|
39
|
+
*/
|
|
40
|
+
export declare interface AnimationsClassStructure {
|
|
41
|
+
uAnimation?: WidgetClassStructure;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* @hidden
|
|
46
|
+
*/
|
|
47
|
+
export declare const animationStyles: {
|
|
48
|
+
[key: string]: string;
|
|
49
|
+
};
|
|
50
|
+
|
|
19
51
|
/**
|
|
20
52
|
* @hidden
|
|
21
53
|
*/
|
|
@@ -77,6 +109,24 @@ export declare interface AutoScrollOptions {
|
|
|
77
109
|
}> | null;
|
|
78
110
|
}
|
|
79
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
|
+
|
|
80
130
|
/** @hidden */
|
|
81
131
|
declare interface BaseDraggableEvent {
|
|
82
132
|
/**
|
|
@@ -205,6 +255,24 @@ export declare class BrowserSupportService {
|
|
|
205
255
|
get scrollbarWidth(): number;
|
|
206
256
|
}
|
|
207
257
|
|
|
258
|
+
/**
|
|
259
|
+
* @hidden
|
|
260
|
+
*/
|
|
261
|
+
export declare const buttonPrefix: string;
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* @hidden
|
|
265
|
+
*/
|
|
266
|
+
export declare interface ButtonsClassStructure {
|
|
267
|
+
uButton?: WidgetClassStructure;
|
|
268
|
+
uDropDownButton?: WidgetClassStructure;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
/**
|
|
272
|
+
* @hidden
|
|
273
|
+
*/
|
|
274
|
+
export declare const calendarPrefix: string;
|
|
275
|
+
|
|
208
276
|
/**
|
|
209
277
|
* @hidden
|
|
210
278
|
*/
|
|
@@ -260,6 +328,49 @@ export declare interface CollectionAction<T> {
|
|
|
260
328
|
item: T;
|
|
261
329
|
}
|
|
262
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
|
+
|
|
263
374
|
/**
|
|
264
375
|
* @hidden
|
|
265
376
|
*/
|
|
@@ -268,6 +379,23 @@ declare function createId(childId: string | number, parentId?: string): string;
|
|
|
268
379
|
/** @hidden */
|
|
269
380
|
export declare const createPropsContext: <T extends unknown>() => React_2.Context<(p: T) => T>;
|
|
270
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
|
+
|
|
271
399
|
/**
|
|
272
400
|
* @hidden
|
|
273
401
|
*/
|
|
@@ -284,6 +412,67 @@ export declare interface DataItemWrapper {
|
|
|
284
412
|
dataIndex: number;
|
|
285
413
|
}
|
|
286
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
|
+
|
|
287
476
|
/**
|
|
288
477
|
* @hidden
|
|
289
478
|
*/
|
|
@@ -443,6 +632,20 @@ export declare interface DraggableProps extends DraggableOptions {
|
|
|
443
632
|
export declare interface DraggableReleaseEvent extends BaseDraggableEvent {
|
|
444
633
|
}
|
|
445
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
|
+
|
|
446
649
|
/**
|
|
447
650
|
* Represents the KendoReact Droppable component.
|
|
448
651
|
*
|
|
@@ -522,6 +725,28 @@ declare type ElementMouse = {
|
|
|
522
725
|
[P in keyof Required<KendoMouse<any, any>>]: (event: React_2.MouseEvent<any>) => void;
|
|
523
726
|
};
|
|
524
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
|
+
|
|
525
750
|
/**
|
|
526
751
|
* @hidden
|
|
527
752
|
*/
|
|
@@ -615,6 +840,11 @@ export declare interface FieldRenderPropsBase {
|
|
|
615
840
|
[customProp: string]: any;
|
|
616
841
|
}
|
|
617
842
|
|
|
843
|
+
/**
|
|
844
|
+
* @hidden
|
|
845
|
+
*/
|
|
846
|
+
export declare const fillModeMap: PresetOption;
|
|
847
|
+
|
|
618
848
|
/**
|
|
619
849
|
* @hidden
|
|
620
850
|
*/
|
|
@@ -646,6 +876,14 @@ export declare const focusFirstFocusableChild: (element: HTMLElement, elementsSe
|
|
|
646
876
|
*/
|
|
647
877
|
export declare const focusLastFocusableChild: (element: HTMLElement, elementsSelectors?: string[]) => void;
|
|
648
878
|
|
|
879
|
+
/**
|
|
880
|
+
* @hidden
|
|
881
|
+
*/
|
|
882
|
+
export declare interface FormClassStructure {
|
|
883
|
+
uForm?: WidgetClassStructure;
|
|
884
|
+
uFormField?: WidgetClassStructure;
|
|
885
|
+
}
|
|
886
|
+
|
|
649
887
|
/**
|
|
650
888
|
* @hidden
|
|
651
889
|
*/
|
|
@@ -747,6 +985,14 @@ export declare interface FormComponentValidity {
|
|
|
747
985
|
readonly valueMissing: boolean;
|
|
748
986
|
}
|
|
749
987
|
|
|
988
|
+
/**
|
|
989
|
+
* @hidden
|
|
990
|
+
*/
|
|
991
|
+
export declare const forms: {
|
|
992
|
+
form: string;
|
|
993
|
+
field: string;
|
|
994
|
+
};
|
|
995
|
+
|
|
750
996
|
/**
|
|
751
997
|
* @hidden
|
|
752
998
|
*/
|
|
@@ -847,6 +1093,37 @@ export declare const getTabIndex: (tabIndex?: number | string, disabled?: boolea
|
|
|
847
1093
|
*/
|
|
848
1094
|
export declare function getter(field: string): (values: any) => any;
|
|
849
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
|
+
|
|
1115
|
+
/**
|
|
1116
|
+
* @hidden
|
|
1117
|
+
*/
|
|
1118
|
+
export declare interface GridClassStructure {
|
|
1119
|
+
uGrid?: WidgetClassStructure;
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
/**
|
|
1123
|
+
* @hidden
|
|
1124
|
+
*/
|
|
1125
|
+
export declare const gridPrefix: string;
|
|
1126
|
+
|
|
850
1127
|
/**
|
|
851
1128
|
* @hidden
|
|
852
1129
|
*/
|
|
@@ -875,6 +1152,18 @@ export declare const hasRelativeStackingContext: (elementSource?: HTMLElement) =
|
|
|
875
1152
|
*/
|
|
876
1153
|
export declare const Icon: React_2.ForwardRefExoticComponent<IconProps & React_2.RefAttributes<IconHandle | null>>;
|
|
877
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
|
+
|
|
878
1167
|
/**
|
|
879
1168
|
* Specifies the icon flip direction.
|
|
880
1169
|
*
|
|
@@ -907,6 +1196,13 @@ export declare interface IconProps extends BaseIconProps, KendoMouse<IconHandle,
|
|
|
907
1196
|
name?: string;
|
|
908
1197
|
}
|
|
909
1198
|
|
|
1199
|
+
/**
|
|
1200
|
+
* @hidden
|
|
1201
|
+
*/
|
|
1202
|
+
export declare interface IconsClassStructure {
|
|
1203
|
+
uSvgIcon?: WidgetClassStructure;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
910
1206
|
/**
|
|
911
1207
|
* Represents a React Context which provides you with the option to configure the KendoReact components icons.
|
|
912
1208
|
*/
|
|
@@ -971,6 +1267,37 @@ export declare type IconThemeColor = 'inherit' | 'primary' | 'secondary' | 'tert
|
|
|
971
1267
|
*/
|
|
972
1268
|
export declare const IconWrap: React_2.ForwardRefExoticComponent<IconProps & SvgIconProps & React_2.RefAttributes<(IconHandle & SvgIconHandle) | null>>;
|
|
973
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
|
+
|
|
974
1301
|
/**
|
|
975
1302
|
* @hidden
|
|
976
1303
|
*/
|
|
@@ -1001,6 +1328,11 @@ export declare function isItemExpandedAndWithChildren(item: any, fieldsSvc: Tree
|
|
|
1001
1328
|
*/
|
|
1002
1329
|
declare function isItemFirstFromSiblings(itemId: string): boolean;
|
|
1003
1330
|
|
|
1331
|
+
/**
|
|
1332
|
+
* @hidden
|
|
1333
|
+
*/
|
|
1334
|
+
export declare const jsonTheme: KendoTheme;
|
|
1335
|
+
|
|
1004
1336
|
/**
|
|
1005
1337
|
* @hidden
|
|
1006
1338
|
*/
|
|
@@ -1071,6 +1403,35 @@ export declare interface KendoReactComponentBaseProps {
|
|
|
1071
1403
|
style?: React.CSSProperties;
|
|
1072
1404
|
}
|
|
1073
1405
|
|
|
1406
|
+
/**
|
|
1407
|
+
* @hidden
|
|
1408
|
+
*/
|
|
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;
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1074
1435
|
/** @hidden */
|
|
1075
1436
|
export declare interface KendoThemeMaps {
|
|
1076
1437
|
sizeMap: Record<Exclude<any, null>, String>;
|
|
@@ -1141,6 +1502,28 @@ export declare const Keys: {
|
|
|
1141
1502
|
delete: number;
|
|
1142
1503
|
};
|
|
1143
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
|
+
|
|
1144
1527
|
/**
|
|
1145
1528
|
* @hidden
|
|
1146
1529
|
*/
|
|
@@ -1193,6 +1576,11 @@ export declare const mapTreeItem: (tree: any[], level: number[], subItemsField:
|
|
|
1193
1576
|
*/
|
|
1194
1577
|
export declare type MarginEnum = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'thin' | 'hair' | number;
|
|
1195
1578
|
|
|
1579
|
+
/**
|
|
1580
|
+
* @hidden
|
|
1581
|
+
*/
|
|
1582
|
+
export declare const maskedPrefix: string;
|
|
1583
|
+
|
|
1196
1584
|
declare type MemoizedFn<TFunc extends (this: any, ...args: any[]) => any> = {
|
|
1197
1585
|
clear: () => void;
|
|
1198
1586
|
(this: ThisParameterType<TFunc>, ...args: Parameters<TFunc>): ReturnType<TFunc>;
|
|
@@ -1371,6 +1759,51 @@ export declare const noop: () => void;
|
|
|
1371
1759
|
|
|
1372
1760
|
export { NormalizedDragEvent }
|
|
1373
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
|
+
|
|
1779
|
+
/**
|
|
1780
|
+
* @hidden
|
|
1781
|
+
*/
|
|
1782
|
+
export declare interface PopupClassStructure {
|
|
1783
|
+
uPopup?: WidgetClassStructure;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
declare type PresetOption = Record<Exclude<any, null>, string>;
|
|
1787
|
+
|
|
1788
|
+
/**
|
|
1789
|
+
* @hidden
|
|
1790
|
+
*/
|
|
1791
|
+
export declare const radioButtonClasses: {
|
|
1792
|
+
[key: string]: any;
|
|
1793
|
+
};
|
|
1794
|
+
|
|
1795
|
+
/**
|
|
1796
|
+
* @hidden
|
|
1797
|
+
*/
|
|
1798
|
+
export declare const radioGroupClasses: {
|
|
1799
|
+
[key: string]: any;
|
|
1800
|
+
};
|
|
1801
|
+
|
|
1802
|
+
/**
|
|
1803
|
+
* @hidden
|
|
1804
|
+
*/
|
|
1805
|
+
export declare const radioPrefix: string;
|
|
1806
|
+
|
|
1374
1807
|
/**
|
|
1375
1808
|
* @hidden
|
|
1376
1809
|
*/
|
|
@@ -1386,6 +1819,11 @@ export declare function resolveItemId(publicId: any, idField: string, items: any
|
|
|
1386
1819
|
*/
|
|
1387
1820
|
export declare function resolveItemsIds(publicIds: any[], idField: string, items: any[], childrenField: string): string[];
|
|
1388
1821
|
|
|
1822
|
+
/**
|
|
1823
|
+
* @hidden
|
|
1824
|
+
*/
|
|
1825
|
+
export declare const roundedMap: PresetOption;
|
|
1826
|
+
|
|
1389
1827
|
/**
|
|
1390
1828
|
* @hidden
|
|
1391
1829
|
*/
|
|
@@ -1432,6 +1870,11 @@ export declare function setter(field: string): any;
|
|
|
1432
1870
|
*/
|
|
1433
1871
|
export declare function shouldShowValidationUI(packageMetadata: any): boolean;
|
|
1434
1872
|
|
|
1873
|
+
/**
|
|
1874
|
+
* @hidden
|
|
1875
|
+
*/
|
|
1876
|
+
export declare const sizeMap: PresetOption;
|
|
1877
|
+
|
|
1435
1878
|
/**
|
|
1436
1879
|
* @hidden
|
|
1437
1880
|
*/
|
|
@@ -1441,6 +1884,44 @@ export declare class SortedPublicItemIds {
|
|
|
1441
1884
|
hasId(publicItemId: any): boolean;
|
|
1442
1885
|
}
|
|
1443
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
|
+
|
|
1444
1925
|
/**
|
|
1445
1926
|
* @hidden
|
|
1446
1927
|
*/
|
|
@@ -1528,6 +2009,11 @@ export declare const svgIconPropType: PropTypes.Requireable<PropTypes.InferProps
|
|
|
1528
2009
|
*/
|
|
1529
2010
|
export declare const TABBABLE_ELEMENTS: string[];
|
|
1530
2011
|
|
|
2012
|
+
/**
|
|
2013
|
+
* @hidden
|
|
2014
|
+
*/
|
|
2015
|
+
export declare const themeColorMap: PresetOption;
|
|
2016
|
+
|
|
1531
2017
|
/**
|
|
1532
2018
|
* @hidden
|
|
1533
2019
|
*/
|
|
@@ -1739,11 +2225,121 @@ export declare interface TypographyProps extends KendoReactComponentBaseProps {
|
|
|
1739
2225
|
[customProp: string]: any;
|
|
1740
2226
|
}
|
|
1741
2227
|
|
|
2228
|
+
/**
|
|
2229
|
+
* @hidden
|
|
2230
|
+
*/
|
|
2231
|
+
export declare const uAnimation: WidgetClassStructure;
|
|
2232
|
+
|
|
2233
|
+
/**
|
|
2234
|
+
* @hidden
|
|
2235
|
+
*/
|
|
2236
|
+
export declare const uButton: WidgetClassStructure;
|
|
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
|
+
|
|
2253
|
+
/**
|
|
2254
|
+
* @hidden
|
|
2255
|
+
*/
|
|
2256
|
+
export declare const uDropDownButton: WidgetClassStructure;
|
|
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
|
+
|
|
2293
|
+
/**
|
|
2294
|
+
* @hidden
|
|
2295
|
+
*/
|
|
2296
|
+
export declare const uGrid: WidgetClassStructure;
|
|
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
|
+
|
|
2313
|
+
/**
|
|
2314
|
+
* @hidden
|
|
2315
|
+
*/
|
|
2316
|
+
export declare const uMaskedTextBox: WidgetClassStructure;
|
|
2317
|
+
|
|
2318
|
+
/**
|
|
2319
|
+
* @hidden
|
|
2320
|
+
*/
|
|
2321
|
+
export declare const UnstyledContext: React_3.Context<any>;
|
|
2322
|
+
|
|
1742
2323
|
/**
|
|
1743
2324
|
* @hidden
|
|
1744
2325
|
*/
|
|
1745
2326
|
export declare function updateItem(items: any[], itemId: string, update: (item: any) => void, cloneField: string, childrenField: string): any[];
|
|
1746
2327
|
|
|
2328
|
+
/**
|
|
2329
|
+
* @hidden
|
|
2330
|
+
*/
|
|
2331
|
+
export declare const uPopup: WidgetClassStructure;
|
|
2332
|
+
|
|
2333
|
+
/**
|
|
2334
|
+
* @hidden
|
|
2335
|
+
*/
|
|
2336
|
+
export declare const uRadioButton: WidgetClassStructure;
|
|
2337
|
+
|
|
2338
|
+
/**
|
|
2339
|
+
* @hidden
|
|
2340
|
+
*/
|
|
2341
|
+
export declare const uRadioGroup: WidgetClassStructure;
|
|
2342
|
+
|
|
1747
2343
|
/**
|
|
1748
2344
|
* An utility function for asynchronous focus/blur handling.
|
|
1749
2345
|
*
|
|
@@ -1843,6 +2439,11 @@ export declare const usePropsContext: <T extends unknown>(context: React_2.Conte
|
|
|
1843
2439
|
*/
|
|
1844
2440
|
export declare function useRtl(elementRef: React_2.RefObject<HTMLElement | null>, initialDir?: string, args?: any): string | undefined;
|
|
1845
2441
|
|
|
2442
|
+
/**
|
|
2443
|
+
* @hidden
|
|
2444
|
+
*/
|
|
2445
|
+
export declare const useUnstyled: () => AllClassStructure | undefined;
|
|
2446
|
+
|
|
1846
2447
|
/**
|
|
1847
2448
|
* Returns a function, which gets the `defaultView` based on the `ownerDocument` of the element.
|
|
1848
2449
|
*/
|
|
@@ -1853,6 +2454,26 @@ export declare const useWindow: (ref: React_2.RefObject<HTMLElement | null | {
|
|
|
1853
2454
|
/** @hidden */
|
|
1854
2455
|
export declare const useZIndexContext: () => ZIndexContextType;
|
|
1855
2456
|
|
|
2457
|
+
/**
|
|
2458
|
+
* @hidden
|
|
2459
|
+
*/
|
|
2460
|
+
export declare const uSvgIcon: WidgetClassStructure;
|
|
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
|
+
|
|
1856
2477
|
/**
|
|
1857
2478
|
* @hidden
|
|
1858
2479
|
*/
|
|
@@ -1864,12 +2485,26 @@ export declare const validatePackage: typeof validatePackage_2;
|
|
|
1864
2485
|
*/
|
|
1865
2486
|
export declare const WatermarkOverlay: () => JSX_2.Element;
|
|
1866
2487
|
|
|
2488
|
+
/**
|
|
2489
|
+
* @hidden
|
|
2490
|
+
*/
|
|
2491
|
+
export declare interface WidgetClassStructure {
|
|
2492
|
+
[key: string]: ((props: {
|
|
2493
|
+
[key: string]: any;
|
|
2494
|
+
}) => {
|
|
2495
|
+
[key: string]: boolean;
|
|
2496
|
+
} | string);
|
|
2497
|
+
}
|
|
2498
|
+
|
|
1867
2499
|
/** @hidden */
|
|
1868
2500
|
export declare const withIdHOC: <P extends object>(Component: React_2.ComponentType<P>) => React_2.ForwardRefExoticComponent<React_2.PropsWithoutRef<P> & React_2.RefAttributes<any>>;
|
|
1869
2501
|
|
|
1870
2502
|
/** @hidden */
|
|
1871
2503
|
export declare const withPropsContext: <T extends unknown>(context: React_2.Context<(p: T) => T>, Component: React_2.ComponentType<T>) => React_2.ForwardRefExoticComponent<React_2.PropsWithoutRef<T> & React_2.RefAttributes<any>>;
|
|
1872
2504
|
|
|
2505
|
+
/** @hidden */
|
|
2506
|
+
export declare const withUnstyledHOC: <P extends object>(Component: React_2.ComponentType<P>) => React_2.ForwardRefExoticComponent<React_2.PropsWithoutRef<P> & React_2.RefAttributes<any>>;
|
|
2507
|
+
|
|
1873
2508
|
/**
|
|
1874
2509
|
* @hidden
|
|
1875
2510
|
*/
|