Skip to content

Commit

Permalink
Merge branch 'main' into feat/unwrap-slots-in-mdc
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdehaven authored Dec 11, 2024
2 parents 697eddc + 205cbdc commit cc5eaf6
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 7 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kong/kongponents",
"version": "9.14.19",
"version": "9.14.21",
"description": "Kong Component library",
"type": "module",
"repository": {
Expand Down
3 changes: 2 additions & 1 deletion src/components/KAlert/KAlert.vue
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ const getAlertIcon = computed((): AlertIcon => {
.alert-content {
.alert-message {
:slotted(a) {
:slotted(a),
:deep(a) {
color: $textColor;
&:hover {
Expand Down
4 changes: 0 additions & 4 deletions src/components/KRadio/KRadio.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
3 changes: 2 additions & 1 deletion src/components/KTabs/KTabs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit cc5eaf6

Please sign in to comment.