fix: re-apply components migration and rename extensions to assets to avoid name collisions
This commit is contained in:
parent
699838c478
commit
e24dc9bb25
117 changed files with 223 additions and 125 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Accordion
|
||||||
parts:
|
parts:
|
||||||
- Accordion
|
- Accordion
|
||||||
title: Accordion
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Accordion
|
key: Accordion
|
||||||
order: 0
|
order: 0
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Accordion: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Accordion
|
- Accordion
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Accordion: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Accordion: Overview'
|
key: 'Accordion: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Accordion: Reference'
|
||||||
parts:
|
parts:
|
||||||
- Accordion
|
- Accordion
|
||||||
- Reference
|
- Reference
|
||||||
title: 'Accordion: Reference'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Accordion: Reference'
|
key: 'Accordion: Reference'
|
||||||
order: 30
|
order: 30
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Accordion: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Accordion
|
- Accordion
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Accordion: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Accordion: Use Cases'
|
key: 'Accordion: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Button: Examples'
|
||||||
parts:
|
parts:
|
||||||
- Button
|
- Button
|
||||||
- Examples
|
- Examples
|
||||||
title: 'Button: Examples'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Button: Examples'
|
key: 'Button: Examples'
|
||||||
order: 30
|
order: 30
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,20 @@
|
||||||
# Button >> Extensions ||90
|
---
|
||||||
|
title: 'Button: Extensions'
|
||||||
|
parts:
|
||||||
|
- Button
|
||||||
|
- Extensions
|
||||||
|
eleventyNavigation:
|
||||||
|
key: 'Button: Extensions'
|
||||||
|
order: 90
|
||||||
|
parent: Button
|
||||||
|
title: Extensions
|
||||||
|
---
|
||||||
|
|
||||||
|
# Button: Extensions
|
||||||
|
|
||||||
```js script
|
```js script
|
||||||
import { html } from '@mdjs/mdjs-preview';
|
import { html } from '@mdjs/mdjs-preview';
|
||||||
import './extensions/bootstrap-button.js';
|
import './assets/bootstrap-button.js';
|
||||||
```
|
```
|
||||||
|
|
||||||
## Bootstrap button
|
## Bootstrap button
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,13 @@
|
||||||
# Button ||10
|
---
|
||||||
|
title: Button
|
||||||
|
parts:
|
||||||
|
- Button
|
||||||
|
eleventyNavigation:
|
||||||
|
key: Button
|
||||||
|
title: Button
|
||||||
|
order: 10
|
||||||
|
---
|
||||||
|
|
||||||
|
# Button
|
||||||
|
|
||||||
-> go to Overview
|
-> go to Overview
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,16 @@
|
||||||
# Button >> Overview ||10
|
---
|
||||||
|
title: 'Button: Overview'
|
||||||
|
parts:
|
||||||
|
- Overview
|
||||||
|
- Button
|
||||||
|
eleventyNavigation:
|
||||||
|
key: Button >> Overview
|
||||||
|
title: Overview
|
||||||
|
order: 10
|
||||||
|
parent: Button
|
||||||
|
---
|
||||||
|
|
||||||
|
# Button: Overview
|
||||||
|
|
||||||
A button web component that is easily stylable and accessible.
|
A button web component that is easily stylable and accessible.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,16 @@
|
||||||
# Button >> Use Cases ||20
|
---
|
||||||
|
title: 'Button: Use Cases'
|
||||||
|
parts:
|
||||||
|
- Use Cases
|
||||||
|
- Button
|
||||||
|
eleventyNavigation:
|
||||||
|
key: Button >> Use Cases
|
||||||
|
title: Use Cases
|
||||||
|
order: 20
|
||||||
|
parent: Button
|
||||||
|
---
|
||||||
|
|
||||||
|
# Button: Use Cases
|
||||||
|
|
||||||
```js script
|
```js script
|
||||||
import { html } from '@mdjs/mdjs-preview';
|
import { html } from '@mdjs/mdjs-preview';
|
||||||
|
|
@ -28,7 +40,8 @@ export const disabled = () => html`<lion-button disabled>Disabled</lion-button>`
|
||||||
The minimum click area needs to be at least `44px` by `44px` according to [WCAG Success Criterion 2.5.5 Target Size (Enhanced)](https://www.w3.org/TR/WCAG22/#target-size-enhanced).
|
The minimum click area needs to be at least `44px` by `44px` according to [WCAG Success Criterion 2.5.5 Target Size (Enhanced)](https://www.w3.org/TR/WCAG22/#target-size-enhanced).
|
||||||
|
|
||||||
```js preview-story
|
```js preview-story
|
||||||
export const minimumClickArea = () => html` <style>
|
export const minimumClickArea = () =>
|
||||||
|
html` <style>
|
||||||
.small {
|
.small {
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
line-height: 1em;
|
line-height: 1em;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Calendar
|
||||||
parts:
|
parts:
|
||||||
- Calendar
|
- Calendar
|
||||||
title: Calendar
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Calendar
|
key: Calendar
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Calendar: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Calendar
|
- Calendar
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Calendar: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Calendar: Overview'
|
key: 'Calendar: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
---
|
---
|
||||||
|
title: 'Calendar: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Calendar
|
- Calendar
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Calendar: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Calendar: Use Cases'
|
key: 'Calendar: Use Cases'
|
||||||
order: 20
|
order: 0
|
||||||
parent: Calendar
|
parent: Calendar
|
||||||
title: Use Cases
|
title: Use Cases
|
||||||
---
|
---
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Checkbox Group
|
||||||
parts:
|
parts:
|
||||||
- Checkbox Group
|
- Checkbox Group
|
||||||
title: Checkbox Group
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Checkbox Group
|
key: Checkbox Group
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Checkbox Group: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Checkbox Group
|
- Checkbox Group
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Checkbox Group: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Checkbox Group: Overview'
|
key: 'Checkbox Group: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Checkbox Group: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Checkbox Group
|
- Checkbox Group
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Checkbox Group: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Checkbox Group: Use Cases'
|
key: 'Checkbox Group: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Collapsible: Examples'
|
||||||
parts:
|
parts:
|
||||||
- Collapsible
|
- Collapsible
|
||||||
- Examples
|
- Examples
|
||||||
title: 'Collapsible: Examples'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Collapsible: Examples'
|
key: 'Collapsible: Examples'
|
||||||
order: 30
|
order: 30
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Collapsible
|
||||||
parts:
|
parts:
|
||||||
- Collapsible
|
- Collapsible
|
||||||
title: Collapsible
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Collapsible
|
key: Collapsible
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Collapsible: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Collapsible
|
- Collapsible
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Collapsible: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Collapsible: Overview'
|
key: 'Collapsible: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Collapsible: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Collapsible
|
- Collapsible
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Collapsible: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Collapsible: Use Cases'
|
key: 'Collapsible: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Combobox: Extensions'
|
||||||
parts:
|
parts:
|
||||||
- Combobox
|
- Combobox
|
||||||
- Extensions
|
- Extensions
|
||||||
title: 'Combobox: Extensions'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Combobox: Extensions'
|
key: 'Combobox: Extensions'
|
||||||
order: 30
|
order: 30
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Combobox
|
||||||
parts:
|
parts:
|
||||||
- Combobox
|
- Combobox
|
||||||
title: Combobox
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Combobox
|
key: Combobox
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Combobox: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Combobox
|
- Combobox
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Combobox: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Combobox: Overview'
|
key: 'Combobox: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Combobox: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Combobox
|
- Combobox
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Combobox: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Combobox: Use Cases'
|
key: 'Combobox: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Dialog
|
||||||
parts:
|
parts:
|
||||||
- Dialog
|
- Dialog
|
||||||
title: Dialog
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Dialog
|
key: Dialog
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Dialog: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Dialog
|
- Dialog
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Dialog: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Dialog: Overview'
|
key: 'Dialog: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Dialog: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Dialog
|
- Dialog
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Dialog: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Dialog: Use Cases'
|
key: 'Dialog: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Drawer
|
||||||
parts:
|
parts:
|
||||||
- Drawer
|
- Drawer
|
||||||
title: Drawer
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Drawer
|
key: Drawer
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Drawer: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Drawer
|
- Drawer
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Drawer: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Drawer: Overview'
|
key: 'Drawer: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Drawer: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Drawer
|
- Drawer
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Drawer: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Drawer: Use Cases'
|
key: 'Drawer: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Fieldset
|
||||||
parts:
|
parts:
|
||||||
- Fieldset
|
- Fieldset
|
||||||
title: Fieldset
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Fieldset
|
key: Fieldset
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Fieldset: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Fieldset
|
- Fieldset
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Fieldset: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Fieldset: Overview'
|
key: 'Fieldset: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Fieldset: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Fieldset
|
- Fieldset
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Fieldset: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Fieldset: Use Cases'
|
key: 'Fieldset: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Form
|
||||||
parts:
|
parts:
|
||||||
- Form
|
- Form
|
||||||
title: Form
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Form
|
key: Form
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Form: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Form
|
- Form
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Form: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Form: Overview'
|
key: 'Form: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Form: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Form
|
- Form
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Form: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Form: Use Cases'
|
key: 'Form: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Icon
|
||||||
parts:
|
parts:
|
||||||
- Icon
|
- Icon
|
||||||
title: Icon
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Icon
|
key: Icon
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Icon: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Icon
|
- Icon
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Icon: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Icon: Overview'
|
key: 'Icon: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Icon: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Icon
|
- Icon
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Icon: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Icon: Use Cases'
|
key: 'Icon: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Components
|
||||||
parts:
|
parts:
|
||||||
- Components
|
- Components
|
||||||
title: Components
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Components
|
key: Components
|
||||||
order: 40
|
order: 40
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Input Amount Dropdown
|
||||||
parts:
|
parts:
|
||||||
- Input Amount Dropdown
|
- Input Amount Dropdown
|
||||||
title: Input Amount Dropdown
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Input Amount Dropdown
|
key: Input Amount Dropdown
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Amount Dropdown: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Input Amount Dropdown
|
- Input Amount Dropdown
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Input Amount Dropdown: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Amount Dropdown: Use Cases'
|
key: 'Input Amount Dropdown: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Input Amount
|
||||||
parts:
|
parts:
|
||||||
- Input Amount
|
- Input Amount
|
||||||
title: Input Amount
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Input Amount
|
key: Input Amount
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Amount: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Input Amount
|
- Input Amount
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Input Amount: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Amount: Overview'
|
key: 'Input Amount: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Amount: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Input Amount
|
- Input Amount
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Input Amount: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Amount: Use Cases'
|
key: 'Input Amount: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Input Date
|
||||||
parts:
|
parts:
|
||||||
- Input Date
|
- Input Date
|
||||||
title: Input Date
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Input Date
|
key: Input Date
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Date: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Input Date
|
- Input Date
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Input Date: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Date: Overview'
|
key: 'Input Date: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Date: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Input Date
|
- Input Date
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Input Date: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Date: Use Cases'
|
key: 'Input Date: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Input Datepicker
|
||||||
parts:
|
parts:
|
||||||
- Input Datepicker
|
- Input Datepicker
|
||||||
title: Input Datepicker
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Input Datepicker
|
key: Input Datepicker
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Datepicker: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Input Datepicker
|
- Input Datepicker
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Input Datepicker: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Datepicker: Overview'
|
key: 'Input Datepicker: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Datepicker: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Input Datepicker
|
- Input Datepicker
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Input Datepicker: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Datepicker: Use Cases'
|
key: 'Input Datepicker: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Input Email
|
||||||
parts:
|
parts:
|
||||||
- Input Email
|
- Input Email
|
||||||
title: Input Email
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Input Email
|
key: Input Email
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Email: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Input Email
|
- Input Email
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Input Email: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Email: Overview'
|
key: 'Input Email: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Email: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Input Email
|
- Input Email
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Input Email: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Email: Use Cases'
|
key: 'Input Email: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Input File
|
||||||
parts:
|
parts:
|
||||||
- Input File
|
- Input File
|
||||||
title: Input File
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Input File
|
key: Input File
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input File: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Input File
|
- Input File
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Input File: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input File: Overview'
|
key: 'Input File: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input File: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Input File
|
- Input File
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Input File: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input File: Use Cases'
|
key: 'Input File: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Input Iban
|
||||||
parts:
|
parts:
|
||||||
- Input Iban
|
- Input Iban
|
||||||
title: Input Iban
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Input Iban
|
key: Input Iban
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Iban: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Input Iban
|
- Input Iban
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Input Iban: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Iban: Overview'
|
key: 'Input Iban: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Iban: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Input Iban
|
- Input Iban
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Input Iban: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Iban: Use Cases'
|
key: 'Input Iban: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Input Range
|
||||||
parts:
|
parts:
|
||||||
- Input Range
|
- Input Range
|
||||||
title: Input Range
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Input Range
|
key: Input Range
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Range: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Input Range
|
- Input Range
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Input Range: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Range: Overview'
|
key: 'Input Range: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Range: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Input Range
|
- Input Range
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Input Range: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Range: Use Cases'
|
key: 'Input Range: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Input Stepper
|
||||||
parts:
|
parts:
|
||||||
- Input Stepper
|
- Input Stepper
|
||||||
title: Input Stepper
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Input Stepper
|
key: Input Stepper
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Stepper: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Input Stepper
|
- Input Stepper
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Input Stepper: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Stepper: Overview'
|
key: 'Input Stepper: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Stepper: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Input Stepper
|
- Input Stepper
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Input Stepper: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Stepper: Use Cases'
|
key: 'Input Stepper: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Tel Dropdown: Extensions'
|
||||||
parts:
|
parts:
|
||||||
- Input Tel Dropdown
|
- Input Tel Dropdown
|
||||||
- Extensions
|
- Extensions
|
||||||
title: 'Input Tel Dropdown: Extensions'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Tel Dropdown: Extensions'
|
key: 'Input Tel Dropdown: Extensions'
|
||||||
order: 30
|
order: 30
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Input Tel Dropdown
|
||||||
parts:
|
parts:
|
||||||
- Input Tel Dropdown
|
- Input Tel Dropdown
|
||||||
title: Input Tel Dropdown
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Input Tel Dropdown
|
key: Input Tel Dropdown
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Tel Dropdown: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Input Tel Dropdown
|
- Input Tel Dropdown
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Input Tel Dropdown: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Tel Dropdown: Overview'
|
key: 'Input Tel Dropdown: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Tel Dropdown: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Input Tel Dropdown
|
- Input Tel Dropdown
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Input Tel Dropdown: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Tel Dropdown: Use Cases'
|
key: 'Input Tel Dropdown: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Input Tel
|
||||||
parts:
|
parts:
|
||||||
- Input Tel
|
- Input Tel
|
||||||
title: Input Tel
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Input Tel
|
key: Input Tel
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Tel: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Input Tel
|
- Input Tel
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Input Tel: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Tel: Overview'
|
key: 'Input Tel: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input Tel: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Input Tel
|
- Input Tel
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Input Tel: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input Tel: Use Cases'
|
key: 'Input Tel: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Input
|
||||||
parts:
|
parts:
|
||||||
- Input
|
- Input
|
||||||
title: Input
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Input
|
key: Input
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Input
|
- Input
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Input: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input: Overview'
|
key: 'Input: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Input: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Input
|
- Input
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Input: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Input: Use Cases'
|
key: 'Input: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Listbox
|
||||||
parts:
|
parts:
|
||||||
- Listbox
|
- Listbox
|
||||||
title: Listbox
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Listbox
|
key: Listbox
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Listbox: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Listbox
|
- Listbox
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Listbox: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Listbox: Overview'
|
key: 'Listbox: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Listbox: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Listbox
|
- Listbox
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Listbox: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Listbox: Use Cases'
|
key: 'Listbox: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Pagination
|
||||||
parts:
|
parts:
|
||||||
- Pagination
|
- Pagination
|
||||||
title: Pagination
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Pagination
|
key: Pagination
|
||||||
order: 30
|
order: 30
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Pagination: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Pagination
|
- Pagination
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Pagination: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Pagination: Overview'
|
key: 'Pagination: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Pagination: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Pagination
|
- Pagination
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Pagination: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Pagination: Use Cases'
|
key: 'Pagination: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Progress Indicator: Examples'
|
||||||
parts:
|
parts:
|
||||||
- Progress Indicator
|
- Progress Indicator
|
||||||
- Examples
|
- Examples
|
||||||
title: 'Progress Indicator: Examples'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Progress Indicator: Examples'
|
key: 'Progress Indicator: Examples'
|
||||||
order: 30
|
order: 30
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Progress Indicator
|
||||||
parts:
|
parts:
|
||||||
- Progress Indicator
|
- Progress Indicator
|
||||||
title: Progress Indicator
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Progress Indicator
|
key: Progress Indicator
|
||||||
order: 30
|
order: 30
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Progress Indicator: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Progress Indicator
|
- Progress Indicator
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Progress Indicator: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Progress Indicator: Overview'
|
key: 'Progress Indicator: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Radio Group
|
||||||
parts:
|
parts:
|
||||||
- Radio Group
|
- Radio Group
|
||||||
title: Radio Group
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Radio Group
|
key: Radio Group
|
||||||
order: 30
|
order: 30
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Radio Group: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Radio Group
|
- Radio Group
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Radio Group: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Radio Group: Overview'
|
key: 'Radio Group: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Radio Group: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Radio Group
|
- Radio Group
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Radio Group: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Radio Group: Use Cases'
|
key: 'Radio Group: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Select Rich: Examples'
|
||||||
parts:
|
parts:
|
||||||
- Select Rich
|
- Select Rich
|
||||||
- Examples
|
- Examples
|
||||||
title: 'Select Rich: Examples'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Select Rich: Examples'
|
key: 'Select Rich: Examples'
|
||||||
order: 30
|
order: 30
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Select Rich
|
||||||
parts:
|
parts:
|
||||||
- Select Rich
|
- Select Rich
|
||||||
title: Select Rich
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Select Rich
|
key: Select Rich
|
||||||
order: 40
|
order: 40
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Select Rich: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Select Rich
|
- Select Rich
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Select Rich: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Select Rich: Overview'
|
key: 'Select Rich: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Select Rich: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Select Rich
|
- Select Rich
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Select Rich: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Select Rich: Use Cases'
|
key: 'Select Rich: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Select
|
||||||
parts:
|
parts:
|
||||||
- Select
|
- Select
|
||||||
title: Select
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Select
|
key: Select
|
||||||
order: 40
|
order: 40
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Select: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Select
|
- Select
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Select: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Select: Overview'
|
key: 'Select: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Select: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Select
|
- Select
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Select: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Select: Use Cases'
|
key: 'Select: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Steps
|
||||||
parts:
|
parts:
|
||||||
- Steps
|
- Steps
|
||||||
title: Steps
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Steps
|
key: Steps
|
||||||
order: 50
|
order: 50
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Steps: Overview'
|
||||||
parts:
|
parts:
|
||||||
- Steps
|
- Steps
|
||||||
- Overview
|
- Overview
|
||||||
title: 'Steps: Overview'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Steps: Overview'
|
key: 'Steps: Overview'
|
||||||
order: 10
|
order: 10
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
|
title: 'Steps: Use Cases'
|
||||||
parts:
|
parts:
|
||||||
- Steps
|
- Steps
|
||||||
- Use Cases
|
- Use Cases
|
||||||
title: 'Steps: Use Cases'
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: 'Steps: Use Cases'
|
key: 'Steps: Use Cases'
|
||||||
order: 20
|
order: 20
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
|
title: Switch
|
||||||
parts:
|
parts:
|
||||||
- Switch
|
- Switch
|
||||||
title: Switch
|
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Switch
|
key: Switch
|
||||||
order: 50
|
order: 50
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue