Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,24 +69,24 @@ import '@bquery/ui';

```html
<!-- UMD -->
<script src="https://cdn.jsdelivr.net/npm/@bquery/ui@1.9.0/dist/index.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@bquery/ui@1.10.0/dist/index.umd.js"></script>

<!-- IIFE -->
<script src="https://cdn.jsdelivr.net/npm/@bquery/ui@1.9.0/dist/index.iife.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@bquery/ui@1.10.0/dist/index.iife.js"></script>
```

The UMD and IIFE bundles register all components on load and expose the library on `window.BQueryUI`.
For ESM-based app builds, prefer importing `@bquery/ui` from your bundler or other module-aware build tool.

## Current release snapshot

The current release (`1.9.0`) emphasizes:
The current release (`1.10.0`) emphasizes:

- **Import-based registration as the canonical integration path.** Import `@bquery/ui` once to register all components, or import `@bquery/ui/components/<name>` to register only the wrappers you need.
- **A clearer shared package surface.** `@bquery/ui/tokens`, `@bquery/ui/theme`, `@bquery/ui/i18n`, `@bquery/ui/utils`, and `@bquery/ui/register` are all explicit entry points.
- **Broader accessibility and localization coverage.** Recent releases improved accordion semantics, live form-field counters, localized table states, chip keyboard behavior, and reduced-motion-aware overlay transitions.
- **A larger production-ready catalog.** The package now spans 31 web components across actions, forms, navigation, data display, feedback, and overlays, including `bq-dropdown-menu`, `bq-stat-card`, and the imperative toast API.
- **Aligned docs and browser bundles.** Version-pinned CDN snippets, migration guidance, and Storybook/VitePress references now target `1.9.0`.
- **Aligned docs and browser bundles.** Version-pinned CDN snippets, migration guidance, and Storybook/VitePress references now target `1.10.0`.

## Tree-Shakeable Usage

Expand Down
6 changes: 3 additions & 3 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ bun add @bquery/ui
::: code-group

```html [UMD]
<script src="https://cdn.jsdelivr.net/npm/@bquery/ui@1.9.0/dist/index.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@bquery/ui@1.10.0/dist/index.umd.js"></script>
```

```html [IIFE]
<script src="https://cdn.jsdelivr.net/npm/@bquery/ui@1.9.0/dist/index.iife.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@bquery/ui@1.10.0/dist/index.iife.js"></script>
```

:::
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/migration-from-1-1-0.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Migration from 1.1.0

Moving from `1.1.0` to the current `@bquery/ui` line (`1.9.0`) is mostly about aligning with the modern import model, the explicit package entry points, and the expanded accessibility/i18n defaults.
Moving from `1.1.0` to the current `@bquery/ui` line (`1.10.0`) is mostly about aligning with the modern import model, the explicit package entry points, and the expanded accessibility/i18n defaults.

## Summary

Expand Down Expand Up @@ -89,7 +89,7 @@ These changes are backward compatible for most consumers, but they may affect sn
For direct browser delivery, pin the bundled browser files to the current version:

```html
<script src="https://cdn.jsdelivr.net/npm/@bquery/ui@1.9.0/dist/index.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@bquery/ui@1.10.0/dist/index.umd.js"></script>
```

The library ESM entry is still the right choice for bundlers, but the published `dist/index.js` keeps `@bquery/bquery` as a peer dependency, so browser-direct CDN usage should prefer `index.umd.js` or `index.iife.js`.
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bquery/ui",
"version": "1.9.0",
"version": "1.10.0",
"description": "Production-grade web component library for the bQuery project",
"type": "module",
"main": "./dist/index.cjs",
Expand Down Expand Up @@ -85,10 +85,10 @@
"build:storybook": "storybook build --output-dir storybook-static"
},
"peerDependencies": {
"@bquery/bquery": "^1.9.0"
"@bquery/bquery": "^1.10.0"
},
"devDependencies": {
"@bquery/bquery": "^1.9.0",
"@bquery/bquery": "^1.10.0",
"@storybook/addon-docs": "^10.3.4",
"@storybook/web-components-vite": "^10.3.4",
"@tailwindcss/postcss": "^4.2.2",
Expand Down
Loading