-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(Typography): move to own subfolder (#2186)
* convert link to ts * move typography elements to subfolder * add typography to prepareTemplates ignore list * convert H element to tsx * refactor headings to tsx * convert paragraph elements to tsx * move typography styling to subfolder * delete ui-elements file * import react in typography element files so tests wont fail * move typography tests to subfolder * update typography snapshots * update typography tests * update P element tests * move stories to own subfolder * refactor P to not overwrite modifier prop * update P snapshot * move modifier filter to reduce function
- Loading branch information
Showing
75 changed files
with
1,144 additions
and
524 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* This file is created manually | ||
* You can change the content | ||
* | ||
*/ | ||
|
||
import H from './typography/H' | ||
export * from './typography/H' | ||
export default H |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* This file is created manually | ||
* You can change the content | ||
* | ||
*/ | ||
|
||
import H1 from './typography/H1' | ||
export * from './typography/H1' | ||
export default H1 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* This file is created manually | ||
* You can change the content | ||
* | ||
*/ | ||
|
||
import H2 from './typography/H2' | ||
export * from './typography/H2' | ||
export default H2 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* This file is created manually | ||
* You can change the content | ||
* | ||
*/ | ||
|
||
import H3 from './typography/H3' | ||
export * from './typography/H3' | ||
export default H3 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* This file is created manually | ||
* You can change the content | ||
* | ||
*/ | ||
|
||
import H4 from './typography/H4' | ||
export * from './typography/H4' | ||
export default H4 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.