{"id":16015013,"url":"https://github.com/louismazel/vue-select-input-ui","last_synced_at":"2025-10-25T07:31:16.283Z","repository":{"id":44286847,"uuid":"219568979","full_name":"LouisMazel/vue-select-input-ui","owner":"LouisMazel","description":"A beautiful select input ","archived":false,"fork":false,"pushed_at":"2023-07-07T23:03:18.000Z","size":4289,"stargazers_count":3,"open_issues_count":11,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-19T07:38:06.749Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://louismazel.github.io/vue-select-input-ui/","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LouisMazel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-11-04T18:27:25.000Z","updated_at":"2020-05-02T07:52:23.000Z","dependencies_parsed_at":"2024-12-18T08:33:42.645Z","dependency_job_id":null,"html_url":"https://github.com/LouisMazel/vue-select-input-ui","commit_stats":{"total_commits":44,"total_committers":2,"mean_commits":22.0,"dds":"0.022727272727272707","last_synced_commit":"d2501172c4b12270f98553139e1eaa7c1b98c301"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LouisMazel%2Fvue-select-input-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LouisMazel%2Fvue-select-input-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LouisMazel%2Fvue-select-input-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LouisMazel%2Fvue-select-input-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LouisMazel","download_url":"https://codeload.github.com/LouisMazel/vue-select-input-ui/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238103355,"owners_count":19416919,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-08T15:05:53.752Z","updated_at":"2025-10-25T07:31:15.606Z","avatar_url":"https://github.com/LouisMazel.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VueSelectInputUi\n\n\u003e A vue component for select dates (range mode available) \u0026 time\n\n![vue-select-input-ui](./assets/illu-animated.gif)\n\n## Demo\n\n[Enjoy](https://louismazel.github.io/vue-select-input-ui/)\n\n## Installation\n\nYarn\n\n```bash\nyarn add vue-select-input-ui\n```\n\nNPM\n\n```bash\nnpm i --save vue-select-input-ui\n```\n\n## Usage\n\n### ES6 Modules / CommonJS\n\n```js\nimport VueSelectInputUi from 'vue-select-input-ui';\nimport 'vue-select-input-ui/dist/vue-select-input-ui.css';\n\nVue.component('VueSelectInputUi', VueSelectInputUi);\n```\n\n```html\n  \u003cVueSelectInputUi\n    v-model=\"yourValue\"\n    :options=\"[\n      { label: 'First option', value: 'first' },\n      { label: 'Second option', value: 'second' },\n      { label: 'Third option', value: 'third' }\n    ]\"\n  /\u003e\n```\n\n### UMD\n\n```html\n\u003clink\n  rel=\"stylesheet\"\n  type=\"text/css\"\n  href=\"${YOUR_PATH}/vue-select-input-ui.css\"\n/\u003e\n\n\u003cdiv id=\"app\"\u003e\n  \u003cVueSelectInputUi v-model=\"yourValue\"\u003e\u003c/VueSelectInputUi\u003e\n\u003c/div\u003e\n\n\u003cscript src=\"https://unpkg.com/vue\" charset=\"utf-8\"\u003e\u003c/script\u003e\n\u003cscript\n  src=\"${YOUR_PATH}/vue-select-input-ui.umd.min.js\"\n  charset=\"utf-8\"\n\u003e\u003c/script\u003e\n\n\u003cscript type=\"text/javascript\"\u003e\n  Vue.component('vue-select-input-ui', window['vue-select-input-ui']);\n  new Vue({\n    el: '#app',\n    data() {\n      return {\n        yourValue: false\n      };\n    }\n  });\n\u003c/script\u003e\n```\n\n## Props API\n\n| Props           | Type                | Required | Default          |\n|-----------------|---------------------|----------|------------------|\n| v-model         | String              | yes      | -                |\n| id              | String              | no       | VueSelectInputUi |\n| name            | String              | no       | VueSelectInputUi |\n| label           | String              | no       | Select option    |\n| hint (1)        | String              | no       | -                |\n| error (2)       | Boolean             | no       | false            |\n| color (3)       | String (hex)        | no       | dodgerblue       |\n| dark-color (4)  | String (hex)        | no       | #424242          |\n| item-height (4) | Int                 | no       | 30               |\n| list-height     | Int                 | no       | 210              |\n| size            | String ['sm', 'lg'] | no       | null             |\n| disabled        | Boolean             | no       | false            |\n| required        | Boolean             | no       | false            |\n| dark            | Boolean             | no       | false            |\n| valid           | Boolean             | no       | false            |\n| validColor      | String (hex)        | no       | false            |\n| options (5)     | String (hex)        | no       | false            |\n| border-radius   | Number              | no       | 8                |\n\n(1) hint : Is a text that replaces the label/placeholder (Ex : Error designation)\n\n(2) error : When is `true` --\u003e Input border \u0026 label are red\n\n(3) color: Replace color for the hint, the borders \u0026 picker color\n\n(4) Height of items in option list\n\n(5) Options should be an Array of object like that :\n\n```js\n[\n  { label: 'None' },\n  { label: 'First option', value: 'first' },\n  { label: 'Second option', value: 'second' },\n  { label: 'Third option', value: 'third' }\n]\n```\n\n## Feature list\n\n- You can search the option on taping the label\n- Keyboard accessibilty\n- Valid state ui\n- Error state ui\n- Message error state ui\n\n## Events API\n\n| Event | Return                                |\n|-------|---------------------------------------|\n| input | value (formatted with 'format' props) |\n| click | when you click on the component       |\n| focus | when the component is focused         |\n| blur  | when the component is blur            |\n\n## Keyboard Accessible\n\n| Key        | Action          |\n|------------|-----------------|\n| Arrow Down | Next option     |\n| Arrow Up   | Previous option |\n| Escape     | Close list      |\n| Enter      | Select option   |\n\n## Upcoming features (Todo)\n\n- Position list (left, right, top, bottom)\n\n## Contribute\n\n## Setting up development server\n\nEnsure you have Node and npm in your machine. Minimal config is:\n\n- node \u003e= 6.0\n- npm \u003e= 3.0\n\n\u003e This project is built with `node@10.x`.\n\nInstall the development dependencies by running:\n\n```bash\nnpm install\n```\n\nor\n\n```bash\nnpm ci # Recommanded if you have node \u003e 10.x\n```\n\nOnce your dependencies are installed, start the development server with:\n\n```bash\nnpm run serve\n```\n\nThis will start the development server available at `http://localhost:8080`.\n\n## Compiles and hot-reloads for development\n\n```bash\nnpm run serve\n```\n\n## Linter\n\n```bash\nnpm run lint\n```\n\n## Tests\n\nWork in progress\n\n## License\n\nThis project is licensed under [MIT License](http://en.wikipedia.org/wiki/MIT_License)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flouismazel%2Fvue-select-input-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flouismazel%2Fvue-select-input-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flouismazel%2Fvue-select-input-ui/lists"}