diff --git a/CHANGELOG.md b/CHANGELOG.md index 8118858f80..3457feba35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## [9.14.21](https://github.com/Kong/kongponents/compare/v9.14.20...v9.14.21) (2024-12-10) + + +### Bug Fixes + +* **link:** apply styles to deep ([84a4e9f](https://github.com/Kong/kongponents/commit/84a4e9f75c7bff9b136ae3e89d7cc2be51dbcc3f)) + +## [9.14.20](https://github.com/Kong/kongponents/compare/v9.14.19...v9.14.20) (2024-12-06) + + +### Bug Fixes + +* **kradio:** remove horizontal card vertical spacing ([#2526](https://github.com/Kong/kongponents/issues/2526)) ([d4dc2b7](https://github.com/Kong/kongponents/commit/d4dc2b772dad039a95a67f6fce6f3909d1e49ca4)) + ## [9.14.19](https://github.com/Kong/kongponents/compare/v9.14.18...v9.14.19) (2024-12-03) diff --git a/package.json b/package.json index 8f31f63d52..281fee19d3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@kong/kongponents", - "version": "9.14.19", + "version": "9.14.21", "description": "Kong Component library", "type": "module", "repository": { diff --git a/src/components/KAlert/KAlert.vue b/src/components/KAlert/KAlert.vue index db2217505a..346d76a231 100644 --- a/src/components/KAlert/KAlert.vue +++ b/src/components/KAlert/KAlert.vue @@ -121,7 +121,8 @@ const getAlertIcon = computed((): AlertIcon => { .alert-content { .alert-message { - :slotted(a) { + :slotted(a), + :deep(a) { color: $textColor; &:hover { diff --git a/src/components/KRadio/KRadio.vue b/src/components/KRadio/KRadio.vue index e47172bf3f..1030a126ec 100644 --- a/src/components/KRadio/KRadio.vue +++ b/src/components/KRadio/KRadio.vue @@ -466,10 +466,6 @@ $kRadioDotSize: 6px; margin-left: var(--kui-space-70, $kui-space-70); margin-top: var(--kui-space-80, $kui-space-80); } - - & + .k-radio.radio-card.card-horizontal { - margin-top: var(--kui-space-40, $kui-space-40); - } } &.checked.radio-card:not(.disabled) { diff --git a/src/components/KTabs/KTabs.vue b/src/components/KTabs/KTabs.vue index 78cfc62d96..22fbe49496 100644 --- a/src/components/KTabs/KTabs.vue +++ b/src/components/KTabs/KTabs.vue @@ -192,7 +192,8 @@ watch(() => props.modelValue, (newTabHash) => { cursor: not-allowed; } - :slotted(a) { + :slotted(a), + :deep(a) { color: var(--kui-color-text-neutral, $kui-color-text-neutral); text-decoration: none;