Skip to content

Commit

Permalink
feat(version): release 0.25.8 version
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Dec 21, 2023
1 parent d1fe89a commit 81d58de
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui",
"version": "0.25.7",
"version": "0.25.8",
"private": true,
"scripts": {
"dev": "react-scripts start",
Expand Down
20 changes: 20 additions & 0 deletions public/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3508,9 +3508,17 @@ td {
grid-column: span 9 / span 9;
}

.xl\:hidden {
display: none;
}

.xl\:grid-cols-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}

.xl\:flex-col {
flex-direction: column;
}
}

@media (min-width: 1536px) {
Expand Down Expand Up @@ -3538,7 +3546,19 @@ td {
display: inline;
}

.\32xl\:flex {
display: flex;
}

.\32xl\:grid-cols-9 {
grid-template-columns: repeat(9, minmax(0, 1fr));
}

.\32xl\:flex-row {
flex-direction: row;
}

.\32xl\:flex-col-reverse {
flex-direction: column-reverse;
}
}
6 changes: 1 addition & 5 deletions src/components/Connections/Connections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,12 @@ import StateCell from "../TableInformationCells/StateCell";
import { envApplication } from "../../helpers/envProvider";
import { useKeycloak } from "@react-keycloak/web";
import useRobot from "../../hooks/useRobot";
import { ReactElement, useEffect } from "react";
import { ReactElement } from "react";

export default function Connections(): ReactElement {
const { responseRobot, connectionsReducer } = useRobot();
const { keycloak } = useKeycloak();

useEffect(() => {
console.log("connectionsReducer", connectionsReducer);
}, [connectionsReducer]);

return (
<div className="flex gap-4">
{!envApplication && (
Expand Down
2 changes: 1 addition & 1 deletion src/components/RosTopicListWidget/RosTopicListWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function RosTopicListWidget({
return (
<div
key={key}
className="border-light-100 flex justify-between border-y py-1.5 text-xs font-medium"
className="flex justify-between border-y border-light-100 py-1.5 text-xs font-medium"
>
<div className="text-light-600">{topic.name}</div>
<div className="text-light-400">{topic.type}</div>
Expand Down
1 change: 0 additions & 1 deletion src/contexts/RobotContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,6 @@ export default ({ children }: any) => {
});

return () => {
ros?.close();
rosClient?.close();
};
// eslint-disable-next-line react-hooks/exhaustive-deps
Expand Down
16 changes: 8 additions & 8 deletions src/layouts/EnvironmentPageLayout/EnvironmentPageLayout.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
import { Fragment, ReactElement } from "react";
import DevelopmentSuite from "../../pages/EnvironmentPage/DevelopmentSuite/DevelopmentSuite";
import EnvironmentHeader from "../../components/EnvironmentHeader/EnvironmentHeader";
import Visualization from "../../pages/EnvironmentPage/Visualization/Visualization";
import Teleoperation from "../../pages/EnvironmentPage/Teleoperation/Teleoperation";
import RemoteDesktop from "../../pages/EnvironmentPage/RemoteDesktop/RemoteDesktop";
import CodeEditor from "../../pages/EnvironmentPage/CodeEditor/CodeEditor";
import Overview from "../../pages/EnvironmentPage/Overview/Overview";
import HiddenFrame from "../../components/HiddenFrame/HiddenFrame";
import FileManager from "../../components/FileManager/FileManager";
import { envApplication } from "../../helpers/envProvider";
import Overview from "../../pages/EnvironmentPage/Overview/Overview";
import MissionContext from "../../contexts/MissionContext";
import BarcodeContext from "../../contexts/BarcodeContext";
import TaskManagementLayout from "../TaskManagementLayout";
import Visualization from "../../pages/EnvironmentPage/Visualization/Visualization";
import Teleoperation from "../../pages/EnvironmentPage/Teleoperation/Teleoperation";
import DevelopmentSuite from "../../pages/EnvironmentPage/DevelopmentSuite/DevelopmentSuite";
import RemoteDesktop from "../../pages/EnvironmentPage/RemoteDesktop/RemoteDesktop";
import FileManager from "../../components/FileManager/FileManager";
import CodeEditor from "../../pages/EnvironmentPage/CodeEditor/CodeEditor";
import { useAppSelector } from "../../hooks/redux";
import { Fragment, ReactElement } from "react";
import useRobot from "../../hooks/useRobot";

export default function EnvironmentPageLayout(): ReactElement {
Expand Down

0 comments on commit 81d58de

Please sign in to comment.