@mescius/wijmo.input 5.20251.41-nightly.d20250724.t181153 → 5.20251.41-nightly.d20250728.t181934
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 +36 -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.d20250728.t181934
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -4520,6 +4520,7 @@ export declare class InputDateTime extends InputDate {
|
|
|
4520
4520
|
private _inputTime;
|
|
4521
4521
|
private _ddDate;
|
|
4522
4522
|
private _ddTime;
|
|
4523
|
+
private _focusMode;
|
|
4523
4524
|
static _ctrlTemplate: string;
|
|
4524
4525
|
protected _inputAriaLabel: any;
|
|
4525
4526
|
/**
|
|
@@ -4590,6 +4591,34 @@ export declare class InputDateTime extends InputDate {
|
|
|
4590
4591
|
protected _keydown(e: KeyboardEvent): void;
|
|
4591
4592
|
protected _updateDateTimeValue(step: number, specialChars: any, actualFormat: string): void;
|
|
4592
4593
|
protected _commitText(noFocus?: boolean, shouldInvalid?: boolean): void;
|
|
4594
|
+
_updateTbxAria(): void;
|
|
4595
|
+
/**
|
|
4596
|
+
* Gets or sets the dropdown button should focused by tab key.
|
|
4597
|
+
* The default value for this property is **false**.
|
|
4598
|
+
*/
|
|
4599
|
+
focusMode: boolean;
|
|
4600
|
+
/**
|
|
4601
|
+
* Gets or sets the action to perform when the TAB key is pressed.
|
|
4602
|
+
*
|
|
4603
|
+
* The default setting for this property is {@link TabKeyAction.CloseAndMoveFocus},
|
|
4604
|
+
* which provides standard form navigation behavior by:
|
|
4605
|
+
* - Closing the dropdown (if open)
|
|
4606
|
+
* - Moving focus to the next focusable element
|
|
4607
|
+
*
|
|
4608
|
+
* For specialized cases, you can set this to {@link TabKeyAction.CloseAndKeepFocus}
|
|
4609
|
+
* to maintain focus on the control after closing the dropdown.
|
|
4610
|
+
*
|
|
4611
|
+
* This setting is particularly useful for controlling accessibility behavior
|
|
4612
|
+
* and keyboard navigation flow in form controls.
|
|
4613
|
+
*
|
|
4614
|
+
* Example:
|
|
4615
|
+
* ```typescript
|
|
4616
|
+
* // Change TAB key behavior
|
|
4617
|
+
* dropDown.keyActionTab = TabKeyAction.CloseAndMoveFocus;
|
|
4618
|
+
* ```
|
|
4619
|
+
*/
|
|
4620
|
+
keyActionTab: TabKeyAction;
|
|
4621
|
+
private _setDropDownByEvent;
|
|
4593
4622
|
}
|
|
4594
4623
|
/**
|
|
4595
4624
|
* Represents a method that returns data items asynchronously as the user types.
|
|
@@ -4791,6 +4820,8 @@ export declare class MultiAutoComplete extends AutoComplete {
|
|
|
4791
4820
|
static _clsActive: string;
|
|
4792
4821
|
static _ctrlTemplate: string;
|
|
4793
4822
|
_inputElementAriaLabel: string;
|
|
4823
|
+
_helperInputElementAriaLabel: string;
|
|
4824
|
+
_ariaLabelledby: string;
|
|
4794
4825
|
/**
|
|
4795
4826
|
* Gets or sets the template used to instantiate {@link MultiAutoComplete} control.
|
|
4796
4827
|
*/
|
|
@@ -4823,6 +4854,10 @@ export declare class MultiAutoComplete extends AutoComplete {
|
|
|
4823
4854
|
* selected.
|
|
4824
4855
|
*/
|
|
4825
4856
|
selectedItems: any[];
|
|
4857
|
+
/**
|
|
4858
|
+
* Gets or sets the aria-labelledby attribute of input element.
|
|
4859
|
+
*/
|
|
4860
|
+
ariaLabelledBy: string;
|
|
4826
4861
|
/**
|
|
4827
4862
|
* Occurs when the value of the {@link selectedItems} property changes.
|
|
4828
4863
|
*/
|