gitextract_al_e0b_v/ ├── .babelrc.js ├── .browserslistrc ├── .cursorrules ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ ├── ISSUE_TEMPLATE.md │ ├── SUPPORT.md │ └── stale.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .stylelintignore ├── .stylelintrc ├── ARCHITECTURE.md ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── build/ │ ├── change-version.mjs │ ├── postcss.config.mjs │ ├── pug.mjs │ └── vendors.mjs ├── eslint.config.mjs ├── nodemon.json ├── package.json └── src/ ├── assets/ │ └── favicon/ │ ├── browserconfig.xml │ └── manifest.json ├── js/ │ ├── charts.js │ ├── color-modes.js │ ├── colors.js │ ├── config.js │ ├── main.js │ ├── popovers.js │ ├── toasts.js │ ├── tooltips.js │ └── widgets.js ├── pug/ │ ├── _layout/ │ │ ├── default.pug │ │ └── pages.pug │ ├── _mixins/ │ │ ├── breadcrumb.pug │ │ ├── callout-custom.pug │ │ ├── callout.pug │ │ ├── docs-components.pug │ │ └── example.pug │ ├── _partials/ │ │ ├── banner.pug │ │ ├── docs-icons.pug │ │ ├── footer.pug │ │ ├── head.pug │ │ ├── header.pug │ │ ├── scripts.pug │ │ └── sidebar.pug │ └── views/ │ ├── 404.pug │ ├── 500.pug │ ├── base/ │ │ ├── accordion.pug │ │ ├── breadcrumb.pug │ │ ├── cards.pug │ │ ├── carousel.pug │ │ ├── collapse.pug │ │ ├── list-group.pug │ │ ├── navs-tabs.pug │ │ ├── pagination.pug │ │ ├── placeholders.pug │ │ ├── popovers.pug │ │ ├── progress.pug │ │ ├── spinners.pug │ │ ├── tables.pug │ │ └── tooltips.pug │ ├── blank.pug │ ├── buttons/ │ │ ├── button-group.pug │ │ ├── buttons.pug │ │ └── dropdowns.pug │ ├── charts.pug │ ├── colors.pug │ ├── forms/ │ │ ├── checks-radios.pug │ │ ├── floating-labels.pug │ │ ├── form-control.pug │ │ ├── input-group.pug │ │ ├── layout.pug │ │ ├── range.pug │ │ ├── select.pug │ │ └── validation.pug │ ├── icons/ │ │ ├── coreui-icons-brand.pug │ │ ├── coreui-icons-flag.pug │ │ └── coreui-icons-free.pug │ ├── index.pug │ ├── login.pug │ ├── notifications/ │ │ ├── alerts.pug │ │ ├── badge.pug │ │ ├── modals.pug │ │ └── toasts.pug │ ├── register.pug │ ├── typography.pug │ └── widgets.pug ├── scss/ │ ├── examples.scss │ ├── style.scss │ └── vendors/ │ └── simplebar.scss └── views/ ├── 404.html ├── 500.html ├── base/ │ ├── accordion.html │ ├── breadcrumb.html │ ├── cards.html │ ├── carousel.html │ ├── collapse.html │ ├── list-group.html │ ├── navs-tabs.html │ ├── pagination.html │ ├── placeholders.html │ ├── popovers.html │ ├── progress.html │ ├── spinners.html │ ├── tables.html │ └── tooltips.html ├── blank.html ├── buttons/ │ ├── button-group.html │ ├── buttons.html │ └── dropdowns.html ├── charts.html ├── colors.html ├── forms/ │ ├── checks-radios.html │ ├── floating-labels.html │ ├── form-control.html │ ├── input-group.html │ ├── layout.html │ ├── range.html │ ├── select.html │ └── validation.html ├── icons/ │ ├── coreui-icons-brand.html │ ├── coreui-icons-flag.html │ └── coreui-icons-free.html ├── index.html ├── login.html ├── notifications/ │ ├── alerts.html │ ├── badge.html │ ├── modals.html │ └── toasts.html ├── register.html ├── typography.html └── widgets.html