{"id":13532897,"url":"https://github.com/SeregPie/VuetifyImageInput","last_synced_at":"2025-04-01T21:31:17.814Z","repository":{"id":38859934,"uuid":"135295376","full_name":"SeregPie/VuetifyImageInput","owner":"SeregPie","description":"Provides basic image editing tools.","archived":false,"fork":false,"pushed_at":"2025-02-20T21:18:19.000Z","size":700,"stargazers_count":131,"open_issues_count":12,"forks_count":35,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-31T22:16:16.121Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://seregpie.github.io/VuetifyImageInput/","language":"JavaScript","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/SeregPie.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":"2018-05-29T12:50:11.000Z","updated_at":"2024-06-18T05:56:28.000Z","dependencies_parsed_at":"2024-01-14T01:55:24.315Z","dependency_job_id":"6657ab7f-78ac-4362-85ba-e98b86925421","html_url":"https://github.com/SeregPie/VuetifyImageInput","commit_stats":{"total_commits":206,"total_committers":4,"mean_commits":51.5,"dds":"0.014563106796116498","last_synced_commit":"3853f4e1dc3e64cdc4a2b0f93a7d32448abc3c14"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeregPie%2FVuetifyImageInput","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeregPie%2FVuetifyImageInput/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeregPie%2FVuetifyImageInput/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SeregPie%2FVuetifyImageInput/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SeregPie","download_url":"https://codeload.github.com/SeregPie/VuetifyImageInput/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246547372,"owners_count":20794971,"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-08-01T07:01:14.709Z","updated_at":"2025-04-01T21:31:17.784Z","avatar_url":"https://github.com/SeregPie.png","language":"JavaScript","funding_links":[],"categories":["🙌 Projects using Vuetify \u003ca name=\"projects\"\u003e\u003c/a\u003e"],"sub_categories":["Vuetify 2"],"readme":"# VuetifyImageInput\n\nProvides basic image editing tools.\n\n## demo\n\n[Try it out!](https://seregpie.github.io/VuetifyImageInput/)\n\n## dependencies\n\n- [VueClaw](https://github.com/SeregPie/VueClaw)\n\n## setup\n\n### npm\n\n```shell\nnpm i vuetify-image-input\n```\n\n---\n\n```javascript\nimport VuetifyImageInput from 'vuetify-image-input';\n```\n\n*or*\n\nUse the [treeshaking](https://vuetifyjs.com/features/treeshaking) system.\n\n```javascript\nimport VuetifyImageInput from 'vuetify-image-input/a-la-carte';\n```\n\n### browser\n\n```html\n\u003clink\n  href=\"https://unpkg.com/vuetify@2/dist/vuetify.min.css\"\n  rel=\"stylesheet\"\n/\u003e\n\u003cscript src=\"https://unpkg.com/vue@2\"\u003e\u003c/script\u003e\n\u003cscript src=\"https://unpkg.com/vuetify@2/dist/vuetify.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"https://unpkg.com/vuetify-image-input\"\u003e\u003c/script\u003e\n```\n\nThe component is globally available as `VuetifyImageInput`. If Vue is detected, the component is registered automatically.\n\n## usage\n\nRegister the component globally.\n\n```javascript\nimport Vue from 'vue';\nimport VImageInput from 'vuetify-image-input';\n\nVue.component(VImageInput.name, VImageInput);\n```\n\n*or*\n\nRegister the component locally.\n\n```javascript\nimport VImageInput from 'vuetify-image-input';\n\nexport default {\n  components: {\n    VImageInput,\n  },\n  // ...\n};\n```\n\n---\n\nUse the component inside a template.\n\n```html\n\u003cv-image-input\n  v-model=\"image\"\n  :image-quality=\"0.85\"\n  clearable\n  image-format=\"jpeg\"\n  @file-info=\"onFileInfo\"\n/\u003e\n```\n\n## properties\n\n| name | type | default | description |\n| ---: | :--- | :--- | :--- |\n| `clearable` | `Boolean` | `false` | |\n| `clearIcon` | `String` | `'$clear'` | |\n| `clearIconStyle` | `Object` | | |\n| `debounce` | `Number` | `0` | |\n| `disabled` | `Boolean` | `false` | |\n| `errorIcon` | `String` | `'$error'` | |\n| `errorIconStyle` | `Object` | | |\n| `flipHorizontallyIcon` | `String` | `'mdi-flip-horizontal'` | |\n| `flipHorizontallyIconStyle` | `Object` | | |\n| `flipVerticallyIcon` | `String` | `'mdi-flip-vertical'` | |\n| `flipVerticallyIconStyle` | `Object` | | |\n| `fullHeight` | `Boolean` | `false` | |\n| `fullWidth` | `Boolean` | `false` | |\n| `hideActions` | `Boolean` | `false` | |\n| `imageBackgroundColor` | `String` | | |\n| `imageFormat` | `String` | `'png'` | Possible values are `'png'`, `'jpeg'` and `'webp'`. |\n| `imageHeight` | `Number` | `256` | |\n| `imageMaxScaling` | `Number` | `1` | |\n| `imageMinScaling` | `String` | `'cover'` | Possible values are `'cover'` and `'contain'`. |\n| `imageQuality` | | | |\n| `imageWidth` | `Number` | `256` | |\n| `name` | `String` | | |\n| `overlayBackgroundColor` | `String` | `'rgba(0,0,0,0.5)'` | |\n| `overlayBorderColor` | `String` | `'#fff'` | |\n| `overlayBorderWidth` | `String` | `'4px'` | |\n| `overlayPadding` | `String` | `'50px'` | |\n| `readonly` | `Boolean` | `false` | |\n| `rotateClockwiseIcon` | `String` | `'mdi-rotate-right'` | |\n| `rotateClockwiseIconStyle` | `Object` | | |\n| `rotateCounterClockwiseIcon` | `String` | `'mdi-rotate-left'` | |\n| `rotateCounterClockwiseIconStyle` | `Object` | | |\n| `successIcon` | `String` | `'$success'` | |\n| `successIconStyle` | `Object` | | |\n| `uploadIcon` | `String` | `'mdi-upload'` | |\n| `uploadIconStyle` | `Object` | | |\n| `value` | `String` | | |\n\n## events\n\n| name |\n| ---: |\n| `file-info` |\n| `input` |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSeregPie%2FVuetifyImageInput","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSeregPie%2FVuetifyImageInput","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSeregPie%2FVuetifyImageInput/lists"}