Skip to content

Commit

Permalink
fix: adds input example to Demo page
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Friedberg authored and chrisfalaska committed Oct 7, 2024
1 parent 7d4720e commit 550c274
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions apiExamples/basic.html
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
<auro-form>Hello World</auro-form>
<auro-input>
<span slot="label">Hello World</span>
</auro-input>
10 changes: 8 additions & 2 deletions demo/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

<!-- AURO-GENERATED-CONTENT:START (FILE:src=./description.md) -->
Expand All @@ -28,3 +28,9 @@ _Note: if the dropdown content in your implementation is not interactive (e.g. a
<br /><br /><br />
<my-select></my-select>
<br /><br /><br /><br />

# Input

<auro-input required placeholder="John Doe">
<span slot="label">Full name</span>
</auro-input>
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -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';

/**
Expand Down

0 comments on commit 550c274

Please sign in to comment.