@mescius/wijmo 5.20251.41-nightly.d20250729.t185913 → 5.20251.41-nightly.d20250801.t022802

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.20251.41-nightly.d20250729.t185913
3
+ * Wijmo Library 5.20251.41-nightly.d20250801.t022802
4
4
  * https://developer.mescius.com/wijmo
5
5
  *
6
6
  * Copyright(c) MESCIUS inc. All rights reserved.
@@ -765,6 +765,7 @@ export declare const ControlStateClsNames: {
765
765
  lastSelected: string;
766
766
  loading: string;
767
767
  match: string;
768
+ exactMatchSpace: string;
768
769
  measuring: string;
769
770
  multiSelected: string;
770
771
  pinned: string;
@@ -2091,6 +2092,8 @@ export declare function _isMacOS(): boolean;
2091
2092
  export declare function _setAriaLabelBy(instance: any, targetElement: HTMLElement, value: string, afterUpdate?: Function): void;
2092
2093
  export declare function deepElementFromPoint(x: any, y: any): Element;
2093
2094
  export declare function roundTo(value: number, digits: number): number;
2095
+ export declare function addAttributeValueToElement(element: Element, attribute: string, value: any): void;
2096
+ export declare function removeAttributeValueFromElement(element: any, attribute: any, value: any): void;
2094
2097
  interface _IMap<K, V> {
2095
2098
  clear(): void;
2096
2099
  delete(key: K): any;
@@ -2667,6 +2670,7 @@ export declare class _MaskProvider {
2667
2670
  _isLetter(c: string): boolean;
2668
2671
  _validatePosition(start: number): void;
2669
2672
  _parseMask(): void;
2673
+ dispose(): void;
2670
2674
  }
2671
2675
  /**
2672
2676
  * Class that contains information about a position in an input mask.
@@ -3935,6 +3939,8 @@ export declare class Control extends ControlBase {
3935
3939
  protected _rtlDir: boolean;
3936
3940
  _listenResizeEvents: boolean;
3937
3941
  private focusService;
3942
+ private _getInputValueTimer;
3943
+ private _updateFocusStateTimer;
3938
3944
  /**
3939
3945
  * Initializes a new instance of the {@link Control} class and attaches it to a DOM element.
3940
3946
  *
@@ -4561,6 +4567,7 @@ export declare class Tooltip {
4561
4567
  static _eTip: HTMLElement;
4562
4568
  private _toShow;
4563
4569
  private _toHide;
4570
+ private _forScreenReader;
4564
4571
  private _showAutoTipBnd;
4565
4572
  private _hideAutoTipBnd;
4566
4573
  private _mousemoveBnd;