-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wrapped as webcomponent to prevent the module styles from interfering. Icons are now provided as prop to the CommandBar to allow using the react-ui-components in the UI and some custom implementation in the modules as the ui component is too heavy.
- Loading branch information
Showing
33 changed files
with
552 additions
and
213 deletions.
There are no files selected for viewing
19 changes: 0 additions & 19 deletions
19
.yarn/patches/@neos-project-build-essentials-npm-8.2.3-d9fe30a4f4.patch
This file was deleted.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
.yarn/patches/@neos-project-build-essentials-npm-8.2.6-787ecaf75f.patch
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,17 @@ | ||
diff --git a/src/postcss.config.js b/src/postcss.config.js | ||
index 7d74e8f86c90e5afe0b66c159918e0b6d53fcd96..17b22e59f103325cf7a3804d0c3fbfee7fbc45ff 100644 | ||
--- a/src/postcss.config.js | ||
+++ b/src/postcss.config.js | ||
@@ -4,9 +4,9 @@ const styleVars = styles.generateCssVarsObject(styles.config); | ||
module.exports = { | ||
plugins: [ | ||
require('autoprefixer'), | ||
- require('postcss-css-variables')({ | ||
- variables: Object.assign(styleVars) | ||
- }), | ||
+ // require('postcss-css-variables')({ | ||
+ // variables: Object.assign(styleVars) | ||
+ // }), | ||
require('postcss-import')(), | ||
require('postcss-nested')(), | ||
require('postcss-hexrgba')() |
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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
packages/commandbar/src/components/IconWrapper/IconWrapper.module.css
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,12 @@ | ||
.iconWrap { | ||
width: var(--icon-size); | ||
height: var(--icon-size); | ||
display: inline-block; | ||
text-align: center; | ||
} | ||
|
||
.iconWrap svg { | ||
max-width: 100%; | ||
max-height: 100%; | ||
display: inline-block; | ||
} |
Oops, something went wrong.