@mescius/wijmo.input 5.20251.41-nightly.d20250813.t181656 → 5.20251.41-nightly.d20250814.t181729
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/es2015-commonjs.js +2 -2
- package/es2015-esm.js +2 -2
- package/es5-esm.js +2 -2
- package/index.d.ts +9 -1
- package/index.js +2 -2
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* Wijmo Library 5.20251.41-nightly.
|
|
3
|
+
* Wijmo Library 5.20251.41-nightly.d20250814.t181729
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -342,6 +342,13 @@ export declare class InputNumber extends Control {
|
|
|
342
342
|
protected _keypress(e: KeyboardEvent): void;
|
|
343
343
|
protected _keydown(e: KeyboardEvent): void;
|
|
344
344
|
protected _input(): void;
|
|
345
|
+
/**
|
|
346
|
+
* Checks if the value represents a negative currency entered using parentheses.
|
|
347
|
+
* Scenario:
|
|
348
|
+
* 1. First input "(" → value changes to "-$0.00"
|
|
349
|
+
* 2. Then input a digit (e.g., "1") → value changes to "-$01.00"
|
|
350
|
+
*/
|
|
351
|
+
private _isNegativeCurrencyByParenthesis;
|
|
345
352
|
protected _clickSpinner(e: MouseEvent): void;
|
|
346
353
|
protected _updateAria(): void;
|
|
347
354
|
_updateInputAriaLabel(): void;
|
|
@@ -635,6 +642,7 @@ export declare class ColorPicker extends Control {
|
|
|
635
642
|
private _updatePalette;
|
|
636
643
|
private _makePalEntry;
|
|
637
644
|
private _updatePanels;
|
|
645
|
+
private getColorsDiv;
|
|
638
646
|
private _getTargetPanel;
|
|
639
647
|
protected getActualTabIndex(): string;
|
|
640
648
|
private _updateTabIndex;
|