Skip to content

Commit

Permalink
Merge pull request #66 from MOV-AI/feature/FP-1589-adjustments-in-ver…
Browse files Browse the repository at this point in the history
…tical-bar

Give more flexibility to VerticalBar
  • Loading branch information
jebesampaio authored Mar 11, 2022
2 parents dacd042 + 07e0a34 commit fa4fa8b
Show file tree
Hide file tree
Showing 10 changed files with 366 additions and 56 deletions.
1 change: 0 additions & 1 deletion .storybook/middleware.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ module.exports = function expressMiddleware(router) {
const proxyConfig = packageJson.proxy || {};

for (let domain in proxyConfig) {
console.log(domain);
router.use(domain, proxy.createProxyMiddleware(proxyConfig[domain]));
}
};
3 changes: 2 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ module.exports = {
node: "current"
}
}
]
],
"@babel/preset-react"
],
plugins: [
"@babel/plugin-proposal-class-properties",
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import ConfirmAlertModal from "./src/Components/Modal/ConfirmAlertModal";
import RobotLogModal from "./src/Components/Modal/RobotLogModal";
import Drawer from "./src/Components/Drawer";
import Collapse from "./src/Components/Collapse";
import VerticalBar from "./src/Components/VerticalBar";
import VerticalBar from "./src/Components/VerticalBar/VerticalBar";
import ContextMenu from "./src/Components/ContextMenu";
import Table from "./src/Components/Table";
import Tabs from "./src/Components/Tabs";
Expand Down
3 changes: 2 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
module.exports = {
verbose: true,
transformIgnorePatterns: ["/node_modules/@babylon/core"]
transformIgnorePatterns: ["/node_modules/@babylon/core"],
testEnvironment: "jsdom"
};
289 changes: 289 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit fa4fa8b

Please sign in to comment.