Skip to content

Commit 4e4f0e8

Browse files
authored
Merge branch 'master' into rkaraivanov/combo-navigation-refactor
2 parents c155cd3 + 690c85f commit 4e4f0e8

File tree

14 files changed

+464
-404
lines changed

14 files changed

+464
-404
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [6.3.2] - 2025-10-07
8+
### Added
9+
- #### Chat
10+
- Updated markdown renderer code styles to integrate with the package theming [#1868](https://github.com/IgniteUI/igniteui-webcomponents/pull/1868)
11+
12+
### Fixed
13+
- #### Card
14+
- Consume colors from themes [#1871](https://github.com/IgniteUI/igniteui-webcomponents/pull/1871)
15+
- Avatar size in card header [#1873](https://github.com/IgniteUI/igniteui-webcomponents/pull/1873)
16+
717
## [6.3.1] - 2025-09-18
818
### Fixed
919
- peerDependencies versions
@@ -1026,6 +1036,7 @@ Initial release of Ignite UI Web Components
10261036
- Ripple component
10271037
- Switch component
10281038

1039+
[6.3.2]: https://github.com/IgniteUI/igniteui-webcomponents/compare/6.3.1...6.3.2
10291040
[6.3.1]: https://github.com/IgniteUI/igniteui-webcomponents/compare/6.3.0...6.3.1
10301041
[6.3.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/6.2.2...6.3.0
10311042
[6.2.2]: https://github.com/IgniteUI/igniteui-webcomponents/compare/6.2.1...6.2.2

package-lock.json

Lines changed: 110 additions & 110 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@
5959
"lit": "^3.3.1"
6060
},
6161
"devDependencies": {
62-
"@biomejs/biome": "~2.2.4",
63-
"@custom-elements-manifest/analyzer": "^0.10.8",
62+
"@biomejs/biome": "~2.2.5",
63+
"@custom-elements-manifest/analyzer": "^0.10.10",
6464
"@igniteui/material-icons-extended": "^3.1.0",
6565
"@open-wc/testing": "^4.0.0",
66-
"@storybook/addon-a11y": "^9.1.8",
67-
"@storybook/addon-docs": "^9.1.8",
68-
"@storybook/addon-links": "^9.1.8",
69-
"@storybook/web-components-vite": "^9.1.8",
66+
"@storybook/addon-a11y": "^9.1.10",
67+
"@storybook/addon-docs": "^9.1.10",
68+
"@storybook/addon-links": "^9.1.10",
69+
"@storybook/web-components-vite": "^9.1.10",
7070
"@types/mocha": "^10.0.10",
7171
"@web/dev-server-esbuild": "^1.0.4",
7272
"@web/test-runner": "^0.20.2",
@@ -86,14 +86,14 @@
8686
"lit-analyzer": "^2.0.3",
8787
"madge": "^8.0.0",
8888
"node-watch": "^0.7.4",
89-
"playwright": "^1.55.1",
89+
"playwright": "^1.56.0",
9090
"postcss": "^8.5.6",
9191
"prettier": "^3.6.2",
9292
"rimraf": "^6.0.1",
9393
"sass-embedded": "~1.93.2",
9494
"sinon": "^21.0.0",
95-
"storybook": "^9.1.8",
96-
"stylelint": "^16.24.0",
95+
"storybook": "^9.1.10",
96+
"stylelint": "^16.25.0",
9797
"stylelint-config-standard-scss": "^16.0.0",
9898
"stylelint-prettier": "^5.0.3",
9999
"stylelint-scss": "^6.12.1",
@@ -102,11 +102,11 @@
102102
"typedoc": "~0.27.9",
103103
"typedoc-plugin-localization": "^3.0.6",
104104
"typescript": "^5.8.3",
105-
"vite": "^7.1.7"
105+
"vite": "^7.1.9"
106106
},
107107
"peerDependencies": {
108108
"dompurify": "^3.2.7",
109-
"marked": "^16.3.0",
109+
"marked": "^16.4.0",
110110
"marked-shiki": "^1.2.1",
111111
"shiki": "^3.13.0"
112112
},

src/components/card/card.actions.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { registerComponent } from '../common/definitions/register.js';
66
import type { ContentOrientation } from '../types.js';
77
import { all } from './themes/actions.js';
88
import { styles } from './themes/card.actions.base.css.js';
9+
import { styles as shared } from './themes/shared/actions/card.actions.common.css.js';
910

1011
/** A container for card action items like buttons
1112
* @element igc-card-actions
@@ -16,7 +17,7 @@ import { styles } from './themes/card.actions.base.css.js';
1617
*/
1718
export default class IgcCardActionsComponent extends LitElement {
1819
public static readonly tagName = 'igc-card-actions';
19-
public static override styles = styles;
20+
public static override styles = [styles, shared];
2021

2122
/* blazorSuppress */
2223
public static register(): void {

src/components/card/themes/card.actions.base.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,3 @@
3737
margin-inline-start: auto;
3838
order: 1;
3939
}
40-
41-
::slotted(igc-icon) {
42-
opacity: .6;
43-
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
@use 'styles/utilities' as *;
2+
@use '../../light/themes' as *;
3+
4+
$theme: $base;
5+
6+
:host {
7+
color: var-get($theme, 'actions-text-color');
8+
}

0 commit comments

Comments
 (0)