- A modal with no slotted header content
- This has no header content
+ This dialog has no slotted header content
+ All this content exists in the default slot.
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
From 74ee1a608a85ac471553f5feff24e4fb95563e4c Mon Sep 17 00:00:00 2001
From: Adam Johnson
Date: Thu, 5 Dec 2024 17:05:41 -0500
Subject: [PATCH 08/42] fix(dialog): horizontally center dialogs with
`variant`/`width` attributes
---
elements/rh-dialog/rh-dialog.css | 5 -----
1 file changed, 5 deletions(-)
diff --git a/elements/rh-dialog/rh-dialog.css b/elements/rh-dialog/rh-dialog.css
index c909043e45..a831f1182a 100644
--- a/elements/rh-dialog/rh-dialog.css
+++ b/elements/rh-dialog/rh-dialog.css
@@ -56,11 +56,6 @@
position: relative;
}
-:host([width]) [part='dialog'],
-:host([variant]) [part='dialog'] {
- margin-inline: 0;
-}
-
:host([width='small']) [part='dialog'],
:host([variant='small']) [part='dialog'] {
--_box-width: 35rem;
From bf34916cb7fdb394855aa144ef9f7847996148ee Mon Sep 17 00:00:00 2001
From: Adam Johnson
Date: Fri, 6 Dec 2024 14:17:36 -0500
Subject: [PATCH 09/42] fix(dialog): position top / modal width variants sizing
---
elements/rh-dialog/rh-dialog.css | 9 ++-------
1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/elements/rh-dialog/rh-dialog.css b/elements/rh-dialog/rh-dialog.css
index a831f1182a..ad8ff9ed08 100644
--- a/elements/rh-dialog/rh-dialog.css
+++ b/elements/rh-dialog/rh-dialog.css
@@ -131,14 +131,9 @@
}
:host([position='top']) #dialog {
- margin-block-start: 0;
- max-inline-size: none;
inline-size: 100%;
-}
-
-:host([position='top']) #content {
- margin-inline: 0;
- max-inline-size: calc(100% - min(var(--rh-space-2xl, 32px) * 2, var(--rh-space-2xl, 32px)));
+ margin-block-start: var(--rh-space-2xl, 32px);
+ max-inline-size: var(--_box-width, calc(100% - var(--rh-space-2xl, 32px)));
}
[part='footer'] {
From e8ef16ab71197cb478364d3caa539c529caa5b91 Mon Sep 17 00:00:00 2001
From: Adam Johnson
Date: Fri, 6 Dec 2024 14:18:24 -0500
Subject: [PATCH 10/42] fix(dialog): add `rh-*` elements to list of focusable
selectors.
---
elements/rh-dialog/rh-dialog.ts | 47 ++++++++++++++++++++++++++++++++-
1 file changed, 46 insertions(+), 1 deletion(-)
diff --git a/elements/rh-dialog/rh-dialog.ts b/elements/rh-dialog/rh-dialog.ts
index be8e67bd31..2f67dab2b8 100644
--- a/elements/rh-dialog/rh-dialog.ts
+++ b/elements/rh-dialog/rh-dialog.ts
@@ -261,7 +261,6 @@ export class RhDialog extends LitElement {
#trapFocus() {
// https://github.com/KittyGiraudel/focusable-selectors
- // TODO: Add RHDS focusable elements (?)
const notInert = ':not([inert]):not([inert] *)';
const notNegTabIndex = ':not([tabindex^="-"])';
const notDisabled = ':not(:disabled)';
@@ -280,6 +279,52 @@ export class RhDialog extends LitElement {
`video[controls]${notInert}${notNegTabIndex}`,
`[contenteditable]${notInert}${notNegTabIndex}`,
`[tabindex]${notInert}${notNegTabIndex}`,
+ `rh-accordion${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-accordion-header${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-accordion-panel${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-alert${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-audio-player${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-avatar${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-back-to-top${notInert}${notNegTabIndex}${notDisabled}`,
+ // rh-badge not interactive
+ // rh-blockquote not interactive
+ `rh-breadcrumb${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-button${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-card${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-code-block${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-cta${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-dialog${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-footer${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-footer-block${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-footer-copyright${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-footer-links${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-footer-social-link${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-footer-universal${notInert}${notNegTabIndex}${notDisabled}`,
+ // rh-health-index not interactive
+ // rh-icon not interactive
+ `rh-navigation-secondary${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-navigation-secondary-dropdown${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-navigation-secondary-menu-section${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-navigation-secondary-menu${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-navigation-secondary-overlay${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-pagination${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-site-status${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-skip-link${notInert}${notNegTabIndex}${notDisabled}`,
+ // rh-spinner not interactive
+ // rh-stat not interactive
+ `rh-subnav${notInert}${notNegTabIndex}${notDisabled}`,
+ // rh-surface not interactive
+ `rh-switch${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-table${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-tabs${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-tab${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-tab-panel${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-tag${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-tile${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-tile-group${notInert}${notNegTabIndex}${notDisabled}`,
+ // rh-timestamp not interactive
+ `rh-tooltip${notInert}${notNegTabIndex}${notDisabled}`,
+ `rh-video-embed${notInert}${notNegTabIndex}${notDisabled}`,
];
const focusableSlottedElements =
From 4eff705aab4dfefa2b74df19cb74cb52ea0a7617 Mon Sep 17 00:00:00 2001
From: Adam Johnson
Date: Mon, 9 Dec 2024 16:53:47 -0500
Subject: [PATCH 11/42] fix(dialog): update close button spacing/height/width.
---
elements/rh-dialog/rh-dialog.css | 14 ++------------
1 file changed, 2 insertions(+), 12 deletions(-)
diff --git a/elements/rh-dialog/rh-dialog.css b/elements/rh-dialog/rh-dialog.css
index ad8ff9ed08..3c0a4fa30e 100644
--- a/elements/rh-dialog/rh-dialog.css
+++ b/elements/rh-dialog/rh-dialog.css
@@ -121,13 +121,8 @@
}
[part='close-button']::part(button) {
- padding: var(--rh-space-xl, 24px);
-}
-
-@media (min-width: 1200px) {
- [part='close-button']::part(button) {
- padding: var(--rh-space-2xl, 32px);
- }
+ block-size: var(--rh-length-xl, 24px);
+ inline-size: var(--rh-length-xl, 24px);
}
:host([position='top']) #dialog {
@@ -156,11 +151,6 @@
inset-block-start: var(--offset-top);
}
-:host([type='video']) #close-button::part(button) {
- padding-inline: var(--rh-space-md, 8px);
- padding-block: var(--rh-space-lg, 16px);
-}
-
:host([type='video']) #close-button::part(icon) {
filter: drop-shadow(1px 0 1px var(--rh-dialog-backdrop-background-color));
}
From accb3f6bb4036a54b04fd8fc346ec16f43b6cc18 Mon Sep 17 00:00:00 2001
From: Adam Johnson
Date: Fri, 13 Dec 2024 14:03:08 -0500
Subject: [PATCH 12/42] fix(dialog): re-add `--rh-dialog-close-button-color`
---
elements/rh-dialog/rh-dialog.css | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/elements/rh-dialog/rh-dialog.css b/elements/rh-dialog/rh-dialog.css
index 3c0a4fa30e..7d391b0551 100644
--- a/elements/rh-dialog/rh-dialog.css
+++ b/elements/rh-dialog/rh-dialog.css
@@ -111,7 +111,7 @@
}
[part='close-button'] {
- color: var(--rh-color-icon-secondary);
+ color: var(--rh-dialog-close-button-color, var(--rh-color-icon-secondary));
cursor: pointer;
display: block;
inset-block-start: var(--rh-length-xs, 4px);
From 4ded108caad7e9ae93438e6f17931ad63ef7dd0d Mon Sep 17 00:00:00 2001
From: Adam Johnson
Date: Fri, 13 Dec 2024 16:51:25 -0500
Subject: [PATCH 13/42] fix(dialog): decrease close button size, fix video
modal close button color
---
elements/rh-dialog/rh-dialog.css | 99 +++++++++++++++++++++-----------
1 file changed, 66 insertions(+), 33 deletions(-)
diff --git a/elements/rh-dialog/rh-dialog.css b/elements/rh-dialog/rh-dialog.css
index 7d391b0551..1d60f296f8 100644
--- a/elements/rh-dialog/rh-dialog.css
+++ b/elements/rh-dialog/rh-dialog.css
@@ -22,6 +22,15 @@
white-space: nowrap;
}
+#rhds-wrapper {
+ --offset: var(--rh-space-xl, 24px);
+ --offset-top: var(--offset);
+ --offset-right: var(--offset);
+
+ display: contents;
+ font-family: var(--rh-font-family-body-text, RedHatText, 'Red Hat Text', 'Noto Sans Arabic', 'Noto Sans Hebrew', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans Malayalam', 'Noto Sans SC', 'Noto Sans TC', 'Noto Sans Thai', Helvetica, Arial, sans-serif);
+}
+
/* NOTE: @deprecated, use `::backdrop` instead. Remove for RHDS v3. */
[part='overlay'] {
background-color:
@@ -73,30 +82,48 @@
[part='content'] {
padding: var(--rh-space-xl, 24px);
+ margin-block-start: calc(-1 * var(--offset-top));
}
[part='header'] {
background-color: var(--rh-color-surface);
- padding-block-end: var(--rh-space-sm, 6px);
position: sticky;
- top: calc(-1 * var(--rh-space-xl, 24px));
+ inset-block-start: calc(-1 * var(--offset-top));
}
[part='header'][hidden] + [part='body'] {
- max-width: calc(100% - var(--rh-space-xl, 24px));
+ max-inline-size: calc(100% - var(--rh-space-xl, 24px));
+}
+
+[part='header'],
+[part='header'][hidden] + [part='body'] {
+ padding-inline-end: var(--rh-space-3xl, 48px);
}
@media (min-width: 1200px) {
+ #rhds-wrapper {
+ --offset: var(--rh-space-2xl, 32px);
+ }
+
+ :host(:not[type='video']) [part='dialog']:has([part='header'][hidden]) [part='close-button'] {
+ --offset-top: var(--rh-space-xl, 24px);
+ }
+
[part='content'] {
padding: var(--rh-space-2xl, 32px);
}
- [part='header'] {
- top: calc(-1 * var(--rh-space-2xl, 32px));
+ [part='content']:has([part='header'][hidden]) {
+ --offset-top: var(--rh-space-xl, 24px);
}
[part='header'][hidden] + [part='body'] {
- max-width: calc(100% - var(--rh-space-2xl, 32px));
+ max-inline-size: calc(100% - var(--rh-space-2xl, 32px));
+ }
+
+ [part='header'],
+ [part='body'] {
+ padding-inline-end: calc(var(--offset-right) * 2);
}
}
@@ -108,15 +135,21 @@
font-family: var(--rh-font-family-heading, RedHatDisplay, 'Red Hat Display', 'Noto Sans Arabic', 'Noto Sans Hebrew', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans Malayalam', 'Noto Sans SC', 'Noto Sans TC', 'Noto Sans Thai', Helvetica, Arial, sans-serif);
font-size: var(--rh-font-size-heading-sm, 1.5rem);
font-weight: var(--rh-font-weight-body-text-regular, 400);
+ margin-block-end: var(--rh-space-lg, 16px) !important;
+}
+
+[part='body'] ::slotted(p) {
+ margin-block: 0 var(--rh-space-xl, 24px) !important;
}
[part='close-button'] {
color: var(--rh-dialog-close-button-color, var(--rh-color-icon-secondary));
cursor: pointer;
- display: block;
- inset-block-start: var(--rh-length-xs, 4px);
- inset-inline-end: var(--rh-length-xs, 4px);
- position: absolute;
+ display: flex;
+ justify-content: end;
+ margin-inline-end: var(--offset-right);
+ inset-block-start: var(--offset-top);
+ position: sticky;
z-index: 500;
}
@@ -137,29 +170,6 @@
gap: var(--rh-space-md, 8px);
}
-#rhds-wrapper {
- --offset: var(--rh-space-md, 8px);
- --offset-top: var(--offset);
- --offset-right: var(--offset);
-
- display: contents;
- font-family: var(--rh-font-family-body-text, RedHatText, 'Red Hat Text', 'Noto Sans Arabic', 'Noto Sans Hebrew', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans Malayalam', 'Noto Sans SC', 'Noto Sans TC', 'Noto Sans Thai', Helvetica, Arial, sans-serif);
-}
-
-:host([type='video']) [part='close-button'] {
- inset-inline-end: var(--offset-right);
- inset-block-start: var(--offset-top);
-}
-
-:host([type='video']) #close-button::part(icon) {
- filter: drop-shadow(1px 0 1px var(--rh-dialog-backdrop-background-color));
-}
-
-:host([type='video']) [part='content'] {
- overflow: hidden;
- padding: 0;
-}
-
:host([type='video']) {
--_gray-90-rgb: var(--rh-color-gray-90-rgb, 31 31 31);
--rh-dialog-backdrop-background-color: rgb(var(--_gray-90-rgb) / var(--rh-opacity-60, 60%));
@@ -169,18 +179,41 @@
var(--rh-dialog-backdrop-background-color));
}
+:host([type='video']) #rhds-wrapper {
+ --offset: var(--rh-space-md, 8px);
+}
+
:host([type='video'][open]) [part='dialog'] {
--_aspect-ratio: var(--rh-dialog-video-aspect-ratio, 16/9);
aspect-ratio: var(--_aspect-ratio);
+ background-color: var(--rh-dialog-overlay-background-color);
max-inline-size: min(90%, calc(90vh * var(--_aspect-ratio) + var(--offset-top)));
padding: 0;
}
+:host([type='video']) [part='close-button'] {
+ inset-inline-end: var(--offset-right);
+ inset-block-start: var(--offset-top);
+ margin-inline-end: 0;
+ position: absolute;
+}
+
:host([type='video']) #rhds-wrapper.mobile [part='close-button'] {
--offset-right: var(--rh-space-sm, 6px);
}
+:host([type='video']) #close-button::part(icon) {
+ color: var(--rh-color-surface);
+ filter: drop-shadow(1px 0 1px var(--rh-dialog-backdrop-background-color));
+}
+
+:host([type='video']) [part='content'] {
+ margin-block-start: 0; /* Safari fix */
+ overflow: hidden;
+ padding: 0;
+}
+
:host([type='video']) [part='content'],
:host([type='video']) ::slotted(:not([slot])) {
aspect-ratio: var(--rh-dialog-video-aspect-ratio, 16/9);
From 0947d167ac2d8f6749dfa13100c25beea3d275ee Mon Sep 17 00:00:00 2001
From: Adam Johnson
Date: Fri, 13 Dec 2024 17:06:27 -0500
Subject: [PATCH 14/42] fix(dialog): add close button color variable to icon
declaration
---
elements/rh-dialog/rh-dialog.css | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/elements/rh-dialog/rh-dialog.css b/elements/rh-dialog/rh-dialog.css
index 1d60f296f8..551547d9b2 100644
--- a/elements/rh-dialog/rh-dialog.css
+++ b/elements/rh-dialog/rh-dialog.css
@@ -204,7 +204,7 @@
}
:host([type='video']) #close-button::part(icon) {
- color: var(--rh-color-surface);
+ color: var(--rh-dialog-close-button-color, var(--rh-color-surface));
filter: drop-shadow(1px 0 1px var(--rh-dialog-backdrop-background-color));
}
From e275b6f1a08bd7b86ebd7d3271a0aad90190876b Mon Sep 17 00:00:00 2001
From: Adam Johnson
Date: Fri, 13 Dec 2024 17:17:26 -0500
Subject: [PATCH 15/42] fix(dialog): remove `trapFocus();` function
See:
https://github.com/RedHat-UX/red-hat-design-system/pull/2078/files#r1877655958
---
elements/rh-dialog/rh-dialog.ts | 76 ---------------------------------
1 file changed, 76 deletions(-)
diff --git a/elements/rh-dialog/rh-dialog.ts b/elements/rh-dialog/rh-dialog.ts
index 2f67dab2b8..e112128853 100644
--- a/elements/rh-dialog/rh-dialog.ts
+++ b/elements/rh-dialog/rh-dialog.ts
@@ -259,81 +259,6 @@ export class RhDialog extends LitElement {
}
}
- #trapFocus() {
- // https://github.com/KittyGiraudel/focusable-selectors
- const notInert = ':not([inert]):not([inert] *)';
- const notNegTabIndex = ':not([tabindex^="-"])';
- const notDisabled = ':not(:disabled)';
- const focusableSelectorList = [
- `a[href]${notInert}${notNegTabIndex}`,
- `area[href]${notInert}${notNegTabIndex}`,
- `input:not([type="hidden"]):not([type="radio"])${notInert}${notNegTabIndex}${notDisabled}`,
- `input[type="radio"]${notInert}${notNegTabIndex}${notDisabled}`,
- `select${notInert}${notNegTabIndex}${notDisabled}`,
- `textarea${notInert}${notNegTabIndex}${notDisabled}`,
- `button${notInert}${notNegTabIndex}${notDisabled}`,
- `details${notInert} > summary:first-of-type${notNegTabIndex}`,
- `details:not(:has(> summary))${notInert}${notNegTabIndex}`,
- `iframe${notInert}${notNegTabIndex}`,
- `audio[controls]${notInert}${notNegTabIndex}`,
- `video[controls]${notInert}${notNegTabIndex}`,
- `[contenteditable]${notInert}${notNegTabIndex}`,
- `[tabindex]${notInert}${notNegTabIndex}`,
- `rh-accordion${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-accordion-header${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-accordion-panel${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-alert${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-audio-player${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-avatar${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-back-to-top${notInert}${notNegTabIndex}${notDisabled}`,
- // rh-badge not interactive
- // rh-blockquote not interactive
- `rh-breadcrumb${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-button${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-card${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-code-block${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-cta${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-dialog${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-footer${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-footer-block${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-footer-copyright${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-footer-links${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-footer-social-link${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-footer-universal${notInert}${notNegTabIndex}${notDisabled}`,
- // rh-health-index not interactive
- // rh-icon not interactive
- `rh-navigation-secondary${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-navigation-secondary-dropdown${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-navigation-secondary-menu-section${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-navigation-secondary-menu${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-navigation-secondary-overlay${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-pagination${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-site-status${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-skip-link${notInert}${notNegTabIndex}${notDisabled}`,
- // rh-spinner not interactive
- // rh-stat not interactive
- `rh-subnav${notInert}${notNegTabIndex}${notDisabled}`,
- // rh-surface not interactive
- `rh-switch${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-table${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-tabs${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-tab${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-tab-panel${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-tag${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-tile${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-tile-group${notInert}${notNegTabIndex}${notDisabled}`,
- // rh-timestamp not interactive
- `rh-tooltip${notInert}${notNegTabIndex}${notDisabled}`,
- `rh-video-embed${notInert}${notNegTabIndex}${notDisabled}`,
- ];
-
- const focusableSlottedElements =
- this.querySelectorAll(focusableSelectorList.join(','));
- const hasLastElement = focusableSlottedElements.length > 0;
- this.#lastTabbable = hasLastElement ?
- focusableSlottedElements[focusableSlottedElements.length - 1] : this.closeButton;
- }
-
#handleTab(event: KeyboardEvent) {
// No focusable elements except close button:
if (this.#lastTabbable === this.closeButton) {
@@ -412,7 +337,6 @@ export class RhDialog extends LitElement {
*/
@bound show() {
this.dialog?.showModal();
- this.#trapFocus();
this.open = true;
}
From 03fef8d79f9c5509cf6cd7e9b35953431a9d3cf1 Mon Sep 17 00:00:00 2001
From: Adam Johnson
Date: Fri, 13 Dec 2024 17:22:18 -0500
Subject: [PATCH 16/42] chore(dialog): update changeset wording about overlay
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Co-authored-by: Benny Powers - עם ישראל חי!
---
.changeset/loud-coins-shake.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.changeset/loud-coins-shake.md b/.changeset/loud-coins-shake.md
index 888e2b3c14..9e1d71e1a2 100644
--- a/.changeset/loud-coins-shake.md
+++ b/.changeset/loud-coins-shake.md
@@ -4,7 +4,7 @@
``: Dialog now uses the native HTML `
-
- Learn more
-
+ Learn more