Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: chakra-ui/ark
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: @ark-ui/react@5.0.1
Choose a base ref
...
head repository: chakra-ui/ark
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: @ark-ui/react@5.1.0
Choose a head ref
  • 13 commits
  • 33 files changed
  • 3 contributors

Commits on Mar 13, 2025

  1. chore: update lockfile

    segunadebayo committed Mar 13, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    scala-steward Scala Steward
    Copy the full SHA
    52eaf4c View commit details
  2. Copy the full SHA
    b5a2f29 View commit details
  3. Copy the full SHA
    dff9ff1 View commit details
  4. Copy the full SHA
    fa80bb8 View commit details

Commits on Mar 14, 2025

  1. Copy the full SHA
    f749c57 View commit details

Commits on Mar 15, 2025

  1. Copy the full SHA
    d337ad4 View commit details
  2. Copy the full SHA
    ec35631 View commit details
  3. Copy the full SHA
    eb62063 View commit details
  4. Copy the full SHA
    09e302c View commit details

Commits on Mar 17, 2025

  1. chore(deps): update all non-major dependencies (#3393)

    Co-authored-by: Christian Schröter <dev@grizzly.codes>
    renovate[bot] and cschroeter authored Mar 17, 2025
    Copy the full SHA
    b613d28 View commit details
  2. Copy the full SHA
    b5ea727 View commit details
  3. Copy the full SHA
    0b20112 View commit details
  4. Copy the full SHA
    86401e8 View commit details
Showing with 1,220 additions and 783 deletions.
  1. +717 −459 bun.lock
  2. +2 −2 package.json
  3. +13 −1 packages/react/CHANGELOG.md
  4. +63 −63 packages/react/package.json
  5. +21 −0 packages/react/src/components/field/examples/root-provider.tsx
  6. +2 −1 packages/react/src/components/field/field.stories.tsx
  7. +1 −0 packages/react/src/components/field/index.ts
  8. +2 −2 packages/react/src/components/slider/tests/slider.test.tsx
  9. +1 −1 packages/react/src/components/tooltip/examples/basic.tsx
  10. +20 −9 packages/react/src/utils/compose-refs.ts
  11. +8 −0 packages/solid/CHANGELOG.md
  12. +60 −60 packages/solid/package.json
  13. +22 −0 packages/solid/src/components/field/examples/root-provider.tsx
  14. +1 −0 packages/solid/src/components/field/index.tsx
  15. +2 −2 packages/solid/src/components/slider/tests/slider.test.tsx
  16. +16 −16 packages/svelte/package.json
  17. +8 −0 packages/vue/CHANGELOG.md
  18. +57 −57 packages/vue/package.json
  19. +22 −0 packages/vue/src/components/field/examples/root-provider.vue
  20. +4 −0 packages/vue/src/components/field/field.stories.vue
  21. +1 −0 packages/vue/src/components/field/index.ts
  22. +91 −65 packages/vue/src/components/field/use-field.ts
  23. +4 −0 renovate.json
  24. +1 −1 scripts/package.json
  25. +2 −2 templates/react/next-js/package.json
  26. +12 −12 website/package.json
  27. +2 −0 website/public/images/architecture_dark.svg
  28. +3 −0 website/public/images/architecture_light.svg
  29. +19 −19 website/src/components/faq.tsx
  30. +5 −5 website/src/components/marketing/hero.tsx
  31. +22 −0 website/src/components/theme-image.tsx
  32. +14 −6 website/src/content/pages/overview/introduction.mdx
  33. +2 −0 website/src/mdx-content.tsx
Loading