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
3 changes: 3 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"@shopify/ui-extensions-tester": "2026.10.0-rc.0"
},
"changesets": [
"document-pos-image-border-radius",
"empty-peas-hide",
"hide-tertiary-button-docs",
"lovely-chairs-cross",
Expand All @@ -14,6 +15,8 @@
"pos-intercept-payment-validations",
"pos-payment-validations-tender-confirm-docs",
"pos-remove-action-api-from-action-render",
"pos-resolution-targets",
"pos-storage-current-required",
"pos-validation-target-grammar",
"tidy-buttons-auto"
]
Expand Down
11 changes: 11 additions & 0 deletions packages/ui-extensions-tester/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @shopify/ui-extensions-tester

## 2026.10.0-rc.7

### Minor Changes

- [#4641](https://github.com/Shopify/ui-extensions/pull/4641) [`7ef321c`](https://github.com/Shopify/ui-extensions/commit/7ef321ce027bd60f744c1243d978a791fd26bb70) Thanks [@vctrchu](https://github.com/vctrchu)! - Add types for the POS validation resolution targets (`pos.cart.validations.resolution.render`, `pos.payment.validations.resolution.render`) and the target-scoped `shopify.resolution` API. Intercept event types now match their runtime payloads: plain objects carrying `type` and the event's data, no longer extending DOM `Event`.

### Patch Changes

- Updated dependencies [[`5f16688`](https://github.com/Shopify/ui-extensions/commit/5f1668883bf621e0bf8154e4d9eb9a478db6570c), [`7ef321c`](https://github.com/Shopify/ui-extensions/commit/7ef321ce027bd60f744c1243d978a791fd26bb70), [`6f11a9d`](https://github.com/Shopify/ui-extensions/commit/6f11a9de30d5b55c48894ef5e57253bd763bd4a6)]:
- @shopify/ui-extensions@2026.10.0-rc.7

## 2026.10.0-rc.6

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/ui-extensions-tester/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/ui-extensions-tester",
"version": "2026.10.0-rc.6",
"version": "2026.10.0-rc.7",
"main": "index.js",
"module": "index.mjs",
"esnext": "index.esnext",
Expand Down Expand Up @@ -55,7 +55,7 @@
},
"license": "MIT",
"dependencies": {
"@shopify/ui-extensions": "2026.10.0-rc.6"
"@shopify/ui-extensions": "2026.10.0-rc.7"
},
"peerDependencies": {
"preact": "^10.0.0"
Expand Down
12 changes: 12 additions & 0 deletions packages/ui-extensions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @shopify/ui-extensions

## 2026.10.0-rc.7

### Minor Changes

- [#4641](https://github.com/Shopify/ui-extensions/pull/4641) [`7ef321c`](https://github.com/Shopify/ui-extensions/commit/7ef321ce027bd60f744c1243d978a791fd26bb70) Thanks [@vctrchu](https://github.com/vctrchu)! - Add types for the POS validation resolution targets (`pos.cart.validations.resolution.render`, `pos.payment.validations.resolution.render`) and the target-scoped `shopify.resolution` API. Intercept event types now match their runtime payloads: plain objects carrying `type` and the event's data, no longer extending DOM `Event`.

- [#4642](https://github.com/Shopify/ui-extensions/pull/4642) [`6f11a9d`](https://github.com/Shopify/ui-extensions/commit/6f11a9de30d5b55c48894ef5e57253bd763bd4a6) Thanks [@henryStelle](https://github.com/henryStelle)! - Make the POS `Storage.current` property required. It is always populated by the host, so marking it optional forced consumers to handle a `possibly undefined` case that can never occur.

### Patch Changes

- [#4639](https://github.com/Shopify/ui-extensions/pull/4639) [`5f16688`](https://github.com/Shopify/ui-extensions/commit/5f1668883bf621e0bf8154e4d9eb9a478db6570c) Thanks [@ajanth-u](https://github.com/ajanth-u)! - Document the `borderRadius` prop on the POS `s-image` component.

## 2026.10.0-rc.6

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-extensions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/ui-extensions",
"version": "2026.10.0-rc.6",
"version": "2026.10.0-rc.7",
"scripts": {
"docs:admin": "node ./docs/surfaces/admin/build-docs.mjs",
"docs:checkout": "bash ./docs/surfaces/checkout/build-docs.sh",
Expand Down
Loading