-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move the
Expand all modular pipelines
toggle from the settings panel (
#1858) * Update config.js Signed-off-by: Sajid Alam <[email protected]> * Update config.js Signed-off-by: Sajid Alam <[email protected]> * remove experiment and expand modular pipeline from settings menu Signed-off-by: Sajid Alam <[email protected]> * implement the expandallpipelines Signed-off-by: Sajid Alam <[email protected]> * Update flowchart-primary-toolbar.test.js Signed-off-by: Sajid Alam <[email protected]> * improve tests Signed-off-by: Sajid Alam <[email protected]> * changes based on review Signed-off-by: Sajid Alam <[email protected]> * remove query from settings-modal Signed-off-by: Sajid Alam <[email protected]> * Update settings-modal.js Signed-off-by: Sajid Alam <[email protected]> * design changes make icon always hoverable Signed-off-by: Sajid Alam <[email protected]> * update css Signed-off-by: Sajid Alam <[email protected]> --------- Signed-off-by: Sajid Alam <[email protected]>
- Loading branch information
1 parent
e830b19
commit 92860cd
Showing
14 changed files
with
184 additions
and
119 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 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from 'react'; | ||
|
||
const CollapsePipelinesIcon = ({ className }) => ( | ||
<svg className={className} viewBox="0 0 18 18"> | ||
<path d="M7.6923 10.3077V17.5H5.73079V12.2692H0.5V10.3077H7.6923ZM12.2692 0.5V5.73079H17.5V7.6923H10.3077V0.5H12.2692Z" /> | ||
</svg> | ||
); | ||
|
||
export default CollapsePipelinesIcon; |
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 @@ | ||
import React from 'react'; | ||
|
||
const ExpandPipelinesIcon = ({ className }) => ( | ||
<svg className={className} viewBox="0 0 18 18"> | ||
<path d="M0.5 17.5V10.3077H2.46151V15.5385H7.6923V17.5H0.5ZM15.5385 7.6923V2.46151H10.3077V0.5H17.5V7.6923H15.5385Z" /> | ||
</svg> | ||
); | ||
|
||
export default ExpandPipelinesIcon; |
Oops, something went wrong.