@mescius/wijmo.input 5.20251.35-nightly.d20250611.t032156 → 5.20251.35-nightly.d20250612.t172539
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 +7 -3
- 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.35-nightly.
|
|
3
|
+
* Wijmo Library 5.20251.35-nightly.d20250612.t172539
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -775,6 +775,7 @@ export declare class ListBox<T = any> extends Control {
|
|
|
775
775
|
_vThreshold: number;
|
|
776
776
|
_isVirtual: boolean;
|
|
777
777
|
_children: HTMLElement[];
|
|
778
|
+
_ignoreItemFormatterTextArray: string[];
|
|
778
779
|
_clientHeight: number;
|
|
779
780
|
_itemHeight: number;
|
|
780
781
|
_itemsAbove: number;
|
|
@@ -923,13 +924,14 @@ export declare class ListBox<T = any> extends Control {
|
|
|
923
924
|
*
|
|
924
925
|
* @param index The index of the item in the {@link itemsSource}.
|
|
925
926
|
*/
|
|
926
|
-
getDisplayValue(index: number): string;
|
|
927
|
+
getDisplayValue(index: number, ignoreItemFormatter?: boolean): string;
|
|
927
928
|
/**
|
|
928
929
|
* Gets the text displayed for the item at a given index (as plain text).
|
|
929
930
|
*
|
|
930
931
|
* @param index The index of the item in the {@link itemsSource}.
|
|
931
932
|
*/
|
|
932
933
|
getDisplayText(index: number): string;
|
|
934
|
+
_getDisplayText(index: number, notGetByList?: boolean): string;
|
|
933
935
|
/**
|
|
934
936
|
* Gets a value that determines whether the item at a given index is enabled.
|
|
935
937
|
*
|
|
@@ -3751,6 +3753,8 @@ export declare class ComboBox<T = any> extends DropDown {
|
|
|
3751
3753
|
* @param trimText Optionally override the value of the {@link trimText} property.
|
|
3752
3754
|
*/
|
|
3753
3755
|
getDisplayText(index?: number, trimText?: boolean): string;
|
|
3756
|
+
_getDisplayText(index?: number, trimText?: boolean, ignoreItemFormatter?: boolean): string;
|
|
3757
|
+
_hasCustomFormatItem(): boolean;
|
|
3754
3758
|
/**
|
|
3755
3759
|
* Gets the index of the first item that matches a given string.
|
|
3756
3760
|
*
|
|
@@ -3789,7 +3793,6 @@ export declare class ComboBox<T = any> extends DropDown {
|
|
|
3789
3793
|
protected _hasItems(): boolean;
|
|
3790
3794
|
_updateTbxAria(): void;
|
|
3791
3795
|
_updateInputAriaLabel(): void;
|
|
3792
|
-
_updateListBoxAriaLabel(): void;
|
|
3793
3796
|
protected _createDropDown(): void;
|
|
3794
3797
|
protected _wheel(e: WheelEvent): void;
|
|
3795
3798
|
protected _dropDownClick(e: MouseEvent): void;
|
|
@@ -4719,6 +4722,7 @@ export declare class AutoComplete extends ComboBox {
|
|
|
4719
4722
|
private _enclosed;
|
|
4720
4723
|
protected _wheel(e: WheelEvent): void;
|
|
4721
4724
|
getAriaLabelForScreenReader(): any;
|
|
4725
|
+
_hasCustomFormatItem(): boolean;
|
|
4722
4726
|
}
|
|
4723
4727
|
/**
|
|
4724
4728
|
* The {@link MultiAutoComplete} control allows users to pick items from lists
|