@onemrvapublic/design-system-theme 17.2.47 → 17.2.49
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/components/_autocomplete.scss +0 -3
- package/components/_badge.scss +10 -0
- package/components/_bottom-sheet.scss +7 -0
- package/components/_button-toggle.scss +39 -0
- package/components/{_buttons.scss → _button.scss} +3 -27
- package/components/_cards.scss +3 -3
- package/components/_checkbox.scss +3 -3
- package/components/_chips.scss +3 -3
- package/components/_datepicker.scss +0 -3
- package/components/_dialogs.scss +1 -4
- package/components/_divider.scss +10 -0
- package/components/_expansion.scss +3 -3
- package/components/_fab.scss +13 -0
- package/components/_form-field.scss +0 -3
- package/components/_icon-button.scss +11 -0
- package/components/_icon.scss +3 -4
- package/components/_lists.scss +3 -3
- package/components/_menu.scss +3 -3
- package/components/_progress-bar.scss +0 -3
- package/components/_radio.scss +3 -3
- package/components/_select.scss +3 -3
- package/components/_slide-toggle.scss +0 -3
- package/components/_slider.scss +14 -0
- package/components/{_snackbar.scss → _snack-bar.scss} +0 -3
- package/components/_stepper.scss +3 -3
- package/components/{_tables.scss → _table.scss} +3 -3
- package/components/_tabs.scss +3 -3
- package/components/_toolbar.scss +3 -3
- package/components/_tooltip.scss +3 -3
- package/components/{_text-inputs.scss → input.scss} +3 -3
- package/index.scss +50 -30
- package/package.json +1 -1
|
@@ -5,9 +5,6 @@
|
|
|
5
5
|
|
|
6
6
|
@include mat.autocomplete-base($theme);
|
|
7
7
|
@include mat.autocomplete-theme($theme);
|
|
8
|
-
@include mat.autocomplete-typography(map.get($theme, typography));
|
|
9
|
-
@include mat.autocomplete-color(map.get($theme, color));
|
|
10
|
-
@include mat.autocomplete-density($theme);
|
|
11
8
|
|
|
12
9
|
.mdc-menu-surface.mat-mdc-autocomplete-panel {
|
|
13
10
|
padding: 0;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
@use "@angular/material" as mat;
|
|
2
|
+
@use "sass:map";
|
|
3
|
+
@use "./µ";
|
|
4
|
+
@import "../utilities/variables";
|
|
5
|
+
|
|
6
|
+
@mixin theme($theme) {
|
|
7
|
+
|
|
8
|
+
@include mat.button-toggle-base($theme);
|
|
9
|
+
@include mat.button-toggle-theme($theme);
|
|
10
|
+
|
|
11
|
+
$spacer: map-get($theme, "spacer");
|
|
12
|
+
$accent400: µ.accent($theme, 400);
|
|
13
|
+
$accent500: µ.accent($theme, 500);
|
|
14
|
+
|
|
15
|
+
mat-button-toggle-group {
|
|
16
|
+
border-radius: $onemrva-button-border-radius;
|
|
17
|
+
border-color: µ.grayscale($theme, 300);
|
|
18
|
+
mat-button-toggle {
|
|
19
|
+
font: mat.get-theme-typography($theme,'button');
|
|
20
|
+
// padding: $spacer 2 * $spacer;
|
|
21
|
+
font-weight: 600;
|
|
22
|
+
color: µ.grayscale($theme, 900);
|
|
23
|
+
.mat-button-toggle-button {
|
|
24
|
+
padding: $spacer 2 * $spacer;
|
|
25
|
+
width: auto;
|
|
26
|
+
}
|
|
27
|
+
.mat-button-toggle-label-content {
|
|
28
|
+
line-height: 21px !important;
|
|
29
|
+
padding: 0;
|
|
30
|
+
}
|
|
31
|
+
&.mat-button-toggle-checked {
|
|
32
|
+
background-color: µ.primary($theme, 500);
|
|
33
|
+
.mat-button-toggle-label-content {
|
|
34
|
+
color: µ.accent($theme, "500-contrast");
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
|
|
8
8
|
@include mat.button-base($theme);
|
|
9
9
|
@include mat.button-theme($theme);
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
13
|
|
|
14
14
|
$spacer: map-get($theme, "spacer");
|
|
15
15
|
$accent400: µ.accent($theme, 400);
|
|
@@ -17,30 +17,6 @@
|
|
|
17
17
|
$accent-gradient: transparent
|
|
18
18
|
linear-gradient(90deg, $accent400 0%, $accent500 100%) 0% 0% no-repeat
|
|
19
19
|
padding-box;
|
|
20
|
-
mat-button-toggle-group {
|
|
21
|
-
border-radius: $onemrva-button-border-radius;
|
|
22
|
-
border-color: µ.grayscale($theme, 300);
|
|
23
|
-
mat-button-toggle {
|
|
24
|
-
font: mat.get-theme-typography($theme,'button');
|
|
25
|
-
// padding: $spacer 2 * $spacer;
|
|
26
|
-
font-weight: 600;
|
|
27
|
-
color: µ.grayscale($theme, 900);
|
|
28
|
-
.mat-button-toggle-button {
|
|
29
|
-
padding: $spacer 2 * $spacer;
|
|
30
|
-
width: auto;
|
|
31
|
-
}
|
|
32
|
-
.mat-button-toggle-label-content {
|
|
33
|
-
line-height: 21px !important;
|
|
34
|
-
padding: 0;
|
|
35
|
-
}
|
|
36
|
-
&.mat-button-toggle-checked {
|
|
37
|
-
background-color: µ.primary($theme, 500);
|
|
38
|
-
.mat-button-toggle-label-content {
|
|
39
|
-
color: µ.accent($theme, "500-contrast");
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
20
|
.mat-mdc-button-base {
|
|
45
21
|
|
|
46
22
|
&.mat-error {
|
package/components/_cards.scss
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
|
|
8
8
|
@include mat.card-base($theme);
|
|
9
9
|
@include mat.card-theme($theme);
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
13
|
|
|
14
14
|
.onemrva-shadow-highlight {
|
|
15
15
|
&:hover {
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
|
|
8
8
|
@include mat.checkbox-base($theme);
|
|
9
9
|
@include mat.checkbox-theme($theme);
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
13
|
|
|
14
14
|
.mat-mdc-checkbox .mdc-checkbox {
|
|
15
15
|
.mdc-checkbox__native-control:enabled:checked,
|
package/components/_chips.scss
CHANGED
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
|
|
10
10
|
@include mat.chips-base($theme);
|
|
11
11
|
@include mat.chips-theme($theme);
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) {
|
|
@@ -4,9 +4,6 @@
|
|
|
4
4
|
@mixin theme($theme) {
|
|
5
5
|
@include mat.datepicker-base($theme);
|
|
6
6
|
@include mat.datepicker-theme($theme);
|
|
7
|
-
@include mat.datepicker-typography(map.get($theme, typography));
|
|
8
|
-
@include mat.datepicker-color(map.get($theme, color));
|
|
9
|
-
@include mat.datepicker-density($theme);
|
|
10
7
|
|
|
11
8
|
.mat-datepicker-close-button {
|
|
12
9
|
display: none;
|
package/components/_dialogs.scss
CHANGED
|
@@ -7,10 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
@include mat.dialog-base($theme);
|
|
9
9
|
@include mat.dialog-theme($theme);
|
|
10
|
-
|
|
11
|
-
@include mat.dialog-color(map.get($theme, color));
|
|
12
|
-
@include mat.dialog-density($theme);
|
|
13
|
-
|
|
10
|
+
|
|
14
11
|
$spacer: map-get($theme, "spacer");
|
|
15
12
|
|
|
16
13
|
.mdc-dialog__title::before {
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
|
|
8
8
|
@include mat.expansion-base($theme);
|
|
9
9
|
@include mat.expansion-theme($theme);
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
.mat-expansion-panel:not([class*="mat-elevation-z"]) {
|
|
@@ -5,7 +5,4 @@
|
|
|
5
5
|
@mixin theme($theme) {
|
|
6
6
|
@include mat.form-field-base($theme);
|
|
7
7
|
@include mat.form-field-theme($theme);
|
|
8
|
-
@include mat.form-field-typography(map.get($theme, typography));
|
|
9
|
-
@include mat.form-field-color(map.get($theme, color));
|
|
10
|
-
@include mat.form-field-density($theme);
|
|
11
8
|
}
|
package/components/_icon.scss
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
@use "@angular/material" as mat;
|
|
2
2
|
@use "./µ";
|
|
3
|
-
//@import "@angular/material/theming";
|
|
4
3
|
@use "sass:map";
|
|
5
4
|
@import "../utilities/variables";
|
|
6
5
|
|
|
@@ -8,9 +7,9 @@
|
|
|
8
7
|
|
|
9
8
|
@include mat.icon-base($theme);
|
|
10
9
|
@include mat.icon-theme($theme);
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
14
13
|
|
|
15
14
|
|
|
16
15
|
mat-icon {
|
package/components/_lists.scss
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
@mixin theme($theme) {
|
|
6
6
|
@include mat.list-base($theme);
|
|
7
7
|
@include mat.list-theme($theme);
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
11
|
.mat-mdc-list-base {
|
|
12
12
|
.mat-mdc-list-item {
|
|
13
13
|
@include µ.body-1($theme);
|
package/components/_menu.scss
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
@include mat.menu-base($theme);
|
|
8
8
|
@include mat.menu-theme($theme);
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
12
|
|
|
13
13
|
.mat-mdc-menu-panel {
|
|
14
14
|
top: 5px;
|
|
@@ -5,9 +5,6 @@
|
|
|
5
5
|
@mixin theme($theme) {
|
|
6
6
|
@include mat.progress-bar-base($theme);
|
|
7
7
|
@include mat.progress-bar-theme($theme);
|
|
8
|
-
@include mat.progress-bar-typography(map.get($theme, typography));
|
|
9
|
-
@include mat.progress-bar-color(map.get($theme, color));
|
|
10
|
-
@include mat.progress-bar-density($theme);
|
|
11
8
|
$primary: µ.primary($theme);
|
|
12
9
|
|
|
13
10
|
.mat-mdc-progress-bar {
|
package/components/_radio.scss
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
@mixin theme($theme) {
|
|
7
7
|
@include mat.radio-base($theme);
|
|
8
8
|
@include mat.radio-theme($theme);
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
12
|
.mat-mdc-radio-button {
|
|
13
13
|
label {
|
|
14
14
|
@include µ.label-button($theme);
|
package/components/_select.scss
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
@mixin theme($theme) {
|
|
6
6
|
@include mat.select-base($theme);
|
|
7
7
|
@include mat.select-theme($theme);
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
11
|
.mat-mdc-select {
|
|
12
12
|
--mat-select-invalid-arrow-color: #{µ.error($theme, 500)};
|
|
13
13
|
.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
|
|
@@ -6,9 +6,6 @@
|
|
|
6
6
|
@mixin theme($theme) {
|
|
7
7
|
@include mat.slide-toggle-base($theme);
|
|
8
8
|
@include mat.slide-toggle-theme($theme);
|
|
9
|
-
@include mat.slide-toggle-typography(map.get($theme, typography));
|
|
10
|
-
@include mat.slide-toggle-color(map.get($theme, color));
|
|
11
|
-
@include mat.slide-toggle-density($theme);
|
|
12
9
|
.mat-mdc-slide-toggle {
|
|
13
10
|
&.mat-primary {
|
|
14
11
|
.mdc-switch:enabled .mdc-switch__track:after {
|
|
@@ -5,9 +5,6 @@
|
|
|
5
5
|
@mixin theme($theme) {
|
|
6
6
|
@include mat.snack-bar-base($theme);
|
|
7
7
|
@include mat.snack-bar-theme($theme);
|
|
8
|
-
@include mat.snack-bar-typography(map.get($theme, typography));
|
|
9
|
-
@include mat.snack-bar-color(map.get($theme, color));
|
|
10
|
-
@include mat.snack-bar-density($theme);
|
|
11
8
|
.mat-mdc-snack-bar-container {
|
|
12
9
|
box-shadow: none;
|
|
13
10
|
|
package/components/_stepper.scss
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
@mixin theme($theme) {
|
|
6
6
|
@include mat.stepper-base($theme);
|
|
7
7
|
@include mat.stepper-theme($theme);
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
11
|
$spacer: map-get($theme, "spacer");
|
|
12
12
|
|
|
13
13
|
mat-stepper,
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
@mixin theme($theme) {
|
|
7
7
|
@include mat.table-base($theme);
|
|
8
8
|
@include mat.table-theme($theme);
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
12
|
.mat-mdc-table {
|
|
13
13
|
th.mat-mdc-header-cell {
|
|
14
14
|
color: black;
|
package/components/_tabs.scss
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
@mixin theme($theme) {
|
|
6
6
|
@include mat.tabs-base($theme);
|
|
7
7
|
@include mat.tabs-theme($theme);
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
11
|
.mat-mdc-tab-link {
|
|
12
12
|
text-decoration: none;
|
|
13
13
|
}
|
package/components/_toolbar.scss
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
@mixin theme($theme) {
|
|
7
7
|
@include mat.toolbar-base($theme);
|
|
8
8
|
@include mat.toolbar-theme($theme);
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
12
|
.mat-toolbar{
|
|
13
13
|
&.sticky {
|
|
14
14
|
position: sticky !important;
|
package/components/_tooltip.scss
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
@mixin theme($theme) {
|
|
7
7
|
@include mat.tooltip-base($theme);
|
|
8
8
|
@include mat.tooltip-theme($theme);
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
12
|
.mat-mdc-tooltip {
|
|
13
13
|
font-size: 12px;
|
|
14
14
|
background: #ffffff;
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
|
|
25
25
|
@include mat.input-base($theme);
|
|
26
26
|
@include mat.input-theme($theme);
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
30
|
|
|
31
31
|
.mat-mdc-form-field {
|
|
32
32
|
line-height: 1.125;
|
package/index.scss
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
@forward "./components/autocomplete" as autocomplete-*;
|
|
2
|
-
@forward "./components/
|
|
2
|
+
@forward "./components/button" as button-*;
|
|
3
|
+
@forward "./components/button-toggle" as button-toggle-*;
|
|
3
4
|
@forward "./components/cards" as cards-*;
|
|
4
5
|
@forward "./components/checkbox" as checkbox-*;
|
|
5
6
|
@forward "./components/chips" as chips-*;
|
|
6
|
-
@forward "components/choice-chips" as choice-chips-*;
|
|
7
|
+
@forward "./components/choice-chips" as choice-chips-*;
|
|
7
8
|
@forward "./components/container" as container-*;
|
|
8
9
|
@forward "./components/datepicker" as datepicker-*;
|
|
9
10
|
@forward "./components/drag-and-drop" as drag-and-drop-*;
|
|
@@ -15,17 +16,22 @@
|
|
|
15
16
|
@forward "./components/menu" as menu-*;
|
|
16
17
|
@forward "./components/progress-bar" as progress-bar-*;
|
|
17
18
|
@forward "./components/radio" as radio-*;
|
|
18
|
-
@forward "./components/
|
|
19
|
+
@forward "./components/snack-bar" as snack-bar-*;
|
|
19
20
|
@forward "./components/sidenav" as sidenav-*;
|
|
20
21
|
@forward "./components/slide-toggle" as slide-toggle-*;
|
|
21
|
-
@forward "./components/
|
|
22
|
+
@forward "./components/table" as tables-*;
|
|
22
23
|
@forward "./components/toolbar" as toolbar-*;
|
|
23
24
|
@forward "./components/tabs" as tabs-*;
|
|
24
|
-
@forward "./components/
|
|
25
|
+
@forward "./components/input" as text-inputs-*;
|
|
25
26
|
@forward "./components/stepper" as stepper-*;
|
|
26
27
|
@forward "./components/icon" as icon-*;
|
|
27
28
|
@forward "./components/tooltip" as tooltip-*;
|
|
28
29
|
@forward "./components/select" as select-*;
|
|
30
|
+
@forward "./components/slider" as slider-*;
|
|
31
|
+
@forward "./components/fab" as fab-*;
|
|
32
|
+
@forward "./components/badge" as badge-*;
|
|
33
|
+
@forward "./components/bottom-sheet" as bottom-sheet-*;
|
|
34
|
+
@forward "./components/icon-button" as icon-button-*;
|
|
29
35
|
|
|
30
36
|
@forward "utilities/variables" show $onemrva-theme;
|
|
31
37
|
@forward "utilities/variables" show $breakpoints;
|
|
@@ -39,33 +45,39 @@
|
|
|
39
45
|
@use "@angular/material" as mat;
|
|
40
46
|
|
|
41
47
|
@use "./components/autocomplete";
|
|
42
|
-
@use "./components/
|
|
48
|
+
@use "./components/button";
|
|
49
|
+
@use "./components/button-toggle";
|
|
50
|
+
@use "./components/icon-button";
|
|
43
51
|
@use "./components/cards";
|
|
44
52
|
@use "./components/checkbox";
|
|
45
53
|
@use "./components/chips";
|
|
46
|
-
@use "components/choice-chips" as choiceChips;
|
|
54
|
+
@use "./components/choice-chips" as choiceChips;
|
|
47
55
|
@use "./components/container";
|
|
48
56
|
@use "./components/datepicker";
|
|
49
57
|
@use "./components/dialogs";
|
|
50
58
|
@use "./components/drag-and-drop" as dragAndDrop;
|
|
51
59
|
@use "./components/expansion" as expansion;
|
|
52
|
-
@use "./components/form-field" as
|
|
60
|
+
@use "./components/form-field" as form-field;
|
|
53
61
|
@use "./components/links";
|
|
54
62
|
@use "./components/lists";
|
|
55
63
|
@use "./components/menu";
|
|
56
64
|
@use "./components/progress-bar" as progressBar;
|
|
57
65
|
@use "./components/radio";
|
|
58
|
-
@use "
|
|
66
|
+
@use "components/snack-bar";
|
|
59
67
|
@use "./components/sidenav";
|
|
60
|
-
@use "./components/
|
|
61
|
-
@use "./components/
|
|
68
|
+
@use "./components/slider";
|
|
69
|
+
@use "./components/slide-toggle" as slide-toggle;
|
|
70
|
+
@use "components/table";
|
|
62
71
|
@use "./components/tabs";
|
|
63
|
-
@use "./components/
|
|
72
|
+
@use "./components/input" as input;
|
|
64
73
|
@use "./components/stepper";
|
|
65
74
|
@use "./components/icon";
|
|
66
75
|
@use "./components/tooltip";
|
|
67
76
|
@use "./components/select";
|
|
68
77
|
@use "./components/toolbar";
|
|
78
|
+
@use "./components/fab";
|
|
79
|
+
@use "./components/badge";
|
|
80
|
+
@use "./components/bottom-sheet";
|
|
69
81
|
|
|
70
82
|
@use "utilities/utilities";
|
|
71
83
|
@use "utilities/fonts";
|
|
@@ -121,6 +133,7 @@
|
|
|
121
133
|
@mixin base($b: variables.$breakpoints) {
|
|
122
134
|
@include reset();
|
|
123
135
|
@include fonts.theme(variables.$onemrva-theme);
|
|
136
|
+
@include links.theme(variables.$onemrva-theme);
|
|
124
137
|
@include mat.core-theme(variables.$onemrva-theme);
|
|
125
138
|
}
|
|
126
139
|
|
|
@@ -135,34 +148,41 @@
|
|
|
135
148
|
|
|
136
149
|
@include fonts.theme(variables.$onemrva-theme);
|
|
137
150
|
|
|
138
|
-
@include autocomplete.theme(variables.$onemrva-theme);
|
|
139
|
-
@include buttons.theme(variables.$onemrva-theme);
|
|
140
151
|
@include cards.theme(variables.$onemrva-theme);
|
|
141
|
-
@include
|
|
152
|
+
@include progressBar.theme(variables.$onemrva-theme);
|
|
153
|
+
@include tooltip.theme(variables.$onemrva-theme);
|
|
154
|
+
@include form-field.theme(variables.$onemrva-theme);
|
|
155
|
+
@include input.theme(variables.$onemrva-theme);
|
|
156
|
+
@include select.theme(variables.$onemrva-theme);
|
|
157
|
+
@include autocomplete.theme(variables.$onemrva-theme);
|
|
158
|
+
@include dialogs.theme(variables.$onemrva-theme);
|
|
142
159
|
@include chips.theme(variables.$onemrva-theme);
|
|
143
|
-
@include
|
|
144
|
-
@include
|
|
160
|
+
@include slide-toggle.theme(variables.$onemrva-theme);
|
|
161
|
+
@include radio.theme(variables.$onemrva-theme);
|
|
162
|
+
@include slider.theme(variables.$onemrva-theme);
|
|
163
|
+
@include menu.theme(variables.$onemrva-theme);
|
|
164
|
+
@include lists.theme(variables.$onemrva-theme);
|
|
165
|
+
// Paginator is replaced by onemrva design system
|
|
166
|
+
@include tabs.theme(variables.$onemrva-theme);
|
|
167
|
+
@include checkbox.theme(variables.$onemrva-theme);
|
|
168
|
+
@include button.theme(variables.$onemrva-theme);
|
|
169
|
+
@include icon-button.theme(variables.$onemrva-theme);
|
|
170
|
+
@include fab.theme(variables.$onemrva-theme);
|
|
171
|
+
@include snack-bar.theme(variables.$onemrva-theme);
|
|
172
|
+
@include table.theme(variables.$onemrva-theme);
|
|
173
|
+
// Spinner is replaced by onemrva design system
|
|
174
|
+
@include badge.theme(variables.$onemrva-theme);
|
|
175
|
+
@include bottom-sheet.theme(variables.$onemrva-theme);
|
|
176
|
+
@include button-toggle.theme(variables.$onemrva-theme);
|
|
145
177
|
@include datepicker.theme(variables.$onemrva-theme);
|
|
146
178
|
|
|
147
|
-
@include
|
|
179
|
+
@include choiceChips.theme(variables.$onemrva-theme);
|
|
148
180
|
@include dragAndDrop.theme(variables.$onemrva-theme);
|
|
149
181
|
@include expansion.theme(variables.$onemrva-theme);
|
|
150
182
|
@include icon.theme(variables.$onemrva-theme);
|
|
151
183
|
@include links.theme(variables.$onemrva-theme);
|
|
152
|
-
@include lists.theme(variables.$onemrva-theme);
|
|
153
|
-
@include menu.theme(variables.$onemrva-theme);
|
|
154
|
-
@include progressBar.theme(variables.$onemrva-theme);
|
|
155
|
-
@include radio.theme(variables.$onemrva-theme);
|
|
156
|
-
@include slideToggle.theme(variables.$onemrva-theme);
|
|
157
|
-
@include snackbar.theme(variables.$onemrva-theme);
|
|
158
184
|
@include stepper.theme(variables.$onemrva-theme);
|
|
159
|
-
@include tables.theme(variables.$onemrva-theme);
|
|
160
|
-
@include tabs.theme(variables.$onemrva-theme);
|
|
161
|
-
@include textInputs.theme(variables.$onemrva-theme);
|
|
162
185
|
@include toolbar.theme(variables.$onemrva-theme);
|
|
163
|
-
@include tooltip.theme(variables.$onemrva-theme);
|
|
164
|
-
@include select.theme(variables.$onemrva-theme);
|
|
165
|
-
|
|
166
186
|
|
|
167
187
|
@include container.theme(variables.$onemrva-theme, $b);
|
|
168
188
|
|