Skip to content

chore: update onyx versions and changelogs for release#5068

Merged
JoCa96 merged 3 commits intomainfrom
changeset-release/main
Mar 16, 2026
Merged

chore: update onyx versions and changelogs for release#5068
JoCa96 merged 3 commits intomainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Contributor

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

@sit-onyx/figma-utils@1.1.0

Minor Changes

  • ef0ba45: feat(import-flags): add additional country names

@sit-onyx/flags@1.1.0

Minor Changes

  • ef0ba45: feat: update flags

    New

    • ES-AR
    • ES-CE
    • ES-GA
    • ES-IB
    • ES-ML
    • ES-PV
    • FR-20R
    • FR-BRE
    • GB-NIR

    Modified

    • CY
    • DK
    • FO
    • GB-WLS
    • HR
    • IS
    • LI
    • LV
    • ME
    • NO
    • RS
    • SE
    • SM

@sit-onyx/nuxt-docs@0.4.0

Minor Changes

  • 4b31bbd: feat(sidebar-layout): support hero slot, remove noPadding property since it collides with the TOC
  • db6f050: feat: support table of contents for sidebar layout

Patch Changes

sit-onyx@1.10.0

Minor Changes

  • e76203e: feat: implement new OnyxUnstableDatePickerV2 component

    This component will replace the OnyxDatePicker in the future.

    For now, the OnyxUnstableDatePickerV2 component is marked as experimental/unstable which means that it is still under active development and the API might change in patch or minor releases. Keep an eye on the changelog when using it.

  • 661b343: feat(OnyxTimePicker): implemented range mode

  • 984ce9e: feat(OnyxDataGrid): Extended feature API with new 'enhanceCells' and 'enhanceRow' hooks

    These allow modifying render details per cell/row.
    The provided function is called for each cell/row, after the matching typeRenderer was applied.

  • 5ffe689: feat(OnyxFormElementV2): implement skeleton property

  • 79b76de: feat(OnyxFormElementV2): support loading property and fix height to align with other form elements

  • db6f050: feat(OnyxPageLayout): add smooth scroll behavior to main content / scroll area

  • 984ce9e: feat(OnyxDataGrid): Added base row type 'select'

  • 984ce9e: feat(OnyxDataGrid): Implemented basic inline editing feature.

    For all base column typeRenderers editing is supported.
    To enable editing with custom types, you will need to implement two things:

    1. Check for the editable prop in the metadata to decide if the cell should render in "display" or "edit" mode.
    2. Implement or call the onUpdate:modelValue when the value is supposed to change through an edit.

    Example

    export const MY_CUSTOM_RENDERER = DataGridFeatures.createTypeRenderer({
      header: { component: HeaderCell },
      cell: {
        component: ({ column, row, metadata, modelValue, ...rest }) =>
          metadata?.editable
            ? h(EditingComponent, {
                ...rest,
                label: `${column} with id ${row.id}`,
                modelValue,
              })
            : h(DisplayComponent, { modelValue, ...metadata?.typeOptions }),
      },
    });

    Caveats:

    • Currently only basic editing is supported.
    • Managing editable for individual cells or columns state must currently performed in the application. Per default all cells and rows are either editable or not editable.
    • Filtering and Sorting features are always using the original value, not the edited value.
  • f61969f: feat(OnyxSlider): support new mark slot for custom mark label content

  • 3084837: feat(OnyxFormElementV2): improve popover handling and styles

    • block input typing when popover exists
    • manage open state + close on outside click
    • support popoverOptions property
    • apply focus styles when popover is open

Patch Changes

  • 7e193bd: fix(OnyxTab): fix incorrect underline color
  • fbcdf10: refactor(OnyxUnstableFormElementV2): remove support for right aligned label
  • 0f03aa9: fix: prevent hydration mismatch errors in SSR
  • b62e57c: fix(OnyxBasicDialog): Fix 'nonDismissible' modal dialogs loosing their background after pressing escape twice
  • 984ce9e: fix(OnyxDataGrid): Fix increased row height for columnType "boolean" caused by icon
  • e76203e: - refactor(OnyxUnstableFormElementV2): rename type FormElementPopoverOptions to FormElementV2PopoverOptions
    • fix(OnyxUnstableFormElementV2): correctly determine inside elements for closing on outside click
    • fix(OnyxBasicPopover): prevent toggle when disabled
  • 4b31bbd: fix(OnyxPageLayout): correctly disable centering of nested onyx-grid-layout when a sidebar exsists

@sit-onyx/headless@0.7.1

Patch Changes

  • f61969f: fix(createSlider): correctly center first and last mark label
  • 3084837: refactor(useOutsideClick): update inside type to also allow Element

@sit-onyx/playwright-utils@1.2.1

Patch Changes

  • b62e57c: fix(expectEmit): Improve error/failure messages

Releases:
  sit-onyx@1.10.0
  @sit-onyx/headless@0.7.1
  @sit-onyx/playwright-utils@1.2.1
  @sit-onyx/nuxt-docs@0.4.0
  @sit-onyx/flags@1.1.0
  @sit-onyx/figma-utils@1.1.0

[skip ci]
@github-actions github-actions bot requested a review from a team as a code owner March 16, 2026 14:06
@JoCa96 JoCa96 force-pushed the changeset-release/main branch from fcf9a5f to 4161a2d Compare March 16, 2026 14:53
@JoCa96 JoCa96 enabled auto-merge March 16, 2026 14:54
@JoCa96 JoCa96 added this pull request to the merge queue Mar 16, 2026
@JoCa96 JoCa96 removed this pull request from the merge queue due to a manual request Mar 16, 2026
@JoCa96 JoCa96 added this pull request to the merge queue Mar 16, 2026
@JoCa96 JoCa96 removed this pull request from the merge queue due to a manual request Mar 16, 2026
@JoCa96 JoCa96 merged commit 21b6ad1 into main Mar 16, 2026
17 checks passed
@JoCa96 JoCa96 deleted the changeset-release/main branch March 16, 2026 16:03
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