This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from emulsify-ds/fix-add-missing-components
Feat: Update emulsify core to latest release, adjust stylint/prettier complaints
- Loading branch information
Showing
59 changed files
with
761 additions
and
643 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
import colors from './colors.twig'; | ||
import colors from "./colors.twig"; | ||
|
||
import colorsData from './colors.yml'; | ||
import './colors'; | ||
import colorsData from "./colors.yml"; | ||
import "./colors"; | ||
|
||
/** | ||
* Storybook Definition. | ||
*/ | ||
export default { | ||
title: 'Base/Colors', | ||
title: "Base/Colors", | ||
}; | ||
|
||
export const Palettes = () => colors(colorsData); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import motion from './motion.twig'; | ||
import motion from "./motion.twig"; | ||
|
||
import motionData from './motion.yml'; | ||
import motionData from "./motion.yml"; | ||
|
||
/** | ||
* Add storybook definition for Animations. | ||
*/ | ||
export default { title: 'Base/Motion' }; | ||
export default { title: "Base/Motion" }; | ||
|
||
export const Usage = () => motion(motionData); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import spacingTwig from './spacing.twig'; | ||
import spacingData from './spacing.yml'; | ||
import spacingTwig from "./spacing.twig"; | ||
import spacingData from "./spacing.yml"; | ||
|
||
export default { | ||
title: 'Base/Spacing', | ||
title: "Base/Spacing", | ||
}; | ||
|
||
export const Spacing = () => spacingTwig(spacingData); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
@forward "./buttons/buttons"; | ||
@forward "./forms/checkbox/checkbox"; | ||
@forward "./forms/radio/radio"; | ||
@forward "./forms/select/select"; | ||
@forward "./forms/textfields/textfields"; | ||
@forward "./images/image/image"; | ||
@forward "./images/icons/icons"; | ||
@forward "./links/link/link"; | ||
@forward "./lists/list"; | ||
@forward "./tables/tables"; | ||
@forward "./text/headings/headings"; | ||
@forward "./text/text/text"; | ||
@forward "./tooltip/tooltip"; | ||
@forward "./videos/video"; | ||
@forward "buttons/buttons"; | ||
@forward "forms/checkbox/checkbox"; | ||
@forward "forms/radio/radio"; | ||
@forward "forms/select/select"; | ||
@forward "forms/textfields/textfields"; | ||
@forward "images/image/image"; | ||
@forward "images/icons/icons"; | ||
@forward "links/link/link"; | ||
@forward "lists/list"; | ||
@forward "tables/tables"; | ||
@forward "text/headings/headings"; | ||
@forward "text/text/text"; | ||
@forward "tooltip/tooltip"; | ||
@forward "videos/video"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import link from './link.twig'; | ||
import link from "./link.twig"; | ||
|
||
import linkData from './link.yml'; | ||
import linkData from "./link.yml"; | ||
|
||
/** | ||
* Storybook Definition. | ||
*/ | ||
export default { title: 'Atoms/Links' }; | ||
export default { title: "Atoms/Links" }; | ||
|
||
export const links = () => link(linkData); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import tableTwig from './tables.twig'; | ||
import tableData from './tables.yml'; | ||
import tableTwig from "./tables.twig"; | ||
import tableData from "./tables.yml"; | ||
|
||
/** | ||
* Storybook Definition. | ||
*/ | ||
export default { title: 'Atoms/Tables' }; | ||
export default { title: "Atoms/Tables" }; | ||
|
||
export const tables = () => tableTwig(tableData); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.