diff --git a/README.md b/README.md
index 8499a6e..9fb38ea 100644
--- a/README.md
+++ b/README.md
@@ -69,10 +69,10 @@ import '@bquery/ui';
```html
-
+
-
+
```
The UMD and IIFE bundles register all components on load and expose the library on `window.BQueryUI`.
@@ -80,13 +80,13 @@ For ESM-based app builds, prefer importing `@bquery/ui` from your bundler or oth
## 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/` 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
diff --git a/bun.lock b/bun.lock
index c66b388..c778439 100644
--- a/bun.lock
+++ b/bun.lock
@@ -5,7 +5,7 @@
"": {
"name": "@bquery/ui",
"devDependencies": {
- "@bquery/bquery": "^1.9.0",
+ "@bquery/bquery": "^1.10.0",
"@storybook/addon-docs": "^10.3.3",
"@storybook/web-components-vite": "^10.3.3",
"@tailwindcss/postcss": "^4.2.2",
@@ -22,7 +22,7 @@
"vitepress": "^1.6.4",
},
"peerDependencies": {
- "@bquery/bquery": "^1.9.0",
+ "@bquery/bquery": "^1.10.0",
},
},
},
@@ -79,7 +79,7 @@
"@babel/types": ["@babel/types@7.29.0", "", { "dependencies": { "@babel/helper-string-parser": "^7.27.1", "@babel/helper-validator-identifier": "^7.28.5" } }, "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A=="],
- "@bquery/bquery": ["@bquery/bquery@1.9.0", "", {}, "sha512-LrUY5axBZUGSPzZt46O19gqiYY0CX9nGfKTz5pt4gVZAKRYkr7FOEPtp4QlhfKoT6hCjZ5JqiMd/RhjEI1rErA=="],
+ "@bquery/bquery": ["@bquery/bquery@1.10.0", "", {}, "sha512-YsjyKl1pBtJ6TLX3hKNdtx973HY+mNK/i+fwglZZrDtdrUopRLunIei7C3j0Lx+qXbHL3bFnzt4/s/qAhlV5rg=="],
"@docsearch/css": ["@docsearch/css@3.8.2", "", {}, "sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ=="],
diff --git a/docs/guide/installation.md b/docs/guide/installation.md
index 71c5b2d..d818cb0 100644
--- a/docs/guide/installation.md
+++ b/docs/guide/installation.md
@@ -29,11 +29,11 @@ bun add @bquery/ui
::: code-group
```html [UMD]
-
+
```
```html [IIFE]
-
+
```
:::
diff --git a/docs/guide/migration-from-1-1-0.md b/docs/guide/migration-from-1-1-0.md
index fcdc395..e3b1e67 100644
--- a/docs/guide/migration-from-1-1-0.md
+++ b/docs/guide/migration-from-1-1-0.md
@@ -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
@@ -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
-
+
```
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`.
diff --git a/package.json b/package.json
index 73664b9..cd7baeb 100644
--- a/package.json
+++ b/package.json
@@ -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",
@@ -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",