@mescius/wijmo.input 5.20251.35-nightly.d20250603.t173144 → 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/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * Wijmo Library 5.20251.35-nightly.d20250603.t173144
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
@@ -3292,9 +3293,9 @@ export declare class InputDate extends DropDown {
3292
3293
  private _tryFocus;
3293
3294
  _clamp(value: Date): Date;
3294
3295
  protected _getText(): string;
3295
- protected _commitText(noFocus?: boolean): void;
3296
- protected _triggerInvalidInputEvent(cancelEvtArgs: InputDateEventArgs, val: Date, rangeEnd?: Date): void;
3297
- protected _nullValueInvalidInput(cancelEvtArgs: InputDateEventArgs): void;
3296
+ protected _commitText(noFocus?: boolean, isCommitByEnterKey?: boolean): void;
3297
+ protected _triggerInvalidInputEvent(cancelEvtArgs: InputDateEventArgs, val: Date, rangeEnd?: Date, isCommitByEnterKey?: boolean): void;
3298
+ protected _nullValueInvalidInput(cancelEvtArgs: InputDateEventArgs, isCommitByEnterKey?: boolean): void;
3298
3299
  protected _fromDateTime(value: Date): Date;
3299
3300
  protected _canChangeValue(): boolean;
3300
3301
  protected _isValidDate(value: Date): boolean;
@@ -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.