adminator-admin-dashboard 2.8.1 → 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 +77 -0
- package/README.md +39 -34
- package/dist/main.js +22 -14
- package/dist/main.js.map +1 -1
- package/package.json +28 -27
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,82 @@
|
|
|
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
|
+
|
|
3
80
|
## [2.8.1] - 2025-09-03
|
|
4
81
|
|
|
5
82
|
### Latest Dependency Updates & Security Enhancements
|
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,17 +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
41
|
|
|
42
|
-
###
|
|
43
|
-
- **
|
|
44
|
-
- **
|
|
45
|
-
- **
|
|
46
|
-
- **
|
|
47
|
-
- **
|
|
48
|
-
- **
|
|
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
|
|
49
50
|
|
|
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)
|
|
51
62
|
|
|
52
63
|
### Dependency Modernization & Build System Enhancements
|
|
53
64
|
- **Webpack 5 Native Asset Modules**: Replaced deprecated file-loader with modern Webpack 5 asset handling
|
|
@@ -56,13 +67,6 @@ Preview of this awesome admin template available here: https://colorlib.com/poly
|
|
|
56
67
|
- **Zero Build Warnings**: Fixed all import/export issues for cleaner builds
|
|
57
68
|
- **Security Updates**: Comprehensive dependency updates addressing all known vulnerabilities
|
|
58
69
|
|
|
59
|
-
### Technical Improvements
|
|
60
|
-
- Moved @babel/runtime to production dependencies for proper runtime support
|
|
61
|
-
- Updated TypeScript to v5.9.2 for enhanced type checking
|
|
62
|
-
- Updated ESLint to v9.33.0 with latest rules and fixes
|
|
63
|
-
- All FullCalendar components updated to v6.1.19
|
|
64
|
-
- Webpack updated to v5.101.0 with performance improvements
|
|
65
|
-
|
|
66
70
|
## What's New in v2.7.1
|
|
67
71
|
|
|
68
72
|
**jQuery-Free Release** - Complete removal of jQuery dependency with modern vanilla JavaScript:
|
|
@@ -130,7 +134,7 @@ yarn add adminator-admin-dashboard
|
|
|
130
134
|
|
|
131
135
|
**Package Information:**
|
|
132
136
|
- **Package Name**: `adminator-admin-dashboard`
|
|
133
|
-
- **Version**: 2.
|
|
137
|
+
- **Version**: 2.9.0 (Latest dependencies)
|
|
134
138
|
- **Size**: 5.7 MB (includes source + built assets)
|
|
135
139
|
- **Registry**: https://www.npmjs.com/package/adminator-admin-dashboard
|
|
136
140
|
|
|
@@ -378,25 +382,25 @@ The built files will be available in the `dist/` directory.
|
|
|
378
382
|
|
|
379
383
|
### Core Framework & Build Tools
|
|
380
384
|
- [Bootstrap 5.3.8](http://getbootstrap.com/) - Modern CSS framework
|
|
381
|
-
- [Webpack 5.
|
|
385
|
+
- [Webpack 5.103.0](https://webpack.js.org/) - Module bundler and build tool
|
|
382
386
|
- [Babel 7.28.x](https://babeljs.io/) - JavaScript transpiler
|
|
383
|
-
- [Sass 1.
|
|
387
|
+
- [Sass 1.94.2](http://sass-lang.com/) - CSS preprocessor
|
|
384
388
|
- [PostCSS 8.5.6](http://postcss.org/) - CSS transformations
|
|
385
|
-
- [ESLint 9.
|
|
386
|
-
- [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
|
|
387
391
|
|
|
388
392
|
### UI Components & Charts
|
|
389
|
-
- [Chart.js 4.5.
|
|
393
|
+
- [Chart.js 4.5.1](http://www.chartjs.org/) - Modern charting library
|
|
390
394
|
- [FullCalendar 6.1.19](https://fullcalendar.io/) - Interactive calendar
|
|
391
395
|
- [DataTables](https://datatables.net/) - Advanced table functionality
|
|
392
396
|
- [Easy Pie Chart](http://rendro.github.io/easy-pie-chart/) - Animated pie charts
|
|
393
397
|
- [Perfect Scrollbar 1.5.6](https://github.com/utatti/perfect-scrollbar) - Custom scrollbars
|
|
394
398
|
|
|
395
399
|
### JavaScript Libraries
|
|
396
|
-
- **[Chart.js 4.5.
|
|
400
|
+
- **[Chart.js 4.5.1](http://www.chartjs.org/)** - Modern charting library (replaces jQuery Sparkline)
|
|
397
401
|
- **[jsvectormap 1.7.0](https://github.com/themustafaomar/jsvectormap)** - Interactive vector maps (replaces jVectorMap)
|
|
398
402
|
- [Lodash 4.17.21](https://lodash.com/) - Utility library
|
|
399
|
-
- [Day.js 1.11.
|
|
403
|
+
- [Day.js 1.11.19](https://day.js.org/) - Modern 2KB date library (replaces Moment.js)
|
|
400
404
|
- [Masonry 4.2.2](https://masonry.desandro.com/) - Grid layouts
|
|
401
405
|
- **100% Vanilla JavaScript** - No jQuery dependency
|
|
402
406
|
|
|
@@ -416,15 +420,16 @@ See [CHANGELOG.md](CHANGELOG.md) for detailed version history.
|
|
|
416
420
|
|
|
417
421
|
📚 **[Online Documentation](https://puikinsh.github.io/Adminator-admin-dashboard/)** includes comprehensive guides for all features.
|
|
418
422
|
|
|
419
|
-
#### Latest Release: V 2.
|
|
420
|
-
- **
|
|
421
|
-
- **
|
|
422
|
-
- **
|
|
423
|
-
- **
|
|
424
|
-
- **
|
|
425
|
-
- **Modern Tooling** - Updated Sass 1.
|
|
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
|
|
426
430
|
|
|
427
431
|
#### Previous Releases
|
|
432
|
+
- **V 2.8.1**: Bootstrap 5.3.8, security updates, and enhanced tooling
|
|
428
433
|
- **V 2.8.0**: Webpack 5 asset modules and dependency modernization
|
|
429
434
|
- **V 2.7.1**: 100% jQuery-Free with modern vanilla JavaScript
|
|
430
435
|
- **V 2.6.0**: Complete Dark Mode System with theme switching
|
package/dist/main.js
CHANGED
|
@@ -15481,7 +15481,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
15481
15481
|
/* harmony export */ });
|
|
15482
15482
|
/* harmony import */ var _chunks_helpers_dataset_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./chunks/helpers.dataset.js */ "../../node_modules/chart.js/dist/chunks/helpers.dataset.js");
|
|
15483
15483
|
/*!
|
|
15484
|
-
* Chart.js v4.5.
|
|
15484
|
+
* Chart.js v4.5.1
|
|
15485
15485
|
* https://www.chartjs.org
|
|
15486
15486
|
* (c) 2025 Chart.js Contributors
|
|
15487
15487
|
* Released under the MIT License
|
|
@@ -17335,19 +17335,24 @@ class DoughnutController extends DatasetController {
|
|
|
17335
17335
|
labels: {
|
|
17336
17336
|
generateLabels (chart) {
|
|
17337
17337
|
const data = chart.data;
|
|
17338
|
+
const { labels: { pointStyle , textAlign , color , useBorderRadius , borderRadius } } = chart.legend.options;
|
|
17338
17339
|
if (data.labels.length && data.datasets.length) {
|
|
17339
|
-
const { labels: { pointStyle , color } } = chart.legend.options;
|
|
17340
17340
|
return data.labels.map((label, i)=>{
|
|
17341
17341
|
const meta = chart.getDatasetMeta(0);
|
|
17342
17342
|
const style = meta.controller.getStyle(i);
|
|
17343
17343
|
return {
|
|
17344
17344
|
text: label,
|
|
17345
17345
|
fillStyle: style.backgroundColor,
|
|
17346
|
-
strokeStyle: style.borderColor,
|
|
17347
17346
|
fontColor: color,
|
|
17347
|
+
hidden: !chart.getDataVisibility(i),
|
|
17348
|
+
lineDash: style.borderDash,
|
|
17349
|
+
lineDashOffset: style.borderDashOffset,
|
|
17350
|
+
lineJoin: style.borderJoinStyle,
|
|
17348
17351
|
lineWidth: style.borderWidth,
|
|
17352
|
+
strokeStyle: style.borderColor,
|
|
17353
|
+
textAlign: textAlign,
|
|
17349
17354
|
pointStyle: pointStyle,
|
|
17350
|
-
|
|
17355
|
+
borderRadius: useBorderRadius && (borderRadius || style.borderRadius),
|
|
17351
17356
|
index: i
|
|
17352
17357
|
};
|
|
17353
17358
|
});
|
|
@@ -20579,18 +20584,22 @@ var registry = /* #__PURE__ */ new Registry();
|
|
|
20579
20584
|
|
|
20580
20585
|
class PluginService {
|
|
20581
20586
|
constructor(){
|
|
20582
|
-
this._init =
|
|
20587
|
+
this._init = undefined;
|
|
20583
20588
|
}
|
|
20584
20589
|
notify(chart, hook, args, filter) {
|
|
20585
20590
|
if (hook === 'beforeInit') {
|
|
20586
20591
|
this._init = this._createDescriptors(chart, true);
|
|
20587
20592
|
this._notify(this._init, chart, 'install');
|
|
20588
20593
|
}
|
|
20594
|
+
if (this._init === undefined) {
|
|
20595
|
+
return;
|
|
20596
|
+
}
|
|
20589
20597
|
const descriptors = filter ? this._descriptors(chart).filter(filter) : this._descriptors(chart);
|
|
20590
20598
|
const result = this._notify(descriptors, chart, hook, args);
|
|
20591
20599
|
if (hook === 'afterDestroy') {
|
|
20592
20600
|
this._notify(descriptors, chart, 'stop');
|
|
20593
20601
|
this._notify(this._init, chart, 'uninstall');
|
|
20602
|
+
this._init = undefined;
|
|
20594
20603
|
}
|
|
20595
20604
|
return result;
|
|
20596
20605
|
}
|
|
@@ -21033,7 +21042,7 @@ function needContext(proxy, names) {
|
|
|
21033
21042
|
return false;
|
|
21034
21043
|
}
|
|
21035
21044
|
|
|
21036
|
-
var version = "4.5.
|
|
21045
|
+
var version = "4.5.1";
|
|
21037
21046
|
|
|
21038
21047
|
const KNOWN_POSITIONS = [
|
|
21039
21048
|
'top',
|
|
@@ -27212,7 +27221,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27212
27221
|
/* harmony export */ });
|
|
27213
27222
|
/* harmony import */ var _kurkle_color__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @kurkle/color */ "../../node_modules/@kurkle/color/dist/color.esm.js");
|
|
27214
27223
|
/*!
|
|
27215
|
-
* Chart.js v4.5.
|
|
27224
|
+
* Chart.js v4.5.1
|
|
27216
27225
|
* https://www.chartjs.org
|
|
27217
27226
|
* (c) 2025 Chart.js Contributors
|
|
27218
27227
|
* Released under the MIT License
|
|
@@ -29525,10 +29534,10 @@ function getMaximumSize(canvas, bbWidth, bbHeight, aspectRatio) {
|
|
|
29525
29534
|
* @returns True if the canvas context size or transformation has changed.
|
|
29526
29535
|
*/ function retinaScale(chart, forceRatio, forceStyle) {
|
|
29527
29536
|
const pixelRatio = forceRatio || 1;
|
|
29528
|
-
const deviceHeight =
|
|
29529
|
-
const deviceWidth =
|
|
29530
|
-
chart.height =
|
|
29531
|
-
chart.width =
|
|
29537
|
+
const deviceHeight = round1(chart.height * pixelRatio);
|
|
29538
|
+
const deviceWidth = round1(chart.width * pixelRatio);
|
|
29539
|
+
chart.height = round1(chart.height);
|
|
29540
|
+
chart.width = round1(chart.width);
|
|
29532
29541
|
const canvas = chart.canvas;
|
|
29533
29542
|
// If no style has been set on the canvas, the render size is used as display size,
|
|
29534
29543
|
// making the chart visually bigger, so let's enforce it to the "correct" values.
|
|
@@ -60171,7 +60180,7 @@ module.exports = "data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%
|
|
|
60171
60180
|
/******/
|
|
60172
60181
|
/******/ /* webpack/runtime/getFullHash */
|
|
60173
60182
|
/******/ !function() {
|
|
60174
|
-
/******/ __webpack_require__.h = function() { return "
|
|
60183
|
+
/******/ __webpack_require__.h = function() { return "c6fab032cb30512cce27"; }
|
|
60175
60184
|
/******/ }();
|
|
60176
60185
|
/******/
|
|
60177
60186
|
/******/ /* webpack/runtime/global */
|
|
@@ -60211,7 +60220,6 @@ module.exports = "data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%
|
|
|
60211
60220
|
/******/ script = document.createElement('script');
|
|
60212
60221
|
/******/
|
|
60213
60222
|
/******/ script.charset = 'utf-8';
|
|
60214
|
-
/******/ script.timeout = 120;
|
|
60215
60223
|
/******/ if (__webpack_require__.nc) {
|
|
60216
60224
|
/******/ script.setAttribute("nonce", __webpack_require__.nc);
|
|
60217
60225
|
/******/ }
|
|
@@ -60786,7 +60794,7 @@ module.exports = "data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%
|
|
|
60786
60794
|
/******/
|
|
60787
60795
|
/******/ /* webpack/runtime/jsonp chunk loading */
|
|
60788
60796
|
/******/ !function() {
|
|
60789
|
-
/******/ __webpack_require__.b = document.baseURI || self.location.href;
|
|
60797
|
+
/******/ __webpack_require__.b = (typeof document !== 'undefined' && document.baseURI) || self.location.href;
|
|
60790
60798
|
/******/
|
|
60791
60799
|
/******/ // object to store loaded and loading chunks
|
|
60792
60800
|
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
|