Conversation
…ox functionality and improved documentation
…ntation and improved type definitions
…ayeh-roohani' of https://github.com/codebridger/lib-vue-components into CU-86eu4pn7j_Add-Checkbox-and-Radio-Input-component_somayeh-roohani
…-Radio-Input-component_somayeh-roohani Checkbox input component
# [1.17.0-dev.23](dev-1.17.0-dev.22...dev-1.17.0-dev.23) (2025-07-19) ### Features * [#86](https://github.com/codebridger/lib-vue-components/issues/86)eu4pn7j - add CheckboxInput component with customizable options and states. ([10de143](10de143)), closes [#86eu4pn7](https://github.com/codebridger/lib-vue-components/issues/86eu4pn7) * [#86](https://github.com/codebridger/lib-vue-components/issues/86)eu4pn7j - add new icons for lock open, eye, and eye off; update icon imports ([ed45091](ed45091)), closes [#86eu4pn7](https://github.com/codebridger/lib-vue-components/issues/86eu4pn7) * [#86](https://github.com/codebridger/lib-vue-components/issues/86)eu4pn7j - add new icons for lock open, eye, and eye off; update icon imports ([fc9347d](fc9347d)), closes [#86eu4pn7](https://github.com/codebridger/lib-vue-components/issues/86eu4pn7) * [#86](https://github.com/codebridger/lib-vue-components/issues/86)eu4pn7j - enhance CheckboxInput component with single checkbox functionality and improved documentation ([4063b9f](4063b9f)), closes [#86eu4pn7](https://github.com/codebridger/lib-vue-components/issues/86eu4pn7) * [#86](https://github.com/codebridger/lib-vue-components/issues/86)eu4pn7j - enhance CheckboxInput stories with detailed documentation and improved type definitions ([965077b](965077b)), closes [#86eu4pn7](https://github.com/codebridger/lib-vue-components/issues/86eu4pn7)
# [1.17.0-dev.24](dev-1.17.0-dev.23...dev-1.17.0-dev.24) (2025-07-19) ### Bug Fixes * resolve issues with CheckboxInput component functionality and documentation ([c4d33ff](c4d33ff))
…ns and enable debug mode
… and enhance manual triggering options
…r types and add new PR description generator workflow
| uses: vblagoje/pr-auto@v1 | ||
| id: pr_auto | ||
| with: | ||
| openai_api_key: ${{ secrets.OPENAI_API_KEY_FOR_PR_DESC_GENERATOR }} |
There was a problem hiding this comment.
🔴 REQUIRED: Verify that the secret OPENAI_API_KEY_FOR_PR_DESC_GENERATOR is securely stored in the repository secrets and has the minimum necessary privileges. Exposure or misuse could compromise security.
| generate-pr-text: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Generate PR Description |
There was a problem hiding this comment.
🟡 OPTIONAL: Consider adding comments in the workflow YAML to briefly explain the purpose of the steps for future maintainers. This can improve clarity about the use of the OpenAI API key and the custom prompt.
| - [ ] Feature B | ||
| - [ ] Bug fix for issue C | ||
|
|
||
| ### 📝 Commit Summary |
There was a problem hiding this comment.
🟡 OPTIONAL: The Commit Summary section is generic. To improve usefulness, consider adding more guidance or examples on how to extract key insights from commit messages or code changes for this section.
| type Story = StoryObj<typeof CheckboxInput>; | ||
|
|
||
| export const Default: Story = { | ||
| render: (args) => ({ |
There was a problem hiding this comment.
🔴 REQUIRED: The reactive state setup in each story uses local refs to bind v-model properly,
but it might be better to destructure and pass the v-model value as args to ensure
full Storybook interoperability with controls and actions.
Review if this setup interferes with controls reflecting state changes properly.
| errorMessage: "", | ||
| id: "checkbox-input", | ||
| }, | ||
| parameters: { |
There was a problem hiding this comment.
🟡 OPTIONAL: The inclusion of component-level documentation describing component features,
usage, variants, and colors improves developer experience.
Recommend keeping this up to date with any future feature changes.
| github_token: ${{ secrets.GITHUB_TOKEN }} | ||
| model_provider: "openai" | ||
| model_name: "gpt-4.1-mini-2025-04-14" | ||
| openai_api_key: ${{ secrets.OPENAI_API_KEY_FOR_PR_DESC_GENERATOR }} |
There was a problem hiding this comment.
🔵 NIT: The secret name here hints at usage for PR description generation, but this workflow seems to be for code review. Confirm the secret is intended and documented properly to avoid confusion.
| Progress, | ||
| SwitchBall, | ||
| Tooltip, | ||
| CheckboxInput, |
There was a problem hiding this comment.
👏 PRAISE: Great to see CheckboxInput added to the elements component exports. This indicates good modular structure and allows easy reuse.
| > **Note**: Not all sections are required for every PR. Use only the sections that are relevant to your changes. Focus on the most important information for your specific pull request. | ||
|
|
||
| ## 📋 Overview & Changes | ||
| <!-- Provide a brief summary of what this PR accomplishes and key changes --> |
There was a problem hiding this comment.
👏 PRAISE: This is a well-structured and comprehensive PR template that covers key aspects such as overview, testing, review checklist, and documentation. It will help contributors provide high-quality PR descriptions, improving collaboration and review efficiency.
| <h3 class="text-lg font-medium text-gray-900 dark:text-gray-100">Communication Preferences</h3> | ||
| <div class="space-y-3"> | ||
| <CheckboxInput | ||
| v-for="option in options" |
There was a problem hiding this comment.
ℹ️ FYI: The "MultipleCheckboxes" story is a great example to demonstrate checkbox groups using individual CheckboxInput components.
It smartly tracks selection state in an object and shows reactive selected output.
| @@ -0,0 +1,439 @@ | |||
| import type { Meta, StoryObj } from "@storybook/vue3"; | |||
There was a problem hiding this comment.
👏 PRAISE: Excellent and comprehensive Storybook stories for the new CheckboxInput component.
The stories cover a wide range of variants, colors, states, and usage scenarios,
providing clear examples for future users and maintainers.
| import Progress from "./Progress.vue"; | ||
| import SwitchBall from "./SwitchBall.vue"; | ||
| import Tooltip from "./Tooltip.vue"; | ||
| import CheckboxInput from "./CheckboxInput.vue"; |
There was a problem hiding this comment.
👏 PRAISE: Good that the new CheckboxInput component is properly imported and added to the elements components. This ensures it will be properly registered and accessible.
| }, | ||
| }, | ||
| }, | ||
| args: { |
There was a problem hiding this comment.
🟡 OPTIONAL: The default args and argTypes are well defined with descriptions and controls,
enhancing Storybook's usability and documentation.
Consider verifying the completeness and clarity of these descriptions in the docs site after publishing.
| Task IDs extracted from commit messages and their ClickUp links: | ||
| - Format: #task-id or CU-task-id | ||
| - ClickUp Link: https://app.clickup.com/t/[task-id] | ||
| - Example: #12345 → https://app.clickup.com/t/12345 |
There was a problem hiding this comment.
👏 PRAISE: This is a very well-structured and comprehensive PR description template. It covers all relevant aspects such as overview, technical details, related tasks, testing, code quality, performance, security, accessibility, deployment, documentation, and breaking changes in a clear manner. This should help maintain high-quality and consistent PR descriptions.
| name: CodePress Review | ||
|
|
||
| on: | ||
| pull_request: |
There was a problem hiding this comment.
🟡 OPTIONAL: The pull_request trigger is configured with an empty types array. If the intent is to trigger on all pull request events, consider removing the types filter altogether for clarity.
| IconUsers, | ||
| IconUsersGroup, | ||
| IconLock, | ||
| IconLockOpen, |
There was a problem hiding this comment.
🟡 OPTIONAL: Nice addition of new icon exports. Please verify these new icons (IconLockOpen, IconEye, IconEyeOff) are implemented correctly in the codebase and used consistently with existing icon naming and export conventions.
…issions to PR description generator workflow
…equest in PR description generator workflow
…lacing newlines with escaped characters
# [1.17.0-dev.25](dev-1.17.0-dev.24...dev-1.17.0-dev.25) (2025-07-19) ### Bug Fixes * update PR description workflow to properly format content by replacing newlines with escaped characters ([4a48764](4a48764))
|
🎉 This PR is included in version 1.17.0-dev.25 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
…ompt to user_prompt
# [1.17.0-dev.26](dev-1.17.0-dev.25...dev-1.17.0-dev.26) (2025-07-19) ### Bug Fixes * correct parameter name in PR description workflow from system_prompt to user_prompt ([97f4d24](97f4d24))
|
🎉 This PR is included in version 1.17.0-dev.26 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
… permissions - Changed workflow name for clarity. - Updated trigger types to include 'edited'. - Refactored steps to read template content and generate PR description. - Added step to capture Git diff for enhanced context in PR descriptions. - Updated permissions for better access control.
# [1.17.0-dev.27](dev-1.17.0-dev.26...dev-1.17.0-dev.27) (2025-07-19)
|
🎉 This PR is included in version 1.17.0-dev.27 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
- Introduced a new PR description template to standardize PR submissions. - Updated the auto PR description workflow to utilize the new template file path. - Ensured the workflow reads from the correct template for generating PR descriptions.
Pull Request Description
📋 Overview & Changes
This Pull Request introduces a set of enhancements and new features to the application, primarily focused on improving the user interface components and automated workflows. The primary changes include the addition of a new
CheckboxInputcomponent along with its storybook configurations, updates to icon components, and enhancements to the automated PR description and changelog generation process.🎯 What was implemented
CheckboxInputcomponent for better form interactions.IconEye,IconEyeOff,IconLock,IconLockOpen.📝 Commit Summary
CheckboxInputcomponent with complete storybook integration.🔧 Technical Details
CheckboxInputcomponent.🔗 Related Tasks & Commit Analysis
🔍 Task IDs & Links from Commits
🧪 Testing
CheckboxInputcomponent.🔍 Review Checklist
Code Quality
Performance
Security
Accessibility
🚀 Deployment Notes
📚 Documentation
CheckboxInput.🔄 Breaking Changes
📋 Additional Notes
Template Version: 1
Last Updated: 19 Jun 2025
Summary Source: Commit messages and code changes