Skip to content

feat(Vditor): bump version 10.0.3#7688

Merged
ArgoZhang merged 2 commits intomainfrom
dev-vidtor
Feb 19, 2026
Merged

feat(Vditor): bump version 10.0.3#7688
ArgoZhang merged 2 commits intomainfrom
dev-vidtor

Conversation

@ArgoZhang
Copy link
Copy Markdown
Member

@ArgoZhang ArgoZhang commented Feb 19, 2026

Link issues

fixes #7687

Summary By Copilot

Regression?

  • Yes
  • No

Risk

  • High
  • Medium
  • Low

Verification

  • Manual (required)
  • Automated

Packaging changes reviewed?

  • Yes
  • No
  • N/A

☑️ Self Check before Merge

⚠️ Please check all items below before review. ⚠️

  • Doc is updated/provided or not needed
  • Demo is updated/provided or not needed
  • Merge the latest code from the main branch

Summary by Sourcery

New Features:

  • Expose attribute tables for VditorOptions, VditorMode, and VditorIconStyle on the Vditor demo page to surface their configurable properties.

Copilot AI review requested due to automatic review settings February 19, 2026 01:35
@bb-auto bb-auto bot added the enhancement New feature or request label Feb 19, 2026
@bb-auto bb-auto bot added this to the v10.3.0 milestone Feb 19, 2026
@sourcery-ai
Copy link
Copy Markdown
Contributor

sourcery-ai bot commented Feb 19, 2026

Reviewer's guide (collapsed on small PRs)

Reviewer's Guide

Updates the Vditor sample page to expose configuration metadata by adding attribute tables for the main Vditor component and its key option enums, aligning the sample with the new 10.0.3 API surface.

Class diagram for Vditor sample page and attribute tables

classDiagram
  class VditorsRazor {
  }

  class Vditor {
  }

  class VditorOptions {
  }

  class VditorMode {
  }

  class VditorIconStyle {
  }

  class AttributeTable {
    +Type Type
  }

  VditorsRazor --> Vditor : uses
  VditorsRazor --> AttributeTable : renders
  AttributeTable --> Vditor : reflects_metadata
  AttributeTable --> VditorOptions : reflects_metadata
  AttributeTable --> VditorMode : reflects_metadata
  AttributeTable --> VditorIconStyle : reflects_metadata
Loading

File-Level Changes

Change Details Files
Expose Vditor configuration, modes, and icon styles in the sample via attribute tables.
  • Add an AttributeTable for VditorOptions to display configurable options for the editor component in the sample UI.
  • Add an AttributeTable for VditorMode to document available editor modes.
  • Add an AttributeTable for VditorIconStyle to document available icon style options alongside the existing Vditor attribute table.
src/BootstrapBlazor.Server/Components/Samples/Vditors.razor

Assessment against linked issues

Issue Objective Addressed Explanation
#7687 Update the Vditor dependency/version in the project to 10.0.3 (including any necessary configuration, references, or packaging changes). The diff only adds several components (for Vditor, VditorOptions, VditorMode, VditorIconStyle) to Vditors.razor. There is no visible change that updates a Vditor version, package reference, script, or configuration to 10.0.3.

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@ArgoZhang ArgoZhang merged commit 80d8ad2 into main Feb 19, 2026
8 checks passed
@ArgoZhang ArgoZhang deleted the dev-vidtor branch February 19, 2026 01:36
Copy link
Copy Markdown
Contributor

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

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

Hey - I've left some high level feedback:

  • The PR title mentions bumping the Vditor version to 10.0.3, but there are no visible changes to project/package versions in the diff—consider aligning the title with the actual changes or adding the missing version update.
  • With the additional AttributeTable entries for VditorOptions, VditorMode, and VditorIconStyle, consider adding some visual grouping or headings in the sample to make it clearer to users why there are multiple tables and how they relate to each other.
Prompt for AI Agents
Please address the comments from this code review:

## Overall Comments
- The PR title mentions bumping the Vditor version to 10.0.3, but there are no visible changes to project/package versions in the diff—consider aligning the title with the actual changes or adding the missing version update.
- With the additional AttributeTable entries for VditorOptions, VditorMode, and VditorIconStyle, consider adding some visual grouping or headings in the sample to make it clearer to users why there are multiple tables and how they relate to each other.

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Copy link
Copy Markdown
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

Updates the server sample project to consume BootstrapBlazor.Vditor v10.0.3 and expands the Vditor sample documentation to include related option/enum types.

Changes:

  • Bumped BootstrapBlazor.Vditor package reference from 10.0.2 to 10.0.3.
  • Added additional AttributeTable sections on the Vditor sample page for VditorOptions, VditorMode, and VditorIconStyle.

Reviewed changes

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

File Description
src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj Updates the BootstrapBlazor.Vditor NuGet package version to 10.0.3.
src/BootstrapBlazor.Server/Components/Samples/Vditors.razor Adds extra API/parameter tables for Vditor-related option/enum types to match the updated package surface area.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@codecov
Copy link
Copy Markdown

codecov bot commented Feb 19, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 100.00%. Comparing base (81f8a34) to head (2a0a644).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff            @@
##              main     #7688   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files          749       749           
  Lines        33190     33190           
  Branches      4603      4603           
=========================================
  Hits         33190     33190           
Flag Coverage Δ
BB 100.00% <ø> (?)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

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

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

feat(Vditor): bump version 10.0.3

2 participants