@mescius/wijmo.input 5.20252.43-nightly.d20251028.t173629 → 5.20252.43-nightly.d20251031.t173416
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 +18 -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.20252.43-nightly.
|
|
3
|
+
* Wijmo Library 5.20252.43-nightly.d20251031.t173416
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -3883,7 +3883,6 @@ export declare class ComboBox<T = any> extends DropDown {
|
|
|
3883
3883
|
_afterOpenDropdownByDownArrow(): void;
|
|
3884
3884
|
_input(e: Event): void;
|
|
3885
3885
|
_handleDragTextState(): void;
|
|
3886
|
-
_handleComposingState(): void;
|
|
3887
3886
|
_shouldOpenDropdown(): boolean;
|
|
3888
3887
|
_handleIsEditableFalseInput(): void;
|
|
3889
3888
|
_updateSelection(index: number, editStart: number): void;
|
|
@@ -4144,6 +4143,7 @@ export declare class Menu extends ComboBox {
|
|
|
4144
4143
|
_defaultItem: any;
|
|
4145
4144
|
_owner: HTMLElement;
|
|
4146
4145
|
_isButton: boolean;
|
|
4146
|
+
_keepOpen: boolean;
|
|
4147
4147
|
_openOnHover: boolean;
|
|
4148
4148
|
_closeOnLeave: boolean;
|
|
4149
4149
|
_toHover: any;
|
|
@@ -4297,6 +4297,22 @@ export declare class Menu extends ComboBox {
|
|
|
4297
4297
|
* ```
|
|
4298
4298
|
*/
|
|
4299
4299
|
isButton: boolean;
|
|
4300
|
+
/**
|
|
4301
|
+
* Gets or sets a value that indicates whether the menu should remain open
|
|
4302
|
+
* after the user selects an item.
|
|
4303
|
+
*
|
|
4304
|
+
* When this property is set to **true**, the menu remains open after an item
|
|
4305
|
+
* is clicked, allowing users to perform multiple selections or execute
|
|
4306
|
+
* consecutive commands without having to reopen the menu.
|
|
4307
|
+
*
|
|
4308
|
+
* When set to **false** (the default), the menu automatically closes as soon
|
|
4309
|
+
* as an item is selected, which aligns with the standard behavior of most
|
|
4310
|
+
* dropdown or context menus.
|
|
4311
|
+
*
|
|
4312
|
+
* This property is useful in scenarios where continuous user interaction with
|
|
4313
|
+
* the menu is required。
|
|
4314
|
+
*/
|
|
4315
|
+
keepOpen: boolean;
|
|
4300
4316
|
/**
|
|
4301
4317
|
* Gets or sets the element that owns this {@link Menu}.
|
|
4302
4318
|
*
|