@mescius/wijmo.input 5.20252.43-nightly.d20251030.t173432 → 5.20252.43-nightly.d20251103.t172749
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 -1
- 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.d20251103.t172749
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -4143,6 +4143,7 @@ export declare class Menu extends ComboBox {
|
|
|
4143
4143
|
_defaultItem: any;
|
|
4144
4144
|
_owner: HTMLElement;
|
|
4145
4145
|
_isButton: boolean;
|
|
4146
|
+
_keepOpen: boolean;
|
|
4146
4147
|
_openOnHover: boolean;
|
|
4147
4148
|
_closeOnLeave: boolean;
|
|
4148
4149
|
_toHover: any;
|
|
@@ -4296,6 +4297,22 @@ export declare class Menu extends ComboBox {
|
|
|
4296
4297
|
* ```
|
|
4297
4298
|
*/
|
|
4298
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;
|
|
4299
4316
|
/**
|
|
4300
4317
|
* Gets or sets the element that owns this {@link Menu}.
|
|
4301
4318
|
*
|