Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Adminlte Laravel Package

almasaeed2010/adminlte

AdminLTE is a popular MIT-licensed admin dashboard template built on Bootstrap 5.3 with vanilla JavaScript (no jQuery). Fully responsive, highly customizable, and easy to use for web apps—from mobile to desktop. Live demo and docs available.

View on GitHub
Deep Wiki
Context7
v4.1.0

AdminLTE 4.1.0 is the biggest developer-experience release of the 4.x line: the npm package finally speaks modern JavaScript (ESM + TypeScript types), the components got a real lifecycle API, the dark-mode switcher ships in the bundle, and the project has its first automated test suite — including an accessibility gate that already runs clean.

Highlights

Modern npm packaging

// This now works out of the box in Vite/webpack — with full type checking:
import { PushMenu, CardWidget, ColorMode } from "admin-lte"
  • New ESM bundle (dist/js/adminlte.esm.js + .min) alongside the UMD build
  • TypeScript declarations ship under dist/js/types/types, module, and a full exports map (with sass and style conditions) in package.json
  • bootstrap is a peer dependency, so compiling [@use](https://github.com/use) "admin-lte/src/scss/adminlte" works right after npm install admin-lte

Component lifecycle API

Every component now follows the Bootstrap contract: getInstance(element), getOrCreateInstance(element, config?), and dispose(), backed by a WeakMap registry (Turbo-safe by construction). The data API uses delegated document-level listeners, so cards and toggles inserted after page load — AJAX partials, Turbo Frames — work without re-initialisation. And the sidebar is finally scriptable:

PushMenu.getInstance(document.querySelector(".app-sidebar"))?.collapse()

Behavior change: all plugin events are now bubbling CustomEvents dispatched on the component's root element, animated actions have cancelable "before" events (e.g. veto remove.lte.card-widget with preventDefault()), and "after" events fire when the animation completes. If you listened for card events on the tool buttons, listen on the card or on document instead — see the CHANGELOG for the full event table.

ColorMode in the bundle

The light/dark/auto switcher is now a proper module in adminlte.js — persisted, OS-preference aware, with a changed.lte.color-mode event. No more copy-pasting the demo's inline script.

First automated tests + accessibility gate

  • 30-unit vitest suite wired into npm run production
  • npm run test-a11y runs axe-core (WCAG 2.1 A/AA) against seven built demo pages and fails on serious/critical violations — currently zero, after fixing the findings it immediately surfaced (breadcrumb link contrast, keyboard-unreachable chat pane)

New pages & slimmer CSS

  • Starter page (the blank v3 starting point, back by popular demand), a dedicated ApexCharts page with six chart types, and a Users management demo
  • Docs/FAQ styles moved to a separate adminlte-docs.css: adminlte.min.css is now ~40.4 KB gzip, down from 46.7 KB in 4.0.3
  • The 1,766-line vendored Bootstrap variables fork is gone — AdminLTE's ~10 overrides live in a small _bootstrap-overrides.scss (compiled CSS byte-identical)

Install

npm install admin-lte@4.1.0
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/admin-lte@4.1.0/dist/css/adminlte.min.css" />
<script src="https://cdn.jsdelivr.net/npm/admin-lte@4.1.0/dist/js/adminlte.min.js"></script>
// Or as a module
import { PushMenu } from "admin-lte"

Full details in the CHANGELOG.

v4.0.0

AdminLTE 4.0.0 — first stable release of the v4 line. A ground-up rewrite on Bootstrap 5.3 with no jQuery.

📖 Documentation · 🚀 Migration from v3 · 🎨 Live preview


Highlights

  • 18 new demo pages — Calendar (FullCalendar), Kanban (SortableJS), Chat, File Manager, Projects, Mailbox (Inbox/Read/Compose), Form Wizard, Data Tables (Tabulator), Profile, Settings, Invoice, Pricing, FAQ, plus 404 / 500 / Maintenance error pages.
  • Documentation overhaul — Getting Started, Customization, RTL, Migration from v3, Layout Blueprint, Recipes, Deployment, Recommended Integrations, JavaScript Plugins Overview. Split sidebar navigation so the live preview no longer feels like a docs site. Reading-friendly typography with consistent card wrappers across every page.
  • FAQ rebuilt as a custom page with a hero, live search, section chips, and an accordion of 19 questions across six topics.
  • Six issue fixes: #6010, #6019, #6020, #6021, #6026, #6028.
  • Visible color-mode toggle in the default topbar, with localStorage persistence and prefers-color-scheme integration.
  • Major dependency upgrades: ESLint 9 → 10, TypeScript 5.9 → 6, Stylelint 16 → 17, Astro 6.0 → 6.3, and refreshed minor versions across autoprefixer / postcss / rollup / sass / terser.
  • Dependency tree cleanup: dropped eslint-plugin-import, eslint-config-xo*, and the legacy .eslintrc.json. Flat config only.
  • Security: npm overrides for yaml and stylelint-config-twbs-bootstrap mean npm install runs without --legacy-peer-deps and reports 0 vulnerabilities.

Breaking changes from v3

v3 v4
.wrapper .app-wrapper
.main-header .app-header
.main-sidebar .app-sidebar
.content-wrapper .app-main
data-toggle data-bs-toggle (Bootstrap 5)
data-widget="pushmenu" data-lte-toggle="sidebar"
data-widget="treeview" data-lte-toggle="treeview"
.dark-mode body class data-bs-theme="dark" attribute
jQuery required Vanilla TypeScript — no jQuery
enablePersistence defaulted on Defaults off; opt in via data-enable-persistence="true"

See the dedicated Migration from v3 guide for the complete list and step-by-step upgrade order.

Install

npm install admin-lte@4.0.0

Or via CDN:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/admin-lte@4.0.0/dist/css/adminlte.min.css" />
<script src="https://cdn.jsdelivr.net/npm/admin-lte@4.0.0/dist/js/adminlte.min.js"></script>

See CHANGELOG.md for the full notes.

v4.0.0-rc7

AdminLTE v4.0.0-rc7 Release Notes

Highlights

This release delivers significant JavaScript refactors to the layout and push menu plugins, fixes several bugs affecting print, pagination, modals, and animations, and updates all dependencies to their latest semver-compatible versions.

Bug Fixes

  • Print layout: Sidebar and main content are now both visible in browser print preview (#5982, PR #5996 by @herley-shaori)
  • Pagination border-radius: Synced _bootstrap-variables.scss calc syntax with Bootstrap 5.3, fixing grouped pagination buttons showing rounded corners on all sides (#5951, reported by @Kneemund)
  • Escape key & modals: handleEscapeKey() no longer bypasses Bootstrap 5's keyboard: false option on modals (#5993, reported by @braytac)
  • slideDown/slideUp animation: Fixed unreliable setTimeout ordering when duration is 0, which caused sidebar treeview instant-open to fail (#5964, PR by @Kneemund)
  • CSS lint: Fixed property order in print layout rules (#5997, reported by @lfiorini)

Refactors

  • Layout transition handling (#5956 by @dfsmania):

    • Fixed broken holdTransition timer (local variable promoted to instance property)
    • Removed duplicate resize event listeners registered on every call
    • Consolidated layout initialization to layout.ts (removed duplication from adminlte.ts)
    • Moved app-loaded class application to layout Data API section
  • Push menu plugin overhaul (#5954 by @dfsmania):

    • Single PushMenu instance instead of creating new instances per event handler
    • Proper separation of setupSidebarBreakPoint() and updateStateByResponsiveLogic()
    • sidebar-open class only added on mobile viewports (aligns with v3 behavior)
    • Configuration now readable from data attributes on sidebar element
    • Removed unused menusClose() method and dead constants

Improvements

  • Login/register box width: Increased from 360px to 400px for better form readability (#5963 by @dfsmania)
  • TypeScript compilation: Added removeComments: true to tsconfig.json, reducing unminified adminlte.js by ~15% (#5953 by @dfsmania)

Dependencies

Updated all packages to latest semver-compatible versions:

  • [@astrojs](https://github.com/astrojs)/check 0.9.7, [@astrojs](https://github.com/astrojs)/mdx 4.3.13
  • [@typescript-eslint](https://github.com/typescript-eslint)/* 8.57.0
  • astro 5.18.0, autoprefixer 10.4.27
  • eslint 9.39.4, eslint-plugin-astro 1.6.0
  • fs-extra 11.3.4, nodemon 3.1.14
  • postcss 8.5.8, prettier 3.8.1
  • rimraf 6.1.3, rollup 4.59.0
  • sass 1.97.3, terser 5.46.0

Breaking Changes

  • Sidebar persistence is now opt-in: enablePersistence defaults to false (was true). To restore the previous behavior where sidebar state is remembered across page loads, add data-enable-persistence="true" to your sidebar element:
    <aside class="app-sidebar" data-enable-persistence="true"></aside>
    

Contributors

Thank you to everyone who contributed to this release:

  • @dfsmania (Diego Smania) — layout refactor, push menu refactor, login box width, tsconfig cleanup
  • @herley-shaori (Herley) — print layout fix
  • @Kneemund (Moritz Mechelk) — pagination bug report, slideDown/slideUp fix
  • @braytac — escape key modal bug report
  • @lfiorini — CSS lint issue report
v4.0.0-rc4

What's New

  • Updated Dependencies: 8 npm packages updated to latest versions for improved security and performance
  • Refined Mobile Image Fix: Streamlined image path resolution by removing JavaScript runtime fix in favor of build-time HTML generation
  • Better Performance: Images now load faster with no runtime path corrections needed

Updated Packages

  • @rollup/plugin-typescript: 12.1.3 → 12.1.4
  • @typescript-eslint/eslint-plugin: 8.35.1 → 8.36.0
  • @typescript-eslint/parser: 8.35.1 → 8.36.0
  • astro: 5.10.0 → 5.11.0
  • eslint: 9.30.0 → 9.30.1
  • prettier: 3.5.3 → 3.6.2
  • rollup: 4.44.0 → 4.44.2
  • stylelint: 16.21.0 → 16.21.1

Installation

npm install admin-lte@4.0.0-rc4

Key Improvements from 4.0.0-rc3

  • Zero 404 Errors: All images now use relative paths generated at build time
  • Cleaner Code: Removed JavaScript runtime path fixes that caused console errors
  • Latest Tools: Updated to newest versions of TypeScript, ESLint, Prettier, and build tools
v4.0.0-rc1

AdminLTE v4.0.0-rc1 - Major Modernization Release

This release represents a complete modernization of the AdminLTE codebase, bringing it up to current standards with the latest tooling, dependencies, and best practices.

Key Highlights

  • Zero Security Vulnerabilities - All dependencies updated and vulnerabilities resolved
  • Modern Tooling - ESLint v9, Astro 5.x, latest Stylelint and build tools
  • Better Developer Experience - New npm start command, improved scripts, cleaner builds
  • Latest Dependencies - Bootstrap 5.3.7, Node.js ES modules, 50+ package updates
  • Code Quality - Zero linting errors, removed technical debt, standardized formatting
  • Future-Ready - Modern configuration patterns, optimal bundle sizes, enhanced maintainability

Quick Start

# Install dependencies
npm install

# Start development server
npm start

# Build for production  
npm run production

Major Changes

Infrastructure & Tooling

  • Upgraded to ES Modules with "type": "module" in package.json
  • Complete ESLint v9 migration with modern flat configuration format
  • Enhanced Astro configuration with static site generation
  • Optimized build scripts and developer experience

Dependencies Updated

  • astro: 4.15.12 → 5.10.0
  • eslint: 8.57.1 → 9.29.0
  • bootstrap: 5.3.3 → 5.3.7
  • sass: 1.78.0 → 1.89.2
  • typescript: 5.6.2 → 5.8.3
  • Plus 50+ other packages updated to latest versions

Security & Quality

  • Resolved all npm security vulnerabilities (0 remaining)
  • Updated browserslist database for modern browser compatibility
  • Fixed all SASS deprecation warnings
  • Zero linting errors across all file types

Migration Guide

For Users:

  • No breaking changes in compiled CSS/JS output
  • All existing HTML templates remain fully compatible
  • CDN links and package imports work as before

For Developers:

  • New npm start command for development
  • ESLint configuration migrated to eslint.config.js
  • Build process requires Node.js ES modules support

Compatibility

  • Bootstrap: 5.3.7 (latest)
  • Node.js: ES modules support required
  • Browsers: All modern browsers supported
  • RTL: Full right-to-left language support maintained

See CHANGELOG.md for complete technical details.


Download: Use npm: npm install admin-lte@4.0.0-rc1 or download the source code below.

v4.0.0-beta3

Release Notes

New Features

  • Established distribution build folder dist.

Dependency Changes

  • Replaced js-beautify with prettier for code formatting.
  • Downgraded sass to a compatible version.

Upgrades

  • Upgraded astro to version 5.
  • Updated bootstrap to version 5.3.3.

Thank you sponsors

@spizzo14 @tomhappyblock @stefanmorderca @tito10047 @sitchi @npreee @isaacmorais

Full Changelog: https://github.com/ColorlibHQ/AdminLTE/compare/v4.0.0-beta2...v4.0.0-beta3

v4.0.0-beta2

BREAKING CHANGES

  • Removed .layout-fixed-complete class and component.

What's Changed

Minor

  • Bug Fixes

New Feature

  • Added Theme Customizer

Thank you sponsors

@spizzo14 @tomhappyblock @stefanmorderca @tito10047 @sitchi @npreee

New Contributors

Full Changelog: https://github.com/ColorlibHQ/AdminLTE/compare/v4.0.0-beta1...v4.0.0-beta2

v4.0.0-beta1

Highlights

  • AdminLTE v4 is now based on Bootstrap 5
  • Dark mode
  • RTL support
  • Improved responsiveness, performance, code quality, customization, plugins, components, layouts, widgets, forms, tables, icons, pages, examples, and starter kit

Thank you sponsors

@spizzo14 @stefanmorderca @tomhappyblock @tito10047 @sitchi

Thank you Contributors

Welcome New Contributors

Full Changelog: https://github.com/ColorlibHQ/AdminLTE/compare/v3.2.0...v4.0.0-beta1

v3.2.0

Breaking Change! We dropped official node v12, it might be still work but we won't give support for any node 12 bugs/errors.

Top-Features:

  • Enhanced Dark Mode
  • SVG Font Awesome Icon support
  • Docker dev-preset
  • Reworked Dark/Light colors
  • Custom Scrollbar style (Non-Plugin-Scrollbar)

Fixes:

  • various fixes in IFrame plugin
  • fix link encoding in SidebarSearch plugin
  • fix division warning while sass building
  • fix disabled state for default & outline-light button
  • fix none-visible background colors while printing
  • various dark-mode fixes

Changes:

  • add load error fallback for CardRefresh plugin
  • add collapsed-done event for ControlSidebar plugin & PushMenu plugin
  • add animationSpeed to ControlSidebar plugin & PushMenu plugin
  • add target selection for ControlSidebar plugin
  • add element fallback for ExpandableTable plugin
  • add allowReload & autoDarkMode to IFrame plugin
  • add iframe-dark example

Thanks for your awesome contribution @liljack, @danny007in, @curiousteam, @equada, @Shidersz, @gurvirlochab, @ZhangChengLin, @mostafahesham-dev, @smtbos, @leonardxfce, @anilloutombam, @13324, @SmileYzn, @hkvstore, @rikuson, @kreic51, @forxer & @mahmoudalsaman.

For the complete changelog look here.

v3.2.0-rc
v3.1.0

Breaking Change! Changed SCSS filename case

  • build/scss/AdminLTE-raw.scssbuild/scss/_adminlte.raw.scss
  • build/scss/AdminLTE.scssbuild/scss/adminlte.scss
  • build/scss/AdminLTE-components.scssbuild/scss/parts/adminlte.components.scss
  • build/scss/AdminLTE-core.scssbuild/scss/parts/adminlte.core.scss
  • build/scss/AdminLTE-extra-components.scssbuild/scss/parts/adminlte.extra-components.scss
  • build/scss/AdminLTE-pages.scssbuild/scss/parts/adminlte.pages.scss
  • build/scss/AdminLTE-plugins.scssbuild/scss/parts/adminlte.plugins.scss

New in v3.1:

  • Dark Mode
  • New Components
    • Month Pagination
    • Login/Register v2
    • IFrame mode
    • uPlot Charts
    • Kanban Board
    • Pages
      • FAQ
      • Contact Us
    • Search
      • Simple
      • Enhanced
    • Simple Kanban Board
    • Simple Preloader
  • New Demo Examples
    • Stepper/Wizard
    • Multi File Upload
    • Codemirror
    • Datatables with Buttons
    • Form Input Styles
  • New Sidebar features
    • Sidebar Search
    • Custom Area
  • New JS Plugins & JS Plugin features
    • Fullscreen mode
    • SidebarSearch plugin
    • ExpandableTables plugin
    • IFrame plugin
    • NavbarSearch plugin
  • Additionally
    • added FontAwesome light, duotone & svg support
    • added Datatables Scrollpane Plugin
    • added btn-app Color Variations
    • enhance brand-link with pushmenu inside brand
    • added new Border Bottom only input style
    • added custom-control-input Color Variations
    • added custom-control-input-outline for checkbox & radio
    • enhanced ControlSidebar plugin for multiple control-sidebars

Changes:

  • replaced small-box font-size transition with transform
  • fixed layout-boxed sidebar with sidebar-mini
  • added ASP.NET Boilerplate & CakePHP 4.x implementation in docs
  • compressed images (jpg & png)
  • added StyleLint, ESLint & BundleWatch
  • enhanced various npm script commands
  • updated bootstrap to 4.6.0
  • removed glyphicon leftovers
  • updated various HTML markups
    • specified lang attribute
    • bumped year to 2021
    • changed http:// to https://
    • moved rel attribute for consistency
    • added rel=noopener for external links
    • specified diplay=fallback for Google Fonts
  • added sidebar search plugin
  • added pagination month component
  • added expandable tables plugin
  • added sidebar custom area component
  • enhanced brand-link with pushmenu inside brand
  • added font awesome light, duotone & svg icons support
  • fixed maximized-card card-body overflow
  • added bs-stepper plugin & demo
  • added codemirror plugin & demo
  • added dropzonejs plugin & demo
  • added sparkline demo
  • remove flot-old
  • remove unnecessary jquery-ui
  • added new login, register & recover-password v2 page
  • added datatables button example
  • added contact-us and faq demo
  • added iframe plugin
  • added three new styles examples in forms/general
  • added custom-control-input color variations
  • added custom-control-input-outline for checkbox & radio
  • added dark-mode
  • added simple kanban board
  • added card image overlay example
  • added datatables searchpanes plugin
  • added uplot chart plugin & demo
  • removed devDependencies
    • @babel/cli
    • @babel/plugin-external-helpers
    • css-loader
    • path
    • set-value
    • style-loader
  • removed dependencies
    • @fullcalendar/bootstrap (replaced with new dependency fullcalendar)
    • @fullcalendar/core (replaced with new dependency fullcalendar)
    • @fullcalendar/daygrid (replaced with new dependency fullcalendar)
    • @fullcalendar/interaction (replaced with new dependency fullcalendar)
    • @fullcalendar/timegrid (replaced with new dependency fullcalendar)
  • and some other small fixes/changes

Thanks to @XhmikosR for the 55+ incredible PR's also Thanks for the PR's to @shawnheide, @mineminemine, @shailesh-ladumor, @SmileYzn, @yangfuhai, @nisarhassan12, @danny007in

For the complete changelog look here.

v3.1.0-rc

This is only short description, the complete will come in the full release.

Breaking Change! Changed SCSS filename case

  • build/scss/AdminLTE-raw.scssbuild/scss/_adminlte.raw.scss
  • build/scss/AdminLTE.scssbuild/scss/adminlte.scss
  • build/scss/AdminLTE-components.scssbuild/scss/parts/adminlte.components.scss
  • build/scss/AdminLTE-core.scssbuild/scss/parts/adminlte.core.scss
  • build/scss/AdminLTE-extra-components.scssbuild/scss/parts/adminlte.extra-components.scss
  • build/scss/AdminLTE-pages.scssbuild/scss/parts/adminlte.pages.scss
  • build/scss/AdminLTE-plugins.scssbuild/scss/parts/adminlte.plugins.scss

New in v3.1:

  • Dark Mode
  • New Components
    • Month Pagination
    • Login/Register v2
    • IFrame mode
    • uPlot Charts
    • Kanban Board
    • Pages
      • FAQ
      • Contact Us
    • Search
      • Simple
      • Enhanced
    • Simple Kanban Board
  • New Demo Examples
    • Stepper/Wizard
    • Multi File Upload
    • Codemirror
    • Datatables with Buttons
    • Form Input Styles
  • New Sidebar features
    • Sidebar Search
    • Custom Area
  • New JS Plugins & JS Plugin features
    • Fullscreen mode
    • SidebarSearch plugin
    • ExpandableTables plugin
    • IFrame plugin
  • Additionally
    • added FontAwesome light, duotone & svg support
    • added Datatables Scrollpane Plugin
    • added btn-app Color Variations
    • enhance brand-link with pushmenu inside brand
    • added new Border Bottom only input style
    • added custom-control-input Color Variations
    • added custom-control-input-outline for checkbox & radio

For the complete changelog look here.

v3.0.5

Release Notes

  • fixed whitespace with fixed navbar & footer
  • fixed anchor color on .btn
  • added !important to text-(color)
  • fixed inline input-group in sidebar on macOS
  • added margin-bottom to form-inline in sidebar
  • added ribbon over image demo & docs
  • and some other small fixes/changes

Thanks to @medardm, @danny007in, @erdkse & @ddiskandar for your PR's.

For the complete changelog look here.

v3.0.4

Release Notes

  • fixed accent not working on datatable pagination
  • fixed collapse is not working when when i maximize
  • fixed slow scrolling bug with ScrollAnywhere
  • downgraded bootstrap-switch to v3.3.4
  • updated dependencies
    • @fortawesome/fontawesome-free from 5.11.2 to 5.13.0
    • @fullcalendar/bootstrap from 4.3.0 to 4.4.0
    • @fullcalendar/core from 4.3.1 to 4.4.0
    • @fullcalendar/daygrid from 4.3.0 to 4.4.0
    • @fullcalendar/interaction from 4.3.0 to 4.4.0
    • @fullcalendar/timegrid from 4.3.0 to 4.4.0
    • @sweetalert2/theme-bootstrap-4 from 2.2.1 to 3.1.4
    • bootstrap from 4.3.1 to 4.4.1
    • bootstrap-colorpicker from 3.1.2 to 3.2.0
    • bs-custom-file-input from 1.3.2 to 1.3.4
    • flag-icon-css from 3.4.5 to 3.4.6
    • flot from 3.2.13 to 4.2.0
    • fs-extra from 8.1.0 to 9.0.0
    • inputmask from 4.0.9 to 5.0.3
    • ion-rangeslider from 2.3.0 to 2.3.1
    • jszip from 3.2.2 to 3.3.0
    • overlayscrollbars from 1.10.0 to 1.11.0
    • pdfmake from 0.1.62 to 0.1.65
    • popper.js from 1.16.0 to 1.16.1
    • select2 from 4.0.12 to 4.0.13
    • summernote from 0.8.12 to 0.8.16
    • sweetalert2 from 8.19.0 to 9.10.8
  • updated devDependencies
    • @babel/cli from 7.7.4 to 7.8.4
    • @babel/core from 7.7.4 to 7.9.0
    • @babel/plugin-external-helpers from 7.7.4 to 7.8.3
    • @babel/preset-env from 7.7.4 to 7.9.0
    • autoprefixer from 9.7.3 to 9.7.5
    • babel-eslint from 10.0.3 to 10.1.0
    • css-loader from 3.2.1 to 3.4.2
    • eslint from 6.7.2 to 6.8.0
    • eslint-plugin-compat from 3.3.0 to 3.5.1
    • nodemon from 1.19.4 to 2.0.2
    • postcss-cli from 6.1.3 to 7.1.0
    • rollup from 1.27.8 to 2.3.2
    • rollup-plugin-babel from 4.3.3 to 4.4.0
    • set-value from 3.0.1 to 3.0.2
    • style-loader from 1.0.1 to 1.1.3
    • terser from 4.4.2 tom 4.6.10

For the complete changelog look here.

v3.0.3

Release Notes

  • fixed accent overrides
  • fixed CardRefresh double init bug
  • added overlay for tab-panels (thanks @andcarpi)
  • fixed typo in build/scss/_main-sidebar.scss (thanks @thewebartisan7)
  • fixed various sidebar/brand bugs
  • fixed various demo bugs (thanks @bansalshashank)
  • fixed various readme bugs (thanks @cyoung)
  • fixed various docs bugs (thanks @task-jp & @lostship)

For the complete changelog look here.

v3.0.2

Release Notes

  • some small control sidebar fixes
    • fixed content height calculation with overlapping control sidebar
    • fixed collapse/show functions (functions was swapped)
  • fixed custom checkbox padding
  • fixed layout-navbar–fixed on iOS & macOS Safari
  • fixed nested card header style
  • fixed accent color with sidebar, buttons & dropdowns
  • updated dependencies & devDependencies
    • updated chart.js to v2.9.3
    • updated select2 to v4.0.12
  • fixed dropdown menu in top-nav layout
  • fixed box-shadow display while fully collapsed sidebar
  • fixed form label with alternative css files
  • added new lightblue color (legacy blue)
  • fixed accent focus border color on form elements
  • correct and Improve of FilterizR sample page (Thanks @Ppojin)
  • correct all day event (Thanks @Ppojin)
  • fixed double border on cards with nav tabs (Thanks @frenchykiller)
  • fixed Layout('init') for external use
  • added .badge-btn style
  • various sidebar fixes
  • various demo fixes

For the complete changelog look here.

v3.0.1

Release Notes

  • fixed card header background
  • updated dependencies & devDependencies
    • updated chart.js to v2.9.2
    • updated flag-icon-css to v3.4.5
    • updated pdfmake to v0.1.62
    • updated sweetalert2 to v8.19.0
    • updated devDep autoprefixer to v9.7.1
    • updated devDep eslint to v6.6.0
    • updated devDep node-sass to v4.13.0
    • updated devDep rollup to v1.26.3
  • fixed margin left on sidebar collapse without sidebar-mini
  • fixed broken link (thanks @Androz2091)
  • fixed mozilla outline bug
  • fixed bootstrap-slider tooltip not shown
  • added missing !default to $main-footer-bg (thanks @dima-bzz)
  • fixed user-menu dropdown top border
  • enhanced javascript plugins
    • added expand & collapse method in PushMenu
    • added expandSidebar & sidebarButtonSelector option in Treeview
  • some small js option fixes
  • and many more ...

For the complete changelog look here.

v3.0.0

Release Notes

  • fixed info box icon aligning
  • added .nav-legacy
  • added .nav-collapse-hide-child
  • fixed sidebar-light-hover-bg & sidebar-light-active-color
  • removed mozilla dotted border from focus links
  • fixed select2 paddings/margins
  • corrected select2 paddings to change look similar to form-control/custom-form select
  • added forget password & recover password demo
  • fixed card default border after adding nav tabs support

For the complete changelog look here.

v3.0.0-rc.6

Release Notes

  • fixed collapsed sidebar autocollapse bug
  • fixed unnecessary margin in list in timeline component
  • updated dependencies & copied to plugin/
  • updated devDependecies
  • fixed ::placeholder generation with autoprefixer
  • added alert-default-* class for bootstrap4 legacy style
  • fixed border-top for card-outline-tabs nav-item
  • fixed content margin with active sidebar overlay
  • added abilty to use select2 with input-group
  • fixed fixLayoutHeight on pushmenu collapse/expand event & removed auto expand sidebar on resize
  • fixed select2 multiple padding bottom
  • changed input placeholder color with lighten
  • added bs-custom-file-input plugin
  • fixed select2 init bug in forms/advanced.html
  • fixed box-shadow with select2 bootstrap4 theme
  • enhanced scss structure & compiled size

For the complete changelog look here.

v3.0.0-rc.5

Release Notes

  • fixed docs generation problems
  • fixed submenu expand bug
  • fixed resizing bugs with chartjs in index.html
  • enable auto collapse size by 992px as default option
  • added new plugin jquery-validation v1.19.1
  • fixed content height calculation
  • fixed some little select2 default theme
  • fixed autocallapse on mobile touchscroll & rebuild dists
  • fixed select2 multiple height bug
  • fixed content height calc with less sidebar content
  • fixed navbar tabs border in card-header

For the complete changelog look here.

v3.0.0-rc.4

Release Notes

  • moved fs-extra to deps instead of devDeps
  • fixed accent build error
  • fixed npm i prepare plugins error
  • fixed margin of input-group, nav & pagination inside card-tools
  • fixed invoice-print loading from file://
  • overhauled top-nav layout with a collapsable menu

For the complete changelog look here.

v3.0.0-rc.3

Release Notes

  • npmignore fixes

For the complete changelog look here.

v3.0.0-rc.2

Release Notes

  • fixed some html markups
  • added multi level example in sidebar
  • added support for .text-sm with brand-link, main-sidebar & main-footer
  • added .nav-flat style with child-indent support
  • added sidebar form support (e.g. search input)
  • created a fully new javascript plugin called Toasts
    • easy and simple toast injector, based on boostrap 4 toasts
  • enhanced Treeview.js
    • changed next() to find() in Treeview toggle()
  • added .dropdown-icon for icon only dropdown toggles
  • enhanced docs
    • added components/miscellaneous.md
    • updated layout.md
    • updated components/sidebar.md
  • enhanced plugins preparation
  • added ability to add nav tabs inside card header
  • enhanced default select2 theme
  • added/updated plugins
    • added pace progress demo (existing plugin)
    • added bootstrap-switch
    • updated pdfmake to 0.1.59
    • updated fontawesome-free to 5.11.1
    • updated flag-icon-css to 3.4.0
    • updated sweetalert2 to 8.17.6
  • and many more little css/js fixes

For the complete changelog look here.

Thanks for the great response for v3.0.0-rc.1.

v3.0.0-rc.1

Release Notes

  • migrated CardRefresh aka BoxRefresh
  • enhanced CardWidget JS
  • enhanced ControlSidebar CSS/JS
  • added Dropdown JS
  • added new demo pages
  • updated plugins and added all missing datatables extensions
  • and many more...

For the complete changelog look here.

Thanks @Leviasan & @laiso for you PR's

v2.4.18

Release Notes

  • updated jquery-ui to 1.12.1
  • removed position absoulte from box-tools to avoid overlapping with box-title
  • enhanced tree collapse/expand to avoid flood slide animation on multiple clicks on one item

For the complete changelog look here.

v2.4.17

Release Notes

  • updated bower components
    • removed bootstrap-timepicker from bower.json (due it doesn't deliver dist files via bower/npm)
    • updated fullcalendar to 3.10.1
    • updated raphael to 2.3.0
  • removed bootstrap-timepicker from package.json

For the complete changelog look here.

v2.4.16

Release Notes

  • preparation for build on Travis CI
  • trust semver constraints at package.json and bower.json
  • remove changelog.md link from README.md
    • updated bower components
    • updated bootstrap-datepicker to 1.9.0
    • updated chart.js to 1.1.1
    • updated ckeditor to 4.12.1
    • updated jquery to 3.4.1
    • updated raphael to 2.2.7
    • updated select2 to 4.0.8
    • updated jquery to 3.4.1
    • updated bootstrap-slider to 10.6.2 (according to docs & package.json)
  • fixed control-sidebar slide option

For the complete changelog look here.

Thanks to @phansys & @philip for your contributions.

v3.0.0-beta.2

Release Notes

  • added overlay for small-box & info-box
  • added support for focus to expand functionality in main-sidebar
  • enhanced input[type="range"] colors
  • added support for vertical nav tabs
  • added support for fixed Table Header
  • reordered Extras & Pages in demo files
  • added 6 new pages in demo (E-commerce, Projects, Project Add, Project Edit, Project Detail & Contacts)
  • added 2 new extras in demo (Legacy User Menu, Language Menu)
  • added 3 new plugins (flag-icon-css, jsGrid & bootstrap-duallistbox)
  • added fixed navbar & footer incl responisve
  • added back to top style, visible in widget demo
  • some building steps changes (e.g. moved settings files to one place, updated devDependencies for "js-compile" script, changed module to work with the file system)
  • added DirectChat & TodoList JavaScript
  • a complete fresh documentation (not 100% complete)
  • and many css/js bugfixes

For the complete changelog look here.

Thanks @Leviasan @andymark-by @maxwellmc for your PRs

v2.4.15

Release Notes

  • fixed bower install error ENOTFOUND Package [@dev](https://github.com/dev) not found
v2.4.14

Release Notes

  • fixed content-wrapper height calculation if footer isn't there
v2.4.13

Release Notes

  • fixed scroll top bug in fixed layout mode
  • updated select2 to latest version (v4.0.7)
  • fixed multilevel collapse for child treeview menu
  • added ability to use fontawesome 5 icon on sidebar-toggle
  • changed content-wrapper calc() from % to vh & added content-wrapper calc() with collapsed header
  • added asset packagist to composer.json
  • added parent height:auto on tree expand to avoid child overlapping
  • changed bootstrap-slider from * to [@dev](https://github.com/dev) to avoid minimum-stability error
  • added ability to use img logo instead of text logo
  • added ability to use brand-logo with text instead of only a text logo
  • added .hidden-xs to .box-tools searchbar to avoid overlapping
  • fixed collapsed sidebar-menu's sub menu indicator(angle) on hover
v3.0.0-beta.1

Release Notes

  • Some little V3-dev changes/fixes (PR #2105)
    • updated node_modules
      • bootstrap 4.1.2 to 4.3.1
      • chart.js 2.7.2 to 2.8.0
      • jquery 3.3.1 to 3.4.1
      • popper.js 1.14.3 to 1.15.0
      • browser-sync 2.24.5 to 2.26.5
      • clean-css-cli 4.1.11 to 4.3.0
      • eslint-plugin-compat 2.5.0 to 2.7.0
      • node-sass 4.9.2 to 4.12.0
      • nodemon 1.18.2 to 1.19.0
      • npm-run-all 4.1.3 to 4.1.5
      • uglify-js 3.4.4 to 3.5.13
    • added color: inherit to .table
    • added fix for cutted nav-link in sidebar collapsed state
    • added tooltip fix for tooltips in sidebar
  • added modals & changed zindex's (PR #2106)
    • added Modals Demo Page
    • added Link to Modals in any other Demo Page
    • added Modal Color Variation fixes
    • updated zindex values header from 1000 to 900 sidebar from 1100 to 950 (below bootstrap 4 defaults to work with dropdown, modal, popover & tooltip)
    • removed tooltip zindex overide
  • little v3 changes (PR #2110)
    • removed all files from /dist/js/plugins (unnecessary since all demo pages use plugins from root)
    • fixed same text-color as background for nav-item:hover dropdown
    • updated fontawesome to fontawesome-free 5.8.2
      • updated all demo pages
      • updated fontawesome entries in build/npm/Plugins
      • updated package.json & package-lock.json
      • replaced fontawesome files in plugins/
      • fixed fontawesome icon rules in buttons, cards, sidebar & smallbox
    • added calc for .content-wrapper min-height
    • added layouts: top-nav, boxed & sidebar collapsed
    • fixed mailbox attachment size
    • added new color classes bg-, navbar-
      • updated demo.js
    • updated sidebar in demo files (added layout options)
    • added autoprefixer to fix browser specific css changes
    • added css sourcemap for adminlte.min.css
  • Road to v3.0.0-beta.1 (PR #2119)
    • replaced slimScroll to overlayScrollbars
    • added new layout types (fixed, navbar-fixed & footer-fixed)
    • changed old default layout from "fixed" to non-fixed
    • enhanced PushMenu.js to load options via data
    • enhanced Layout.js new layout calcs, options via data for scrollbar
    • fixed forms fontawesome icons
    • added warning-feedback (without icon)
    • added sidebar-mini-md
    • updated index to use layout-fixed
    • updated index2 to use layout-fixed, layout-navbar-fixed & layout-footer-fixed
    • added ability for auto collapse sidebar option
  • some little changes (PR #2120)
    • updated copyright infos
    • added js option for content with fixed height
  • custom-switch, modal overlay, plugin updates & one bug fixed (PR #2123)
    • enhanced custom-switch
      • updated forms/general demo page
      • added custom-switch off/on color variants
      • rebuild css files
    • modal overlay
      • update color darken/lighten for custom-switch's
      • added .overlay in .modal-dialog/.modal-content
      • created demo modal in modals.html
      • rebuild css dist files
    • updated plugins part 1
      • updated package.json plugins (fontawesome)
      • updated npm/Plugins
      • removed bootstrap css files
      • replaced bootstrap-wysihtml5 (it's not support BS4) with summernote
      • updated bootstrap-slider to latest version & updated demo
      • replaced old chartjs demos with new chartjs
      • updated bootstrap-colorpicker & updated forms/advanced demo file
      • removed ckeditor in order to respect licenses
      • replaced bootstrap-datepicker & bootstrap-timepicker with tempusdominus-bootstrap-4
    • fixed sidebar collapse bug after autoCollapse feature
  • updated plugins part 2 & some enhancements (PR #2133)
    • updated plugins
      • added .editorconfig
      • updated package.json & build/npm/Plugins.js according to the following changes
      • updated dev dependencies to clear audits
      • updated daterangepicker
      • updated overlayScrollbars
      • moved flot (0.8.2) to flot-old for plugins
      • updated flot
      • updated fullcalendar
      • replaced icheck with icheck-bootstrap & updated demo files
      • added icheck-bootstrap color overrides
      • updated inputmask
      • updated ion-rangeslider
      • updated jquery-ui
      • updated bootstrap-slider tweaks & demo files
      • replaced jvectormap with jqvmap & updated demo files
      • added jquery-mapael & replaced in index2 jvectormap
      • updated jquery-knob
      • replaced pace with pace-progress
      • updated select2 & demo files
      • replaced jquery.sparkline with sparklines & updated demo files and removed jquery.sparkline demo section
      • removed ckeditor from package.json & removed jquery sparline lines in dashboard2.js
    • enhanced charts demo
      • added pie chart
      • added stacked bar chart
    • added legacy user menu (thanks @BruceHill)
    • enhanced card & widget with expand/compress (fullscreen) and some little fixes
      • updated Widget.js
      • updated _cards.scss
      • enabled gradients in _bootstrap-variables.scss
      • fixed old bg-*-gradient (theme colors)
      • added bg-*-gradient (colors)
      • updated cards demo section in pages/widgets.html
    • fixed unable to expand sidebar in with navbar-fixed & footer-fixed width
    • added sidebar nav-treeview indent via .nav-child-indent on ul.nav-sidebar
  • last fixes before releasing v3.0.0-beta.1 (PR #2141)
    • some little changes with gradients
      • removed default gradients
      • renamed bg--gradient to bg-gradient- to follow bootstrap's default gradients
      • added btn related gradient hover & active changes
      • updated related demo files (index.html, pages/widgets.html & pages/UI/buttons.html)
      • fixed infobox gradient color
    • fixed sidebar child indent to indent even level 2+ entries
    • fixed unable to click on hamburger button
v2.4.12

Release Notes

  • Fixed npm audit error
  • Fixed strange navigation menu behavior + dark space on reloads
  • Added height auto to .login-page & .register-page
v2.4.11

Release Notes

  • Added setTimeout on treeview expand #2067
  • Fixed layout skin-black-light height inconsistence #2091
  • Changed min-height to calc in .content-wrapper (css)
  • Changed hr border color to [@gray](https://github.com/gray) instead of [@gray-lighter](https://github.com/gray-lighter)
  • Fixed ionicons path in docs
  • Fixed missing time in "Date and time range" picker
  • Fixed drag and drop breaking AdminLTE's design
  • Fixed sidebar menu tree dropdown always open
v4.0.2
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
capell-app/block-library
capell-app/frontend
capell-app/admin
capell-app/core
axium/identity
cetria/laravel-dummy-models
cetria/reflection-helper
agropredict/sso-auth-bundle
evolvestudio/spam-protection
directorytree/privacy-filter-classifier
datacore/hub-sdk
develia/commons
cuci/prototurk-sdk
cuci/prototurk-sdk-symfony
develia/geo-bundle
dreamzy/livewire-charts
touchestate-sdk/php-sdk
22h/doctrine-garbage-collection-bundle
agtp/agtp-php
agtp/mod-php