@mescius/wijmo.input 5.20252.43-nightly.d20251027.t174409 → 5.20252.43-nightly.d20251030.t173432

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * Wijmo Library 5.20252.43-nightly.d20251027.t174409
3
+ * Wijmo Library 5.20252.43-nightly.d20251030.t173432
4
4
  * https://developer.mescius.com/wijmo
5
5
  *
6
6
  * Copyright(c) MESCIUS inc. All rights reserved.
@@ -1204,6 +1204,13 @@ export declare class ListBox<T = any> extends Control {
1204
1204
  _isMenuItem(): boolean;
1205
1205
  _updateTabIndex(): void;
1206
1206
  private _selectRange;
1207
+ /**
1208
+ * Disposes of the control and all its resources.
1209
+ *
1210
+ * Calling the {@link dispose} method is important in applications that create
1211
+ * and remove controls dynamically. Failing to dispose of the controls may
1212
+ * cause memory leaks.
1213
+ */
1207
1214
  dispose(): void;
1208
1215
  }
1209
1216
  /**
@@ -2908,6 +2915,13 @@ export declare class Popup extends Control {
2908
2915
  protected _validateAndHide(result: any): void;
2909
2916
  protected _updateAriaLabel(): void;
2910
2917
  protected _updateAriaLabelImp(oldLabels: any): void;
2918
+ /**
2919
+ * Disposes of the control and all its resources.
2920
+ *
2921
+ * Calling the {@link dispose} method is important in applications that create
2922
+ * and remove controls dynamically. Failing to dispose of the controls may
2923
+ * cause memory leaks.
2924
+ */
2911
2925
  dispose(): void;
2912
2926
  }
2913
2927
  /**
@@ -3377,6 +3391,7 @@ export declare class InputDate extends DropDown {
3377
3391
  * Raises the {@link rangeChanged} event.
3378
3392
  */
3379
3393
  onRangeChanged(e?: EventArgs): void;
3394
+ protected _getParsedValue(): Date;
3380
3395
  refresh(fullUpdate?: boolean): void;
3381
3396
  onIsDroppedDownChanging(e: CancelEventArgs): boolean;
3382
3397
  onIsDroppedDownChanged(e?: EventArgs): void;
@@ -3543,6 +3558,7 @@ export declare class InputColor extends DropDown {
3543
3558
  protected _createDropDown(): void;
3544
3559
  protected _keydown(e: KeyboardEvent): void;
3545
3560
  protected _commitText(): void;
3561
+ protected _changeAllValue(): void;
3546
3562
  protected _copy(key: string, value: any): boolean;
3547
3563
  getAriaLabelForScreenReader(): any;
3548
3564
  protected _updateInputAriaLabel(): void;
@@ -3867,7 +3883,6 @@ export declare class ComboBox<T = any> extends DropDown {
3867
3883
  _afterOpenDropdownByDownArrow(): void;
3868
3884
  _input(e: Event): void;
3869
3885
  _handleDragTextState(): void;
3870
- _handleComposingState(): void;
3871
3886
  _shouldOpenDropdown(): boolean;
3872
3887
  _handleIsEditableFalseInput(): void;
3873
3888
  _updateSelection(index: number, editStart: number): void;
@@ -4376,6 +4391,13 @@ export declare class Menu extends ComboBox {
4376
4391
  private _hoverLeave;
4377
4392
  _setIsDisabled(value: boolean): void;
4378
4393
  _setTabOrder(value: number): void;
4394
+ /**
4395
+ * Disposes of the control and all its resources.
4396
+ *
4397
+ * Calling the {@link dispose} method is important in applications that create
4398
+ * and remove controls dynamically. Failing to dispose of the controls may
4399
+ * cause memory leaks.
4400
+ */
4379
4401
  dispose(): void;
4380
4402
  }
4381
4403
  /**