gitextract_kv1kv1do/ ├── .editorconfig ├── .github/ │ └── workflows/ │ └── jekyll-gh-pages.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── LICENSE.txt ├── README.md ├── README_CN.md ├── changelog.md ├── dev-watch.sh ├── docs/ │ ├── Gemfile │ ├── README.md │ ├── _config.yml │ ├── _site/ │ │ ├── api-integration/ │ │ │ └── index.html │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ ├── just-the-docs-dark.css │ │ │ │ ├── just-the-docs-default.css │ │ │ │ ├── just-the-docs-head-nav.css │ │ │ │ └── just-the-docs-light.css │ │ │ └── js/ │ │ │ ├── just-the-docs.js │ │ │ └── search-data.json │ │ ├── bundle-analysis/ │ │ │ └── index.html │ │ ├── bundle-analysis.md │ │ ├── components/ │ │ │ └── index.html │ │ ├── configuration/ │ │ │ └── index.html │ │ ├── customization/ │ │ │ └── index.html │ │ ├── daterangepicker-fix/ │ │ │ └── index.html │ │ ├── daterangepicker-fix.md │ │ ├── deployment/ │ │ │ └── index.html │ │ ├── feed.xml │ │ ├── index.html │ │ ├── installation/ │ │ │ └── index.html │ │ ├── jquery-elimination-complete/ │ │ │ └── index.html │ │ ├── jquery-elimination-complete.md │ │ ├── robots.txt │ │ ├── security-headers/ │ │ │ └── index.html │ │ ├── security-headers.md │ │ └── sitemap.xml │ ├── api-integration.md │ ├── bundle-analysis.md │ ├── components.md │ ├── configuration.md │ ├── customization.md │ ├── deployment.md │ ├── index.md │ ├── installation.md │ ├── jquery-elimination-complete.md │ ├── performance.md │ └── security-headers.md ├── eslint.config.js ├── package.json ├── production/ │ ├── calendar.html │ ├── chartjs.html │ ├── contacts.html │ ├── e_commerce.html │ ├── echarts.html │ ├── fixed_footer.html │ ├── fixed_sidebar.html │ ├── form.html │ ├── form_advanced.html │ ├── form_buttons.html │ ├── form_upload.html │ ├── form_validation.html │ ├── form_wizards.html │ ├── general_elements.html │ ├── icons.html │ ├── inbox.html │ ├── index.html │ ├── index2.html │ ├── index3.html │ ├── index4.html │ ├── invoice.html │ ├── landing.html │ ├── level2.html │ ├── login.html │ ├── map.html │ ├── media_gallery.html │ ├── other_charts.html │ ├── page_403.html │ ├── page_404.html │ ├── page_500.html │ ├── plain_page.html │ ├── pricing_tables.html │ ├── profile.html │ ├── project_detail.html │ ├── projects.html │ ├── tables.html │ ├── tables_dynamic.html │ ├── theme-comparison.html │ ├── typography.html │ └── widgets.html ├── public/ │ └── site.webmanifest ├── src/ │ ├── chart-initializer.js │ ├── js/ │ │ ├── helpers/ │ │ │ └── smartresize.js │ │ ├── init.js │ │ ├── page/ │ │ │ └── index3-analytics.js │ │ └── sidebar.js │ ├── main-calendar.js │ ├── main-core.js │ ├── main-form-basic.js │ ├── main-inbox.js │ ├── main-minimal.js │ ├── main-tables.js │ ├── main-upload.js │ ├── main.scss │ ├── modules/ │ │ ├── chart-core.js │ │ ├── charts.js │ │ ├── dashboard-pages.js │ │ ├── dashboard.js │ │ ├── echarts.js │ │ ├── forms.js │ │ ├── maps.js │ │ ├── tables.js │ │ ├── ui-components.js │ │ └── weather.js │ ├── scss/ │ │ ├── _color-schemes.scss │ │ ├── _variables-modern.scss │ │ ├── _variables.scss │ │ ├── custom.scss │ │ ├── daterangepicker.scss │ │ ├── font-optimization.scss │ │ ├── index2.scss │ │ ├── index4.scss │ │ └── landing.scss │ ├── test/ │ │ └── setup.js │ └── utils/ │ ├── dom.js │ ├── dom.test.js │ ├── logger.js │ ├── logger.test.js │ ├── security.js │ ├── security.test.js │ ├── table-optimizer.js │ ├── validation.js │ └── validation.test.js ├── tests/ │ └── README.md ├── vite.config.js └── vitest.config.js