Understand the Multiple Select package structure
developWhen downloading the Multiple Select source code, the package is organized into several key directories:
dist/: Contains the compiled and minified assets ready for production use. This includes CSS, JavaScript, minified versions, and Vue-specific builds.src/: Contains the original source code for CSS and JavaScript, including constants, locales, themes, utilities, and the core logic.site/: Contains the source code used to generate the project documentation.README.md: Project overview and usage instructions.
Use the files in dist/ for direct integration into your projects.
multiple-select/
├── site/
├── src
│ ├── constants
│ ├── locale
│ ├── themes
│ ├── utils
│ ├── virtual-scroll
│ ├── vue
│ ├── MultipleSelect.js
│ ├── multiple-select.js
│ └── multiple-select.scss
├── dist
│ ├── locale/
│ ├── themes/
│ ├── multiple-select.css
│ ├── multiple-select.js
│ ├── multiple-select.min.css
│ ├── multiple-select.min.js
│ ├── multiple-select-locale-all.js
│ ├── multiple-select-locale-all.min.js
│ ├── multiple-select-vue.js
│ └── multiple-select-vue.umd.js
└── README.md