@mescius/wijmo.input 5.20251.41-nightly.d20250813.t181656 → 5.20251.41-nightly.d20250815.t181715

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.d20250813.t181656
3
+ * Wijmo Library 5.20251.41-nightly.d20250815.t181715
4
4
  * https://developer.mescius.com/wijmo
5
5
  *
6
6
  * Copyright(c) MESCIUS inc. All rights reserved.
@@ -109,6 +109,7 @@ export declare const MultiAutoCompleteClsNames: {
109
109
  tokenClose: string;
110
110
  tokenHelper: string;
111
111
  tokenLabel: string;
112
+ screenReaderOnly: string;
112
113
  };
113
114
  export declare const MultiSelectClsNames: {
114
115
  hostElement: string;
@@ -342,6 +343,13 @@ export declare class InputNumber extends Control {
342
343
  protected _keypress(e: KeyboardEvent): void;
343
344
  protected _keydown(e: KeyboardEvent): void;
344
345
  protected _input(): void;
346
+ /**
347
+ * Checks if the value represents a negative currency entered using parentheses.
348
+ * Scenario:
349
+ * 1. First input "(" → value changes to "-$0.00"
350
+ * 2. Then input a digit (e.g., "1") → value changes to "-$01.00"
351
+ */
352
+ private _isNegativeCurrencyByParenthesis;
345
353
  protected _clickSpinner(e: MouseEvent): void;
346
354
  protected _updateAria(): void;
347
355
  _updateInputAriaLabel(): void;
@@ -635,6 +643,7 @@ export declare class ColorPicker extends Control {
635
643
  private _updatePalette;
636
644
  private _makePalEntry;
637
645
  private _updatePanels;
646
+ private getColorsDiv;
638
647
  private _getTargetPanel;
639
648
  protected getActualTabIndex(): string;
640
649
  private _updateTabIndex;
@@ -4821,6 +4830,7 @@ export declare class MultiAutoComplete extends AutoComplete {
4821
4830
  private _wjTpl;
4822
4831
  private _wjInput;
4823
4832
  private _helperInput;
4833
+ private _screenReaderHelper;
4824
4834
  private _maxSelItems;
4825
4835
  private _lastInputValue;
4826
4836
  private _selPath;
@@ -4880,6 +4890,7 @@ export declare class MultiAutoComplete extends AutoComplete {
4880
4890
  protected _updateState(): void;
4881
4891
  protected _keyup(e: KeyboardEvent): void;
4882
4892
  private _addHelperInput;
4893
+ private _addScreenReaderHelper;
4883
4894
  private _refreshHeader;
4884
4895
  private _insertToken;
4885
4896
  private _updateMaxItems;