From 550c274c9b7b6b5ffad48c3cf24e4868a69377d7 Mon Sep 17 00:00:00 2001 From: Chris Friedberg Date: Thu, 3 Oct 2024 13:00:28 -0700 Subject: [PATCH] fix: adds input example to Demo page --- apiExamples/basic.html | 3 +++ demo/index.md | 10 ++++++++-- index.js | 1 + 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/apiExamples/basic.html b/apiExamples/basic.html index 2fb3a136..af2aadf5 100644 --- a/apiExamples/basic.html +++ b/apiExamples/basic.html @@ -1 +1,4 @@ Hello World + + Hello World + \ No newline at end of file diff --git a/demo/index.md b/demo/index.md index 1b7467ab..24438d1b 100644 --- a/demo/index.md +++ b/demo/index.md @@ -11,8 +11,8 @@ The index.md file is a compiled document. No edits should be made directly to th index.md is created by running `npm run build:markdownDocs`. This file is generated based on a template fetched from `./docs/partials/index.md` ---> - +--> + # Dropdown @@ -28,3 +28,9 @@ _Note: if the dropdown content in your implementation is not interactive (e.g. a






+ +# Input + + + Full name + \ No newline at end of file diff --git a/index.js b/index.js index e1a143b5..9f3c815d 100644 --- a/index.js +++ b/index.js @@ -1,5 +1,6 @@ import { AuroForm } from './src/auro-form.js'; import { AuroDropdown } from './src/dropdown/auro-dropdown.js'; +import { AuroInput } from './src/input/auro-input.js'; import { MySelect } from './src/dropdown/select.js'; /**