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

next: resolve merge conflicts with main #639

Merged
merged 24 commits into from
Aug 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
1fa7192
chore: add plausible (#455)
huntabyte Apr 12, 2024
819477f
chore: add plausible (#456)
huntabyte Apr 13, 2024
e966830
docs: add DateValue type reference (#462)
AndreMorise Apr 16, 2024
7342d3f
Fix binding button element (#473)
Stadly Apr 17, 2024
e882d64
Version Packages (#475)
github-actions[bot] Apr 17, 2024
ba08d99
chore: update readme (#486)
huntabyte Apr 19, 2024
fe3259f
chore: issue template (#487)
huntabyte Apr 19, 2024
20593aa
chore: Replaced all self-closing non-void elements (#518)
AdrianGonz97 Apr 26, 2024
f883bb7
Version Packages (#519)
github-actions[bot] Apr 26, 2024
564b03a
chore: update peer deps to include Svelte 5 (#525)
huntabyte Apr 29, 2024
e1c85eb
Version Packages (#526)
github-actions[bot] Apr 29, 2024
98d5bd0
chore: Making it more Svelte 5 compatible (#529)
AdrianGonz97 May 1, 2024
36bb232
Version Packages (#530)
github-actions[bot] May 1, 2024
c71f987
fix: ContentProps type (#545)
NDOY3M4N May 17, 2024
1691ef9
fix: Updated ComboboxLabelProps to use HTMLLabelAttributes (#544)
jeannemas May 17, 2024
47e0ce9
Version Packages (#548)
github-actions[bot] May 18, 2024
46e5828
feat: forward additional events from `<Button>` (#550)
huntabyte May 21, 2024
531a040
Version Packages (#551)
github-actions[bot] May 21, 2024
32af944
fix: allow overriding the combobox input id (#553)
huntabyte May 26, 2024
5e257aa
fix: date pickers clear (#549)
wysher May 26, 2024
68d7aa6
Version Packages (#554)
github-actions[bot] May 26, 2024
6d5ff24
docs: Update ScrollArea import (#574)
RatulMaharaj Jun 15, 2024
1d2f94b
Merge branch 'main' into next-main-merged
huntabyte Aug 3, 2024
e2d75cc
next main merged
huntabyte Aug 3, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/ISSUE_TEMPLATE/3-bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ body:
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: markdown
attributes:
value: |
#### If you aren't sure if something is a bug or not, please do not create an issue, instead ask in one of the following channels:
- [Discussions](https://github.com/huntabyte/bits-ui/discussions/new?category=help)
- [Discord](https://discord.gg/fdXy3Sk8Gq)
- type: textarea
id: bug-description
attributes:
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ contact_links:
url: https://github.com/huntabyte/bits-ui/discussions/new?category=help
about: If you can't get something to work the way you expect, open a question in our discussion forums.
- name: Discord
url: https://hbyt.us/discord
url: https://discord.gg/fdXy3Sk8Gq
about: If you need to have a back-and-forth conversation, join the Discord server.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

<!-- /automd -->

[![](https://dcbadge.vercel.app/api/server/fdXy3Sk8Gq?style=flat)](https://discord.gg/fdXy3Sk8Gq)

The headless components for Svelte.

[Read the docs](https://bits-ui.com)
Expand Down Expand Up @@ -41,3 +43,14 @@ Built by [@huntabyte](https://github.com/huntabyte) and [community](https://gith
</a>

<!-- /automd -->

## Community

Join the Discord server to ask questions, find collaborators, or just say hi!

<a href="https://discord.gg/fdXy3Sk8Gq" alt="Svecosystem Discord community">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://invidget.switchblade.xyz/fdXy3Sk8Gq">
<img alt="Svecosystem Discord community" src="https://invidget.switchblade.xyz/fdXy3Sk8Gq?theme=light">
</picture>
</a>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"prettier-plugin-tailwindcss": "0.5.13",
"svelte": "5.0.0-next.199",
"svelte": "5.0.0-next.208",
"svelte-eslint-parser": "^0.41.0",
"wrangler": "^3.44.0"
},
Expand Down
44 changes: 44 additions & 0 deletions packages/bits-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,49 @@
# bits-ui

## 0.21.10

### Patch Changes

- fix: allow overriding the combobox input id ([#553](https://github.com/huntabyte/bits-ui/pull/553))

## 0.21.9

### Patch Changes

- feat: forward additional events from `<Button>` ([#550](https://github.com/huntabyte/bits-ui/pull/550))

## 0.21.8

### Patch Changes

- fix: Updated `ComboboxLabelProps` to use `HTMLLabelAttributes` ([#544](https://github.com/huntabyte/bits-ui/pull/544))

- fix: ContentProps type ([#545](https://github.com/huntabyte/bits-ui/pull/545))

## 0.21.7

### Patch Changes

- chore: Updated a11y warnings for better Svelte 5 compatibility ([#529](https://github.com/huntabyte/bits-ui/pull/529))

## 0.21.6

### Patch Changes

- chore: update peer deps to include Svelte 5 ([#525](https://github.com/huntabyte/bits-ui/pull/525))

## 0.21.5

### Patch Changes

- chore: Replaced all self-closing non-void elements ([#518](https://github.com/huntabyte/bits-ui/pull/518))

## 0.21.4

### Patch Changes

- Fix binding button element ([#473](https://github.com/huntabyte/bits-ui/pull/473))

## 0.21.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/bits-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bits-ui",
"version": "0.21.4",
"version": "0.21.13",
"license": "MIT",
"repository": "github:huntabyte/bits-ui",
"funding": "https://github.com/sponsors/huntabyte",
Expand Down Expand Up @@ -44,7 +44,7 @@
"jsdom": "^24.1.0",
"publint": "^0.2.8",
"resize-observer-polyfill": "^1.5.1",
"svelte": "5.0.0-next.199",
"svelte": "5.0.0-next.208",
"svelte-check": "^3.8.4",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
Expand Down
Loading