Skip to content
Merged
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
8,114 changes: 2,669 additions & 5,445 deletions React/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions React/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"preview": "vite preview"
},
"dependencies": {
"devextreme": "25.1.3",
"devextreme": "25.2.4",
"devextreme-aspnet-data-nojquery": "^5.1.0",
"devextreme-react": "25.1.3",
"devextreme-react": "25.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
41 changes: 38 additions & 3 deletions React/src/App.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,39 @@
.main {
margin: 50px;
width: 90vw;
.dx-viewport {
font-family: -apple-system, BlinkMacSystemFont, "avenir next", avenir,
"segoe ui", "helvetica neue", "adwaita sans", cantarell, ubuntu, roboto,
noto, helvetica, arial, sans-serif;
}

.options {
height: 180px;
width: 25vw;
padding: 20px;
background-color: rgb(191 191 191 / 15%);
position: absolute;
right: 20px;
top: 40px;
bottom: 0;
}

.caption {
font-weight: 500;
font-size: 18px;
}

.option {
margin-top: 10px;
}

.demo-container {
margin: 40px 20px;
}

.row {
display: flex;
align-items: center;
gap: 12px;
}

.row p {
margin: 0;
}
4 changes: 2 additions & 2 deletions React/src/App.test.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { render, screen } from '@testing-library/react';
import App from './App';

test('renders learn react link', () => {
test('DropDownBox with search and embedded DataGrid', () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
const linkElement = screen.getByText(/Search Timeout/i);
expect(linkElement).toBeInTheDocument();
});
Loading
Loading