Skip to content
Open
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 .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VITE_APP_VERSION=v4.0.0
VITE_APP_VERSION=v4.1.0
GENERATE_SOURCEMAP=false

PUBLIC_URL = https://codedthemes.com/demos/admin-templates/datta-able/react/free/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Get started with a sweet set of features, including:

- Bootstrap 5
- React Bootstrap
- React
- React 19.2
- npm/yarn package installer
- Vite

Expand Down
14 changes: 2 additions & 12 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -53,21 +53,11 @@ export default [
'jsx-a11y/label-has-associated-control': 'off',
'jsx-a11y/no-autofocus': 'off',

'prettier/prettier': [
'warn',
{
bracketSpacing: true,
printWidth: 140,
singleQuote: true,
trailingComma: 'none',
tabWidth: 2,
useTabs: false
}
]
'prettier/prettier': 'warn',
}
},
{
ignores: ['node_modules/**'],
files: ['src/**/*.{js,jsx}']
}
];
];
59 changes: 29 additions & 30 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,34 +1,32 @@
<!doctype html>
<html lang="en">
<head>
<!-- Title -->
<title>Welcome | Datta Able Free React Hooks + Admin Template</title>

<!-- Meta -->
<meta charset="utf-8" />
<link rel="icon" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimal-ui" />
<meta name="theme-color" content="#000000" />
<meta name="author" content="Codedthemes" />
<meta
name="description"
content="Datta Able is a premium React admin dashboard template built with React, Bootstrap 5, React Hooks, and Vite. Offers a wide range of pre-built components to streamline your development workflow."
/>
<meta
name="keywords"
content="Admin templates, Bootstrap 5 Admin templates, React, bootstrap 5, Dashboard, Dashboard Templates, sass admin templates, html admin templates, Responsive, Bootstrap Admin templates free download, React Admin templates free download,premium Bootstrap Admin templates,premium React Admin templates download"
/>
<title>Datta Able React Admin Dashboard</title>
<head>
<!-- Title -->
<title>Welcome | Datta Able Free React Hooks + Admin Template</title>

<!-- this is to resolve issue in old safari browser in tablet -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/ResizeObserver.min.js"></script>
<!-- Buy Now Button -->
<script defer src="https://fomo.codedthemes.com/pixel/yRevReYmxkh1j4z7Hc4tgbOKeXSu5Bm1"></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
<!-- Meta -->
<meta charset="utf-8" />
<link rel="icon" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimal-ui" />
<meta name="theme-color" content="#000000" />
<meta name="author" content="Codedthemes" />
<meta name="description"
content="Datta Able is a premium React admin dashboard template built with React 19, Bootstrap 5, React Hooks, and Vite. Offers a wide range of pre-built components to streamline your development workflow." />
<meta name="keywords"
content="Admin templates, Bootstrap 5 Admin templates, React, bootstrap 5, Dashboard, Dashboard Templates, sass admin templates, html admin templates, Responsive, Bootstrap Admin templates free download, React Admin templates free download,premium Bootstrap Admin templates,premium React Admin templates download" />
<title>Datta Able React Admin Dashboard</title>

<!-- this is to resolve issue in old safari browser in tablet -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/ResizeObserver.min.js"></script>
<!-- Buy Now Button script -->
<script defer src="https://fomo.codedthemes.com/pixel/yRevReYmxkh1j4z7Hc4tgbOKeXSu5Bm1"></script>
</head>

<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.

Expand All @@ -38,6 +36,7 @@
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
<script type="module" src="/src/index.jsx"></script>
</body>
</html>
<script type="module" src="/src/index.jsx"></script>
</body>

</html>
6 changes: 4 additions & 2 deletions jsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true
},
"include": ["vite.config.mjs"]
}
"include": [
"vite.config.mjs"
]
}
28 changes: 21 additions & 7 deletions jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
Expand All @@ -11,7 +15,6 @@
"module": "ESNext",
"resolveJsonModule": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",

/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
Expand All @@ -20,15 +23,26 @@
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": "src",

/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"exclude": ["node_modules", "vite.config.mjs"], // Exclude vite.config.mjs
"include": ["src", "**/*.js", "**/*.jsx", "src/**/*"],
"references": [{ "path": "./jsconfig.app.json" }]
}
"exclude": [
"node_modules",
"vite.config.mjs"
], // Exclude vite.config.mjs
"include": [
"src",
"**/*.js",
"**/*.jsx",
"src/**/*"
],
"references": [
{
"path": "./jsconfig.app.json"
}
]
}
56 changes: 28 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "datta-able-free-react-admin-templete",
"version": "4.0.0",
"version": "4.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build",
Expand All @@ -11,40 +12,39 @@
"preview": "vite preview"
},
"dependencies": {
"@fontsource/open-sans": "5.2.5",
"@react-google-maps/api": "2.20.5",
"apexcharts": "4.5.0",
"axios": "1.7.9",
"bootstrap": "5.3.3",
"chance": "1.1.12",
"@fontsource/open-sans": "5.2.7",
"@react-google-maps/api": "2.20.7",
"apexcharts": "5.3.5",
"bootstrap": "5.3.8",
"chance": "1.1.13",
"formik": "2.4.6",
"jsvectormap": "1.6.0",
"react": "18.2.0",
"react-apexcharts": "1.7.0",
"react-bootstrap": "2.10.6",
"jsvectormap": "1.7.0",
"react": "19.2.0",
"react-apexcharts": "1.8.0",
"react-bootstrap": "2.10.10",
"react-device-detect": "2.2.3",
"react-dom": "18.2.0",
"react-hook-form": "7.54.2",
"react-router-dom": "7.0.2",
"simplebar-react": "3.3.0",
"swr": "2.3.2",
"vite": "6.0.2",
"react-dom": "19.2.0",
"react-hook-form": "7.65.0",
"react-router-dom": "7.9.5",
"simplebar-react": "3.3.2",
"swr": "2.3.6",
"vite": "7.1.12",
"vite-jsconfig-paths": "2.0.1",
"yup": "1.6.1"
"yup": "1.7.1"
},
"devDependencies": {
"@eslint/compat": "1.2.3",
"@eslint/compat": "1.4.1",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.15.0",
"@vitejs/plugin-react": "4.3.4",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"@eslint/js": "9.38.0",
"@vitejs/plugin-react": "5.1.0",
"eslint": "9.38.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.0.0",
"prettier": "3.4.1",
"sass": "1.77.6"
"eslint-plugin-react-hooks": "7.0.1",
"prettier": "3.6.2",
"sass": "1.93.2"
},
"packageManager": "yarn@4.9.1"
"packageManager": "yarn@4.10.3"
}
Binary file removed src/assets/images/user/avatar-10.png
Binary file not shown.
Binary file removed src/assets/images/user/avatar-6.png
Binary file not shown.
Binary file removed src/assets/images/user/avatar-7.png
Binary file not shown.
Binary file removed src/assets/images/user/avatar-8.png
Binary file not shown.
Binary file removed src/assets/images/user/avatar-9.png
Binary file not shown.
Loading