Commit 4d0806ae by Ari Rizzitano

update snapshots

parent 68b547b5
...@@ -78,12 +78,12 @@ exports[`Storyshots CheckBox disabled 1`] = ` ...@@ -78,12 +78,12 @@ exports[`Storyshots CheckBox disabled 1`] = `
exports[`Storyshots Dropdown basic usage 1`] = ` exports[`Storyshots Dropdown basic usage 1`] = `
<div <div
className="paragon-component dropdown" className="dropdown"
> >
<button <button
aria-expanded={false} aria-expanded={false}
aria-haspopup="true" aria-haspopup="true"
className="btn border-0 dropdown-toggle btn-secondary" className="btn-borderless dropdown-toggle btn btn-secondary"
onBlur={[Function]} onBlur={[Function]}
onClick={[Function]} onClick={[Function]}
onKeyDown={[Function]} onKeyDown={[Function]}
...@@ -153,6 +153,7 @@ exports[`Storyshots InputSelect basic usage 1`] = ` ...@@ -153,6 +153,7 @@ exports[`Storyshots InputSelect basic usage 1`] = `
name="fruits" name="fruits"
onBlur={[Function]} onBlur={[Function]}
onChange={[Function]} onChange={[Function]}
type="select"
value="strawberry" value="strawberry"
> >
<option <option
...@@ -195,6 +196,7 @@ exports[`Storyshots InputSelect separate labels and values 1`] = ` ...@@ -195,6 +196,7 @@ exports[`Storyshots InputSelect separate labels and values 1`] = `
name="new-england-states" name="new-england-states"
onBlur={[Function]} onBlur={[Function]}
onChange={[Function]} onChange={[Function]}
type="select"
value="RI" value="RI"
> >
<option <option
...@@ -247,6 +249,7 @@ exports[`Storyshots InputSelect separate option groups 1`] = ` ...@@ -247,6 +249,7 @@ exports[`Storyshots InputSelect separate option groups 1`] = `
name="northeast-states" name="northeast-states"
onBlur={[Function]} onBlur={[Function]}
onChange={[Function]} onChange={[Function]}
type="select"
value="MD" value="MD"
> >
<optgroup <optgroup
...@@ -347,6 +350,7 @@ exports[`Storyshots InputSelect with validation 1`] = ` ...@@ -347,6 +350,7 @@ exports[`Storyshots InputSelect with validation 1`] = `
name="color" name="color"
onBlur={[Function]} onBlur={[Function]}
onChange={[Function]} onChange={[Function]}
type="select"
value="" value=""
> >
<option <option
...@@ -448,31 +452,135 @@ exports[`Storyshots InputText validation 1`] = ` ...@@ -448,31 +452,135 @@ exports[`Storyshots InputText validation 1`] = `
exports[`Storyshots Paragon Welcome 1`] = ` exports[`Storyshots Paragon Welcome 1`] = `
<div <div
className="css-jail"
style={ style={
Object { Object {
"fontFamily": "\\"Helvetica Neue\\", Helvetica, \\"Segoe UI\\", Arial, freesans, sans-serif", "fontFamily": "sans-serif",
"lineHeight": 1.4,
"margin": 15,
"maxWidth": 600,
} }
} }
> >
<h1> <div
💎 Paragon style={
</h1> Object {
<p> "fontFamily": "\\"Helvetica Neue\\", Helvetica, \\"Segoe UI\\", Arial, freesans, sans-serif",
This is a documentation and demo space for the Paragon accessible UI component library. Better docs coming soon, but for now, check out our existing components via the links to the left-hand side. "lineHeight": 1.4,
</p> "margin": 15,
<p> "maxWidth": 600,
Documentation generated with }
<a }
href="https://github.com/kadirahq/react-storybook" >
rel="noopener noreferrer" <h1>
target="_blank" 💎 Paragon
</h1>
<p>
This is a documentation and demo space for the Paragon accessible UI component library. Better docs coming soon, but for now, check out our existing components via the links to the left-hand side.
</p>
<p>
Documentation generated with
<a
href="https://github.com/kadirahq/react-storybook"
rel="noopener noreferrer"
target="_blank"
>
React Storybook
</a>
.
</p>
</div>
</div>
`;
exports[`Storyshots Tabs minimal usage 1`] = `
<div>
<ul
className="nav nav-tabs"
role="tablist"
>
<li
className="nav-item"
id="tab-label-tabInterface11-0"
>
<a
aria-controls="tab-panel-tabInterface11-0"
aria-selected={true}
className="nav-link active"
onClick={[Function]}
role="tab"
tabIndex={0}
>
Panel 1
</a>
</li>
<li
className="nav-item"
id="tab-label-tabInterface11-1"
>
<a
aria-controls="tab-panel-tabInterface11-1"
aria-selected={false}
className="nav-link"
onClick={[Function]}
role="tab"
tabIndex={-1}
>
Panel 2
</a>
</li>
<li
className="nav-item"
id="tab-label-tabInterface11-2"
>
<a
aria-controls="tab-panel-tabInterface11-2"
aria-selected={false}
className="nav-link"
onClick={[Function]}
role="tab"
tabIndex={-1}
>
Panel 3
</a>
</li>
</ul>
<div
className="tab-content"
>
<div
aria-hidden={false}
aria-labelledby="tab-label-tabInterface11-0"
className="tab-pane active"
id="tab-panel-tabInterface11-0"
role="tabpanel"
tabId={0}
>
<div>
Hello I am the first panel
</div>
</div>
<div
aria-hidden={true}
aria-labelledby="tab-label-tabInterface11-1"
className="tab-pane"
id="tab-panel-tabInterface11-1"
role="tabpanel"
tabId={1}
>
<div>
Hello I am the second panel
</div>
</div>
<div
aria-hidden={true}
aria-labelledby="tab-label-tabInterface11-2"
className="tab-pane"
id="tab-panel-tabInterface11-2"
role="tabpanel"
tabId={2}
> >
React Storybook <div>
</a> Hello I am the third panel
. </div>
</p> </div>
</div>
</div> </div>
`; `;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment