{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":263085558,"defaultBranch":"main","name":"vue-accessible-color-picker","ownerLogin":"kleinfreund","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2020-05-11T15:40:29.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/5774638?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1700773453.0","currentOid":""},"activityList":{"items":[{"before":"23b611d1d77ad4d52aa732ce2218bfe6018e1ae6","after":"351c685c1b4d8ebbf9d32372c477087f9c61d574","ref":"refs/heads/main","pushedAt":"2023-12-15T15:35:42.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"chore(deps-dev): update vitest to v1","shortMessageHtmlLink":"chore(deps-dev): update vitest to v1"}},{"before":"e0b875126fbc2c04fc191d59c3e2cb2ae8f6869b","after":"23b611d1d77ad4d52aa732ce2218bfe6018e1ae6","ref":"refs/heads/main","pushedAt":"2023-11-24T16:23:40.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"docs: remove bundlephobia link","shortMessageHtmlLink":"docs: remove bundlephobia link"}},{"before":"577b4b4286d2d909c87d8b027bb073c6e8a1ae0d","after":"e0b875126fbc2c04fc191d59c3e2cb2ae8f6869b","ref":"refs/heads/main","pushedAt":"2023-11-23T21:04:12.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(release): 5.0.1 [skip ci]\n\n## [5.0.1](https://github.com/kleinfreund/vue-accessible-color-picker/compare/v5.0.0...v5.0.1) (2023-11-23)\n\n### Bug Fixes\n\n* cannot find module TypeScript error ([577b4b4](https://github.com/kleinfreund/vue-accessible-color-picker/commit/577b4b4286d2d909c87d8b027bb073c6e8a1ae0d))\n\n Adds the types field back to the package.json file to prevent the \"Cannot find module 'vue-accessible-color-picker' or its corresponding type declarations.\" error.","shortMessageHtmlLink":"chore(release): 5.0.1 [skip ci]"}},{"before":"d15d52b3d95078e56707bda5738b4223159c5370","after":"577b4b4286d2d909c87d8b027bb073c6e8a1ae0d","ref":"refs/heads/main","pushedAt":"2023-11-23T21:02:42.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"fix: cannot find module TypeScript error\n\nAdds the types field back to the package.json file to prevent the \"Cannot find module 'vue-accessible-color-picker' or its corresponding type declarations.\" error.","shortMessageHtmlLink":"fix: cannot find module TypeScript error"}},{"before":"dea4a257a16a6fef1046e79d8971e61bd49d8f8b","after":"d15d52b3d95078e56707bda5738b4223159c5370","ref":"refs/heads/main","pushedAt":"2023-11-23T20:49:04.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(release): 5.0.0 [skip ci]\n\n## [5.0.0](https://github.com/kleinfreund/vue-accessible-color-picker/compare/v4.1.4...v5.0.0) (2023-11-23)\n\n### ⚠ BREAKING CHANGES\n\n* Renames the following CSS custom properties: `--vacp-border-color` → `--vacp-color-border`, `--vacp-border-width` → `--vacp-width-border`, `--vacp-color-space-width` → `--vacp-width-color-space`, `--vacp-focus-color` → `--vacp-color-focus` (see README.md for the full list of supported custom properties).\n* Removes the following CSS custom properties: `--vacp-border` (direct replacement: `var(--vacp-width-border) solid var(--vacp-color-border)`), `--vacp-focus-outline` (direct replacement: `2px solid var(--vacp-color-focus)`).\n* Changes how color objects provided to the `color` prop are handled. Color objects no longer use values that are constrained to the range [0, 1] (except for any alpha channel values). **How to update**: Multiply any value of objects you pass to the `color` prop by the number in parentheses corresponding to the right color channel: For HSL: h (360), s (100), l (100). For HWB: h (360), w (100), b (100). For RGB: r (255), g (255), b (255).\n* Changes the data emitted by the `color-change` event such that the values on the `colors` object are no longer constrained to the range [0, 1] (except for any alpha channel values). **How to update**: Divide any value of objects from the `colors` object you mkae use of by the number in parentheses corresponding to the right color channel: For HSL: h (360), s (100), l (100). For HWB: h (360), w (100), b (100). For RGB: r (255), g (255), b (255).\n* The component, when imported using the default module specifier `vue-accessible-color-picker`, no longer injects styles into the document. **How to update**: Import the styles either locally inside a Vue single file component's `style` block (using `@import url('vue-accessible-color-picker/styles');`) or globally in your application's entry point (commonly a main.js file somewhere).\n* Removes the module specifier `vue-accessible-color-picker/unstyled`. It's no longer needed because `vue-accessible-color-picker` now resolves to a component without styles. **How to update**: Import from `vue-accessible-color-picker` instead.\n* Removes the module specifier `vue-accessible-color-picker/types/index.d.ts`. **How to update**: Import from `vue-accessible-color-picker` instead.\n* Renames the type `ColorChangeEvent` to `ColorChangeDetail`.\n\n### Features\n\n* make theming using custom properties easier ([e3147aa](https://github.com/kleinfreund/vue-accessible-color-picker/commit/e3147aa944a7e30bbe4256b74f44bb2bb14e2dbe))\n\n Simplifies theming of the color picker GUI with CSS custom properties by making better use of the CSS cascade. Customizing the custom properties (e.g. `--vacp-focus-color`) can now be done on any ancestor element of `.vacp-color-picker` in addition to `.vacp-color-picker` itself. For example, you can set `--vacp-focus-color: orange` on `:root` and it will work.\n\n Adds the following CSS custom properties for theming: `--vacp-color-background-input`, `--vacp-color-background`, `--vacp-color-text-input`, `--vacp-color-text`, `--vacp-font-family`, `--vacp-font-size` (see README.md for the full list of supported custom properties).\n\n **BREAKING CHANGE**: Renames the following CSS custom properties: `--vacp-border-color` → `--vacp-color-border`, `--vacp-border-width` → `--vacp-width-border`, `--vacp-color-space-width` → `--vacp-width-color-space`, `--vacp-focus-color` → `--vacp-color-focus` (see README.md for the full list of supported custom properties).\n\n **BREAKING CHANGE**: Removes the following CSS custom properties: `--vacp-border` (direct replacement: `var(--vacp-width-border) solid var(--vacp-color-border)`), `--vacp-focus-outline` (direct replacement: `2px solid var(--vacp-color-focus)`).\n* support all angle values as input ([3fac65e](https://github.com/kleinfreund/vue-accessible-color-picker/commit/3fac65ed1b2fcf8f1c19dbce38410e5ccfae943b))\n\n Adds support for the angle value units `deg`, `grad`, `rad`, and `turn` when entering hues (see https://www.w3.org/TR/css-values-4/#angle-value).\n\n Stops normalizing angle values to the range [0, 360) (e.g. a hue value of 450 will no longer be processed, stored, and emitted as 90).\n\n### Code Refactoring\n\n* change color channels to not be constrained to the range [0, 1] ([93fce2c](https://github.com/kleinfreund/vue-accessible-color-picker/commit/93fce2cc442f5158b4d3fac7b2f9d13711e785a7))\n\n Changes how color objects are processed (via the `color` prop), stored, and emitted (via the `color-change` event) such that the representation of the current color doesn't have its values constrained to the range [0, 1] (inclusive) anymore. Instead, the values are now stored as close as possible to the native representation in CSS (e.g. the hue value 270 is now stored as 270 instead of 0.75). Alpha channel values continue to be stored in the range [0, 1].\n\n **BREAKING CHANGE**: Changes how color objects provided to the `color` prop are handled. Color objects no longer use values that are constrained to the range [0, 1] (except for any alpha channel values). **How to update**: Multiply any value of objects you pass to the `color` prop by the number in parentheses corresponding to the right color channel: For HSL: h (360), s (100), l (100). For HWB: h (360), w (100), b (100). For RGB: r (255), g (255), b (255).\n\n **BREAKING CHANGE**: Changes the data emitted by the `color-change` event such that the values on the `colors` object are no longer constrained to the range [0, 1] (except for any alpha channel values). **How to update**: Divide any value of objects from the `colors` object you mkae use of by the number in parentheses corresponding to the right color channel: For HSL: h (360), s (100), l (100). For HWB: h (360), w (100), b (100). For RGB: r (255), g (255), b (255).\n* migrate code base to TypeScript ([18a2a98](https://github.com/kleinfreund/vue-accessible-color-picker/commit/18a2a98d894d859a248031aa9ef950001be8f843))\n\n Migrates the code base to TypeScript. This required a fundamental change in the build chain as some of the previously used Rollup plugins (`rollup-plugin-vue`, `rollup-plugin-typescript`, `rollup-plugin-typescript2`) are either not being maintained anymore and/or don't work well with the combination of Vue 3 and TypeScript. The project is now built using `vite` and `@vitejs/plugin-vue` (for building the component) and `vue-tsc` and `@microsoft/api-extractor` (for bundling the type definitions).\n\n **BREAKING CHANGE**: The component, when imported using the default module specifier `vue-accessible-color-picker`, no longer injects styles into the document. **How to update**: Import the styles either locally inside a Vue single file component's `style` block (using `@import url('vue-accessible-color-picker/styles');`) or globally in your application's entry point (commonly a main.js file somewhere).\n\n **BREAKING CHANGE**: Removes the module specifier `vue-accessible-color-picker/unstyled`. It's no longer needed because `vue-accessible-color-picker` now resolves to a component without styles. **How to update**: Import from `vue-accessible-color-picker` instead.\n\n **BREAKING CHANGE**: Removes the module specifier `vue-accessible-color-picker/types/index.d.ts`. **How to update**: Import from `vue-accessible-color-picker` instead.\n\n **BREAKING CHANGE**: Renames the type `ColorChangeEvent` to `ColorChangeDetail`.","shortMessageHtmlLink":"chore(release): 5.0.0 [skip ci]"}},{"before":"ed1244ff9fda7eedfc4b95777e0be28af0f73ba7","after":"dea4a257a16a6fef1046e79d8971e61bd49d8f8b","ref":"refs/heads/main","pushedAt":"2023-11-23T20:47:22.000Z","pushType":"push","commitsCount":22,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"chore: change changelog commit template to modified conventionalcommits","shortMessageHtmlLink":"chore: change changelog commit template to modified conventionalcommits"}},{"before":"e5d38ff1d01722c7fa1e837aaa40f45f67ef6270","after":"ed1244ff9fda7eedfc4b95777e0be28af0f73ba7","ref":"refs/heads/main","pushedAt":"2023-11-18T11:34:09.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"chore(deps-dev): upgrade rollup to v4","shortMessageHtmlLink":"chore(deps-dev): upgrade rollup to v4"}},{"before":"fbd27c7cb42c7559f1df630b0f6eeca34a31e654","after":"e5d38ff1d01722c7fa1e837aaa40f45f67ef6270","ref":"refs/heads/main","pushedAt":"2023-11-18T11:33:01.000Z","pushType":"push","commitsCount":5,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"chore(deps-dev): upgrade rollup to v4","shortMessageHtmlLink":"chore(deps-dev): upgrade rollup to v4"}},{"before":"2ae7e61c1ffa035047a34241bf83ac50836a753e","after":"fbd27c7cb42c7559f1df630b0f6eeca34a31e654","ref":"refs/heads/main","pushedAt":"2023-08-03T19:42:13.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"ci: updates concurrency group for release workflow","shortMessageHtmlLink":"ci: updates concurrency group for release workflow"}},{"before":"d7232377d82f3cd5127f1f83cade0d39e4ace383","after":"2ae7e61c1ffa035047a34241bf83ac50836a753e","ref":"refs/heads/main","pushedAt":"2023-08-02T19:35:35.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(release): 4.1.4 [skip ci]\n\n## [4.1.4](https://github.com/kleinfreund/vue-accessible-color-picker/compare/v4.1.3...v4.1.4) (2023-08-02)\n\n### Bug Fixes\n\n* not setting box-sizing on the color picker element ([651a0fd](https://github.com/kleinfreund/vue-accessible-color-picker/commit/651a0fd5fae87d3306f3c90fa50c8e94de88da28))","shortMessageHtmlLink":"chore(release): 4.1.4 [skip ci]"}},{"before":"4ad3dd007cda1737ead22a8757973f3f13fbb2ff","after":"d7232377d82f3cd5127f1f83cade0d39e4ace383","ref":"refs/heads/main","pushedAt":"2023-08-02T19:33:49.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"docs: switches from angular to conventionalcommits preset for changelog generation","shortMessageHtmlLink":"docs: switches from angular to conventionalcommits preset for changel…"}},{"before":"4b6d78befdebb704505bf0f26902d3ccd46272ad","after":"4ad3dd007cda1737ead22a8757973f3f13fbb2ff","ref":"refs/heads/main","pushedAt":"2023-07-17T18:37:09.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"chore: simplifies release.config.cjs","shortMessageHtmlLink":"chore: simplifies release.config.cjs"}},{"before":"1e76d4609a6fd754143cfe1ba15d7f87d93c04f2","after":"4b6d78befdebb704505bf0f26902d3ccd46272ad","ref":"refs/heads/main","pushedAt":"2023-07-17T18:26:30.000Z","pushType":"push","commitsCount":5,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"chore(dist): regenerates dist files","shortMessageHtmlLink":"chore(dist): regenerates dist files"}},{"before":"a650e7fd451e1ea23eeb2f95ce4d29ec8183b3c2","after":"1e76d4609a6fd754143cfe1ba15d7f87d93c04f2","ref":"refs/heads/main","pushedAt":"2023-06-07T19:08:56.957Z","pushType":"push","commitsCount":1,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"chore: updates threads: false comment","shortMessageHtmlLink":"chore: updates threads: false comment"}},{"before":"47fa339226f594ddef85f5249b5364784aa55005","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/vite-4.3.9","pushedAt":"2023-06-07T17:04:20.410Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"2cdb0df034539bc68ce51417b2236e83d06c9e19","after":"a650e7fd451e1ea23eeb2f95ce4d29ec8183b3c2","ref":"refs/heads/main","pushedAt":"2023-06-07T16:43:52.040Z","pushType":"push","commitsCount":1,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"chore(deps): updates dependencies","shortMessageHtmlLink":"chore(deps): updates dependencies"}},{"before":null,"after":"47fa339226f594ddef85f5249b5364784aa55005","ref":"refs/heads/dependabot/npm_and_yarn/vite-4.3.9","pushedAt":"2023-06-06T02:37:08.690Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"chore(deps-dev): bump vite from 4.3.8 to 4.3.9\n\nBumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.3.8 to 4.3.9.\n- [Release notes](https://github.com/vitejs/vite/releases)\n- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)\n- [Commits](https://github.com/vitejs/vite/commits/v4.3.9/packages/vite)\n\n---\nupdated-dependencies:\n- dependency-name: vite\n dependency-type: direct:development\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(deps-dev): bump vite from 4.3.8 to 4.3.9"}},{"before":"c56cb994b4a6a93263dc088390e952a25b2c86c9","after":"2cdb0df034539bc68ce51417b2236e83d06c9e19","ref":"refs/heads/main","pushedAt":"2023-05-18T15:29:19.844Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore(release): 4.1.3 [skip ci]\n\n## [4.1.3](https://github.com/kleinfreund/vue-accessible-color-picker/compare/v4.1.2...v4.1.3) (2023-05-18)\n\n### Bug Fixes\n\n* types being misconfigured in pkg.exports ([c56cb99](https://github.com/kleinfreund/vue-accessible-color-picker/commit/c56cb994b4a6a93263dc088390e952a25b2c86c9))","shortMessageHtmlLink":"chore(release): 4.1.3 [skip ci]"}},{"before":"82698b0e33c03f8a5b1f6ea8fb13a285880563c4","after":"c56cb994b4a6a93263dc088390e952a25b2c86c9","ref":"refs/heads/main","pushedAt":"2023-05-18T15:28:19.518Z","pushType":"push","commitsCount":5,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"fix: types being misconfigured in pkg.exports\n\nFixes the specifiers being defined in `pkg.exports` to explicitly list types for bare module specifiers (i.e. `vue-accessible-color-picker` and `vue-accessible-color-picker/unstyled`).\n\nAdds missing entry for type definition file (can now be imported `vue-accessible-color-picker/types/index.d.ts` without TypeScript complaining).","shortMessageHtmlLink":"fix: types being misconfigured in pkg.exports"}},{"before":"5718af91e9bfc957a16301c449f51a50d9d3dafe","after":"82698b0e33c03f8a5b1f6ea8fb13a285880563c4","ref":"refs/heads/main","pushedAt":"2023-05-18T12:05:58.561Z","pushType":"push","commitsCount":4,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"chore(dist): updates distribution files","shortMessageHtmlLink":"chore(dist): updates distribution files"}},{"before":"6fb3228029f8d93025e8b1852c1d8bf1e709a95d","after":"5718af91e9bfc957a16301c449f51a50d9d3dafe","ref":"refs/heads/main","pushedAt":"2023-04-25T17:27:38.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"ci: moves env key after run","shortMessageHtmlLink":"ci: moves env key after run"}},{"before":"8aa4bbadde10d8687aa43f1d3c84ab2f204bec66","after":"6fb3228029f8d93025e8b1852c1d8bf1e709a95d","ref":"refs/heads/main","pushedAt":"2023-04-25T17:20:29.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"ci: removes unnecessary skip ci code","shortMessageHtmlLink":"ci: removes unnecessary skip ci code"}},{"before":"baf69e99afb7265cb0a0e722cbf08e3b757e4f6a","after":"8aa4bbadde10d8687aa43f1d3c84ab2f204bec66","ref":"refs/heads/main","pushedAt":"2023-03-13T10:44:26.613Z","pushType":"push","commitsCount":4,"pusher":{"login":"kleinfreund","name":"Philipp Rudloff","path":"/kleinfreund","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5774638?s=80&v=4"},"commit":{"message":"chore(deps): updates dependencies","shortMessageHtmlLink":"chore(deps): updates dependencies"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAADy1x9EAA","startCursor":null,"endCursor":null}},"title":"Activity · kleinfreund/vue-accessible-color-picker"}