rdesign/frontend/node_modules/lit-element
Jeff Emmett 80f1e96e6b Fix frontend build: type errors, SDK handling, docker context
- Use jq to cleanly remove encryptid SDK from package.json in Docker
- Fix TypeScript strict mode errors in dashboard and assistant
- Add .dockerignore to exclude node_modules from build context
- Use project root as Docker build context for frontend
- Fix Traefik routing: separate frontend/api/studio paths

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-24 02:21:52 +00:00
..
decorators Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
development Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
LICENSE Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
README.md Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
decorators.d.ts Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
decorators.d.ts.map Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
decorators.js Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
decorators.js.map Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
index.d.ts Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
index.d.ts.map Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
index.js Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
index.js.map Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
lit-element.d.ts Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
lit-element.d.ts.map Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
lit-element.js Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
lit-element.js.map Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
package.json Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
polyfill-support.d.ts Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
polyfill-support.d.ts.map Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
polyfill-support.js Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
polyfill-support.js.map Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
private-ssr-support.d.ts Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
private-ssr-support.d.ts.map Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
private-ssr-support.js Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00
private-ssr-support.js.map Fix frontend build: type errors, SDK handling, docker context 2026-03-24 02:21:52 +00:00

README.md

LitElement

A simple base class for creating fast, lightweight web components.

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

LitElement is the base class that powers the Lit library for building fast web components.

Most users should import LitElement from the lit package rather than installing and importing from the lit-element package directly.

Documentation

Full documentation is available at lit.dev/docs/components/overview/.

Overview

LitElement is a base class for custom elements that extends the Lit project's core ReactiveElement (from `@lit/reactive-element') base class with lit-html templating. ReactiveElement enhances HTMLElement with reactive properties, additional lifecycle callbacks, convenient inline CSS authoring, and a set of useful class decorators, while lit-html provides fast, declarative HTML templating.

Example

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>!`;
  }
}

Contributing

Please see CONTRIBUTING.md.