Ninja Keys
UI Extension
Ninja Keys is a framework-agnostic keyboard shortcut and command palette component built as a Web Component. Provides a searchable command menu for quick navigation and actions.
Status
In Development
Supported Version
TBD
Licensing
Open Source
Priority
Rank #31
KEY FEATURES
Command palette
Keyboard shortcuts
Searchable menu
Nested menus
Web Component
Framework agnostic
Customizable
Usage Example
Here's how you'll use Ninja Keys with Oorian once the extension is available:
Java
// Create and configure Ninja Keys component
NinjaKeys component = new NinjaKeys();
component.setWidth("100%");
component.setHeight("400px");
// Configure component options
component.setEnabled(true);
// Register for events using Oorian's event model
component.registerForEvent(this, NinjaKeysEvent.class);
// Add to your page
container.addElement(component);Note: This is a preview of the expected API. The actual implementation may vary slightly when released.