adminator-admin-dashboard 2.8.0 → 2.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +66 -0
- package/CLAUDE.md +5 -5
- package/README.md +32 -21
- package/dist/main.js +12 -10
- package/dist/main.js.map +1 -1
- package/package.json +8 -4
- package/src/assets/scripts/app 2.js +645 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,71 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.8.1] - 2025-09-03
|
|
4
|
+
|
|
5
|
+
### Latest Dependency Updates & Security Enhancements
|
|
6
|
+
|
|
7
|
+
This release brings all dependencies up to their latest stable versions, focusing on Bootstrap 5.3.8 upgrade, enhanced security, and improved development tooling for optimal performance and maintainability.
|
|
8
|
+
|
|
9
|
+
### Key Improvements
|
|
10
|
+
|
|
11
|
+
#### Framework & Core Updates
|
|
12
|
+
- **Bootstrap 5.3.8** - Updated from 5.3.7 with latest bug fixes and improvements
|
|
13
|
+
- **Webpack 5.101.3** - Latest Webpack with enhanced performance optimizations
|
|
14
|
+
- **ESLint 9.34.0** - Updated to latest ESLint with modern flat configuration support
|
|
15
|
+
- **Sass 1.92.0** - Latest Sass compiler with improved performance and features
|
|
16
|
+
- **Day.js 1.11.18** - Updated lightweight date manipulation library
|
|
17
|
+
|
|
18
|
+
#### Development & Build Tools
|
|
19
|
+
- **TypeScript ESLint Support** - Added TypeScript 5.9.2 and @typescript-eslint packages for enhanced code quality
|
|
20
|
+
- **Modern ESLint Configuration** - Created comprehensive tsconfig.json for TypeScript ESLint integration
|
|
21
|
+
- **Zero JavaScript Linting Errors** - Fixed all ESLint issues in webpack configuration files
|
|
22
|
+
- **Enhanced Development Experience** - Improved hot module replacement and build performance
|
|
23
|
+
|
|
24
|
+
#### Security & Quality
|
|
25
|
+
- **Zero Security Vulnerabilities** - All dependencies updated with comprehensive security audit
|
|
26
|
+
- **jsvectormap 1.7.0** - Updated vector map library with latest features and improvements
|
|
27
|
+
- **Build System Optimization** - Improved webpack configuration with proper trailing commas and code style
|
|
28
|
+
- **Development Server Enhancements** - Stable development server with hot reload functionality
|
|
29
|
+
|
|
30
|
+
### Technical Details
|
|
31
|
+
|
|
32
|
+
**Major Dependencies Updated:**
|
|
33
|
+
- bootstrap: 5.3.7 → 5.3.8
|
|
34
|
+
- webpack: 5.101.0 → 5.101.3
|
|
35
|
+
- eslint: 9.33.0 → 9.34.0
|
|
36
|
+
- sass: 1.90.0 → 1.92.0
|
|
37
|
+
- dayjs: 1.11.13 → 1.11.18
|
|
38
|
+
- jsvectormap: 1.6.0 → 1.7.0
|
|
39
|
+
- @eslint/js: 9.33.0 → 9.34.0
|
|
40
|
+
|
|
41
|
+
**Build Tools Updated:**
|
|
42
|
+
- @babel/core: 7.28.0 → 7.28.3
|
|
43
|
+
- @babel/runtime: 7.28.2 → 7.28.3
|
|
44
|
+
- copy-webpack-plugin: 13.0.0 → 13.0.1
|
|
45
|
+
- html-webpack-plugin: 5.6.3 → 5.6.4
|
|
46
|
+
- mini-css-extract-plugin: 2.9.3 → 2.9.4
|
|
47
|
+
- postcss-loader: 8.1.1 → 8.2.0
|
|
48
|
+
- postcss-preset-env: 10.2.4 → 10.3.1
|
|
49
|
+
|
|
50
|
+
**New Additions:**
|
|
51
|
+
- @typescript-eslint/parser: 8.42.0 - TypeScript ESLint parser support
|
|
52
|
+
- @typescript-eslint/eslint-plugin: 8.42.0 - TypeScript ESLint rules
|
|
53
|
+
- typescript: 5.9.2 - TypeScript compiler for enhanced development
|
|
54
|
+
|
|
55
|
+
### Build Status
|
|
56
|
+
- Zero build errors
|
|
57
|
+
- Zero build warnings
|
|
58
|
+
- Zero security vulnerabilities
|
|
59
|
+
- JavaScript linting: 0 errors, 0 warnings
|
|
60
|
+
- Development server: Running successfully
|
|
61
|
+
- Hot module replacement: Functional
|
|
62
|
+
|
|
63
|
+
### Compatibility
|
|
64
|
+
- Node.js 14+ (tested with latest versions)
|
|
65
|
+
- All modern browsers supported
|
|
66
|
+
- Mobile-responsive functionality maintained
|
|
67
|
+
- Dark mode functionality preserved
|
|
68
|
+
|
|
3
69
|
## [2.8.0] - 2025-08-11
|
|
4
70
|
|
|
5
71
|
### Dependency Modernization & Security Updates
|
package/CLAUDE.md
CHANGED
|
@@ -23,9 +23,9 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
|
|
|
23
23
|
## Project Architecture
|
|
24
24
|
|
|
25
25
|
### Technology Stack
|
|
26
|
-
- **Build System**: Webpack 5.
|
|
26
|
+
- **Build System**: Webpack 5.101.3 with modern configuration
|
|
27
27
|
- **JavaScript**: ES6+ with Babel transpilation, ESLint 9.x flat config
|
|
28
|
-
- **CSS**: Sass/SCSS with PostCSS processing, Bootstrap 5.3.
|
|
28
|
+
- **CSS**: Sass/SCSS with PostCSS processing, Bootstrap 5.3.8
|
|
29
29
|
- **Frontend Framework**: **100% jQuery-free** vanilla JavaScript with modern class-based architecture
|
|
30
30
|
- **Theme System**: CSS variables-based dark/light mode system
|
|
31
31
|
|
|
@@ -137,10 +137,10 @@ src/
|
|
|
137
137
|
5. Preview production build with `npm run preview`
|
|
138
138
|
|
|
139
139
|
### Key Dependencies
|
|
140
|
-
- **Bootstrap 5.3.
|
|
140
|
+
- **Bootstrap 5.3.8**: UI framework and CSS components (JS components replaced with vanilla alternatives)
|
|
141
141
|
- **Chart.js 4.5.0**: Interactive charts with theme support (replaces jQuery Sparkline)
|
|
142
142
|
- **FullCalendar 6.1.17**: Calendar component with dark mode
|
|
143
|
-
- **Day.js 1.11.
|
|
143
|
+
- **Day.js 1.11.18**: Lightweight date manipulation
|
|
144
144
|
- **Perfect Scrollbar 1.5.6**: Custom scrollbar implementation
|
|
145
145
|
- **Masonry Layout 4.2.2**: Grid layouts (vanilla JS compatible)
|
|
146
146
|
|
|
@@ -151,7 +151,7 @@ src/
|
|
|
151
151
|
- ❌ `bootstrap-datepicker` (1.10.0) - Replaced with HTML5 date inputs + vanilla JS
|
|
152
152
|
- ❌ `datatables` (1.10.18) - Replaced with vanilla JS table component
|
|
153
153
|
- ❌ `easy-pie-chart` (2.1.7) - Replaced with vanilla JS SVG pie charts
|
|
154
|
-
- ❌ `jvectormap` (2.0.4) - Replaced with vanilla JS SVG world map
|
|
154
|
+
- ❌ `jvectormap` (2.0.4) - Replaced with jsvectormap 1.7.0 vanilla JS SVG world map
|
|
155
155
|
|
|
156
156
|
### Modern Vanilla JS Implementations
|
|
157
157
|
- **Sparkline Charts**: Chart.js-based mini charts with theme support
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# Adminator Bootstrap 5 Admin Template v2.8.
|
|
1
|
+
# Adminator Bootstrap 5 Admin Template v2.8.1
|
|
2
2
|
|
|
3
3
|
**Adminator** is a responsive Bootstrap 5 Admin Template built with modern development tools. It provides you with a collection of ready to use code snippets and utilities, custom pages, a collection of applications and some useful widgets.
|
|
4
4
|
|
|
5
|
-
**Latest Update (v2.8.
|
|
5
|
+
**Latest Update (v2.8.1)**: Latest dependency updates including Bootstrap 5.3.8, comprehensive security updates, and modern tooling improvements ensuring optimal performance and maintainability.
|
|
6
6
|
|
|
7
7
|
**Looking for more premium admin templates?** Visit **[DashboardPack.com](https://dashboardpack.com/)** for a curated collection of high-quality admin dashboard templates for various frameworks and technologies.
|
|
8
8
|
|
|
@@ -25,7 +25,7 @@ Preview of this awesome admin template available here: https://colorlib.com/poly
|
|
|
25
25
|
### Demo Site: [Here](https://colorlib.com/polygon/adminator/index.html)
|
|
26
26
|
|
|
27
27
|
## TOC
|
|
28
|
-
- [What's New in v2.
|
|
28
|
+
- [What's New in v2.8.1](#whats-new-in-v281)
|
|
29
29
|
- [Getting Started](#getting-started)
|
|
30
30
|
- [Prerequisites](#prerequisites)
|
|
31
31
|
- [Installing & Local Development](#installing--local-development)
|
|
@@ -37,7 +37,17 @@ Preview of this awesome admin template available here: https://colorlib.com/poly
|
|
|
37
37
|
- [Authors](#authors)
|
|
38
38
|
- [License](#license)
|
|
39
39
|
|
|
40
|
-
## What's New in v2.8.
|
|
40
|
+
## What's New in v2.8.1
|
|
41
|
+
|
|
42
|
+
### Latest Dependency Updates & Security Enhancements
|
|
43
|
+
- **Bootstrap 5.3.8**: Updated to latest Bootstrap version with bug fixes and improvements
|
|
44
|
+
- **Comprehensive Dependency Updates**: All dependencies updated to their latest stable versions
|
|
45
|
+
- **Enhanced ESLint Configuration**: Modern TypeScript ESLint support with zero linting errors
|
|
46
|
+
- **Security Updates**: All dependencies updated with zero vulnerabilities
|
|
47
|
+
- **Improved Build Performance**: Latest Webpack 5.101.3 with optimized build pipeline
|
|
48
|
+
- **Modern Tooling**: Updated Sass 1.92.0, Day.js 1.11.18, and enhanced development tools
|
|
49
|
+
|
|
50
|
+
### Previous Updates (v2.8.0)
|
|
41
51
|
|
|
42
52
|
### Dependency Modernization & Build System Enhancements
|
|
43
53
|
- **Webpack 5 Native Asset Modules**: Replaced deprecated file-loader with modern Webpack 5 asset handling
|
|
@@ -120,7 +130,7 @@ yarn add adminator-admin-dashboard
|
|
|
120
130
|
|
|
121
131
|
**Package Information:**
|
|
122
132
|
- **Package Name**: `adminator-admin-dashboard`
|
|
123
|
-
- **Version**: 2.
|
|
133
|
+
- **Version**: 2.8.1 (Latest dependencies)
|
|
124
134
|
- **Size**: 5.7 MB (includes source + built assets)
|
|
125
135
|
- **Registry**: https://www.npmjs.com/package/adminator-admin-dashboard
|
|
126
136
|
|
|
@@ -367,26 +377,26 @@ The built files will be available in the `dist/` directory.
|
|
|
367
377
|
## Built With
|
|
368
378
|
|
|
369
379
|
### Core Framework & Build Tools
|
|
370
|
-
- [Bootstrap 5.3.
|
|
371
|
-
- [Webpack 5.
|
|
372
|
-
- [Babel 7.
|
|
373
|
-
- [Sass 1.
|
|
380
|
+
- [Bootstrap 5.3.8](http://getbootstrap.com/) - Modern CSS framework
|
|
381
|
+
- [Webpack 5.101.3](https://webpack.js.org/) - Module bundler and build tool
|
|
382
|
+
- [Babel 7.28.x](https://babeljs.io/) - JavaScript transpiler
|
|
383
|
+
- [Sass 1.92.0](http://sass-lang.com/) - CSS preprocessor
|
|
374
384
|
- [PostCSS 8.5.6](http://postcss.org/) - CSS transformations
|
|
375
|
-
- [ESLint 9.
|
|
376
|
-
- [Stylelint 16.
|
|
385
|
+
- [ESLint 9.34.0](https://eslint.org/) - JavaScript linting (flat config)
|
|
386
|
+
- [Stylelint 16.23.1](https://stylelint.io/) - CSS/SCSS linting
|
|
377
387
|
|
|
378
388
|
### UI Components & Charts
|
|
379
389
|
- [Chart.js 4.5.0](http://www.chartjs.org/) - Modern charting library
|
|
380
|
-
- [FullCalendar 6.1.
|
|
390
|
+
- [FullCalendar 6.1.19](https://fullcalendar.io/) - Interactive calendar
|
|
381
391
|
- [DataTables](https://datatables.net/) - Advanced table functionality
|
|
382
392
|
- [Easy Pie Chart](http://rendro.github.io/easy-pie-chart/) - Animated pie charts
|
|
383
393
|
- [Perfect Scrollbar 1.5.6](https://github.com/utatti/perfect-scrollbar) - Custom scrollbars
|
|
384
394
|
|
|
385
395
|
### JavaScript Libraries
|
|
386
396
|
- **[Chart.js 4.5.0](http://www.chartjs.org/)** - Modern charting library (replaces jQuery Sparkline)
|
|
387
|
-
- **[jsvectormap 1.
|
|
397
|
+
- **[jsvectormap 1.7.0](https://github.com/themustafaomar/jsvectormap)** - Interactive vector maps (replaces jVectorMap)
|
|
388
398
|
- [Lodash 4.17.21](https://lodash.com/) - Utility library
|
|
389
|
-
- [Day.js 1.11.
|
|
399
|
+
- [Day.js 1.11.18](https://day.js.org/) - Modern 2KB date library (replaces Moment.js)
|
|
390
400
|
- [Masonry 4.2.2](https://masonry.desandro.com/) - Grid layouts
|
|
391
401
|
- **100% Vanilla JavaScript** - No jQuery dependency
|
|
392
402
|
|
|
@@ -406,15 +416,16 @@ See [CHANGELOG.md](CHANGELOG.md) for detailed version history.
|
|
|
406
416
|
|
|
407
417
|
📚 **[Online Documentation](https://puikinsh.github.io/Adminator-admin-dashboard/)** includes comprehensive guides for all features.
|
|
408
418
|
|
|
409
|
-
#### Latest Release: V 2.8.
|
|
410
|
-
- **
|
|
411
|
-
- **Dependency
|
|
412
|
-
- **
|
|
413
|
-
- **Security Updates** -
|
|
414
|
-
- **
|
|
415
|
-
- **
|
|
419
|
+
#### Latest Release: V 2.8.1 (2025-09-03)
|
|
420
|
+
- **Bootstrap 5.3.8** - Updated to latest Bootstrap version with bug fixes and improvements
|
|
421
|
+
- **Comprehensive Dependency Updates** - All dependencies updated to their latest stable versions
|
|
422
|
+
- **Enhanced ESLint Configuration** - Modern TypeScript ESLint support with zero linting errors
|
|
423
|
+
- **Security Updates** - All dependencies updated with zero vulnerabilities
|
|
424
|
+
- **Improved Build Performance** - Latest Webpack 5.101.3 with optimized build pipeline
|
|
425
|
+
- **Modern Tooling** - Updated Sass 1.92.0, Day.js 1.11.18, and enhanced development tools
|
|
416
426
|
|
|
417
427
|
#### Previous Releases
|
|
428
|
+
- **V 2.8.0**: Webpack 5 asset modules and dependency modernization
|
|
418
429
|
- **V 2.7.1**: 100% jQuery-Free with modern vanilla JavaScript
|
|
419
430
|
- **V 2.6.0**: Complete Dark Mode System with theme switching
|
|
420
431
|
- **V 2.5.0**: Updated all dependencies, ESLint 9.x, zero vulnerabilities
|