@kms-ngx-ui/presentational 16.3.0 → 16.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
@mixin kms-radiogroup() {
|
|
2
|
+
.mat-mdc-radio-group {
|
|
3
|
+
display: flex;
|
|
4
|
+
.mat-mdc-radio-button {
|
|
5
|
+
padding-right: 16px;
|
|
6
|
+
color: var(--primaryColor01);
|
|
7
|
+
|
|
8
|
+
&.disabled {
|
|
9
|
+
color: var(--primaryColor04);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
.mat-radio-button-vertical {
|
|
13
|
+
display: flex;
|
|
14
|
+
padding-bottom: 16px;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/src/styles/styles.scss
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
@import '../lib/ui/icon/icon.component';
|
|
10
10
|
@import '../lib/ui/image-slider/image-slider.component';
|
|
11
11
|
@import '../lib/ui/kms-accordion-item/kms-accordion-item.component';
|
|
12
|
+
@import '../lib/ui/yes-no-radiogroup/yes-no-radiogroup.component';
|
|
12
13
|
@import '../lib/ui/loader/loader.component';
|
|
13
14
|
@import '../lib/ui/map/map.component';
|
|
14
15
|
@import '../lib/ui/radiobutton/radiobutton.component';
|
|
@@ -25,7 +26,8 @@
|
|
|
25
26
|
@include icon-theme();
|
|
26
27
|
@include image-slider-theme();
|
|
27
28
|
@include kms-accordion-item-theme();
|
|
29
|
+
@include kms-radiogroup();
|
|
28
30
|
@include radiobutton-theme();
|
|
29
31
|
@include time-input-theme();
|
|
30
32
|
@include tooltip-icon-theme();
|
|
31
|
-
@include tooltip-theme();
|
|
33
|
+
@include tooltip-theme();
|