mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-16 02:10:38 +08:00
27 lines
545 B
JavaScript
Executable File
27 lines
545 B
JavaScript
Executable File
// @ts-check
|
|
|
|
import KeyboardSelectAll from "./KeyboardSelectAll"
|
|
|
|
export default class KeyboardIgnoreSelectAll extends KeyboardSelectAll {
|
|
|
|
/**
|
|
* @param {HTMLElement} target
|
|
* @param {any} blueprint
|
|
* @param {Object} options
|
|
*/
|
|
constructor(target, blueprint, options = {}) {
|
|
options = {
|
|
...options,
|
|
activationKeys: blueprint.settings.selectAllKeyboardKey
|
|
}
|
|
super(target, blueprint, options)
|
|
}
|
|
|
|
fire() {
|
|
}
|
|
|
|
unfire() {
|
|
|
|
}
|
|
}
|