Skip to content

Commit 2ff4881

Browse files
0000: Sample Changes Committed
1 parent da3469d commit 2ff4881

22 files changed

Lines changed: 581 additions & 0 deletions

querybuilder-app/.gitignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
12+
13+
# testing
14+
/coverage
15+
16+
# next.js
17+
/.next/
18+
/out/
19+
20+
# production
21+
/build
22+
23+
# misc
24+
.DS_Store
25+
*.pem
26+
27+
# debug
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
.pnpm-debug.log*
32+
33+
# env files (can opt-in for committing if needed)
34+
.env*
35+
36+
# vercel
37+
.vercel
38+
39+
# typescript
40+
*.tsbuildinfo
41+
next-env.d.ts

querybuilder-app/next.config.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import type { NextConfig } from "next";
2+
3+
const nextConfig: NextConfig = {
4+
/* config options here */
5+
reactCompiler: true,
6+
};
7+
8+
export default nextConfig;

querybuilder-app/package.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "querybuilder-app",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"dev": "next dev",
7+
"build": "next build",
8+
"start": "next build && next start"
9+
},
10+
"dependencies": {
11+
"@syncfusion/ej2-react-buttons": "*",
12+
"@syncfusion/ej2-react-dropdowns": "*",
13+
"@syncfusion/ej2-react-grids": "*",
14+
"@syncfusion/ej2-react-inputs": "*",
15+
"@syncfusion/ej2-react-querybuilder": "*",
16+
"@syncfusion/ej2-react-splitbuttons": "*",
17+
"next": "16.0.3",
18+
"react": "19.2.0",
19+
"react-dom": "19.2.0"
20+
},
21+
"devDependencies": {
22+
"@tailwindcss/postcss": "^4",
23+
"@types/node": "^20",
24+
"@types/react": "^19",
25+
"@types/react-dom": "^19",
26+
"babel-plugin-react-compiler": "1.0.0",
27+
"tailwindcss": "^4",
28+
"typescript": "^5"
29+
}
30+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
const config = {
2+
plugins: {
3+
"@tailwindcss/postcss": {},
4+
},
5+
};
6+
7+
export default config;

querybuilder-app/public/file.svg

Lines changed: 1 addition & 0 deletions
Loading

querybuilder-app/public/globe.svg

Lines changed: 1 addition & 0 deletions
Loading

querybuilder-app/public/next.svg

Lines changed: 1 addition & 0 deletions
Loading

querybuilder-app/public/vercel.svg

Lines changed: 1 addition & 0 deletions
Loading

querybuilder-app/public/window.svg

Lines changed: 1 addition & 0 deletions
Loading

querybuilder-app/src/.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
registry=https://registry.npmjs.org/
2+
@syncfusion:registry=https://nexus.syncfusioninternal.com/repository/ej2-development/

0 commit comments

Comments
 (0)