Skip to content

Conversation

@Kiarokh
Copy link
Contributor

@Kiarokh Kiarokh commented Jul 31, 2025

Summary by CodeRabbit

  • Style
    • Updated documentation by removing @beta tags from various components and properties.
    • Adjusted checkbox component styles by removing left margin from dynamic labels.

Review:

  • Commits are atomic
  • Commits have the correct type for the changes made
  • Commits with breaking changes are marked as such

Browsers tested:

(Check any that applies, it's ok to leave boxes unchecked if testing something didn't seem relevant.)

Windows:

  • Chrome
  • Edge
  • Firefox

Linux:

  • Chrome
  • Firefox

macOS:

  • Chrome
  • Firefox
  • Safari

Mobile:

  • Chrome on Android
  • iOS

Copilot AI review requested due to automatic review settings July 31, 2025 12:17
@Kiarokh Kiarokh added the maintenance Things that are important but not urgent, and not directly related to any specific bug or feature label Jul 31, 2025
@coderabbitai
Copy link

coderabbitai bot commented Jul 31, 2025

Important

Review skipped

Auto incremental reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

📝 Walkthrough

Walkthrough

This change removes all @beta JSDoc tags from various component files, including their properties and interfaces, as well as from CSS documentation. No functional, logic, or structural changes were made to the components or styles; only documentation comments were updated.

Changes

Cohort / File(s) Change Summary
Remove @beta from component documentation
src/components/card/card.tsx, src/components/dynamic-label/dynamic-label.tsx
Removed @beta JSDoc tag from component-level documentation comments.
Remove @beta from component properties
src/components/checkbox/checkbox.tsx, src/components/chip/chip.tsx, src/components/switch/switch.tsx
Removed @beta JSDoc tag from specific properties in Checkbox, Chip, and Switch components.
Remove @beta from interface
src/components/dynamic-label/label.types.ts
Removed @beta JSDoc annotation from the exported Label interface.
CSS margin adjustment
src/components/checkbox/checkbox.scss
Removed margin-left: 0.25rem; from the limel-dynamic-label selector.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Suggested labels

docs

Suggested reviewers

  • adrianschmidt
✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch no-beta

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

‼️ IMPORTANT
Auto-reply has been disabled for this repository in the CodeRabbit settings. The CodeRabbit bot will not respond to your replies unless it is explicitly tagged.

  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai generate unit tests to generate unit tests for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR removes the @beta annotation from several components and properties, indicating they are being promoted from beta status to stable/production ready. This appears to be a stabilization effort for various UI components and their associated properties.

  • Remove @beta annotations from multiple component classes and properties
  • Update CSS styling for checkbox component (margin adjustment)
  • Promote Label interface and related functionality from beta to stable

Reviewed Changes

Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.

Show a summary per file
File Description
src/components/switch/switch.tsx Remove @beta from readonlyLabels property
src/components/dynamic-label/label.types.ts Remove @beta from Label interface
src/components/dynamic-label/dynamic-label.tsx Remove @beta from DynamicLabel component
src/components/chip/chip.tsx Remove @beta from type property
src/components/checkbox/checkbox.tsx Remove @beta from readonlyLabels property
src/components/checkbox/checkbox.scss Remove left margin from limel-dynamic-label
src/components/card/card.tsx Remove @beta from Card component
Comments suppressed due to low confidence (1)

src/components/checkbox/checkbox.scss:25

  • The removal of margin-left styling appears unrelated to the main purpose of this PR (removing @beta annotations). This change should either be documented in the PR description or moved to a separate commit to maintain atomic commits.
    margin-top: 0.375rem;


limel-dynamic-label {
margin-top: 0.375rem;
margin-left: 0.25rem;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Screenshot 2025-07-29 at 16 20 36

the one with the checkbox was a bit off

@Kiarokh Kiarokh enabled auto-merge (rebase) July 31, 2025 12:19
@github-actions
Copy link

Documentation has been published to https://lundalogik.github.io/lime-elements/versions/PR-3627/

@coderabbitai coderabbitai bot changed the title @coderabbitai Remove all @beta JSDoc tags from component and CSS documentation Jul 31, 2025
@Kiarokh Kiarokh changed the title Remove all @beta JSDoc tags from component and CSS documentation Remove @beta JSDoc tags from some components Jul 31, 2025
@Kiarokh Kiarokh changed the title Remove @beta JSDoc tags from some components Remove @beta JSDoc tags from some components Jul 31, 2025
jgroth
jgroth previously approved these changes Aug 1, 2025
@Kiarokh Kiarokh requested a review from a team as a code owner August 1, 2025 13:16
jgroth
jgroth previously approved these changes Aug 1, 2025
Kiarokh added 4 commits August 1, 2025 15:40
The component has been thoroughly tested for a while and its API
is stable. Removing the `@beta` tag to mark it as production-ready.
The component has been thoroughly tested for a while and its API
is stable. Removing the `@beta` tag to mark it as production-ready.
The `type` prop of the component has been thoroughly tested for a while
and is stable. Removing the `@beta` tag to mark it as production-ready.
@Kiarokh Kiarokh merged commit 07a1d36 into main Aug 1, 2025
12 checks passed
@Kiarokh Kiarokh deleted the no-beta branch August 1, 2025 13:49
@lime-opensource
Copy link
Collaborator

🎉 This PR is included in version 38.20.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

maintenance Things that are important but not urgent, and not directly related to any specific bug or feature released

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants