Lexical

UI Extension

Lexical is an extensible text editor framework from Meta with excellent performance, accessibility, and developer experience.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #119
KEY FEATURES
Extensible framework
Excellent performance
Accessibility
Rich text
Collaboration
React support
Developer friendly
Usage Example

Here's how you'll use Lexical with Oorian once the extension is available:

Java
// Create and configure Lexical component
Lexical component = new Lexical();
component.setWidth("100%");
component.setHeight("400px");

// Configure component options
component.setEnabled(true);

// Register for events using Oorian's event model
component.registerForEvent(this, LexicalEvent.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.