From 930c2c154670744914abbae7c53174809333bd19 Mon Sep 17 00:00:00 2001 From: Jay Date: Sun, 5 Jan 2025 13:59:31 -0500 Subject: [PATCH] more fun --- package.json | 2 +- src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c5be407..3370673 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ha-editor-formbuilder-yaml", - "version": "2025.01.2-beta.7", + "version": "2025.01.2-beta.8", "description": "A reimplementation of ha-editor-formbuilder - supporting YAML configuration of HA Selector controls, conditional expresssions, and more.", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/index.ts b/src/index.ts index 24fde1b..2ad7c06 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ import { HomeAssistant, LovelaceCardConfig, fireEvent } from "custom-card-helpers"; -import jsyaml from "js-yaml"; +import * as jsyaml from "js-yaml"; import { LitElement, CSSResult, css, html } from "lit"; import { unsafeHTML } from "lit/directives/unsafe-html.js"; import { ValueChangedEvent, HAInputElement, ControlRow, Section, isSection} from "./interfaces";