@mescius/wijmo.react.input 5.20232.939

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/index.d.ts ADDED
@@ -0,0 +1,1120 @@
1
+ /*!
2
+ *
3
+ * Wijmo Library 5.20232.939
4
+ * https://developer.mescius.com/wijmo
5
+ *
6
+ * Copyright(c) MESCIUS inc. All rights reserved.
7
+ *
8
+ * Licensed under the End-User License Agreement For MESCIUS Wijmo Software.
9
+ * us.sales@mescius.com
10
+ * https://developer.mescius.com/wijmo/licensing
11
+ *
12
+ */
13
+ /**
14
+ * {@module wijmo.react.input}
15
+ * Contains React components for the <b>wijmo.input</b> module.
16
+ */
17
+ /**
18
+ *
19
+ */
20
+ export declare var ___keepComment: any;
21
+ import { ComponentBase } from '@grapecity/wijmo.react.base';
22
+ import * as wjcCore from '@grapecity/wijmo';
23
+ /**
24
+ * React component for the {@link wijmo.input.ListBox} control.
25
+ *
26
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.ListBox} control it represents.
27
+ *
28
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
29
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
30
+ * The signature of the handler function is the same as any other Wijmo event handlers.
31
+ *
32
+ * The component includes a <b>wjItemTemplate</b> property which is used to define list item template.
33
+ * The template is a function with single argument. The argument is a plain object with keys of
34
+ * <b>control</b> (list control, owner of the list item),
35
+ * <b>item</b> (item data for the list item) and
36
+ * <b>itemIndex</b> (zero-based index of the list item).
37
+ */
38
+ export declare class ListBox extends ComponentBase {
39
+ props: {
40
+ template?: any;
41
+ children?: any;
42
+ isDisabled?: any;
43
+ tabOrder?: any;
44
+ isContentHtml?: any;
45
+ maxHeight?: any;
46
+ selectedValuePath?: any;
47
+ itemFormatter?: any;
48
+ displayMemberPath?: any;
49
+ checkedMemberPath?: any;
50
+ caseSensitiveSearch?: any;
51
+ itemsSource?: any;
52
+ virtualizationThreshold?: any;
53
+ showGroups?: any;
54
+ selectedIndex?: any;
55
+ selectedItem?: any;
56
+ selectedValue?: any;
57
+ checkedItems?: any;
58
+ initialized?: any;
59
+ gotFocus?: any;
60
+ lostFocus?: any;
61
+ refreshing?: any;
62
+ refreshed?: any;
63
+ invalidInput?: any;
64
+ formatItem?: any;
65
+ itemsChanged?: any;
66
+ itemChecked?: any;
67
+ selectedIndexChanged?: any;
68
+ checkedItemsChanged?: any;
69
+ [key: string]: any;
70
+ };
71
+ wjItemTemplate: ItemTemplateRender;
72
+ constructor(props: any);
73
+ componentDidMount(): any;
74
+ }
75
+ /**
76
+ * React component for the {@link wijmo.input.MultiSelectListBox} control.
77
+ *
78
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.MultiSelectListBox} control it represents.
79
+ *
80
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
81
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
82
+ * The signature of the handler function is the same as any other Wijmo event handlers.
83
+ */
84
+ export declare class MultiSelectListBox extends ComponentBase {
85
+ props: {
86
+ template?: any;
87
+ children?: any;
88
+ isDisabled?: any;
89
+ tabOrder?: any;
90
+ itemsSource?: any;
91
+ displayMemberPath?: any;
92
+ selectedIndex?: any;
93
+ isContentHtml?: any;
94
+ showGroups?: any;
95
+ checkOnFilter?: any;
96
+ showFilterInput?: any;
97
+ filterInputPlaceholder?: any;
98
+ showSelectAllCheckbox?: any;
99
+ selectAllLabel?: any;
100
+ delay?: any;
101
+ caseSensitiveSearch?: any;
102
+ checkedMemberPath?: any;
103
+ virtualizationThreshold?: any;
104
+ checkedItems?: any;
105
+ initialized?: any;
106
+ gotFocus?: any;
107
+ lostFocus?: any;
108
+ refreshing?: any;
109
+ refreshed?: any;
110
+ invalidInput?: any;
111
+ selectedIndexChanged?: any;
112
+ checkedItemsChanged?: any;
113
+ [key: string]: any;
114
+ };
115
+ constructor(props: any);
116
+ }
117
+ /**
118
+ * React component for the {@link wijmo.input.ComboBox} control.
119
+ *
120
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.ComboBox} control it represents.
121
+ *
122
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
123
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
124
+ * The signature of the handler function is the same as any other Wijmo event handlers.
125
+ *
126
+ * The component includes a <b>wjItemTemplate</b> property which is used to define list item template.
127
+ * The template is a function with single argument. The argument is a plain object with keys of
128
+ * <b>control</b> (list control, owner of the list item),
129
+ * <b>item</b> (item data for the list item) and
130
+ * <b>itemIndex</b> (zero-based index of the list item).
131
+ */
132
+ export declare class ComboBox extends ComponentBase {
133
+ props: {
134
+ template?: any;
135
+ children?: any;
136
+ isDisabled?: any;
137
+ tabOrder?: any;
138
+ isDroppedDown?: any;
139
+ showDropDownButton?: any;
140
+ autoExpandSelection?: any;
141
+ placeholder?: any;
142
+ dropDownCssClass?: any;
143
+ isAnimated?: any;
144
+ isReadOnly?: any;
145
+ isRequired?: any;
146
+ inputType?: any;
147
+ clickAction?: any;
148
+ displayMemberPath?: any;
149
+ selectedValuePath?: any;
150
+ headerPath?: any;
151
+ isContentHtml?: any;
152
+ isEditable?: any;
153
+ handleWheel?: any;
154
+ maxDropDownHeight?: any;
155
+ maxDropDownWidth?: any;
156
+ itemFormatter?: any;
157
+ showGroups?: any;
158
+ trimText?: any;
159
+ caseSensitiveSearch?: any;
160
+ virtualizationThreshold?: any;
161
+ itemsSource?: any;
162
+ text?: any;
163
+ selectedIndex?: any;
164
+ selectedItem?: any;
165
+ selectedValue?: any;
166
+ initialized?: any;
167
+ gotFocus?: any;
168
+ lostFocus?: any;
169
+ refreshing?: any;
170
+ refreshed?: any;
171
+ invalidInput?: any;
172
+ isDroppedDownChanging?: any;
173
+ itemsSourceChanged?: any;
174
+ formatItem?: any;
175
+ isDroppedDownChanged?: any;
176
+ textChanged?: any;
177
+ selectedIndexChanged?: any;
178
+ [key: string]: any;
179
+ };
180
+ wjItemTemplate: ItemTemplateRender;
181
+ constructor(props: any);
182
+ componentDidMount(): any;
183
+ }
184
+ /**
185
+ * React component for the {@link wijmo.input.AutoComplete} control.
186
+ *
187
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.AutoComplete} control it represents.
188
+ *
189
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
190
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
191
+ * The signature of the handler function is the same as any other Wijmo event handlers.
192
+ */
193
+ export declare class AutoComplete extends ComponentBase {
194
+ props: {
195
+ template?: any;
196
+ children?: any;
197
+ isDisabled?: any;
198
+ tabOrder?: any;
199
+ isDroppedDown?: any;
200
+ showDropDownButton?: any;
201
+ autoExpandSelection?: any;
202
+ placeholder?: any;
203
+ dropDownCssClass?: any;
204
+ isAnimated?: any;
205
+ isReadOnly?: any;
206
+ isRequired?: any;
207
+ inputType?: any;
208
+ clickAction?: any;
209
+ displayMemberPath?: any;
210
+ selectedValuePath?: any;
211
+ headerPath?: any;
212
+ isContentHtml?: any;
213
+ isEditable?: any;
214
+ handleWheel?: any;
215
+ maxDropDownHeight?: any;
216
+ maxDropDownWidth?: any;
217
+ itemFormatter?: any;
218
+ showGroups?: any;
219
+ trimText?: any;
220
+ caseSensitiveSearch?: any;
221
+ virtualizationThreshold?: any;
222
+ delay?: any;
223
+ maxItems?: any;
224
+ minLength?: any;
225
+ cssMatch?: any;
226
+ itemsSourceFunction?: any;
227
+ searchMemberPath?: any;
228
+ beginsWithSearch?: any;
229
+ itemsSource?: any;
230
+ text?: any;
231
+ selectedIndex?: any;
232
+ selectedItem?: any;
233
+ selectedValue?: any;
234
+ initialized?: any;
235
+ gotFocus?: any;
236
+ lostFocus?: any;
237
+ refreshing?: any;
238
+ refreshed?: any;
239
+ invalidInput?: any;
240
+ isDroppedDownChanging?: any;
241
+ itemsSourceChanged?: any;
242
+ formatItem?: any;
243
+ isDroppedDownChanged?: any;
244
+ textChanged?: any;
245
+ selectedIndexChanged?: any;
246
+ [key: string]: any;
247
+ };
248
+ constructor(props: any);
249
+ }
250
+ /**
251
+ * React component for the {@link wijmo.input.Calendar} control.
252
+ *
253
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.Calendar} control it represents.
254
+ *
255
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
256
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
257
+ * The signature of the handler function is the same as any other Wijmo event handlers.
258
+ */
259
+ export declare class Calendar extends ComponentBase {
260
+ props: {
261
+ template?: any;
262
+ children?: any;
263
+ isDisabled?: any;
264
+ tabOrder?: any;
265
+ monthView?: any;
266
+ showHeader?: any;
267
+ itemFormatter?: any;
268
+ itemValidator?: any;
269
+ firstDayOfWeek?: any;
270
+ max?: any;
271
+ min?: any;
272
+ formatYearMonth?: any;
273
+ formatDayHeaders?: any;
274
+ formatDays?: any;
275
+ formatYear?: any;
276
+ formatMonths?: any;
277
+ selectionMode?: any;
278
+ isReadOnly?: any;
279
+ handleWheel?: any;
280
+ repeatButtons?: any;
281
+ showYearPicker?: any;
282
+ value?: any;
283
+ displayMonth?: any;
284
+ monthCount?: any;
285
+ showMonthPicker?: any;
286
+ weeksBefore?: any;
287
+ weeksAfter?: any;
288
+ rangeEnd?: any;
289
+ rangeMin?: any;
290
+ rangeMax?: any;
291
+ initialized?: any;
292
+ gotFocus?: any;
293
+ lostFocus?: any;
294
+ refreshing?: any;
295
+ refreshed?: any;
296
+ invalidInput?: any;
297
+ rangeChanged?: any;
298
+ formatItem?: any;
299
+ valueChanged?: any;
300
+ displayMonthChanged?: any;
301
+ rangeEndChanged?: any;
302
+ [key: string]: any;
303
+ };
304
+ constructor(props: any);
305
+ }
306
+ /**
307
+ * React component for the {@link wijmo.input.ColorPicker} control.
308
+ *
309
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.ColorPicker} control it represents.
310
+ *
311
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
312
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
313
+ * The signature of the handler function is the same as any other Wijmo event handlers.
314
+ */
315
+ export declare class ColorPicker extends ComponentBase {
316
+ props: {
317
+ template?: any;
318
+ children?: any;
319
+ isDisabled?: any;
320
+ tabOrder?: any;
321
+ showAlphaChannel?: any;
322
+ showColorString?: any;
323
+ palette?: any;
324
+ value?: any;
325
+ initialized?: any;
326
+ gotFocus?: any;
327
+ lostFocus?: any;
328
+ refreshing?: any;
329
+ refreshed?: any;
330
+ invalidInput?: any;
331
+ valueChanged?: any;
332
+ [key: string]: any;
333
+ };
334
+ constructor(props: any);
335
+ }
336
+ /**
337
+ * React component for the {@link wijmo.input.InputMask} control.
338
+ *
339
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.InputMask} control it represents.
340
+ *
341
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
342
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
343
+ * The signature of the handler function is the same as any other Wijmo event handlers.
344
+ */
345
+ export declare class InputMask extends ComponentBase {
346
+ props: {
347
+ template?: any;
348
+ children?: any;
349
+ isDisabled?: any;
350
+ tabOrder?: any;
351
+ mask?: any;
352
+ overwriteMode?: any;
353
+ isRequired?: any;
354
+ isReadOnly?: any;
355
+ promptChar?: any;
356
+ placeholder?: any;
357
+ inputType?: any;
358
+ rawValue?: any;
359
+ value?: any;
360
+ initialized?: any;
361
+ gotFocus?: any;
362
+ lostFocus?: any;
363
+ refreshing?: any;
364
+ refreshed?: any;
365
+ invalidInput?: any;
366
+ valueChanged?: any;
367
+ [key: string]: any;
368
+ };
369
+ constructor(props: any);
370
+ }
371
+ /**
372
+ * React component for the {@link wijmo.input.InputColor} control.
373
+ *
374
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.InputColor} control it represents.
375
+ *
376
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
377
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
378
+ * The signature of the handler function is the same as any other Wijmo event handlers.
379
+ */
380
+ export declare class InputColor extends ComponentBase {
381
+ props: {
382
+ template?: any;
383
+ children?: any;
384
+ isDisabled?: any;
385
+ tabOrder?: any;
386
+ isDroppedDown?: any;
387
+ showDropDownButton?: any;
388
+ autoExpandSelection?: any;
389
+ placeholder?: any;
390
+ dropDownCssClass?: any;
391
+ isAnimated?: any;
392
+ isReadOnly?: any;
393
+ isRequired?: any;
394
+ inputType?: any;
395
+ clickAction?: any;
396
+ showAlphaChannel?: any;
397
+ showColorString?: any;
398
+ value?: any;
399
+ text?: any;
400
+ initialized?: any;
401
+ gotFocus?: any;
402
+ lostFocus?: any;
403
+ refreshing?: any;
404
+ refreshed?: any;
405
+ invalidInput?: any;
406
+ isDroppedDownChanging?: any;
407
+ isDroppedDownChanged?: any;
408
+ textChanged?: any;
409
+ valueChanged?: any;
410
+ [key: string]: any;
411
+ };
412
+ constructor(props: any);
413
+ }
414
+ /**
415
+ * React component for the {@link wijmo.input.MultiSelect} control.
416
+ *
417
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.MultiSelect} control it represents.
418
+ *
419
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
420
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
421
+ * The signature of the handler function is the same as any other Wijmo event handlers.
422
+ *
423
+ * The component includes a <b>wjItemTemplate</b> property which is used to define list item template.
424
+ * The template is a function with single argument. The argument is a plain object with keys of
425
+ * <b>control</b> (list control, owner of the list item),
426
+ * <b>item</b> (item data for the list item) and
427
+ * <b>itemIndex</b> (zero-based index of the list item).
428
+ */
429
+ export declare class MultiSelect extends ComponentBase {
430
+ props: {
431
+ template?: any;
432
+ children?: any;
433
+ isDisabled?: any;
434
+ tabOrder?: any;
435
+ isDroppedDown?: any;
436
+ showDropDownButton?: any;
437
+ autoExpandSelection?: any;
438
+ placeholder?: any;
439
+ dropDownCssClass?: any;
440
+ isAnimated?: any;
441
+ isReadOnly?: any;
442
+ isRequired?: any;
443
+ inputType?: any;
444
+ clickAction?: any;
445
+ displayMemberPath?: any;
446
+ selectedValuePath?: any;
447
+ headerPath?: any;
448
+ isContentHtml?: any;
449
+ isEditable?: any;
450
+ handleWheel?: any;
451
+ maxDropDownHeight?: any;
452
+ maxDropDownWidth?: any;
453
+ itemFormatter?: any;
454
+ showGroups?: any;
455
+ trimText?: any;
456
+ caseSensitiveSearch?: any;
457
+ virtualizationThreshold?: any;
458
+ checkedMemberPath?: any;
459
+ maxHeaderItems?: any;
460
+ headerFormat?: any;
461
+ headerFormatter?: any;
462
+ showSelectAllCheckbox?: any;
463
+ selectAllLabel?: any;
464
+ showFilterInput?: any;
465
+ filterInputPlaceholder?: any;
466
+ checkOnFilter?: any;
467
+ delay?: any;
468
+ itemsSource?: any;
469
+ checkedItems?: any;
470
+ text?: any;
471
+ selectedIndex?: any;
472
+ selectedItem?: any;
473
+ selectedValue?: any;
474
+ initialized?: any;
475
+ gotFocus?: any;
476
+ lostFocus?: any;
477
+ refreshing?: any;
478
+ refreshed?: any;
479
+ invalidInput?: any;
480
+ isDroppedDownChanging?: any;
481
+ itemsSourceChanged?: any;
482
+ formatItem?: any;
483
+ isDroppedDownChanged?: any;
484
+ textChanged?: any;
485
+ selectedIndexChanged?: any;
486
+ checkedItemsChanged?: any;
487
+ [key: string]: any;
488
+ };
489
+ wjItemTemplate: ItemTemplateRender;
490
+ constructor(props: any);
491
+ componentDidMount(): any;
492
+ }
493
+ /**
494
+ * React component for the {@link wijmo.input.MultiAutoComplete} control.
495
+ *
496
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.MultiAutoComplete} control it represents.
497
+ *
498
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
499
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
500
+ * The signature of the handler function is the same as any other Wijmo event handlers.
501
+ */
502
+ export declare class MultiAutoComplete extends ComponentBase {
503
+ props: {
504
+ template?: any;
505
+ children?: any;
506
+ isDisabled?: any;
507
+ tabOrder?: any;
508
+ isDroppedDown?: any;
509
+ showDropDownButton?: any;
510
+ autoExpandSelection?: any;
511
+ placeholder?: any;
512
+ dropDownCssClass?: any;
513
+ isAnimated?: any;
514
+ isReadOnly?: any;
515
+ isRequired?: any;
516
+ inputType?: any;
517
+ clickAction?: any;
518
+ displayMemberPath?: any;
519
+ selectedValuePath?: any;
520
+ headerPath?: any;
521
+ isContentHtml?: any;
522
+ isEditable?: any;
523
+ handleWheel?: any;
524
+ maxDropDownHeight?: any;
525
+ maxDropDownWidth?: any;
526
+ itemFormatter?: any;
527
+ showGroups?: any;
528
+ trimText?: any;
529
+ caseSensitiveSearch?: any;
530
+ virtualizationThreshold?: any;
531
+ delay?: any;
532
+ maxItems?: any;
533
+ minLength?: any;
534
+ cssMatch?: any;
535
+ itemsSourceFunction?: any;
536
+ searchMemberPath?: any;
537
+ beginsWithSearch?: any;
538
+ maxSelectedItems?: any;
539
+ selectedItems?: any;
540
+ itemsSource?: any;
541
+ selectedMemberPath?: any;
542
+ text?: any;
543
+ selectedIndex?: any;
544
+ selectedItem?: any;
545
+ selectedValue?: any;
546
+ initialized?: any;
547
+ gotFocus?: any;
548
+ lostFocus?: any;
549
+ refreshing?: any;
550
+ refreshed?: any;
551
+ invalidInput?: any;
552
+ isDroppedDownChanging?: any;
553
+ itemsSourceChanged?: any;
554
+ formatItem?: any;
555
+ isDroppedDownChanged?: any;
556
+ textChanged?: any;
557
+ selectedIndexChanged?: any;
558
+ selectedItemsChanged?: any;
559
+ [key: string]: any;
560
+ };
561
+ constructor(props: any);
562
+ }
563
+ /**
564
+ * React component for the {@link wijmo.input.InputNumber} control.
565
+ *
566
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.InputNumber} control it represents.
567
+ *
568
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
569
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
570
+ * The signature of the handler function is the same as any other Wijmo event handlers.
571
+ */
572
+ export declare class InputNumber extends ComponentBase {
573
+ props: {
574
+ template?: any;
575
+ children?: any;
576
+ isDisabled?: any;
577
+ tabOrder?: any;
578
+ showSpinner?: any;
579
+ repeatButtons?: any;
580
+ max?: any;
581
+ min?: any;
582
+ step?: any;
583
+ isRequired?: any;
584
+ placeholder?: any;
585
+ inputType?: any;
586
+ format?: any;
587
+ isReadOnly?: any;
588
+ handleWheel?: any;
589
+ value?: any;
590
+ text?: any;
591
+ initialized?: any;
592
+ gotFocus?: any;
593
+ lostFocus?: any;
594
+ refreshing?: any;
595
+ refreshed?: any;
596
+ invalidInput?: any;
597
+ valueChanged?: any;
598
+ textChanged?: any;
599
+ [key: string]: any;
600
+ };
601
+ constructor(props: any);
602
+ }
603
+ /**
604
+ * React component for the {@link wijmo.input.InputDate} control.
605
+ *
606
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.InputDate} control it represents.
607
+ *
608
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
609
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
610
+ * The signature of the handler function is the same as any other Wijmo event handlers.
611
+ */
612
+ export declare class InputDate extends ComponentBase {
613
+ props: {
614
+ template?: any;
615
+ children?: any;
616
+ isDisabled?: any;
617
+ tabOrder?: any;
618
+ isDroppedDown?: any;
619
+ showDropDownButton?: any;
620
+ autoExpandSelection?: any;
621
+ placeholder?: any;
622
+ dropDownCssClass?: any;
623
+ isAnimated?: any;
624
+ isReadOnly?: any;
625
+ isRequired?: any;
626
+ inputType?: any;
627
+ clickAction?: any;
628
+ selectionMode?: any;
629
+ format?: any;
630
+ mask?: any;
631
+ max?: any;
632
+ min?: any;
633
+ repeatButtons?: any;
634
+ showYearPicker?: any;
635
+ itemValidator?: any;
636
+ itemFormatter?: any;
637
+ monthCount?: any;
638
+ handleWheel?: any;
639
+ showMonthPicker?: any;
640
+ showHeader?: any;
641
+ weeksBefore?: any;
642
+ weeksAfter?: any;
643
+ rangeMin?: any;
644
+ rangeMax?: any;
645
+ separator?: any;
646
+ alwaysShowCalendar?: any;
647
+ predefinedRanges?: any;
648
+ closeOnSelection?: any;
649
+ text?: any;
650
+ value?: any;
651
+ rangeEnd?: any;
652
+ initialized?: any;
653
+ gotFocus?: any;
654
+ lostFocus?: any;
655
+ refreshing?: any;
656
+ refreshed?: any;
657
+ invalidInput?: any;
658
+ isDroppedDownChanging?: any;
659
+ rangeChanged?: any;
660
+ isDroppedDownChanged?: any;
661
+ textChanged?: any;
662
+ valueChanged?: any;
663
+ rangeEndChanged?: any;
664
+ [key: string]: any;
665
+ };
666
+ constructor(props: any);
667
+ }
668
+ /**
669
+ * React component for the {@link wijmo.input.InputTime} control.
670
+ *
671
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.InputTime} control it represents.
672
+ *
673
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
674
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
675
+ * The signature of the handler function is the same as any other Wijmo event handlers.
676
+ */
677
+ export declare class InputTime extends ComponentBase {
678
+ props: {
679
+ template?: any;
680
+ children?: any;
681
+ isDisabled?: any;
682
+ tabOrder?: any;
683
+ isDroppedDown?: any;
684
+ showDropDownButton?: any;
685
+ autoExpandSelection?: any;
686
+ placeholder?: any;
687
+ dropDownCssClass?: any;
688
+ isAnimated?: any;
689
+ isReadOnly?: any;
690
+ isRequired?: any;
691
+ inputType?: any;
692
+ clickAction?: any;
693
+ displayMemberPath?: any;
694
+ selectedValuePath?: any;
695
+ headerPath?: any;
696
+ isContentHtml?: any;
697
+ isEditable?: any;
698
+ handleWheel?: any;
699
+ maxDropDownHeight?: any;
700
+ maxDropDownWidth?: any;
701
+ itemFormatter?: any;
702
+ showGroups?: any;
703
+ trimText?: any;
704
+ caseSensitiveSearch?: any;
705
+ virtualizationThreshold?: any;
706
+ max?: any;
707
+ min?: any;
708
+ step?: any;
709
+ format?: any;
710
+ mask?: any;
711
+ itemsSource?: any;
712
+ text?: any;
713
+ selectedIndex?: any;
714
+ selectedItem?: any;
715
+ selectedValue?: any;
716
+ value?: any;
717
+ initialized?: any;
718
+ gotFocus?: any;
719
+ lostFocus?: any;
720
+ refreshing?: any;
721
+ refreshed?: any;
722
+ invalidInput?: any;
723
+ isDroppedDownChanging?: any;
724
+ itemsSourceChanged?: any;
725
+ formatItem?: any;
726
+ isDroppedDownChanged?: any;
727
+ textChanged?: any;
728
+ selectedIndexChanged?: any;
729
+ valueChanged?: any;
730
+ [key: string]: any;
731
+ };
732
+ constructor(props: any);
733
+ }
734
+ /**
735
+ * React component for the {@link wijmo.input.InputDateTime} control.
736
+ *
737
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.InputDateTime} control it represents.
738
+ *
739
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
740
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
741
+ * The signature of the handler function is the same as any other Wijmo event handlers.
742
+ */
743
+ export declare class InputDateTime extends ComponentBase {
744
+ props: {
745
+ template?: any;
746
+ children?: any;
747
+ isDisabled?: any;
748
+ tabOrder?: any;
749
+ isDroppedDown?: any;
750
+ showDropDownButton?: any;
751
+ autoExpandSelection?: any;
752
+ placeholder?: any;
753
+ dropDownCssClass?: any;
754
+ isAnimated?: any;
755
+ isReadOnly?: any;
756
+ isRequired?: any;
757
+ inputType?: any;
758
+ clickAction?: any;
759
+ selectionMode?: any;
760
+ format?: any;
761
+ mask?: any;
762
+ max?: any;
763
+ min?: any;
764
+ repeatButtons?: any;
765
+ showYearPicker?: any;
766
+ itemValidator?: any;
767
+ itemFormatter?: any;
768
+ monthCount?: any;
769
+ handleWheel?: any;
770
+ showMonthPicker?: any;
771
+ showHeader?: any;
772
+ weeksBefore?: any;
773
+ weeksAfter?: any;
774
+ rangeMin?: any;
775
+ rangeMax?: any;
776
+ separator?: any;
777
+ alwaysShowCalendar?: any;
778
+ predefinedRanges?: any;
779
+ closeOnSelection?: any;
780
+ timeMax?: any;
781
+ timeMin?: any;
782
+ timeStep?: any;
783
+ timeFormat?: any;
784
+ text?: any;
785
+ value?: any;
786
+ rangeEnd?: any;
787
+ initialized?: any;
788
+ gotFocus?: any;
789
+ lostFocus?: any;
790
+ refreshing?: any;
791
+ refreshed?: any;
792
+ invalidInput?: any;
793
+ isDroppedDownChanging?: any;
794
+ rangeChanged?: any;
795
+ isDroppedDownChanged?: any;
796
+ textChanged?: any;
797
+ valueChanged?: any;
798
+ rangeEndChanged?: any;
799
+ [key: string]: any;
800
+ };
801
+ constructor(props: any);
802
+ }
803
+ /**
804
+ * React component for the {@link wijmo.input.InputDateRange} control.
805
+ *
806
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.InputDateRange} control it represents.
807
+ *
808
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
809
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
810
+ * The signature of the handler function is the same as any other Wijmo event handlers.
811
+ */
812
+ export declare class InputDateRange extends ComponentBase {
813
+ props: {
814
+ template?: any;
815
+ children?: any;
816
+ isDisabled?: any;
817
+ tabOrder?: any;
818
+ isDroppedDown?: any;
819
+ showDropDownButton?: any;
820
+ autoExpandSelection?: any;
821
+ placeholder?: any;
822
+ dropDownCssClass?: any;
823
+ isAnimated?: any;
824
+ isReadOnly?: any;
825
+ isRequired?: any;
826
+ inputType?: any;
827
+ clickAction?: any;
828
+ selectionMode?: any;
829
+ format?: any;
830
+ mask?: any;
831
+ max?: any;
832
+ min?: any;
833
+ repeatButtons?: any;
834
+ showYearPicker?: any;
835
+ itemValidator?: any;
836
+ itemFormatter?: any;
837
+ monthCount?: any;
838
+ handleWheel?: any;
839
+ showMonthPicker?: any;
840
+ showHeader?: any;
841
+ weeksBefore?: any;
842
+ weeksAfter?: any;
843
+ rangeMin?: any;
844
+ rangeMax?: any;
845
+ separator?: any;
846
+ alwaysShowCalendar?: any;
847
+ predefinedRanges?: any;
848
+ closeOnSelection?: any;
849
+ text?: any;
850
+ value?: any;
851
+ rangeEnd?: any;
852
+ initialized?: any;
853
+ gotFocus?: any;
854
+ lostFocus?: any;
855
+ refreshing?: any;
856
+ refreshed?: any;
857
+ invalidInput?: any;
858
+ isDroppedDownChanging?: any;
859
+ rangeChanged?: any;
860
+ isDroppedDownChanged?: any;
861
+ textChanged?: any;
862
+ valueChanged?: any;
863
+ rangeEndChanged?: any;
864
+ [key: string]: any;
865
+ };
866
+ constructor(props: any);
867
+ }
868
+ /**
869
+ * React component for the {@link wijmo.input.Menu} control.
870
+ *
871
+ * The <b>menu</b> component may contain
872
+ * the following child components:
873
+ * {@link wijmo.react.input.MenuItem}
874
+ * and {@link wijmo.react.input.MenuSeparator}.
875
+ *
876
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.Menu} control it represents.
877
+ *
878
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
879
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
880
+ * The signature of the handler function is the same as any other Wijmo event handlers.
881
+ *
882
+ * The component includes a <b>wjItemTemplate</b> property which is used to define list item template.
883
+ * The template is a function with single argument. The argument is a plain object with keys of
884
+ * <b>control</b> (list control, owner of the list item),
885
+ * <b>item</b> (item data for the list item) and
886
+ * <b>itemIndex</b> (zero-based index of the list item).
887
+ *
888
+ * The component includes a <b>contextMenuOf</b> property which is used to assign context menu to elements or controls.
889
+ * Value of the property can be id attribute of HTMLElement, reference or array of HTMLElement/ReactComponent.
890
+ */
891
+ export declare class Menu extends ComponentBase {
892
+ props: {
893
+ template?: any;
894
+ children?: any;
895
+ isDisabled?: any;
896
+ tabOrder?: any;
897
+ isDroppedDown?: any;
898
+ showDropDownButton?: any;
899
+ autoExpandSelection?: any;
900
+ placeholder?: any;
901
+ dropDownCssClass?: any;
902
+ isAnimated?: any;
903
+ isReadOnly?: any;
904
+ isRequired?: any;
905
+ inputType?: any;
906
+ clickAction?: any;
907
+ displayMemberPath?: any;
908
+ selectedValuePath?: any;
909
+ headerPath?: any;
910
+ isContentHtml?: any;
911
+ isEditable?: any;
912
+ handleWheel?: any;
913
+ maxDropDownHeight?: any;
914
+ maxDropDownWidth?: any;
915
+ itemFormatter?: any;
916
+ showGroups?: any;
917
+ trimText?: any;
918
+ caseSensitiveSearch?: any;
919
+ virtualizationThreshold?: any;
920
+ header?: any;
921
+ commandParameterPath?: any;
922
+ commandPath?: any;
923
+ subItemsPath?: any;
924
+ openOnHover?: any;
925
+ closeOnLeave?: any;
926
+ isButton?: any;
927
+ itemsSource?: any;
928
+ text?: any;
929
+ selectedIndex?: any;
930
+ selectedItem?: any;
931
+ selectedValue?: any;
932
+ value?: any;
933
+ initialized?: any;
934
+ gotFocus?: any;
935
+ lostFocus?: any;
936
+ refreshing?: any;
937
+ refreshed?: any;
938
+ invalidInput?: any;
939
+ isDroppedDownChanging?: any;
940
+ itemsSourceChanged?: any;
941
+ formatItem?: any;
942
+ isDroppedDownChanged?: any;
943
+ textChanged?: any;
944
+ selectedIndexChanged?: any;
945
+ itemClicked?: any;
946
+ [key: string]: any;
947
+ };
948
+ wjItemTemplate: ItemTemplateRender;
949
+ private _definedHeader;
950
+ private _value;
951
+ private _contextMenuData;
952
+ readonly contextMenuProp = "contextMenuOf";
953
+ constructor(props: any);
954
+ value: any;
955
+ componentDidMount(): any;
956
+ componentDidUpdate(prevProps: any): void;
957
+ componentWillUnmount(): void;
958
+ protected _createControl(): any;
959
+ private _updateHeader;
960
+ private _fmtItem;
961
+ private _contextMenuGetElementsIfChanged;
962
+ private _contextMenuGetElements;
963
+ private _contextMenuBindListeners;
964
+ private _contextMenuUnbindListeners;
965
+ }
966
+ /**
967
+ * React component that represents an item in a {@link wijmo.react.input.Menu} control.
968
+ *
969
+ * The <b>menu-item</b> component should be contained in
970
+ * a {@link wijmo.react.input.Menu} component.
971
+ *
972
+ * The component supports all properties and events of the pure JavaScript {@link } class it represents.
973
+ *
974
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
975
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
976
+ * The signature of the handler function is the same as any other Wijmo event handlers.
977
+ */
978
+ export declare class MenuItem extends ComponentBase {
979
+ props: {
980
+ template?: any;
981
+ children?: any;
982
+ value?: any;
983
+ cmd?: any;
984
+ cmdParam?: any;
985
+ initialized?: any;
986
+ [key: string]: any;
987
+ };
988
+ _parentProp: string;
989
+ _siblingId: string;
990
+ contentRoot: HTMLElement;
991
+ value: any;
992
+ cmd: any;
993
+ cmdParam: any;
994
+ constructor(props: any);
995
+ protected _createControl(): any;
996
+ _renderImpl(): any;
997
+ added(toItem: HTMLElement): void;
998
+ }
999
+ /**
1000
+ * React component that represents an item separator in a {@link wijmo.react.input.Menu} control.
1001
+ *
1002
+ * The <b>menu-separator</b> component should be contained in
1003
+ * a {@link wijmo.react.input.Menu} component.
1004
+ *
1005
+ * The component supports all properties and events of the pure JavaScript {@link } class it represents.
1006
+ *
1007
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
1008
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
1009
+ * The signature of the handler function is the same as any other Wijmo event handlers.
1010
+ */
1011
+ export declare class MenuSeparator extends ComponentBase {
1012
+ props: {
1013
+ template?: any;
1014
+ children?: any;
1015
+ initialized?: any;
1016
+ [key: string]: any;
1017
+ };
1018
+ _parentProp: string;
1019
+ _siblingId: string;
1020
+ contentRoot: HTMLElement;
1021
+ constructor(props: any);
1022
+ protected _createControl(): any;
1023
+ _renderImpl(): any;
1024
+ added(toItem: HTMLElement): void;
1025
+ }
1026
+ /**
1027
+ * TBD
1028
+ */
1029
+ export interface ItemTemplateContext {
1030
+ control: wjcCore.Control;
1031
+ item: any;
1032
+ itemIndex: number;
1033
+ }
1034
+ /**
1035
+ * TBD
1036
+ */
1037
+ export declare type ItemTemplateRender = (context: ItemTemplateContext) => any;
1038
+ /**
1039
+ * React component for the {@link wijmo.input.Popup} control.
1040
+ *
1041
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.Popup} control it represents.
1042
+ *
1043
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
1044
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
1045
+ * The signature of the handler function is the same as any other Wijmo event handlers.
1046
+ */
1047
+ export declare class Popup extends ComponentBase {
1048
+ props: {
1049
+ template?: any;
1050
+ children?: any;
1051
+ isDisabled?: any;
1052
+ tabOrder?: any;
1053
+ owner?: any;
1054
+ showTrigger?: any;
1055
+ hideTrigger?: any;
1056
+ fadeIn?: any;
1057
+ fadeOut?: any;
1058
+ isDraggable?: any;
1059
+ isResizable?: any;
1060
+ dialogResultEnter?: any;
1061
+ dialogResultSubmit?: any;
1062
+ modal?: any;
1063
+ removeOnHide?: any;
1064
+ initialized?: any;
1065
+ gotFocus?: any;
1066
+ lostFocus?: any;
1067
+ refreshing?: any;
1068
+ refreshed?: any;
1069
+ invalidInput?: any;
1070
+ showing?: any;
1071
+ shown?: any;
1072
+ hiding?: any;
1073
+ hidden?: any;
1074
+ resizing?: any;
1075
+ sizeChanging?: any;
1076
+ sizeChanged?: any;
1077
+ resized?: any;
1078
+ dragging?: any;
1079
+ positionChanging?: any;
1080
+ positionChanged?: any;
1081
+ dragged?: any;
1082
+ [key: string]: any;
1083
+ };
1084
+ private _sEl;
1085
+ private _pEl;
1086
+ private _v17;
1087
+ constructor(props: any);
1088
+ componentDidMount(): void;
1089
+ componentWillUnmount(): void;
1090
+ _renderImpl(): any;
1091
+ }
1092
+ /**
1093
+ * React component for the {@link wijmo.input.CollectionViewNavigator} control.
1094
+ *
1095
+ * The component supports all properties and events of the pure JavaScript {@link wijmo.input.CollectionViewNavigator} control it represents.
1096
+ *
1097
+ * The component includes an <b>initialized</b> event that is raised when the control is initialized after it is added to the page.
1098
+ * You can use this event to perform further initialization in addition to setting properties in JSX.
1099
+ * The signature of the handler function is the same as any other Wijmo event handlers.
1100
+ */
1101
+ export declare class CollectionViewNavigator extends ComponentBase {
1102
+ props: {
1103
+ template?: any;
1104
+ children?: any;
1105
+ isDisabled?: any;
1106
+ tabOrder?: any;
1107
+ cv?: any;
1108
+ byPage?: any;
1109
+ headerFormat?: any;
1110
+ repeatButtons?: any;
1111
+ initialized?: any;
1112
+ gotFocus?: any;
1113
+ lostFocus?: any;
1114
+ refreshing?: any;
1115
+ refreshed?: any;
1116
+ invalidInput?: any;
1117
+ [key: string]: any;
1118
+ };
1119
+ constructor(props: any);
1120
+ }