From a2f1cd183fff7b2135e3b6de7526ece1677d84ae Mon Sep 17 00:00:00 2001 From: typescreep Date: Sat, 16 Aug 2025 19:09:46 +0300 Subject: [PATCH 1/4] jsonpaths everywhere possible --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0223f89..5a390dc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,7 +11,7 @@ "@ant-design/icons": "5.6.0", "@monaco-editor/react": "4.6.0", "@originjs/vite-plugin-federation": "1.3.6", - "@prorobotech/openapi-k8s-toolkit": "^0.0.1-alpha.102", + "@prorobotech/openapi-k8s-toolkit": "^0.0.1-alpha.103", "@readme/openapi-parser": "4.0.0", "@reduxjs/toolkit": "2.2.5", "@tanstack/react-query": "5.62.2", @@ -2802,9 +2802,9 @@ } }, "node_modules/@prorobotech/openapi-k8s-toolkit": { - "version": "0.0.1-alpha.102", - "resolved": "https://registry.npmjs.org/@prorobotech/openapi-k8s-toolkit/-/openapi-k8s-toolkit-0.0.1-alpha.102.tgz", - "integrity": "sha512-2W2DGIGAUTBCvybaMUonT+e/GZyFqi0GNI0lYxZQoR2/YPRHiLqfmS1Jfb1PCVcFsFjnIzojZSpXbD4b8sfang==", + "version": "0.0.1-alpha.103", + "resolved": "https://registry.npmjs.org/@prorobotech/openapi-k8s-toolkit/-/openapi-k8s-toolkit-0.0.1-alpha.103.tgz", + "integrity": "sha512-DhPcEKv5x5c8uel8cC2skyPBgAyRPuosbNbqvcLJc6NiGm4Ypol83PF3q/o4SSan7swtJbD96ezI9FWN/eHX4Q==", "license": "MIT", "dependencies": { "@monaco-editor/react": "4.6.0", diff --git a/package.json b/package.json index fe36d89..35e0863 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "@ant-design/icons": "5.6.0", "@monaco-editor/react": "4.6.0", "@originjs/vite-plugin-federation": "1.3.6", - "@prorobotech/openapi-k8s-toolkit": "0.0.1-alpha.102", + "@prorobotech/openapi-k8s-toolkit": "^0.0.1-alpha.103", "@readme/openapi-parser": "4.0.0", "@reduxjs/toolkit": "2.2.5", "@tanstack/react-query": "5.62.2", From 400c2e92b871482ddeaffeacdf2f33f0fb2a7927 Mon Sep 17 00:00:00 2001 From: typescreep Date: Sat, 16 Aug 2025 19:10:30 +0300 Subject: [PATCH 2/4] linters --- package.json | 2 +- src/components/organisms/Search/Search.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 35e0863..4275fa5 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "@ant-design/icons": "5.6.0", "@monaco-editor/react": "4.6.0", "@originjs/vite-plugin-federation": "1.3.6", - "@prorobotech/openapi-k8s-toolkit": "^0.0.1-alpha.103", + "@prorobotech/openapi-k8s-toolkit": "0.0.1-alpha.103", "@readme/openapi-parser": "4.0.0", "@reduxjs/toolkit": "2.2.5", "@tanstack/react-query": "5.62.2", diff --git a/src/components/organisms/Search/Search.tsx b/src/components/organisms/Search/Search.tsx index 90cd74b..3cacde4 100644 --- a/src/components/organisms/Search/Search.tsx +++ b/src/components/organisms/Search/Search.tsx @@ -1,6 +1,6 @@ /* eslint-disable max-lines-per-function */ import React, { FC } from 'react' -import { theme, Flex, Typography } from 'antd' +import { theme, Typography } from 'antd' import { Styled } from './styled' export const Search: FC = () => { From 162d7469271d51549e9c548bc3f94307552919c8 Mon Sep 17 00:00:00 2001 From: typescreep Date: Sat, 16 Aug 2025 19:11:18 +0300 Subject: [PATCH 3/4] linters --- src/components/organisms/Search/Search.tsx | 92 +++++++++++----------- 1 file changed, 45 insertions(+), 47 deletions(-) diff --git a/src/components/organisms/Search/Search.tsx b/src/components/organisms/Search/Search.tsx index 3cacde4..2d1f21f 100644 --- a/src/components/organisms/Search/Search.tsx +++ b/src/components/organisms/Search/Search.tsx @@ -7,52 +7,50 @@ export const Search: FC = () => { const { token } = theme.useToken() return ( - <> - - - - - - - - - - - - To Be Done - - + + + + + + + + + + + + To Be Done + ) } From 655d04a27c76d80ccc68c4d87276db54ea8ab605 Mon Sep 17 00:00:00 2001 From: typescreep Date: Sat, 16 Aug 2025 19:11:47 +0300 Subject: [PATCH 4/4] linters --- src/components/organisms/Search/styled.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/organisms/Search/styled.ts b/src/components/organisms/Search/styled.ts index dcf22c3..66db554 100644 --- a/src/components/organisms/Search/styled.ts +++ b/src/components/organisms/Search/styled.ts @@ -5,7 +5,7 @@ export const CatContainer = styled.div` justify-content: center; align-items: center; flex-flow: column; - margin: auto auto; + margin: auto; ` export const Styled = {