-
Notifications
You must be signed in to change notification settings - Fork 4k
[TS migration] Migrate 'MentionSuggestions.js' component to TypeScript #30514
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
52ff093
7ce4f40
578da12
f36f2c7
9c256ed
6ac09c5
4ed1744
0138d94
dab085c
8edfee9
eb58d70
93e29f4
9fbce16
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -328,10 +328,6 @@ const styles = (theme: ThemeColors) => | |
| textAlign: 'left', | ||
| }, | ||
|
|
||
| textUnderline: { | ||
| textDecorationLine: 'underline', | ||
| }, | ||
|
|
||
| verticalAlignMiddle: { | ||
| verticalAlign: 'middle', | ||
| }, | ||
|
|
@@ -392,10 +388,6 @@ const styles = (theme: ThemeColors) => | |
| fontSize: variables.fontSizeLarge, | ||
| }, | ||
|
|
||
| textXLarge: { | ||
| fontSize: variables.fontSizeXLarge, | ||
| }, | ||
|
|
||
| textXXLarge: { | ||
| fontSize: variables.fontSizeXXLarge, | ||
| }, | ||
|
|
@@ -415,11 +407,6 @@ const styles = (theme: ThemeColors) => | |
| fontWeight: fontWeightBold, | ||
| }, | ||
|
|
||
| textItalic: { | ||
| fontFamily: fontFamily.EXP_NEUE_ITALIC, | ||
| fontStyle: 'italic', | ||
| }, | ||
|
|
||
| textHeadline: { | ||
| ...headlineFont, | ||
| ...whiteSpace.preWrap, | ||
|
|
@@ -436,10 +423,6 @@ const styles = (theme: ThemeColors) => | |
| lineHeight: variables.lineHeightSizeh1, | ||
| }, | ||
|
|
||
| textDecorationNoLine: { | ||
| textDecorationLine: 'none', | ||
| }, | ||
|
|
||
| textWhite: { | ||
| color: theme.textLight, | ||
| }, | ||
|
|
@@ -448,10 +431,6 @@ const styles = (theme: ThemeColors) => | |
| color: theme.link, | ||
| }, | ||
|
|
||
| textUppercase: { | ||
| textTransform: 'uppercase', | ||
| }, | ||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why did You remove this?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. After the removal of nonexistent we do not use these styles in the project |
||
| textNoWrap: { | ||
| ...whiteSpace.noWrap, | ||
| }, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.