agent/ui/node_modules/lit
Snider bb88604045 feat(core): wire Core framework into agentic + monitor subsystems
Phase 2 of Core DI migration:
- Add *core.Core field + SetCore() to PrepSubsystem and monitor.Subsystem
- Register agentic/monitor/brain as Core services with lifecycle hooks
- Mark SetCompletionNotifier and SetNotifier as deprecated (removed in Phase 3)
- Fix monitor test to match actual event names
- initServices() now wires Core refs before legacy callbacks

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-24 14:44:53 +00:00
..
decorators feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
development feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
directives feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
async-directive.d.ts feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
async-directive.d.ts.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
async-directive.js feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
async-directive.js.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
decorators.d.ts feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
decorators.d.ts.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
decorators.js feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
decorators.js.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
directive-helpers.d.ts feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
directive-helpers.d.ts.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
directive-helpers.js feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
directive-helpers.js.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
directive.d.ts feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
directive.d.ts.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
directive.js feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
directive.js.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
html.d.ts feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
html.d.ts.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
html.js feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
html.js.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
index.d.ts feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
index.d.ts.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
index.js feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
index.js.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
LICENSE feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
logo.svg feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
package.json feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
polyfill-support.d.ts feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
polyfill-support.d.ts.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
polyfill-support.js feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
polyfill-support.js.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
README.md feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
static-html.d.ts feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
static-html.d.ts.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
static-html.js feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00
static-html.js.map feat(core): wire Core framework into agentic + monitor subsystems 2026-03-24 14:44:53 +00:00

Lit

Simple. Fast. Web Components.

Build Status Published on npm Join our Discord Mentioned in Awesome Lit

Lit is a simple library for building fast, lightweight web components.

At Lit's core is a boilerplate-killing component base class that provides reactive state, scoped styles, and a declarative template system that's tiny, fast and expressive.

Documentation

See the full documentation for Lit at lit.dev

Overview

Lit provides developers with just the right tools to build fast web components:

  • A fast declarative HTML template system
  • Reactive property declarations
  • A customizable reactive update lifecycle
  • Easy to use scoped CSS styling

Lit builds on top of standard web components, and makes them easier to write:

import {LitElement, html, css} from 'lit';
import {customElement, property} from 'lit/decorators.js';

// Registers the element
@customElement('my-element')
export class MyElement extends LitElement {
  // Styles are applied to the shadow root and scoped to this element
  static styles = css`
    span {
      color: green;
    }
  `;

  // Creates a reactive property that triggers rendering
  @property()
  mood = 'great';

  // Render the component's DOM by returning a Lit template
  render() {
    return html`Web Components are <span>${this.mood}</span>!`;
  }
}

Once you've defined your component, you can use it anywhere you use HTML:

<my-element mood="awesome"></my-element>

Contributing

Please see CONTRIBUTING.md.