@mescius/wijmo.react.input 5.20241.10-nightly.d20240612.t020401 → 5.20241.10-nightly.d20240614.t020210

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * Wijmo Library 5.20241.10-nightly.d20240612.t020401
3
+ * Wijmo Library 5.20241.10-nightly.d20240614.t020210
4
4
  * https://developer.mescius.com/wijmo
5
5
  *
6
6
  * Copyright(c) MESCIUS inc. All rights reserved.
package/es2015-esm.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * Wijmo Library 5.20241.10-nightly.d20240612.t020401
3
+ * Wijmo Library 5.20241.10-nightly.d20240614.t020210
4
4
  * https://developer.mescius.com/wijmo
5
5
  *
6
6
  * Copyright(c) MESCIUS inc. All rights reserved.
package/es5-esm.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * Wijmo Library 5.20241.10-nightly.d20240612.t020401
3
+ * Wijmo Library 5.20241.10-nightly.d20240614.t020210
4
4
  * https://developer.mescius.com/wijmo
5
5
  *
6
6
  * Copyright(c) MESCIUS inc. All rights reserved.
package/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * Wijmo Library 5.20241.10-nightly.d20240612.t020401
3
+ * Wijmo Library 5.20241.10-nightly.d20240614.t020210
4
4
  * https://developer.mescius.com/wijmo
5
5
  *
6
6
  * Copyright(c) MESCIUS inc. All rights reserved.
@@ -18,11 +18,11 @@
18
18
  *
19
19
  */
20
20
  export declare var ___keepComment: any;
21
- import { ControlBaseEvents, ControlBaseProps } from '@mescius/wijmo.react.base';
21
+ import { ControlBaseEvents, ControlBaseInputs, WjRef, BaseInputs } from '@mescius/wijmo.react.base';
22
22
  import * as React from 'react';
23
23
  import * as wjcCore from '@mescius/wijmo';
24
24
  import * as wjcInput from '@mescius/wijmo.input';
25
- export declare type ListBoxProps = ControlBaseProps & {
25
+ export declare type ListBoxInputs = ControlBaseInputs & {
26
26
  caseSensitiveSearch?: boolean;
27
27
  checkedItems?: any[];
28
28
  checkedMemberPath?: string;
@@ -53,6 +53,8 @@ export declare const ListBoxMeta: {
53
53
  inputs: string[];
54
54
  events: string[];
55
55
  };
56
+ export declare type ListBoxProps = ListBoxInputs & ListBoxEvents<wjcInput.ListBox>;
57
+ export declare type ListBoxRef = WjRef<wjcInput.ListBox>;
56
58
  /**
57
59
  * React component for the {@link wijmo.input.ListBox} control.
58
60
  *
@@ -68,8 +70,8 @@ export declare const ListBoxMeta: {
68
70
  * <b>item</b> (item data for the list item) and
69
71
  * <b>itemIndex</b> (zero-based index of the list item).
70
72
  */
71
- export declare const ListBox: React.ForwardRefExoticComponent<React.PropsWithChildren<ListBoxProps & ListBoxEvents<wjcInput.ListBox>>>;
72
- export declare type MultiSelectListBoxProps = ControlBaseProps & {
73
+ export declare const ListBox: React.ForwardRefExoticComponent<ListBoxProps>;
74
+ export declare type MultiSelectListBoxInputs = ControlBaseInputs & {
73
75
  caseSensitiveSearch?: boolean;
74
76
  checkOnFilter?: boolean;
75
77
  checkedItems?: any[];
@@ -95,6 +97,8 @@ export declare const MultiSelectListBoxMeta: {
95
97
  inputs: string[];
96
98
  events: string[];
97
99
  };
100
+ export declare type MultiSelectListBoxProps = MultiSelectListBoxInputs & MultiSelectListBoxEvents<wjcInput.MultiSelectListBox>;
101
+ export declare type MultiSelectListBoxRef = WjRef<wjcInput.MultiSelectListBox>;
98
102
  /**
99
103
  * React component for the {@link wijmo.input.MultiSelectListBox} control.
100
104
  *
@@ -104,8 +108,8 @@ export declare const MultiSelectListBoxMeta: {
104
108
  * You can use this event to perform further initialization in addition to setting properties in JSX.
105
109
  * The signature of the handler function is the same as any other Wijmo event handlers.
106
110
  */
107
- export declare const MultiSelectListBox: React.ForwardRefExoticComponent<React.PropsWithChildren<MultiSelectListBoxProps & MultiSelectListBoxEvents<wjcInput.MultiSelectListBox>>>;
108
- export declare type DropDownProps = ControlBaseProps & {
111
+ export declare const MultiSelectListBox: React.ForwardRefExoticComponent<MultiSelectListBoxProps>;
112
+ export declare type DropDownInputs = ControlBaseInputs & {
109
113
  autoExpandSelection?: boolean;
110
114
  clickAction?: wjcInput.ClickAction | string;
111
115
  dropDownCssClass?: string;
@@ -127,7 +131,7 @@ export declare const DropDownMeta: {
127
131
  inputs: string[];
128
132
  events: string[];
129
133
  };
130
- export declare type ComboBoxProps = DropDownProps & {
134
+ export declare type ComboBoxInputs = DropDownInputs & {
131
135
  caseSensitiveSearch?: boolean;
132
136
  displayMemberPath?: string;
133
137
  handleWheel?: boolean;
@@ -156,6 +160,8 @@ export declare const ComboBoxMeta: {
156
160
  inputs: string[];
157
161
  events: string[];
158
162
  };
163
+ export declare type ComboBoxProps = ComboBoxInputs & ComboBoxEvents<wjcInput.ComboBox>;
164
+ export declare type ComboBoxRef = WjRef<wjcInput.ComboBox>;
159
165
  /**
160
166
  * React component for the {@link wijmo.input.ComboBox} control.
161
167
  *
@@ -171,8 +177,8 @@ export declare const ComboBoxMeta: {
171
177
  * <b>item</b> (item data for the list item) and
172
178
  * <b>itemIndex</b> (zero-based index of the list item).
173
179
  */
174
- export declare const ComboBox: React.ForwardRefExoticComponent<React.PropsWithChildren<ComboBoxProps & ComboBoxEvents<wjcInput.ComboBox>>>;
175
- export declare type AutoCompleteProps = ComboBoxProps & {
180
+ export declare const ComboBox: React.ForwardRefExoticComponent<ComboBoxProps>;
181
+ export declare type AutoCompleteInputs = ComboBoxInputs & {
176
182
  beginsWithSearch?: boolean;
177
183
  cssMatch?: string;
178
184
  delay?: number;
@@ -186,6 +192,8 @@ export declare const AutoCompleteMeta: {
186
192
  inputs: string[];
187
193
  events: string[];
188
194
  };
195
+ export declare type AutoCompleteProps = AutoCompleteInputs & AutoCompleteEvents<wjcInput.AutoComplete>;
196
+ export declare type AutoCompleteRef = WjRef<wjcInput.AutoComplete>;
189
197
  /**
190
198
  * React component for the {@link wijmo.input.AutoComplete} control.
191
199
  *
@@ -195,8 +203,8 @@ export declare const AutoCompleteMeta: {
195
203
  * You can use this event to perform further initialization in addition to setting properties in JSX.
196
204
  * The signature of the handler function is the same as any other Wijmo event handlers.
197
205
  */
198
- export declare const AutoComplete: React.ForwardRefExoticComponent<React.PropsWithChildren<AutoCompleteProps & AutoCompleteEvents<wjcInput.AutoComplete>>>;
199
- export declare type CalendarProps = ControlBaseProps & {
206
+ export declare const AutoComplete: React.ForwardRefExoticComponent<AutoCompleteProps>;
207
+ export declare type CalendarInputs = ControlBaseInputs & {
200
208
  displayMonth?: Date;
201
209
  firstDayOfWeek?: number | null;
202
210
  formatDayHeaders?: string;
@@ -235,6 +243,8 @@ export declare const CalendarMeta: {
235
243
  inputs: string[];
236
244
  events: string[];
237
245
  };
246
+ export declare type CalendarProps = CalendarInputs & CalendarEvents<wjcInput.Calendar>;
247
+ export declare type CalendarRef = WjRef<wjcInput.Calendar>;
238
248
  /**
239
249
  * React component for the {@link wijmo.input.Calendar} control.
240
250
  *
@@ -244,8 +254,8 @@ export declare const CalendarMeta: {
244
254
  * You can use this event to perform further initialization in addition to setting properties in JSX.
245
255
  * The signature of the handler function is the same as any other Wijmo event handlers.
246
256
  */
247
- export declare const Calendar: React.ForwardRefExoticComponent<React.PropsWithChildren<CalendarProps & CalendarEvents<wjcInput.Calendar>>>;
248
- export declare type ColorPickerProps = ControlBaseProps & {
257
+ export declare const Calendar: React.ForwardRefExoticComponent<CalendarProps>;
258
+ export declare type ColorPickerInputs = ControlBaseInputs & {
249
259
  palette?: string[];
250
260
  showAlphaChannel?: boolean;
251
261
  showColorString?: boolean;
@@ -258,6 +268,8 @@ export declare const ColorPickerMeta: {
258
268
  inputs: string[];
259
269
  events: string[];
260
270
  };
271
+ export declare type ColorPickerProps = ColorPickerInputs & ColorPickerEvents<wjcInput.ColorPicker>;
272
+ export declare type ColorPickerRef = WjRef<wjcInput.ColorPicker>;
261
273
  /**
262
274
  * React component for the {@link wijmo.input.ColorPicker} control.
263
275
  *
@@ -267,8 +279,8 @@ export declare const ColorPickerMeta: {
267
279
  * You can use this event to perform further initialization in addition to setting properties in JSX.
268
280
  * The signature of the handler function is the same as any other Wijmo event handlers.
269
281
  */
270
- export declare const ColorPicker: React.ForwardRefExoticComponent<React.PropsWithChildren<ColorPickerProps & ColorPickerEvents<wjcInput.ColorPicker>>>;
271
- export declare type InputMaskProps = ControlBaseProps & {
282
+ export declare const ColorPicker: React.ForwardRefExoticComponent<ColorPickerProps>;
283
+ export declare type InputMaskInputs = ControlBaseInputs & {
272
284
  inputType?: string;
273
285
  isReadOnly?: boolean;
274
286
  isRequired?: boolean;
@@ -286,6 +298,8 @@ export declare const InputMaskMeta: {
286
298
  inputs: string[];
287
299
  events: string[];
288
300
  };
301
+ export declare type InputMaskProps = InputMaskInputs & InputMaskEvents<wjcInput.InputMask>;
302
+ export declare type InputMaskRef = WjRef<wjcInput.InputMask>;
289
303
  /**
290
304
  * React component for the {@link wijmo.input.InputMask} control.
291
305
  *
@@ -295,8 +309,8 @@ export declare const InputMaskMeta: {
295
309
  * You can use this event to perform further initialization in addition to setting properties in JSX.
296
310
  * The signature of the handler function is the same as any other Wijmo event handlers.
297
311
  */
298
- export declare const InputMask: React.ForwardRefExoticComponent<React.PropsWithChildren<InputMaskProps & InputMaskEvents<wjcInput.InputMask>>>;
299
- export declare type InputColorProps = DropDownProps & {
312
+ export declare const InputMask: React.ForwardRefExoticComponent<InputMaskProps>;
313
+ export declare type InputColorInputs = DropDownInputs & {
300
314
  palette?: string[];
301
315
  showAlphaChannel?: boolean;
302
316
  showColorString?: boolean;
@@ -310,6 +324,8 @@ export declare const InputColorMeta: {
310
324
  inputs: string[];
311
325
  events: string[];
312
326
  };
327
+ export declare type InputColorProps = InputColorInputs & InputColorEvents<wjcInput.InputColor>;
328
+ export declare type InputColorRef = WjRef<wjcInput.InputColor>;
313
329
  /**
314
330
  * React component for the {@link wijmo.input.InputColor} control.
315
331
  *
@@ -319,8 +335,8 @@ export declare const InputColorMeta: {
319
335
  * You can use this event to perform further initialization in addition to setting properties in JSX.
320
336
  * The signature of the handler function is the same as any other Wijmo event handlers.
321
337
  */
322
- export declare const InputColor: React.ForwardRefExoticComponent<React.PropsWithChildren<InputColorProps & InputColorEvents<wjcInput.InputColor>>>;
323
- export declare type MultiSelectProps = ComboBoxProps & {
338
+ export declare const InputColor: React.ForwardRefExoticComponent<InputColorProps>;
339
+ export declare type MultiSelectInputs = ComboBoxInputs & {
324
340
  caseSensitiveSearch?: boolean;
325
341
  checkOnFilter?: boolean;
326
342
  checkedItems?: any[];
@@ -341,6 +357,8 @@ export declare const MultiSelectMeta: {
341
357
  inputs: string[];
342
358
  events: string[];
343
359
  };
360
+ export declare type MultiSelectProps = MultiSelectInputs & MultiSelectEvents<wjcInput.MultiSelect>;
361
+ export declare type MultiSelectRef = WjRef<wjcInput.MultiSelect>;
344
362
  /**
345
363
  * React component for the {@link wijmo.input.MultiSelect} control.
346
364
  *
@@ -356,8 +374,8 @@ export declare const MultiSelectMeta: {
356
374
  * <b>item</b> (item data for the list item) and
357
375
  * <b>itemIndex</b> (zero-based index of the list item).
358
376
  */
359
- export declare const MultiSelect: React.ForwardRefExoticComponent<React.PropsWithChildren<MultiSelectProps & MultiSelectEvents<wjcInput.MultiSelect>>>;
360
- export declare type MultiAutoCompleteProps = AutoCompleteProps & {
377
+ export declare const MultiSelect: React.ForwardRefExoticComponent<MultiSelectProps>;
378
+ export declare type MultiAutoCompleteInputs = AutoCompleteInputs & {
361
379
  maxSelectedItems?: number;
362
380
  selectedItems?: any[];
363
381
  selectedMemberPath?: string;
@@ -370,6 +388,8 @@ export declare const MultiAutoCompleteMeta: {
370
388
  inputs: string[];
371
389
  events: string[];
372
390
  };
391
+ export declare type MultiAutoCompleteProps = MultiAutoCompleteInputs & MultiAutoCompleteEvents<wjcInput.MultiAutoComplete>;
392
+ export declare type MultiAutoCompleteRef = WjRef<wjcInput.MultiAutoComplete>;
373
393
  /**
374
394
  * React component for the {@link wijmo.input.MultiAutoComplete} control.
375
395
  *
@@ -379,8 +399,8 @@ export declare const MultiAutoCompleteMeta: {
379
399
  * You can use this event to perform further initialization in addition to setting properties in JSX.
380
400
  * The signature of the handler function is the same as any other Wijmo event handlers.
381
401
  */
382
- export declare const MultiAutoComplete: React.ForwardRefExoticComponent<React.PropsWithChildren<MultiAutoCompleteProps & MultiAutoCompleteEvents<wjcInput.MultiAutoComplete>>>;
383
- export declare type InputNumberProps = ControlBaseProps & {
402
+ export declare const MultiAutoComplete: React.ForwardRefExoticComponent<MultiAutoCompleteProps>;
403
+ export declare type InputNumberInputs = ControlBaseInputs & {
384
404
  format?: string;
385
405
  handleWheel?: boolean;
386
406
  inputType?: string;
@@ -403,6 +423,8 @@ export declare const InputNumberMeta: {
403
423
  inputs: string[];
404
424
  events: string[];
405
425
  };
426
+ export declare type InputNumberProps = InputNumberInputs & InputNumberEvents<wjcInput.InputNumber>;
427
+ export declare type InputNumberRef = WjRef<wjcInput.InputNumber>;
406
428
  /**
407
429
  * React component for the {@link wijmo.input.InputNumber} control.
408
430
  *
@@ -412,8 +434,8 @@ export declare const InputNumberMeta: {
412
434
  * You can use this event to perform further initialization in addition to setting properties in JSX.
413
435
  * The signature of the handler function is the same as any other Wijmo event handlers.
414
436
  */
415
- export declare const InputNumber: React.ForwardRefExoticComponent<React.PropsWithChildren<InputNumberProps & InputNumberEvents<wjcInput.InputNumber>>>;
416
- export declare type InputDateProps = DropDownProps & {
437
+ export declare const InputNumber: React.ForwardRefExoticComponent<InputNumberProps>;
438
+ export declare type InputDateInputs = DropDownInputs & {
417
439
  alwaysShowCalendar?: boolean;
418
440
  closeOnSelection?: boolean;
419
441
  format?: string;
@@ -449,6 +471,8 @@ export declare const InputDateMeta: {
449
471
  inputs: string[];
450
472
  events: string[];
451
473
  };
474
+ export declare type InputDateProps = InputDateInputs & InputDateEvents<wjcInput.InputDate>;
475
+ export declare type InputDateRef = WjRef<wjcInput.InputDate>;
452
476
  /**
453
477
  * React component for the {@link wijmo.input.InputDate} control.
454
478
  *
@@ -458,13 +482,13 @@ export declare const InputDateMeta: {
458
482
  * You can use this event to perform further initialization in addition to setting properties in JSX.
459
483
  * The signature of the handler function is the same as any other Wijmo event handlers.
460
484
  */
461
- export declare const InputDate: React.ForwardRefExoticComponent<React.PropsWithChildren<InputDateProps & InputDateEvents<wjcInput.InputDate>>>;
462
- export declare type InputTimeProps = ComboBoxProps & {
485
+ export declare const InputDate: React.ForwardRefExoticComponent<InputDateProps>;
486
+ export declare type InputTimeInputs = ComboBoxInputs & {
463
487
  format?: string;
464
488
  inputType?: string;
465
489
  mask?: string;
466
- max?: Date | null;
467
- min?: Date | null;
490
+ max?: Date | string | null;
491
+ min?: Date | string | null;
468
492
  step?: number | null;
469
493
  text?: string;
470
494
  value?: Date | null;
@@ -476,6 +500,8 @@ export declare const InputTimeMeta: {
476
500
  inputs: string[];
477
501
  events: string[];
478
502
  };
503
+ export declare type InputTimeProps = InputTimeInputs & InputTimeEvents<wjcInput.InputTime>;
504
+ export declare type InputTimeRef = WjRef<wjcInput.InputTime>;
479
505
  /**
480
506
  * React component for the {@link wijmo.input.InputTime} control.
481
507
  *
@@ -485,8 +511,8 @@ export declare const InputTimeMeta: {
485
511
  * You can use this event to perform further initialization in addition to setting properties in JSX.
486
512
  * The signature of the handler function is the same as any other Wijmo event handlers.
487
513
  */
488
- export declare const InputTime: React.ForwardRefExoticComponent<React.PropsWithChildren<InputTimeProps & InputTimeEvents<wjcInput.InputTime>>>;
489
- export declare type InputDateTimeProps = InputDateProps & {
514
+ export declare const InputTime: React.ForwardRefExoticComponent<InputTimeProps>;
515
+ export declare type InputDateTimeInputs = InputDateInputs & {
490
516
  timeFormat?: string;
491
517
  timeMax?: Date;
492
518
  timeMin?: Date;
@@ -497,6 +523,8 @@ export declare const InputDateTimeMeta: {
497
523
  inputs: string[];
498
524
  events: string[];
499
525
  };
526
+ export declare type InputDateTimeProps = InputDateTimeInputs & InputDateTimeEvents<wjcInput.InputDateTime>;
527
+ export declare type InputDateTimeRef = WjRef<wjcInput.InputDateTime>;
500
528
  /**
501
529
  * React component for the {@link wijmo.input.InputDateTime} control.
502
530
  *
@@ -506,13 +534,15 @@ export declare const InputDateTimeMeta: {
506
534
  * You can use this event to perform further initialization in addition to setting properties in JSX.
507
535
  * The signature of the handler function is the same as any other Wijmo event handlers.
508
536
  */
509
- export declare const InputDateTime: React.ForwardRefExoticComponent<React.PropsWithChildren<InputDateTimeProps & InputDateTimeEvents<wjcInput.InputDateTime>>>;
510
- export declare type InputDateRangeProps = InputDateProps & {};
537
+ export declare const InputDateTime: React.ForwardRefExoticComponent<InputDateTimeProps>;
538
+ export declare type InputDateRangeInputs = InputDateInputs & {};
511
539
  export declare type InputDateRangeEvents<T> = InputDateEvents<T> & {};
512
540
  export declare const InputDateRangeMeta: {
513
541
  inputs: string[];
514
542
  events: string[];
515
543
  };
544
+ export declare type InputDateRangeProps = InputDateRangeInputs & InputDateRangeEvents<wjcInput.InputDateRange>;
545
+ export declare type InputDateRangeRef = WjRef<wjcInput.InputDateRange>;
516
546
  /**
517
547
  * React component for the {@link wijmo.input.InputDateRange} control.
518
548
  *
@@ -522,8 +552,8 @@ export declare const InputDateRangeMeta: {
522
552
  * You can use this event to perform further initialization in addition to setting properties in JSX.
523
553
  * The signature of the handler function is the same as any other Wijmo event handlers.
524
554
  */
525
- export declare const InputDateRange: React.ForwardRefExoticComponent<React.PropsWithChildren<InputDateRangeProps & InputDateRangeEvents<wjcInput.InputDateRange>>>;
526
- export declare type MenuProps = ComboBoxProps & {
555
+ export declare const InputDateRange: React.ForwardRefExoticComponent<InputDateRangeProps>;
556
+ export declare type MenuInputs = ComboBoxInputs & {
527
557
  closeOnLeave?: boolean;
528
558
  command?: wjcInput.ICommand | null;
529
559
  commandParameterPath?: string;
@@ -545,6 +575,8 @@ export declare const MenuMeta: {
545
575
  inputs: string[];
546
576
  events: string[];
547
577
  };
578
+ export declare type MenuProps = MenuInputs & MenuEvents<wjcInput.Menu>;
579
+ export declare type MenuRef = WjRef<wjcInput.Menu>;
548
580
  /**
549
581
  * React component for the {@link wijmo.input.Menu} control.
550
582
  *
@@ -568,8 +600,8 @@ export declare const MenuMeta: {
568
600
  * The component includes a <b>contextMenuOf</b> property which is used to assign context menu to elements or controls.
569
601
  * Value of the property can be id attribute of HTMLElement, reference or array of HTMLElement/ReactComponent.
570
602
  */
571
- export declare const Menu: React.ForwardRefExoticComponent<React.PropsWithChildren<MenuProps & MenuEvents<wjcInput.Menu>>>;
572
- export declare type MenuItemProps = {
603
+ export declare const Menu: React.ForwardRefExoticComponent<MenuProps>;
604
+ export declare type MenuItemInputs = BaseInputs & {
573
605
  cmd?: any;
574
606
  cmdParam?: any;
575
607
  value?: any;
@@ -592,6 +624,8 @@ declare class _MenuItem {
592
624
  private _init;
593
625
  updateItem(hostEl: any): void;
594
626
  }
627
+ export declare type MenuItemProps = MenuItemInputs & MenuItemEvents<_MenuItem>;
628
+ export declare type MenuItemRef = WjRef<_MenuItem>;
595
629
  /**
596
630
  * React component that represents an item in a {@link wijmo.react.input.Menu} control.
597
631
  *
@@ -604,7 +638,9 @@ declare class _MenuItem {
604
638
  * You can use this event to perform further initialization in addition to setting properties in JSX.
605
639
  * The signature of the handler function is the same as any other Wijmo event handlers.
606
640
  */
607
- export declare const MenuItem: React.ForwardRefExoticComponent<React.PropsWithChildren<MenuItemProps & MenuItemEvents<_MenuItem>>>;
641
+ export declare const MenuItem: React.ForwardRefExoticComponent<MenuItemProps>;
642
+ export declare type MenuSeparatorProps = any;
643
+ export declare type MenuSeparatorRef = WjRef<_MenuSeparator>;
608
644
  /**
609
645
  * React component that represents an item separator in a {@link wijmo.react.input.Menu} control.
610
646
  *
@@ -617,8 +653,12 @@ export declare const MenuItem: React.ForwardRefExoticComponent<React.PropsWithCh
617
653
  * You can use this event to perform further initialization in addition to setting properties in JSX.
618
654
  * The signature of the handler function is the same as any other Wijmo event handlers.
619
655
  */
620
- export declare const MenuSeparator: React.ForwardRefExoticComponent<React.PropsWithChildren<any>>;
621
- export declare type PopupProps = ControlBaseProps & {
656
+ export declare const MenuSeparator: React.ForwardRefExoticComponent<MenuSeparatorProps>;
657
+ declare class _MenuSeparator {
658
+ constructor(parent: any, options: any);
659
+ updateItem(hostEl: any): void;
660
+ }
661
+ export declare type PopupInputs = ControlBaseInputs & {
622
662
  content?: HTMLElement;
623
663
  dialogResult?: any;
624
664
  dialogResultEnter?: any;
@@ -653,6 +693,8 @@ export declare const PopupMeta: {
653
693
  inputs: string[];
654
694
  events: string[];
655
695
  };
696
+ export declare type PopupProps = PopupInputs & PopupEvents<wjcInput.Popup>;
697
+ export declare type PopupRef = WjRef<wjcInput.Popup>;
656
698
  /**
657
699
  * React component for the {@link wijmo.input.Popup} control.
658
700
  *
@@ -662,8 +704,8 @@ export declare const PopupMeta: {
662
704
  * You can use this event to perform further initialization in addition to setting properties in JSX.
663
705
  * The signature of the handler function is the same as any other Wijmo event handlers.
664
706
  */
665
- export declare const Popup: React.ForwardRefExoticComponent<React.PropsWithChildren<PopupProps & PopupEvents<wjcInput.Popup>>>;
666
- export declare type CollectionViewNavigatorProps = ControlBaseProps & {
707
+ export declare const Popup: React.ForwardRefExoticComponent<PopupProps>;
708
+ export declare type CollectionViewNavigatorInputs = ControlBaseInputs & {
667
709
  byPage?: boolean;
668
710
  cv?: wjcCore.CollectionView;
669
711
  headerFormat?: string;
@@ -674,6 +716,8 @@ export declare const CollectionViewNavigatorMeta: {
674
716
  inputs: string[];
675
717
  events: string[];
676
718
  };
719
+ export declare type CollectionViewNavigatorProps = CollectionViewNavigatorInputs & CollectionViewNavigatorEvents<wjcInput.CollectionViewNavigator>;
720
+ export declare type CollectionViewNavigatorRef = WjRef<wjcInput.CollectionViewNavigator>;
677
721
  /**
678
722
  * React component for the {@link wijmo.input.CollectionViewNavigator} control.
679
723
  *
@@ -683,7 +727,7 @@ export declare const CollectionViewNavigatorMeta: {
683
727
  * You can use this event to perform further initialization in addition to setting properties in JSX.
684
728
  * The signature of the handler function is the same as any other Wijmo event handlers.
685
729
  */
686
- export declare const CollectionViewNavigator: React.ForwardRefExoticComponent<React.PropsWithChildren<CollectionViewNavigatorProps & CollectionViewNavigatorEvents<wjcInput.CollectionViewNavigator>>>;
730
+ export declare const CollectionViewNavigator: React.ForwardRefExoticComponent<CollectionViewNavigatorProps>;
687
731
  /**
688
732
  * TBD
689
733
  */
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * Wijmo Library 5.20241.10-nightly.d20240612.t020401
3
+ * Wijmo Library 5.20241.10-nightly.d20240614.t020210
4
4
  * https://developer.mescius.com/wijmo
5
5
  *
6
6
  * Copyright(c) MESCIUS inc. All rights reserved.
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@mescius/wijmo.react.input",
3
- "version": "5.20241.10-nightly.d20240612.t020401",
3
+ "version": "5.20241.10-nightly.d20240614.t020210",
4
4
  "description": "UI library for pure JS, Angular, React, Vue and more...",
5
5
  "author": "MESCIUS inc",
6
6
  "license": "Commercial",
7
7
  "main": "./index.js",
8
8
  "types": "./index.d.ts",
9
9
  "dependencies": {
10
- "@mescius/wijmo": "5.20241.10-nightly.d20240612.t020401",
11
- "@mescius/wijmo.input": "5.20241.10-nightly.d20240612.t020401",
12
- "@mescius/wijmo.react.base": "5.20241.10-nightly.d20240612.t020401"
10
+ "@mescius/wijmo": "5.20241.10-nightly.d20240614.t020210",
11
+ "@mescius/wijmo.input": "5.20241.10-nightly.d20240614.t020210",
12
+ "@mescius/wijmo.react.base": "5.20241.10-nightly.d20240614.t020210"
13
13
  },
14
14
  "homepage": "https://developer.mescius.com/wijmo",
15
15
  "bugs": {