Skip to content

Commit

Permalink
release: 1.18.0 (#1689)
Browse files Browse the repository at this point in the history
<!--
Hello 👋 Thank you for submitting a pull request.

To help us merge your PR, make sure to follow the instructions below:

- Create or update the tests
- Create or update the documentation at
https://github.com/strapi/documentation
- Refer to the issue you are closing in the PR description: Fix #issue
- Specify if the PR is ready to be merged or work in progress (by
opening a draft PR)

Please ensure you read the Contributing Guide:
https://github.com/strapi/strapi/blob/master/CONTRIBUTING.md
-->
  • Loading branch information
joshuaellis committed Apr 15, 2024
2 parents 65faa18 + 9773905 commit fdaefd3
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 105 deletions.
5 changes: 0 additions & 5 deletions .changeset/brown-jars-sneeze.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-deers-confess.md

This file was deleted.

84 changes: 0 additions & 84 deletions .github/dependabot.yml

This file was deleted.

2 changes: 1 addition & 1 deletion packages/primitives/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@strapi/ui-primitives",
"version": "1.17.0",
"version": "1.18.0",
"license": "MIT",
"sideEffects": false,
"main": "./dist/ui-primitives.js",
Expand Down
6 changes: 3 additions & 3 deletions packages/strapi-design-system/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@strapi/design-system",
"version": "1.17.0",
"version": "1.18.0",
"license": "MIT",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down Expand Up @@ -33,7 +33,7 @@
"@radix-ui/react-dismissable-layer": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-focus-scope": "1.0.4",
"@strapi/ui-primitives": "^1.17.0",
"@strapi/ui-primitives": "^1.18.0",
"@uiw/react-codemirror": "^4.21.25",
"aria-hidden": "^1.2.4",
"compute-scroll-into-view": "^3.1.0",
Expand All @@ -42,7 +42,7 @@
},
"devDependencies": {
"@playwright/test": "1.43.0",
"@strapi/icons": "^1.17.0",
"@strapi/icons": "^1.18.0",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"axe-playwright": "^2.0.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/strapi-design-system/src/Dialog/Dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export interface DialogProps extends BoxProps {
isOpen: boolean;
}

export const Dialog = ({ onClose, title, as = 'h2', isOpen, id, ...props }: DialogProps) => {
export const Dialog = ({ onClose, title, as = 'h2', isOpen, id, zIndex = 4, ...props }: DialogProps) => {
const generatedId = useId(id);

useLockScroll(isOpen);
Expand All @@ -47,7 +47,7 @@ export const Dialog = ({ onClose, title, as = 'h2', isOpen, id, ...props }: Dial

return (
<Portal>
<DialogWrapper padding={8} position="fixed" zIndex={4}>
<DialogWrapper padding={8} position="fixed" zIndex={zIndex}>
<FocusTrap>
<DismissibleLayer onEscapeKeyDown={onClose} onPointerDownOutside={onClose}>
<DialogContainer
Expand Down
2 changes: 1 addition & 1 deletion packages/strapi-icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@strapi/icons",
"version": "1.17.0",
"version": "1.18.0",
"license": "MIT",
"sideEffects": false,
"main": "./dist/index.js",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5147,8 +5147,8 @@ __metadata:
"@radix-ui/react-dismissable-layer": ^1.0.5
"@radix-ui/react-dropdown-menu": ^2.0.6
"@radix-ui/react-focus-scope": 1.0.4
"@strapi/icons": ^1.17.0
"@strapi/ui-primitives": ^1.17.0
"@strapi/icons": ^1.18.0
"@strapi/ui-primitives": ^1.18.0
"@types/react-router-dom": ^5.3.3
"@types/styled-components": ^5.1.26
"@uiw/react-codemirror": ^4.21.25
Expand Down Expand Up @@ -5200,7 +5200,7 @@ __metadata:
languageName: node
linkType: hard

"@strapi/icons@^1.17.0, @strapi/icons@workspace:*, @strapi/icons@workspace:packages/strapi-icons":
"@strapi/icons@^1.18.0, @strapi/icons@workspace:*, @strapi/icons@workspace:packages/strapi-icons":
version: 0.0.0-use.local
resolution: "@strapi/icons@workspace:packages/strapi-icons"
dependencies:
Expand All @@ -5211,7 +5211,7 @@ __metadata:
languageName: unknown
linkType: soft

"@strapi/ui-primitives@^1.17.0, @strapi/ui-primitives@workspace:*, @strapi/ui-primitives@workspace:packages/primitives":
"@strapi/ui-primitives@^1.18.0, @strapi/ui-primitives@workspace:*, @strapi/ui-primitives@workspace:packages/primitives":
version: 0.0.0-use.local
resolution: "@strapi/ui-primitives@workspace:packages/primitives"
dependencies:
Expand Down

0 comments on commit fdaefd3

Please sign in to comment.