Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ui-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
task:
- name: Cypress run
command: |
sudo apt-get -y install protobuf-compiler
sudo apt-get update && sudo apt-get -y install protobuf-compiler
CI=false yarn --cwd quickwit-ui build
RUSTFLAGS="--cfg tokio_unstable" cargo build --features=postgres
mkdir qwdata
Expand Down
2 changes: 0 additions & 2 deletions quickwit/quickwit-ui/mocks/monacoMock.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import * as React from "react";

// Mock MonocoEditor as the current jest setup does not work when Monaco JS files
// are loaded.
export const Editor = (props) => {
Expand Down
2 changes: 0 additions & 2 deletions quickwit/quickwit-ui/mocks/swaggerUIMock.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import * as React from "react";

// Mock SwaggerUI as the current jest setup does not work when Monaco JS files
// are loaded.
export default function SwaggerUI(props) {
Expand Down
42 changes: 20 additions & 22 deletions quickwit/quickwit-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,52 +5,50 @@
"private": true,
"packageManager": "yarn@1.22.22",
"dependencies": {
"@babel/core": "7.28.5",
"@babel/core": "7.29.0",
"@babel/runtime": "7.28.6",
"@biomejs/biome": "2.3.5",
"@dr.pogodin/babel-plugin-transform-assets": "1.2.5",
"@biomejs/biome": "2.4.4",
"@dr.pogodin/babel-plugin-transform-assets": "1.2.6",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@monaco-editor/react": "4.7.0",
"@mui/icons-material": "7.3.5",
"@mui/lab": "7.0.1-beta.19",
"@mui/material": "7.3.5",
"@mui/system": "7.3.5",
"@mui/x-charts": "8.18.0",
"@mui/x-date-pickers": "8.18.0",
"@mui/icons-material": "7.3.8",
"@mui/lab": "7.0.1-beta.22",
"@mui/material": "7.3.8",
"@mui/system": "7.3.8",
"@mui/x-charts": "8.27.0",
"@mui/x-date-pickers": "8.27.2",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.0",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/jest": "30.0.0",
"@types/node": "24.10.9",
"@types/react": "19.2.6",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/swagger-ui-react": "5.18.0",
"babel-jest": "30.2.0",
"babel-preset-react-app": "10.1.0",
"cypress": "13.3.2",
"dayjs": "1.11.7",
"dayjs": "1.11.19",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"monaco-editor": "0.54.0",
"react": "19.2.0",
"monaco-editor": "0.55.1",
"react": "19.2.4",
"react-app-polyfill": "3.0.0",
"react-dom": "19.2.0",
"react-monaco-editor": "0.59.0",
"react-dom": "19.2.4",
"react-number-format": "5.4.4",
"react-router": "7.12.0",
"react-router": "7.13.1",
"styled-components": "6.1.19",
"styled-icons": "10.47.1",
"swagger-ui-react": "5.30.2",
"swagger-ui-react": "5.32.0",
"typescript": "5.9.3",
"vite": "7.2.2",
"web-vitals": "2.1.4"
"vite": "7.3.1"
},
"resolutions": {
"@types/react": "19.2.6",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"dompurify": "3.2.4",
"dompurify": "3.3.1",
"glob": "11.1.0"
},
"scripts": {
Expand Down
6 changes: 0 additions & 6 deletions quickwit/quickwit-ui/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import React from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
import { BrowserRouter } from "react-router";
import reportWebVitals from "./reportWebVitals";
import App from "./views/App";

const root = createRoot(document.getElementById("root")!);
Expand All @@ -27,8 +26,3 @@ root.render(
</BrowserRouter>
</React.StrictMode>,
);

// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();
29 changes: 0 additions & 29 deletions quickwit/quickwit-ui/src/reportWebVitals.ts

This file was deleted.

Loading
Loading