Skip to content

Commit ab71627

Browse files
authored
feat(radio-group): label styles (#15793)
1 parent b302549 commit ab71627

File tree

11 files changed

+207
-116
lines changed

11 files changed

+207
-116
lines changed

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"@types/source-map": "0.5.2",
7777
"express": "^4.21.1",
7878
"fflate": "^0.8.1",
79-
"igniteui-theming": "^17.2.0",
79+
"igniteui-theming": "^18.0.1",
8080
"igniteui-trial-watermark": "^3.0.2",
8181
"lodash-es": "^4.17.21",
8282
"rxjs": "^7.8.2",

projects/igniteui-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"tslib": "^2.3.0",
7474
"igniteui-trial-watermark": "^3.0.2",
7575
"lodash-es": "^4.17.21",
76-
"igniteui-theming": "^17.2.0",
76+
"igniteui-theming": "^18.0.1",
7777
"@igniteui/material-icons-extended": "^3.1.0"
7878
},
7979
"peerDependencies": {

projects/igniteui-angular/src/lib/core/styles/components/label/_label-theme.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@
1212

1313
/// @param {Map} $schema [$light-material-schema] - The schema used as basis for styling the component.
1414
/// @param {Map} $color [null] - The text color.
15+
/// @param {Map} $disabled-color [null] - The disabled text color.
1516
@function label-theme(
1617
$schema: $light-material-schema,
17-
$color: null
18+
$color: null,
19+
$disabled-color: null,
1820
) {
1921
$name: 'igx-label';
2022
$selector: '[igxLabel]';
@@ -32,6 +34,7 @@
3234
name: $name,
3335
selector: $selector,
3436
color: $color,
37+
disabled-color: $disabled-color,
3538
theme: map.get($schema, '_meta', 'theme'),
3639
variant: map.get($schema, '_meta', 'theme'),
3740
));

0 commit comments

Comments
 (0)