diff --git a/docs/getting-started/changelog.md b/docs/getting-started/changelog.md
index 9e2b37c38..abca5fc02 100644
--- a/docs/getting-started/changelog.md
+++ b/docs/getting-started/changelog.md
@@ -16,9 +16,11 @@ _During the beta period, these restrictions may be relaxed in the event of a mis
- Added the `FocusOptions` argument to all components that have a `setFocus()` method
- Added `sl-initial-focus` event to `sl-dialog` and `sl-drawer` so focus can be customized to a specific element
- Added `close-button` part to `sl-tab` so the close button can be customized
+- Added `scroll-button` part to `sl-tab-group` so the scroll buttons can be customized
- Fixed a bug where `sl-hide` would be emitted twice when closing an alert with `hide()`
- Fixed a bug in `sl-color-picker` where the toggle button was smaller than the preview button in Safari
- Fixed a bug in `sl-tab-group` where activating a nested tab group didn't work properly [#299](https://github.com/shoelace-style/shoelace/issues/299)
+- Fixed a bug in `sl-alert`, `sl-dialog`, `sl-drawer`, `sl-select`, and `sl-tag` where the close button's base wasn't exported so it couldn't be styled
- Updated the docs to show dependencies instead of dependents which is much more useful when working with the custom elements bundle
- Updated to Bootstrap Icons 1.3.0
diff --git a/src/components/alert/alert.tsx b/src/components/alert/alert.tsx
index 59cbc1f18..822bccad0 100644
--- a/src/components/alert/alert.tsx
+++ b/src/components/alert/alert.tsx
@@ -208,7 +208,7 @@ export class Alert {
{this.closable && (
-
+
)}
diff --git a/src/components/dialog/dialog.tsx b/src/components/dialog/dialog.tsx
index 06bce13e3..2901dc948 100644
--- a/src/components/dialog/dialog.tsx
+++ b/src/components/dialog/dialog.tsx
@@ -246,7 +246,12 @@ export class Dialog {
{this.label || String.fromCharCode(65279)}
-
+
)}
diff --git a/src/components/drawer/drawer.tsx b/src/components/drawer/drawer.tsx
index 9d460b29a..97249eef8 100644
--- a/src/components/drawer/drawer.tsx
+++ b/src/components/drawer/drawer.tsx
@@ -263,7 +263,12 @@ export class Drawer {
{this.label || String.fromCharCode(65279)}
-
+
)}
diff --git a/src/components/select/select.tsx b/src/components/select/select.tsx
index 423541331..a2e8d9b2a 100644
--- a/src/components/select/select.tsx
+++ b/src/components/select/select.tsx
@@ -455,7 +455,7 @@ export class Select {
{this.clearable && hasSelection && (
@@ -322,6 +324,7 @@ export class TabGroup {
{this.hasScrollControls && (
diff --git a/src/components/tag/tag.tsx b/src/components/tag/tag.tsx
index e04aca4fa..016f403c0 100644
--- a/src/components/tag/tag.tsx
+++ b/src/components/tag/tag.tsx
@@ -73,7 +73,7 @@ export class Tag {
{this.clearable && (
-
+
)}
);