Skip to content

Commit de95b7e

Browse files
authored
Merge pull request #17 from bQuery/copilot/update-bquery-ui-to-1-10-0
2 parents 3636941 + e53d0aa commit de95b7e

5 files changed

Lines changed: 14 additions & 14 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,24 +69,24 @@ import '@bquery/ui';
6969

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

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

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

8181
## Current release snapshot
8282

83-
The current release (`1.9.0`) emphasizes:
83+
The current release (`1.10.0`) emphasizes:
8484

8585
- **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.
8686
- **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.
8787
- **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.
8888
- **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.
89-
- **Aligned docs and browser bundles.** Version-pinned CDN snippets, migration guidance, and Storybook/VitePress references now target `1.9.0`.
89+
- **Aligned docs and browser bundles.** Version-pinned CDN snippets, migration guidance, and Storybook/VitePress references now target `1.10.0`.
9090

9191
## Tree-Shakeable Usage
9292

bun.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/guide/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ bun add @bquery/ui
2929
::: code-group
3030

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

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

3939
:::

docs/guide/migration-from-1-1-0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Migration from 1.1.0
22

3-
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.
3+
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.
44

55
## Summary
66

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

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

9595
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`.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bquery/ui",
3-
"version": "1.9.0",
3+
"version": "1.10.0",
44
"description": "Production-grade web component library for the bQuery project",
55
"type": "module",
66
"main": "./dist/index.cjs",
@@ -85,10 +85,10 @@
8585
"build:storybook": "storybook build --output-dir storybook-static"
8686
},
8787
"peerDependencies": {
88-
"@bquery/bquery": "^1.9.0"
88+
"@bquery/bquery": "^1.10.0"
8989
},
9090
"devDependencies": {
91-
"@bquery/bquery": "^1.9.0",
91+
"@bquery/bquery": "^1.10.0",
9292
"@storybook/addon-docs": "^10.3.4",
9393
"@storybook/web-components-vite": "^10.3.4",
9494
"@tailwindcss/postcss": "^4.2.2",

0 commit comments

Comments
 (0)