gitextract_502nq9vu/ ├── .eslintignore ├── .eslintrc.js ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── .npmignore ├── .prettierrc ├── .vscode/ │ └── settings.json ├── BUILD-TOOLS.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── config.yml ├── content/ │ ├── _index.html │ ├── components/ │ │ ├── accordion.md │ │ ├── alerts.md │ │ ├── avatar.md │ │ ├── badge.md │ │ ├── banner.md │ │ ├── bottom-navigation.md │ │ ├── breadcrumb.md │ │ ├── button-group.md │ │ ├── buttons.md │ │ ├── card.md │ │ ├── carousel.md │ │ ├── chat-bubble.md │ │ ├── clipboard.md │ │ ├── datepicker.md │ │ ├── device-mockups.md │ │ ├── drawer.md │ │ ├── dropdowns.md │ │ ├── footer.md │ │ ├── forms.md │ │ ├── gallery.md │ │ ├── indicators.md │ │ ├── jumbotron.md │ │ ├── kbd.md │ │ ├── list-group.md │ │ ├── mega-menu.md │ │ ├── modal.md │ │ ├── navbar.md │ │ ├── pagination.md │ │ ├── popover.md │ │ ├── progress.md │ │ ├── qr-code.md │ │ ├── rating.md │ │ ├── sidebar.md │ │ ├── skeleton.md │ │ ├── speed-dial.md │ │ ├── spinner.md │ │ ├── stepper.md │ │ ├── tables.md │ │ ├── tabs.md │ │ ├── timeline.md │ │ ├── toast.md │ │ ├── tooltips.md │ │ ├── typography.md │ │ └── video.md │ ├── customize/ │ │ ├── _index.html │ │ ├── colors.md │ │ ├── configuration.md │ │ ├── dark-mode.md │ │ ├── icons.md │ │ ├── optimization.md │ │ ├── rtl.md │ │ ├── theming.md │ │ └── variables.md │ ├── forms/ │ │ ├── checkbox.md │ │ ├── file-input.md │ │ ├── floating-label.md │ │ ├── input-field.md │ │ ├── number-input.md │ │ ├── phone-input.md │ │ ├── radio.md │ │ ├── range.md │ │ ├── search-input.md │ │ ├── select.md │ │ ├── textarea.md │ │ ├── timepicker.md │ │ └── toggle.md │ ├── getting-started/ │ │ ├── _index.html │ │ ├── angular.md │ │ ├── astro.md │ │ ├── blazor.md │ │ ├── build-tools.md │ │ ├── changelog.md │ │ ├── django.md │ │ ├── flask.md │ │ ├── gatsby.md │ │ ├── hugo.md │ │ ├── introduction.md │ │ ├── javascript.md │ │ ├── laravel.md │ │ ├── license.md │ │ ├── llm.md │ │ ├── mcp-ui.md │ │ ├── mcp.md │ │ ├── meteor-js.md │ │ ├── next-js.md │ │ ├── nuxt-js.md │ │ ├── phoenix.md │ │ ├── quickstart.md │ │ ├── qwik.md │ │ ├── rails.md │ │ ├── react.md │ │ ├── remix.md │ │ ├── solid-js.md │ │ ├── svelte.md │ │ ├── symfony.md │ │ ├── typescript.md │ │ └── vue.md │ ├── plugins/ │ │ ├── charts.md │ │ ├── datatables.md │ │ ├── datepicker.md │ │ └── wysiwyg.md │ └── typography/ │ ├── blockquote.md │ ├── headings.md │ ├── hr.md │ ├── images.md │ ├── links.md │ ├── lists.md │ ├── paragraphs.md │ ├── text-decoration.md │ └── text.md ├── data/ │ ├── colors.yml │ └── sidebar.yml ├── layouts/ │ ├── 404.html │ ├── _markup/ │ │ └── render-heading.html │ ├── _partials/ │ │ ├── analytics.html │ │ ├── favicons.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── navbar.html │ │ ├── redirect.html │ │ ├── scripts.html │ │ ├── sidebar.html │ │ ├── social.html │ │ └── stylesheet.html │ ├── _shortcodes/ │ │ ├── code.html │ │ ├── current_version.html │ │ ├── example.html │ │ ├── markdown.html │ │ ├── param.html │ │ ├── partial.html │ │ ├── placeholder.html │ │ ├── preview.html │ │ ├── requires_angular.html │ │ ├── requires_blazor.html │ │ ├── requires_django.html │ │ ├── requires_flask.html │ │ ├── requires_hugo.html │ │ ├── requires_js.html │ │ ├── requires_laravel.html │ │ ├── requires_nextjs.html │ │ ├── requires_nuxtjs.html │ │ ├── requires_react.html │ │ ├── requires_ruby.html │ │ ├── requires_svelte.html │ │ ├── requires_symfony.html │ │ ├── requires_tw3.html │ │ ├── requires_tw4.html │ │ ├── requires_typescript │ │ └── requires_vue.html │ ├── alias.html │ ├── baseof.html │ ├── dashboard.html │ ├── docs.html │ ├── home.html │ ├── redirect.html │ ├── robots.txt │ └── sitemap.xml ├── llms-full.txt ├── llms.txt ├── package.json ├── plugin-windicss.js ├── plugin.d.ts ├── plugin.js ├── postcss.config.js ├── safelist.txt ├── src/ │ ├── components/ │ │ ├── accordion/ │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── types.ts │ │ ├── carousel/ │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── types.ts │ │ ├── clipboard/ │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── types.ts │ │ ├── collapse/ │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── types.ts │ │ ├── datepicker/ │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── types.ts │ │ ├── dial/ │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── types.ts │ │ ├── dismiss/ │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── types.ts │ │ ├── drawer/ │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── types.ts │ │ ├── dropdown/ │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── types.ts │ │ ├── index.ts │ │ ├── input-counter/ │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── types.ts │ │ ├── modal/ │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── types.ts │ │ ├── popover/ │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── types.ts │ │ ├── tabs/ │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ └── types.ts │ │ └── tooltip/ │ │ ├── index.ts │ │ ├── interface.ts │ │ └── types.ts │ ├── config/ │ │ └── global.ts │ ├── docs.css │ ├── docs.js │ ├── dom/ │ │ ├── events.ts │ │ ├── instances.ts │ │ └── types.ts │ ├── enterprise.css │ ├── flowbite.css │ ├── index.phoenix.ts │ ├── index.ts │ ├── index.turbo.ts │ ├── index.umd.ts │ ├── main.css │ ├── minimal.css │ ├── mono.css │ ├── playful.css │ ├── themes/ │ │ ├── default.css │ │ ├── enterprise.css │ │ ├── minimal.css │ │ ├── mono.css │ │ ├── playful.css │ │ └── themes.css │ └── types/ │ └── declarations.ts ├── static/ │ ├── browserconfig.xml │ ├── manifest.json │ ├── site.webmanifest │ └── sw.js ├── syntax.css ├── tailwind.config.js ├── tsconfig.json └── webpack.config.js