@mescius/wijmo.input 5.20252.43-nightly.d20251024.t024745 → 5.20252.43-nightly.d20251028.t173629

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.d20251024.t024745
3
+ * Wijmo Library 5.20252.43-nightly.d20251028.t173629
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;
@@ -4376,6 +4392,13 @@ export declare class Menu extends ComboBox {
4376
4392
  private _hoverLeave;
4377
4393
  _setIsDisabled(value: boolean): void;
4378
4394
  _setTabOrder(value: number): void;
4395
+ /**
4396
+ * Disposes of the control and all its resources.
4397
+ *
4398
+ * Calling the {@link dispose} method is important in applications that create
4399
+ * and remove controls dynamically. Failing to dispose of the controls may
4400
+ * cause memory leaks.
4401
+ */
4379
4402
  dispose(): void;
4380
4403
  }
4381
4404
  /**