Skip to content

chore: release#6315

Merged
lisalupi merged 1 commit intomainfrom
changeset-release/main
Apr 20, 2026
Merged

chore: release#6315
lisalupi merged 1 commit intomainfrom
changeset-release/main

Conversation

@scaleway-bot
Copy link
Copy Markdown
Collaborator

@scaleway-bot scaleway-bot commented Apr 8, 2026

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@ultraviolet/form@6.3.0

Minor Changes

  • #6241 fa4a28f Thanks @lisalupi! - Form element can have a errorLabel (string) to use as a custom value to display (instead of the label) when an error is displayed (empty required element, min/max value not respected, etc.).

    For instance, this component:

    <NumberInputField
      label="Choose number of elements"
      errorLabel="Amount"
      value={20}
      max={10}
    />

    Used with this error:

    import type { FormErrors } from '@ultraviolet/form'
    import { NumberInputField } from '@ultraviolet/form'
    
    const errors: FormErrors = {
       ...
       isInteger: ...
       max: ({ max, label }) => `${label} must be less than ${max}$`,
       min: ...
       ...
    }

    The displayed max error message is Amount must be less than 10 instead of Choose number of elements must be less than 10.

    It allows custom error labels with a fallback on the label if errorLabel is not defined — this can be useful when creating a default useError.

Patch Changes

@ultraviolet/ui@3.14.0

Minor Changes

  • #6337 e4ae00d Thanks @lisalupi! - FileInput: various improvements to component:
    • new prop validator for custom errors
    • add default onChange for un formatted events
    • new prop disabledDragndrop to disabled drag and drop behavior
    • update prop onDrop to return acceptedFiles and errorFiles
    • new props onKeyDown, onKeyUp, onFocus, onBlur and name.
    • new prop onDelete for FileInput.List
    • When type = "dropzone" and size="small", the component is now a button and clicking anywere on it opens the file selector (previously, only clicking on the label opened the file selector)
    • Fix style issues

Patch Changes

  • #6313 1d62b49 Thanks @lisalupi! - Text: add min-width to the popup container when oneLine is enabled to ensure the ellipsis works properly

  • #6340 8bca898 Thanks @lisalupi! - Alert: fix padding, icons size, icons type (oultine -> filled) and close button (size and sentiment)

  • #6317 27f89d7 Thanks @lisalupi! - Drawer: fix hideOnClickOutside behavior: set to true by default (similar to Modal) for default drawers and to false for push drawers. Small fix to allow interactivity outside of push drawers (previously, only content of the push drawer was interactive).

  • #6346 59c601c Thanks @lisalupi! - Remove unused dependencies

  • #6316 6ba736b Thanks @lisalupi! - Tag: add a max width to ensure correct overflow

  • #6338 bf1ca25 Thanks @lisalupi! - EmptyState: small refactor to avoid empty divs

  • #6314 9cfb3e9 Thanks @lisalupi! - BarChart: fix legend placement (firefox)

  • #6325 f6656ba Thanks @renovate! - Updated dependency react to 19.2.5.
    Updated dependency react-dom to 19.2.5.

  • #6324 5faa8c2 Thanks @renovate! - Updated dependency vite to 8.0.8.

  • #6288 7382e79 Thanks @renovate! - Updated dependency @uiw/codemirror-extensions-langs to 4.25.9.
    Updated dependency @uiw/codemirror-theme-material to 4.25.9.
    Updated dependency @uiw/react-codemirror to 4.25.9.

  • Updated dependencies [4be825f, 17c8f2e, f6656ba, 5faa8c2, 661a29e, 1e4cc20]:

    • @ultraviolet/utils@1.0.10
    • @ultraviolet/icons@5.3.2
    • @ultraviolet/themes@3.1.5

@ultraviolet/fonts@2.1.5

Patch Changes

@ultraviolet/icons@5.3.2

Patch Changes

  • #6325 f6656ba Thanks @renovate! - Updated dependency react to 19.2.5.
    Updated dependency react-dom to 19.2.5.

  • #6324 5faa8c2 Thanks @renovate! - Updated dependency vite to 8.0.8.

  • #6279 1e4cc20 Thanks @lisalupi! - New icons:

    • Product icon: ForkProductIcon, SwitchProductIcon and TrycatchProductIcon
    • Icon: CursorOutlineIcon, HandOutlineIcon, TicketOutlineIcon, CursorIcon, HandIcon and TicketIcon
  • Updated dependencies [4be825f, 17c8f2e, f6656ba, 5faa8c2, 661a29e]:

    • @ultraviolet/utils@1.0.10
    • @ultraviolet/themes@3.1.5

@ultraviolet/illustrations@6.0.16

Patch Changes

@ultraviolet/nextjs@3.0.28

Patch Changes

@ultraviolet/themes@3.1.5

Patch Changes

@ultraviolet/utils@1.0.10

Patch Changes

  • #6342 4be825f Thanks @lisalupi! - useClipboard: fix hook not reacting to prop updates. Clipboard operations now always use the latest values of text and options

  • #6329 17c8f2e Thanks @renovate! - Updated dependency vitest to 4.1.4.
    Updated dependency @vitest/coverage-istanbul to 4.1.4.
    Updated dependency @vitest/coverage-v8 to 4.1.4.
    Updated dependency @vitest/ui to 4.1.4.

  • #6325 f6656ba Thanks @renovate! - Updated dependency react to 19.2.5.
    Updated dependency react-dom to 19.2.5.

  • #6324 5faa8c2 Thanks @renovate! - Updated dependency vite to 8.0.8.

  • #6298 661a29e Thanks @renovate! - Updated dependency @vitest/coverage-istanbul to 4.1.3.
    Updated dependency @vitest/coverage-v8 to 4.1.3.
    Updated dependency @vitest/ui to 4.1.3.
    Updated dependency vitest to 4.1.3.

@repo/config@0.0.6

Patch Changes

@codecov
Copy link
Copy Markdown

codecov bot commented Apr 8, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 92.60%. Comparing base (2b89546) to head (28617a4).
⚠️ Report is 2 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #6315      +/-   ##
==========================================
+ Coverage   83.30%   92.60%   +9.29%     
==========================================
  Files          44      533     +489     
  Lines         683    10036    +9353     
  Branches      195     3810    +3615     
==========================================
+ Hits          569     9294    +8725     
- Misses        104      677     +573     
- Partials       10       65      +55     

see 489 files with indirect coverage changes


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update e4ae00d...28617a4. Read the comment docs.

🚀 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.

@github-actions github-actions bot force-pushed the changeset-release/main branch from 2a9bab6 to 66e0f6d Compare April 8, 2026 09:24
@github-actions github-actions bot force-pushed the changeset-release/main branch from 66e0f6d to 95c7e48 Compare April 10, 2026 08:11
@github-actions github-actions bot force-pushed the changeset-release/main branch from 95c7e48 to d9b670d Compare April 10, 2026 08:22
@github-actions github-actions bot force-pushed the changeset-release/main branch 4 times, most recently from 41ecc14 to 927ec87 Compare April 10, 2026 09:54
@github-actions github-actions bot force-pushed the changeset-release/main branch 2 times, most recently from 1b9308a to cd17306 Compare April 10, 2026 13:16
@github-actions github-actions bot force-pushed the changeset-release/main branch 2 times, most recently from b4e0061 to 94d14a8 Compare April 10, 2026 14:39
@github-actions github-actions bot force-pushed the changeset-release/main branch from 94d14a8 to b080910 Compare April 10, 2026 14:57
@github-actions github-actions bot force-pushed the changeset-release/main branch from b080910 to 4c5274e Compare April 10, 2026 15:15
@github-actions github-actions bot force-pushed the changeset-release/main branch 3 times, most recently from 1a48920 to 9f038c7 Compare April 13, 2026 08:57
@github-actions github-actions bot force-pushed the changeset-release/main branch from 9e3612b to 28617a4 Compare April 20, 2026 15:10
@lisalupi lisalupi merged commit 198aa71 into main Apr 20, 2026
12 of 13 checks passed
@lisalupi lisalupi deleted the changeset-release/main branch April 20, 2026 15:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants