@mescius/wijmo.input 5.20251.35-nightly.d20250604.t190221 → 5.20251.35-nightly.d20250605.t172543
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 +4 -2
- 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.d20250605.t172543
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -1966,6 +1966,7 @@ export declare class Calendar extends Control {
|
|
|
1966
1966
|
readonly _enterKeyDownToSetValue: Event<Calendar, EventArgs>;
|
|
1967
1967
|
_onEnterKeyDownToSetValue(e?: EventArgs): void;
|
|
1968
1968
|
showConfirmationButtons: boolean;
|
|
1969
|
+
protected _setIsDisabled(value: boolean): void;
|
|
1969
1970
|
}
|
|
1970
1971
|
/**
|
|
1971
1972
|
* Specifies constants that define the action to perform when the
|
|
@@ -3334,6 +3335,7 @@ export declare class InputDate extends DropDown {
|
|
|
3334
3335
|
* ```
|
|
3335
3336
|
*/
|
|
3336
3337
|
keyActionTab: TabKeyAction;
|
|
3338
|
+
_shouldRaiseInvalidInput(isCommitByEnterKey: boolean): boolean;
|
|
3337
3339
|
}
|
|
3338
3340
|
/**
|
|
3339
3341
|
* The {@link InputDateRange} control extends the {@link InputDate}
|
|
@@ -4537,7 +4539,7 @@ export declare class InputDateTime extends InputDate {
|
|
|
4537
4539
|
protected _mouseWheel(e: WheelEvent): void;
|
|
4538
4540
|
protected _keydown(e: KeyboardEvent): void;
|
|
4539
4541
|
protected _updateDateTimeValue(step: number, specialChars: any, actualFormat: string): void;
|
|
4540
|
-
protected _commitText(): void;
|
|
4542
|
+
protected _commitText(noFocus?: boolean, isCommitByEnterKey?: boolean): void;
|
|
4541
4543
|
}
|
|
4542
4544
|
/**
|
|
4543
4545
|
* Represents a method that returns data items asynchronously as the user types.
|