Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #298

Merged
merged 1 commit into from
Mar 22, 2024
Merged

Version Packages #298

merged 1 commit into from
Mar 22, 2024

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Mar 19, 2024

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

svelte-ux@0.62.0

Minor Changes

  • Breaking change: tableOrderStore now takes in the full event with e.detail.column instead of just column to simplify usage. (341b51a47df0db4774a6470ecbcee36e21002188)

    Before

    <Table on:headerClick={(e) => tableOrder.onHeaderClick(e.detail.column)} />

    After

    <Table on:headerClick={tableOrder.onHeaderClick} />
  • Breaking change: Simplify Table ordering by passing instance of tableOrderStore instead of orderBy, orderDirection, and handling on:headerClick. Also fixes display of clickable headers when order is not used, and improves sort arrow size. (e72a154524d0a8583717f58617984b1ea46f187b)

    Before

    <script>
      const order = tableOrderStore();
    </script>
    
    <Table
      orderBy={$order.by}
      orderDirection={$order.direction}
      on:headerClick={order.onHeaderClick}
    />

    After

    <script>
      const order = tableOrderStore();
    </script>
    
    <Table {order} />
  • Breaking change: [Paginate] Rename items to data and pageItems slot prop to pageData to better integrate with Table. Maintain data type to pageData. (fc50ca2d5670596dd9c125725fff1ad38c07e723)

Patch Changes

Copy link

cloudflare-workers-and-pages bot commented Mar 19, 2024

Deploying svelte-ux with  Cloudflare Pages  Cloudflare Pages

Latest commit: ab44e03
Status: ✅  Deploy successful!
Preview URL: https://617d931c.svelte-ux.pages.dev
Branch Preview URL: https://changeset-release-main.svelte-ux.pages.dev

View logs

Copy link

vercel bot commented Mar 19, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
svelte-ux ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 22, 2024 11:45am

@github-actions github-actions bot force-pushed the changeset-release/main branch from fccebb6 to 8864a4b Compare March 19, 2024 13:31
@github-actions github-actions bot force-pushed the changeset-release/main branch from 8864a4b to c42a296 Compare March 19, 2024 14:06
@github-actions github-actions bot force-pushed the changeset-release/main branch from c42a296 to 7916556 Compare March 20, 2024 12:01
@github-actions github-actions bot force-pushed the changeset-release/main branch from 7916556 to a8746d3 Compare March 20, 2024 12:32
@github-actions github-actions bot force-pushed the changeset-release/main branch from a8746d3 to cfd79ef Compare March 20, 2024 17:05
@github-actions github-actions bot force-pushed the changeset-release/main branch from cfd79ef to 90a0680 Compare March 20, 2024 21:12
@github-actions github-actions bot force-pushed the changeset-release/main branch from 90a0680 to 3ba1405 Compare March 21, 2024 14:37
@github-actions github-actions bot force-pushed the changeset-release/main branch from 3ba1405 to 11e5438 Compare March 22, 2024 11:02
@github-actions github-actions bot force-pushed the changeset-release/main branch from 11e5438 to ab44e03 Compare March 22, 2024 11:41
@techniq techniq merged commit dcc6955 into main Mar 22, 2024
3 checks passed
@techniq techniq deleted the changeset-release/main branch March 22, 2024 11:48
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.

1 participant