From ebe69de078e5b935e8ecd51f3eb13fc9bc2e508b Mon Sep 17 00:00:00 2001 From: Mattrixwv Date: Sun, 10 Aug 2025 23:37:40 -0400 Subject: [PATCH] Add more missing components --- lib/component/input.ts | 3 +++ package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/component/input.ts b/lib/component/input.ts index d1d9425..0defebf 100644 --- a/lib/component/input.ts +++ b/lib/component/input.ts @@ -6,6 +6,7 @@ import FileInput from "./input/file/FileInput"; import NumberInput from "./input/number/NumberInput"; import OptionInput from "./input/text/OptionInput"; import SelectInput from "./input/text/SelectInput"; +import TextArea from "./input/text/TextArea"; import TextInput from "./input/text/TextInput"; @@ -18,6 +19,8 @@ export { //NumberSlider, OptionInput, SelectInput, + TextArea, TextInput, TimeInput }; + diff --git a/package.json b/package.json index ba8b31b..a6a5435 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mattrixwv-components", "private": false, - "version": "0.0.4", + "version": "0.0.5", "type": "module", "scripts": { "dev": "vite",