@mescius/wijmo.input 5.20251.41-nightly.d20250717.t190800 → 5.20251.41-nightly.d20250723.t181340
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 +11 -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.41-nightly.
|
|
3
|
+
* Wijmo Library 5.20251.41-nightly.d20250723.t181340
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -1237,6 +1237,7 @@ export declare class MultiSelectListBox<T = any> extends Control {
|
|
|
1237
1237
|
_lbx: ListBox;
|
|
1238
1238
|
_cbSelectAll: HTMLInputElement;
|
|
1239
1239
|
_spSelectAll: HTMLSpanElement;
|
|
1240
|
+
_ariaLabel: string;
|
|
1240
1241
|
_selectAllLabel: string;
|
|
1241
1242
|
_filterPlaceholder: string;
|
|
1242
1243
|
_filterText: string;
|
|
@@ -1387,6 +1388,11 @@ export declare class MultiSelectListBox<T = any> extends Control {
|
|
|
1387
1388
|
* Gets or sets an array containing the items that are currently checked.
|
|
1388
1389
|
*/
|
|
1389
1390
|
checkedItems: any[];
|
|
1391
|
+
/**
|
|
1392
|
+
* Gets or sets the aria-labelledby attribute of {@link MultiSelectListBox} input element.
|
|
1393
|
+
*/
|
|
1394
|
+
ariaLabelledBy: string;
|
|
1395
|
+
_updateAriaLabel(): void;
|
|
1390
1396
|
/**
|
|
1391
1397
|
* Occurs when the value of the {@link checkedItems} property changes.
|
|
1392
1398
|
*/
|
|
@@ -2279,6 +2285,7 @@ export declare class DropDown extends Control {
|
|
|
2279
2285
|
protected _createDropDown(): void;
|
|
2280
2286
|
protected _commitText(noFocus?: boolean, shouldInvalid?: boolean): void;
|
|
2281
2287
|
_updateDropDown(): void;
|
|
2288
|
+
_shouldRaiseInvalidInput(shouldInvalid: boolean): boolean;
|
|
2282
2289
|
}
|
|
2283
2290
|
/**
|
|
2284
2291
|
* Specifies actions that trigger showing and hiding {@link Popup} controls.
|
|
@@ -3385,7 +3392,6 @@ export declare class InputDate extends DropDown {
|
|
|
3385
3392
|
ariaLabelledBy: string;
|
|
3386
3393
|
protected _updateInputAriaLabel(): void;
|
|
3387
3394
|
getAriaLabelForScreenReader(): any;
|
|
3388
|
-
_shouldRaiseInvalidInput(shouldInvalid: boolean): boolean;
|
|
3389
3395
|
}
|
|
3390
3396
|
/**
|
|
3391
3397
|
* The {@link InputDateRange} control extends the {@link InputDate}
|
|
@@ -4030,6 +4036,8 @@ export declare class MultiSelect extends ComboBox {
|
|
|
4030
4036
|
onIsDroppedDownChanged(e?: EventArgs): void;
|
|
4031
4037
|
onLostFocus(): void;
|
|
4032
4038
|
protected _createDropDown(): void;
|
|
4039
|
+
_updateBtnAria(): void;
|
|
4040
|
+
_updateTbxAria(): void;
|
|
4033
4041
|
isReadOnly: boolean;
|
|
4034
4042
|
refresh(fullUpdate?: boolean): void;
|
|
4035
4043
|
protected _setText(text: string, fullMatch: boolean): void;
|
|
@@ -4482,7 +4490,7 @@ export declare class InputTime extends ComboBox {
|
|
|
4482
4490
|
protected _keydown(e: KeyboardEvent): void;
|
|
4483
4491
|
protected _updateTimeValue(step: number, specialChars: any, actualFormat: string): void;
|
|
4484
4492
|
private _reselectText;
|
|
4485
|
-
protected _commitText(): void;
|
|
4493
|
+
protected _commitText(noFocus?: boolean, shouldInvalid?: boolean): void;
|
|
4486
4494
|
protected _copy(key: string, value: any): boolean;
|
|
4487
4495
|
getAriaLabelForScreenReader(): any;
|
|
4488
4496
|
_input(e: Event): void;
|