adminator-admin-dashboard 2.8.0 → 2.9.0
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 +143 -0
- package/CLAUDE.md +5 -5
- package/README.md +46 -30
- package/dist/main.js +33 -23
- package/dist/main.js.map +1 -1
- package/package.json +30 -25
- package/src/assets/scripts/app 2.js +645 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,148 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.9.0] - 2025-12-02
|
|
4
|
+
|
|
5
|
+
### Comprehensive Dependency Updates & Linting Modernization
|
|
6
|
+
|
|
7
|
+
This release brings all dependencies to their absolute latest versions with enhanced SCSS linting support and zero security vulnerabilities.
|
|
8
|
+
|
|
9
|
+
### Key Improvements
|
|
10
|
+
|
|
11
|
+
#### All Dependencies Updated to Latest
|
|
12
|
+
- **Webpack 5.103.0** - Latest Webpack with performance improvements
|
|
13
|
+
- **ESLint 9.39.1** - Latest ESLint with modern flat configuration
|
|
14
|
+
- **Sass 1.94.2** - Latest Sass compiler with improved features
|
|
15
|
+
- **TypeScript 5.9.3** - Latest TypeScript compiler
|
|
16
|
+
- **Stylelint 16.26.1** - Latest SCSS/CSS linting
|
|
17
|
+
- **Chart.js 4.5.1** - Latest charting library with bug fixes
|
|
18
|
+
- **Day.js 1.11.19** - Latest date manipulation library
|
|
19
|
+
|
|
20
|
+
#### Enhanced SCSS Linting
|
|
21
|
+
- **Added stylelint-config-standard-scss** - Proper SCSS-specific linting support
|
|
22
|
+
- **Updated .stylelintrc.json** - Configured for SCSS syntax compatibility
|
|
23
|
+
- **Zero Linting Errors** - Both JavaScript and SCSS pass all checks
|
|
24
|
+
|
|
25
|
+
#### Security & Quality
|
|
26
|
+
- **Zero Security Vulnerabilities** - All dependencies audited and secure
|
|
27
|
+
- **Fixed node-forge vulnerabilities** - Updated to v1.3.2 (ASN.1 fixes)
|
|
28
|
+
- **Fixed js-yaml vulnerabilities** - Updated to v4.1.1/v3.14.2 (prototype pollution fixes)
|
|
29
|
+
- **Clean Build Output** - No errors or warnings in production build
|
|
30
|
+
|
|
31
|
+
### Technical Details
|
|
32
|
+
|
|
33
|
+
**Major Dependencies Updated:**
|
|
34
|
+
- @babel/core: 7.28.3 → 7.28.5
|
|
35
|
+
- @babel/eslint-parser: 7.28.0 → 7.28.5
|
|
36
|
+
- @babel/preset-env: 7.28.3 → 7.28.5
|
|
37
|
+
- @babel/runtime: 7.28.3 → 7.28.4
|
|
38
|
+
- @eslint/js: 9.34.0 → 9.39.1
|
|
39
|
+
- @typescript-eslint/eslint-plugin: 8.42.0 → 8.48.1
|
|
40
|
+
- @typescript-eslint/parser: 8.42.0 → 8.48.1
|
|
41
|
+
- chart.js: 4.5.0 → 4.5.1
|
|
42
|
+
- cross-env: 10.0.0 → 10.1.0
|
|
43
|
+
- dayjs: 1.11.18 → 1.11.19
|
|
44
|
+
- eslint: 9.34.0 → 9.39.1
|
|
45
|
+
- globals: 16.3.0 → 16.5.0
|
|
46
|
+
- html-webpack-plugin: 5.6.4 → 5.6.5
|
|
47
|
+
- jsvectormap: 1.6.0 → 1.7.0
|
|
48
|
+
- postcss-preset-env: 10.3.1 → 10.4.0
|
|
49
|
+
- sass: 1.92.0 → 1.94.2
|
|
50
|
+
- sass-loader: 16.0.5 → 16.0.6
|
|
51
|
+
- stylelint: 16.23.1 → 16.26.1
|
|
52
|
+
- stylelint-config-standard: 38.0.0 → 39.0.1
|
|
53
|
+
- typescript: 5.9.2 → 5.9.3
|
|
54
|
+
- webpack: 5.101.3 → 5.103.0
|
|
55
|
+
|
|
56
|
+
**New Dependencies:**
|
|
57
|
+
- stylelint-config-standard-scss: 16.0.0 - SCSS-specific linting rules
|
|
58
|
+
|
|
59
|
+
**Build Tools Updated:**
|
|
60
|
+
- copy-webpack-plugin: 13.0.0 → 13.0.1
|
|
61
|
+
- mini-css-extract-plugin: 2.9.3 → 2.9.4
|
|
62
|
+
- postcss-loader: 8.1.1 → 8.2.0
|
|
63
|
+
|
|
64
|
+
### Build Status
|
|
65
|
+
- Zero build errors
|
|
66
|
+
- Zero build warnings
|
|
67
|
+
- Zero security vulnerabilities
|
|
68
|
+
- JavaScript linting: 0 errors, 0 warnings
|
|
69
|
+
- SCSS linting: 0 errors, 0 warnings
|
|
70
|
+
- Production build: Compiled successfully
|
|
71
|
+
|
|
72
|
+
### Compatibility
|
|
73
|
+
- Node.js 14+ (tested with latest versions)
|
|
74
|
+
- All modern browsers supported
|
|
75
|
+
- Mobile-responsive functionality maintained
|
|
76
|
+
- Dark mode functionality preserved
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## [2.8.1] - 2025-09-03
|
|
81
|
+
|
|
82
|
+
### Latest Dependency Updates & Security Enhancements
|
|
83
|
+
|
|
84
|
+
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.
|
|
85
|
+
|
|
86
|
+
### Key Improvements
|
|
87
|
+
|
|
88
|
+
#### Framework & Core Updates
|
|
89
|
+
- **Bootstrap 5.3.8** - Updated from 5.3.7 with latest bug fixes and improvements
|
|
90
|
+
- **Webpack 5.101.3** - Latest Webpack with enhanced performance optimizations
|
|
91
|
+
- **ESLint 9.34.0** - Updated to latest ESLint with modern flat configuration support
|
|
92
|
+
- **Sass 1.92.0** - Latest Sass compiler with improved performance and features
|
|
93
|
+
- **Day.js 1.11.18** - Updated lightweight date manipulation library
|
|
94
|
+
|
|
95
|
+
#### Development & Build Tools
|
|
96
|
+
- **TypeScript ESLint Support** - Added TypeScript 5.9.2 and @typescript-eslint packages for enhanced code quality
|
|
97
|
+
- **Modern ESLint Configuration** - Created comprehensive tsconfig.json for TypeScript ESLint integration
|
|
98
|
+
- **Zero JavaScript Linting Errors** - Fixed all ESLint issues in webpack configuration files
|
|
99
|
+
- **Enhanced Development Experience** - Improved hot module replacement and build performance
|
|
100
|
+
|
|
101
|
+
#### Security & Quality
|
|
102
|
+
- **Zero Security Vulnerabilities** - All dependencies updated with comprehensive security audit
|
|
103
|
+
- **jsvectormap 1.7.0** - Updated vector map library with latest features and improvements
|
|
104
|
+
- **Build System Optimization** - Improved webpack configuration with proper trailing commas and code style
|
|
105
|
+
- **Development Server Enhancements** - Stable development server with hot reload functionality
|
|
106
|
+
|
|
107
|
+
### Technical Details
|
|
108
|
+
|
|
109
|
+
**Major Dependencies Updated:**
|
|
110
|
+
- bootstrap: 5.3.7 → 5.3.8
|
|
111
|
+
- webpack: 5.101.0 → 5.101.3
|
|
112
|
+
- eslint: 9.33.0 → 9.34.0
|
|
113
|
+
- sass: 1.90.0 → 1.92.0
|
|
114
|
+
- dayjs: 1.11.13 → 1.11.18
|
|
115
|
+
- jsvectormap: 1.6.0 → 1.7.0
|
|
116
|
+
- @eslint/js: 9.33.0 → 9.34.0
|
|
117
|
+
|
|
118
|
+
**Build Tools Updated:**
|
|
119
|
+
- @babel/core: 7.28.0 → 7.28.3
|
|
120
|
+
- @babel/runtime: 7.28.2 → 7.28.3
|
|
121
|
+
- copy-webpack-plugin: 13.0.0 → 13.0.1
|
|
122
|
+
- html-webpack-plugin: 5.6.3 → 5.6.4
|
|
123
|
+
- mini-css-extract-plugin: 2.9.3 → 2.9.4
|
|
124
|
+
- postcss-loader: 8.1.1 → 8.2.0
|
|
125
|
+
- postcss-preset-env: 10.2.4 → 10.3.1
|
|
126
|
+
|
|
127
|
+
**New Additions:**
|
|
128
|
+
- @typescript-eslint/parser: 8.42.0 - TypeScript ESLint parser support
|
|
129
|
+
- @typescript-eslint/eslint-plugin: 8.42.0 - TypeScript ESLint rules
|
|
130
|
+
- typescript: 5.9.2 - TypeScript compiler for enhanced development
|
|
131
|
+
|
|
132
|
+
### Build Status
|
|
133
|
+
- Zero build errors
|
|
134
|
+
- Zero build warnings
|
|
135
|
+
- Zero security vulnerabilities
|
|
136
|
+
- JavaScript linting: 0 errors, 0 warnings
|
|
137
|
+
- Development server: Running successfully
|
|
138
|
+
- Hot module replacement: Functional
|
|
139
|
+
|
|
140
|
+
### Compatibility
|
|
141
|
+
- Node.js 14+ (tested with latest versions)
|
|
142
|
+
- All modern browsers supported
|
|
143
|
+
- Mobile-responsive functionality maintained
|
|
144
|
+
- Dark mode functionality preserved
|
|
145
|
+
|
|
3
146
|
## [2.8.0] - 2025-08-11
|
|
4
147
|
|
|
5
148
|
### 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.
|
|
1
|
+
# Adminator Bootstrap 5 Admin Template v2.9.0
|
|
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.
|
|
5
|
+
**Latest Update (v2.9.0)**: Comprehensive dependency updates with all packages at their absolute latest versions, enhanced SCSS linting with stylelint-config-standard-scss, security vulnerability fixes, and zero linting errors.
|
|
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.9.0](#whats-new-in-v290)
|
|
29
29
|
- [Getting Started](#getting-started)
|
|
30
30
|
- [Prerequisites](#prerequisites)
|
|
31
31
|
- [Installing & Local Development](#installing--local-development)
|
|
@@ -37,7 +37,28 @@ 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.
|
|
40
|
+
## What's New in v2.9.0
|
|
41
|
+
|
|
42
|
+
### Comprehensive Dependency Updates & Linting Modernization
|
|
43
|
+
- **All Dependencies Updated**: Every package updated to absolute latest versions
|
|
44
|
+
- **Webpack 5.103.0**: Latest Webpack with performance improvements
|
|
45
|
+
- **ESLint 9.39.1**: Latest ESLint with modern flat configuration
|
|
46
|
+
- **Sass 1.94.2**: Latest Sass compiler with improved features
|
|
47
|
+
- **Stylelint 16.26.1**: Latest SCSS/CSS linting with new SCSS-specific config
|
|
48
|
+
- **Chart.js 4.5.1**: Latest charting library with bug fixes
|
|
49
|
+
- **Day.js 1.11.19**: Latest date manipulation library
|
|
50
|
+
|
|
51
|
+
### Enhanced SCSS Linting
|
|
52
|
+
- **Added stylelint-config-standard-scss**: Proper SCSS-specific linting support
|
|
53
|
+
- **Updated .stylelintrc.json**: Configured for SCSS syntax compatibility
|
|
54
|
+
- **Zero Linting Errors**: Both JavaScript and SCSS pass all checks
|
|
55
|
+
|
|
56
|
+
### Security Fixes
|
|
57
|
+
- **Fixed node-forge vulnerabilities**: ASN.1 Validator Desynchronization and OID Integer Truncation
|
|
58
|
+
- **Fixed js-yaml vulnerabilities**: Prototype pollution in merge
|
|
59
|
+
- **Zero Security Vulnerabilities**: All dependencies audited and secure
|
|
60
|
+
|
|
61
|
+
### Previous Updates (v2.8.x)
|
|
41
62
|
|
|
42
63
|
### Dependency Modernization & Build System Enhancements
|
|
43
64
|
- **Webpack 5 Native Asset Modules**: Replaced deprecated file-loader with modern Webpack 5 asset handling
|
|
@@ -46,13 +67,6 @@ Preview of this awesome admin template available here: https://colorlib.com/poly
|
|
|
46
67
|
- **Zero Build Warnings**: Fixed all import/export issues for cleaner builds
|
|
47
68
|
- **Security Updates**: Comprehensive dependency updates addressing all known vulnerabilities
|
|
48
69
|
|
|
49
|
-
### Technical Improvements
|
|
50
|
-
- Moved @babel/runtime to production dependencies for proper runtime support
|
|
51
|
-
- Updated TypeScript to v5.9.2 for enhanced type checking
|
|
52
|
-
- Updated ESLint to v9.33.0 with latest rules and fixes
|
|
53
|
-
- All FullCalendar components updated to v6.1.19
|
|
54
|
-
- Webpack updated to v5.101.0 with performance improvements
|
|
55
|
-
|
|
56
70
|
## What's New in v2.7.1
|
|
57
71
|
|
|
58
72
|
**jQuery-Free Release** - Complete removal of jQuery dependency with modern vanilla JavaScript:
|
|
@@ -120,7 +134,7 @@ yarn add adminator-admin-dashboard
|
|
|
120
134
|
|
|
121
135
|
**Package Information:**
|
|
122
136
|
- **Package Name**: `adminator-admin-dashboard`
|
|
123
|
-
- **Version**: 2.
|
|
137
|
+
- **Version**: 2.9.0 (Latest dependencies)
|
|
124
138
|
- **Size**: 5.7 MB (includes source + built assets)
|
|
125
139
|
- **Registry**: https://www.npmjs.com/package/adminator-admin-dashboard
|
|
126
140
|
|
|
@@ -367,26 +381,26 @@ The built files will be available in the `dist/` directory.
|
|
|
367
381
|
## Built With
|
|
368
382
|
|
|
369
383
|
### Core Framework & Build Tools
|
|
370
|
-
- [Bootstrap 5.3.
|
|
371
|
-
- [Webpack 5.
|
|
372
|
-
- [Babel 7.
|
|
373
|
-
- [Sass 1.
|
|
384
|
+
- [Bootstrap 5.3.8](http://getbootstrap.com/) - Modern CSS framework
|
|
385
|
+
- [Webpack 5.103.0](https://webpack.js.org/) - Module bundler and build tool
|
|
386
|
+
- [Babel 7.28.x](https://babeljs.io/) - JavaScript transpiler
|
|
387
|
+
- [Sass 1.94.2](http://sass-lang.com/) - CSS preprocessor
|
|
374
388
|
- [PostCSS 8.5.6](http://postcss.org/) - CSS transformations
|
|
375
|
-
- [ESLint 9.
|
|
376
|
-
- [Stylelint 16.
|
|
389
|
+
- [ESLint 9.39.1](https://eslint.org/) - JavaScript linting (flat config)
|
|
390
|
+
- [Stylelint 16.26.1](https://stylelint.io/) - CSS/SCSS linting
|
|
377
391
|
|
|
378
392
|
### UI Components & Charts
|
|
379
|
-
- [Chart.js 4.5.
|
|
380
|
-
- [FullCalendar 6.1.
|
|
393
|
+
- [Chart.js 4.5.1](http://www.chartjs.org/) - Modern charting library
|
|
394
|
+
- [FullCalendar 6.1.19](https://fullcalendar.io/) - Interactive calendar
|
|
381
395
|
- [DataTables](https://datatables.net/) - Advanced table functionality
|
|
382
396
|
- [Easy Pie Chart](http://rendro.github.io/easy-pie-chart/) - Animated pie charts
|
|
383
397
|
- [Perfect Scrollbar 1.5.6](https://github.com/utatti/perfect-scrollbar) - Custom scrollbars
|
|
384
398
|
|
|
385
399
|
### JavaScript Libraries
|
|
386
|
-
- **[Chart.js 4.5.
|
|
387
|
-
- **[jsvectormap 1.
|
|
400
|
+
- **[Chart.js 4.5.1](http://www.chartjs.org/)** - Modern charting library (replaces jQuery Sparkline)
|
|
401
|
+
- **[jsvectormap 1.7.0](https://github.com/themustafaomar/jsvectormap)** - Interactive vector maps (replaces jVectorMap)
|
|
388
402
|
- [Lodash 4.17.21](https://lodash.com/) - Utility library
|
|
389
|
-
- [Day.js 1.11.
|
|
403
|
+
- [Day.js 1.11.19](https://day.js.org/) - Modern 2KB date library (replaces Moment.js)
|
|
390
404
|
- [Masonry 4.2.2](https://masonry.desandro.com/) - Grid layouts
|
|
391
405
|
- **100% Vanilla JavaScript** - No jQuery dependency
|
|
392
406
|
|
|
@@ -406,15 +420,17 @@ See [CHANGELOG.md](CHANGELOG.md) for detailed version history.
|
|
|
406
420
|
|
|
407
421
|
📚 **[Online Documentation](https://puikinsh.github.io/Adminator-admin-dashboard/)** includes comprehensive guides for all features.
|
|
408
422
|
|
|
409
|
-
#### Latest Release: V 2.
|
|
410
|
-
- **
|
|
411
|
-
- **
|
|
412
|
-
- **
|
|
413
|
-
- **
|
|
414
|
-
- **
|
|
415
|
-
- **
|
|
423
|
+
#### Latest Release: V 2.9.0 (2025-12-02)
|
|
424
|
+
- **All Dependencies Updated** - Every package updated to absolute latest versions
|
|
425
|
+
- **Enhanced SCSS Linting** - Added stylelint-config-standard-scss for proper SCSS support
|
|
426
|
+
- **Security Fixes** - Fixed node-forge and js-yaml vulnerabilities
|
|
427
|
+
- **Zero Linting Errors** - Both JavaScript and SCSS pass all checks
|
|
428
|
+
- **Webpack 5.103.0** - Latest Webpack with performance improvements
|
|
429
|
+
- **Modern Tooling** - Updated Sass 1.94.2, ESLint 9.39.1, Stylelint 16.26.1
|
|
416
430
|
|
|
417
431
|
#### Previous Releases
|
|
432
|
+
- **V 2.8.1**: Bootstrap 5.3.8, security updates, and enhanced tooling
|
|
433
|
+
- **V 2.8.0**: Webpack 5 asset modules and dependency modernization
|
|
418
434
|
- **V 2.7.1**: 100% jQuery-Free with modern vanilla JavaScript
|
|
419
435
|
- **V 2.6.0**: Complete Dark Mode System with theme switching
|
|
420
436
|
- **V 2.5.0**: Updated all dependencies, ESLint 9.x, zero vulnerabilities
|