-
Notifications
You must be signed in to change notification settings - Fork 861
[Visual Refresh] Remove legacy Amsterdam theme #9090
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
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
181381a
refactor: remove Amsterdam theme
mgadewoll fd6ff58
refactor: update direct imports from removed themes folder
mgadewoll 21454ec
build: remove copyFiles script
mgadewoll 53eda5c
docs: remove theme selection from storybook and website
mgadewoll 0bc6c5e
chore: add missing selected styles
mgadewoll affc3ff
refactor: remove hasGlobalFocusColor theme flag
mgadewoll 9661d85
refactor: remove hasVisColorAdjustment theme flag and resolve usages
mgadewoll fcffdcc
refactor: remove buttonVariant theme flag and resolve usages
mgadewoll 193ba44
test: update snapshots
mgadewoll 9bdf908
test(vrt): update reference images
mgadewoll 5de0bf9
refactor: remove formVariant theme flag and resolve usages
mgadewoll a168642
test: update snapshots
mgadewoll 81300ab
chore: cleanup links and comments
mgadewoll 84874ef
docs: remove Amsterdam specific output
mgadewoll 593cab6
refactor: remove obsolte scss fils
mgadewoll 349d895
chore: add changelogs
mgadewoll f1850db
chore: cleanup shadow updates after rebase
mgadewoll cd542d0
refactor: remove obsolete conditions in euiPanelBorderStyles
mgadewoll 07ce781
chore: remove Amsterdam related comments
mgadewoll e49f4a6
chore: remove obsolete space
mgadewoll 7386269
refactor: use regular eui import path
mgadewoll fefa005
chore: add docusaurus-theme changelog
mgadewoll File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,5 @@ | ||
| - Added `HighContrastModeToggle` component and adds it as main navbar item | ||
|
|
||
| **Breaking changes** | ||
|
|
||
| - Removed `ThemeSwitcher` component |
28 changes: 28 additions & 0 deletions
28
packages/docusaurus-theme/src/components/high_contrast_mode_toggle/index.tsx
This file contains hidden or 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,28 @@ | ||
| import { useContext } from 'react'; | ||
| import { useEuiTheme } from '@elastic/eui'; | ||
|
|
||
| import { NavbarItem } from '../navbar_item'; | ||
| import { AppThemeContext } from '../theme_context'; | ||
|
|
||
| export const HighContrastModeToggle = () => { | ||
| const euiThemeContext = useEuiTheme(); | ||
|
|
||
| const appContext = useContext(AppThemeContext); | ||
| const { changeHighContrastMode } = appContext; | ||
|
|
||
| const isForcedContrastMode = euiThemeContext.highContrastMode === 'forced'; | ||
| const _highContrastMode = | ||
| appContext.highContrastMode && !isForcedContrastMode | ||
| ? appContext.highContrastMode | ||
| : euiThemeContext.highContrastMode; | ||
|
|
||
| return ( | ||
| <NavbarItem | ||
| title={'Toggle high contrast mode'} | ||
| icon="contrast" | ||
| isMenuItem={false} | ||
| isSelected={!!_highContrastMode} | ||
| onClick={() => changeHighContrastMode(!_highContrastMode)} | ||
| /> | ||
| ); | ||
| }; |
This file contains hidden or 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 hidden or 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
127 changes: 0 additions & 127 deletions
127
packages/docusaurus-theme/src/components/theme_switcher/index.tsx
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,6 @@ | ||
| **Breaking changes** | ||
|
|
||
| - Removed `euiTheme.flags.hasGlobalFocusColor` | ||
| - Removed `euiTheme.flags.hasVisColorAdjustment` | ||
| - Removed `euiTheme.flags.buttonVariant` and `euiTheme.flags.formVariant` | ||
| - Removed `euiTheme.components.keyPadMenuItemBackgroundDisabledSelect` |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.