From c2d18c76433f44cf1069170559131b2d61df51b1 Mon Sep 17 00:00:00 2001 From: xiaoshi <115949669+xiaoshi930@users.noreply.github.com> Date: Sat, 24 Jan 2026 00:28:42 +0800 Subject: [PATCH] Delete xiaoshi-device-ha-info-card.js --- xiaoshi-device-ha-info-card.js | 1419 -------------------------------- 1 file changed, 1419 deletions(-) delete mode 100644 xiaoshi-device-ha-info-card.js diff --git a/xiaoshi-device-ha-info-card.js b/xiaoshi-device-ha-info-card.js deleted file mode 100644 index 88dbaf1..0000000 --- a/xiaoshi-device-ha-info-card.js +++ /dev/null @@ -1,1419 +0,0 @@ -import { LitElement, html, css } from "https://unpkg.com/lit-element@2.4.0/lit-element.js?module"; - -class XiaoshiHaInfoCardEditor extends LitElement { - static get properties() { - return { - hass: { type: Object }, - config: { type: Object } - }; - } - - static get styles() { - return css` - .form { - display: flex; - flex-direction: column; - gap: 10px; - } - .form-group { - display: flex; - flex-direction: column; - gap: 5px; - } - label { - font-weight: bold; - } - select, input, textarea { - padding: 8px; - border: 1px solid #ddd; - border-radius: 4px; - } - textarea { - min-height: 80px; - resize: vertical; - } - .help-text { - font-size: 0.85em; - color: #666; - margin-top: 4px; - } - `; - } - - render() { - if (!this.hass) return html``; - - return html` -