This repository has been archived by the owner on May 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[workspace-v1-epic] Add WorkspaceLayout and SkipTos (#244)
* Initial files, next will start pulling apart. * Stubs for layout and skip to. * Basic functionality working, need to updated translations. * Update translation labels. * Big mess... * Working example with skipTos * Test file structor and workspace layout doc entry. * File cleanup and further doc. * Spec file with examples, needs jest. * Updated tests and screenshots. * Update lint resource paths. * Add change log. * PR comments, update doc, add id, fix tests. * Updates for PR, address dot notation. * Correct route. * Add todos for i18n. * Adding translations. Adding consumption docs for workspace. * Fixing lint. * Getting tests to pass * PR tweaks * Adding NotificationBanner doc * Adding workspace to demo example * Rendering layout actions in demo * Update src/terra-dev-site/app/components.2/ApplicationNavigation.app.mdx Co-authored-by: Ben Cai <[email protected]> * Removing errant TODOs Co-authored-by: Tyler Biethman <[email protected]> Co-authored-by: Tyler Biethman <[email protected]> Co-authored-by: Ben Cai <[email protected]>
- Loading branch information
1 parent
7330ff8
commit 5bac448
Showing
115 changed files
with
2,774 additions
and
766 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,19 @@ | ||
import { | ||
titleConfigPropType, navigationItemsPropType, extensionItemsPropType, utilityItemsPropType, userConfigPropType, | ||
titleConfigPropType, | ||
navigationItemsPropType, | ||
extensionItemsPropType, | ||
utilityItemsPropType, | ||
userConfigPropType, | ||
} from './private/utils/propTypes'; | ||
import ApplicationNavigationActionsContext from './ApplicationNavigationActionsContext'; | ||
import ApplicationNavigation from './ApplicationNavigation'; | ||
|
||
export default ApplicationNavigation; | ||
export { | ||
titleConfigPropType, navigationItemsPropType, extensionItemsPropType, utilityItemsPropType, userConfigPropType, | ||
titleConfigPropType, | ||
navigationItemsPropType, | ||
extensionItemsPropType, | ||
utilityItemsPropType, | ||
userConfigPropType, | ||
ApplicationNavigationActionsContext, | ||
}; | ||
|
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
6 changes: 6 additions & 0 deletions
6
src/application-navigation/private/clinical-lowlight-theme/ResizeHandle.module.scss
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,6 @@ | ||
:local { | ||
.clinical-lowlight-theme { | ||
--terra-application-resize-handle-hover-background-color: rgba(34, 42, 46, 0.6); | ||
--terra-application-resize-handle-dragging-background-color: rgba(34, 42, 46, 1); | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
src/application-navigation/private/clinical-lowlight-theme/WorkspaceLayout.module.scss
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,5 @@ | ||
:local { | ||
.clinical-lowlight-theme { | ||
--terra-application-workspace-layout-workspace-overlay-background-color: rgba(0, 0, 0, 0.3); | ||
} | ||
} |
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
6 changes: 6 additions & 0 deletions
6
src/application-navigation/private/orion-fusion-theme/ResizeHandle.module.scss
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,6 @@ | ||
:local { | ||
.orion-fusion-theme { | ||
--terra-application-resize-handle-hover-background-color: rgba(34, 42, 46, 0.6); | ||
--terra-application-resize-handle-dragging-background-color: rgba(34, 42, 46, 1); | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
src/application-navigation/private/orion-fusion-theme/WorkspaceLayout.module.scss
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,5 @@ | ||
:local { | ||
.orion-fusion-theme { | ||
--terra-application-workspace-layout-workspace-overlay-background-color: rgba(0, 0, 0, 0.3); | ||
} | ||
} |
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.