From b2bd56026c7a32179cea92bb9edd58feb18cfa9b Mon Sep 17 00:00:00 2001 From: xiaoshi <115949669+xiaoshi930@users.noreply.github.com> Date: Sat, 6 Dec 2025 19:42:54 +0800 Subject: [PATCH] Delete xiaoshi-device-ha-info-card.js --- xiaoshi-device-ha-info-card.js | 1418 -------------------------------- 1 file changed, 1418 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 4f5d8b5..0000000 --- a/xiaoshi-device-ha-info-card.js +++ /dev/null @@ -1,1418 +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` -