@mescius/wijmo.input 5.20251.35-nightly.d20250617.t173444 → 5.20251.35-nightly.d20250619.t014328
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 -7
- 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.d20250619.t014328
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -2208,7 +2208,7 @@ export declare class DropDown extends Control {
|
|
|
2208
2208
|
_updateTbxAria(): void;
|
|
2209
2209
|
_updateTbxAriaHaspopup(): void;
|
|
2210
2210
|
protected _createDropDown(): void;
|
|
2211
|
-
protected _commitText(noFocus?: boolean): void;
|
|
2211
|
+
protected _commitText(noFocus?: boolean, shouldInvalid?: boolean): void;
|
|
2212
2212
|
_updateDropDown(): void;
|
|
2213
2213
|
}
|
|
2214
2214
|
/**
|
|
@@ -3296,9 +3296,9 @@ export declare class InputDate extends DropDown {
|
|
|
3296
3296
|
private _tryFocus;
|
|
3297
3297
|
_clamp(value: Date): Date;
|
|
3298
3298
|
protected _getText(): string;
|
|
3299
|
-
protected _commitText(noFocus?: boolean,
|
|
3300
|
-
protected _triggerInvalidInputEvent(cancelEvtArgs: InputDateEventArgs, val: Date, rangeEnd?: Date,
|
|
3301
|
-
protected _nullValueInvalidInput(cancelEvtArgs: InputDateEventArgs,
|
|
3299
|
+
protected _commitText(noFocus?: boolean, shouldInvalid?: boolean): void;
|
|
3300
|
+
protected _triggerInvalidInputEvent(cancelEvtArgs: InputDateEventArgs, val: Date, rangeEnd?: Date, shouldInvalid?: boolean): void;
|
|
3301
|
+
protected _nullValueInvalidInput(cancelEvtArgs: InputDateEventArgs, shouldInvalid?: boolean): void;
|
|
3302
3302
|
protected _fromDateTime(value: Date): Date;
|
|
3303
3303
|
protected _canChangeValue(): boolean;
|
|
3304
3304
|
protected _isValidDate(value: Date): boolean;
|
|
@@ -3338,7 +3338,7 @@ export declare class InputDate extends DropDown {
|
|
|
3338
3338
|
* ```
|
|
3339
3339
|
*/
|
|
3340
3340
|
keyActionTab: TabKeyAction;
|
|
3341
|
-
_shouldRaiseInvalidInput(
|
|
3341
|
+
_shouldRaiseInvalidInput(shouldInvalid: boolean): boolean;
|
|
3342
3342
|
}
|
|
3343
3343
|
/**
|
|
3344
3344
|
* The {@link InputDateRange} control extends the {@link InputDate}
|
|
@@ -4543,7 +4543,7 @@ export declare class InputDateTime extends InputDate {
|
|
|
4543
4543
|
protected _mouseWheel(e: WheelEvent): void;
|
|
4544
4544
|
protected _keydown(e: KeyboardEvent): void;
|
|
4545
4545
|
protected _updateDateTimeValue(step: number, specialChars: any, actualFormat: string): void;
|
|
4546
|
-
protected _commitText(noFocus?: boolean,
|
|
4546
|
+
protected _commitText(noFocus?: boolean, shouldInvalid?: boolean): void;
|
|
4547
4547
|
}
|
|
4548
4548
|
/**
|
|
4549
4549
|
* Represents a method that returns data items asynchronously as the user types.
|