Skip to content

Commit

Permalink
Update Frontend Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mgubaidullin committed Feb 7, 2024
1 parent 848e4c7 commit 61fe443
Show file tree
Hide file tree
Showing 21 changed files with 506 additions and 829 deletions.
126 changes: 62 additions & 64 deletions karavan-designer/package-lock.json

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

19 changes: 9 additions & 10 deletions karavan-designer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,21 @@
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@patternfly/patternfly": "^5.1.0",
"@patternfly/react-core": "^5.1.1",
"@patternfly/react-table": "^5.1.1",
"@patternfly/react-topology": "^5.1.0",
"@types/js-yaml": "4.0.7",
"@types/node": "18.16.3",
"@types/uuid": "9.0.5",
"axios": "1.6.2",
"dagre": "0.8.5",
"@patternfly/patternfly": "^5.2.0",
"@patternfly/react-core": "^5.2.0",
"@patternfly/react-table": "^5.2.0",
"@patternfly/react-topology": "^5.2.0",
"@types/js-yaml": "4.0.9",
"@types/node": "20.11.16",
"@types/uuid": "9.0.8",
"axios": "1.6.7",
"html-to-image": "1.11.11",
"karavan-core": "file:../karavan-core",
"react": "18.2.0",
"react-dom": "18.2.0",
"rxjs": "7.8.1",
"uuid": "9.0.1",
"zustand": "^4.4.3"
"zustand": "^4.5.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
Expand Down
1 change: 0 additions & 1 deletion karavan-designer/src/designer/editor/CodeEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import Editor from "@monaco-editor/react";
import {shallow} from "zustand/shallow";
import {useDesignerStore, useIntegrationStore} from "../DesignerStore";
import {CamelDefinitionYaml} from "karavan-core/lib/api/CamelDefinitionYaml";
import {EventBus} from "../utils/EventBus";

export function CodeEditor () {

Expand Down
8 changes: 2 additions & 6 deletions karavan-designer/src/designer/kamelet/KameletDesigner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,21 @@
*/
import React from 'react';
import {
Button, Card, CardBody, CardFooter, CardTitle, Divider,
Button,
Drawer,
DrawerContent,
DrawerContentBody,
DrawerPanelContent, Flex, FlexItem, Gallery, GalleryItem,
DrawerPanelContent,
Modal,
PageSection,
} from '@patternfly/react-core';
import '../karavan.css';
import './kamelet.css';
import {RegistryBeanDefinition} from "karavan-core/lib/model/CamelDefinition";
import {CamelUi} from "../utils/CamelUi";
import PlusIcon from "@patternfly/react-icons/dist/esm/icons/plus-icon";
import {CamelDefinitionApiExt} from "karavan-core/lib/api/CamelDefinitionApiExt";
import {CamelUtil} from "karavan-core/lib/api/CamelUtil";
import {useDesignerStore, useIntegrationStore} from "../DesignerStore";
import {shallow} from "zustand/shallow";
import {BeanProperties} from "../property/property/BeanProperties";
import {BeanCard} from "../beans/BeanCard";
import {KameletAnnotationsPanel} from "./KameletAnnotationsPanel";
import {KameletDefinitionsPanel} from "./KameletDefinitionsPanel";
import {KameletProperties} from "./KameletProperties";
Expand Down
1 change: 0 additions & 1 deletion karavan-designer/src/designer/utils/CamelUi.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ import {
} from "../icons/EipIcons";
import React from "react";
import {TopologyUtils} from "karavan-core/lib/api/TopologyUtils";
import {CamelDisplayUtil} from "karavan-core/lib/api/CamelDisplayUtil";

const StepElements: string[] = [
"AggregateDefinition",
Expand Down
4 changes: 2 additions & 2 deletions karavan-designer/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {createRoot} from "react-dom/client";
const container = document.getElementById('root');
const root = createRoot(container!);
root.render(
// <StrictMode>
<StrictMode>
<App />
// </StrictMode>
</StrictMode>
);
2 changes: 1 addition & 1 deletion karavan-designer/src/knowledgebase/eip/EipModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import React from 'react';
import {ActionGroup, Badge, Button, CardHeader, CardTitle, Flex, Modal, Text,} from '@patternfly/react-core';
import '../../designer/karavan.css';
import {Table, TableText, Tbody, Td, Th, Thead, Tr, WrapModifier} from "@patternfly/react-table";
import {Table, Tbody, Td, Th, Thead, Tr} from "@patternfly/react-table";
import {CamelUi} from "../../designer/utils/CamelUi";
import {PropertyMeta} from "karavan-core/lib/model/CamelMetadata";
import {useKnowledgebaseStore} from "../KnowledgebaseStore";
Expand Down
Loading

0 comments on commit 61fe443

Please sign in to comment.