@igo2/sdg-core 1.0.0-next.100
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/README.md +1 -0
- package/analytics/analytics.interface.d.ts +8 -0
- package/analytics/analytics.provider.d.ts +3 -0
- package/analytics/google-analytics/google-analytics.interface.d.ts +10 -0
- package/analytics/google-analytics/google-analytics.provider.d.ts +3 -0
- package/analytics/google-analytics/google-analytics.service.d.ts +12 -0
- package/analytics/google-analytics/index.d.ts +3 -0
- package/analytics/index.d.ts +3 -0
- package/fesm2022/igo2-sdg-core.mjs +189 -0
- package/fesm2022/igo2-sdg-core.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/layout/breakpoint/breakpoint.service.d.ts +12 -0
- package/layout/breakpoint/index.d.ts +1 -0
- package/layout/index.d.ts +1 -0
- package/package.json +37 -0
- package/public-api.d.ts +3 -0
- package/router/index.d.ts +4 -0
- package/router/route.interface.d.ts +9 -0
- package/router/route.utils.d.ts +2 -0
- package/router/router.d.ts +5 -0
- package/router/title-resolver/index.d.ts +2 -0
- package/router/title-resolver/title-resolver.d.ts +5 -0
- package/router/title-resolver/title-resolver.pipe.d.ts +11 -0
- package/src/_index.scss +4 -0
- package/src/layout/_breakpoints.scss +116 -0
- package/src/layout/_index.scss +1 -0
- package/src/layout/bootstrap-layout.scss +1067 -0
- package/src/style/_elevation.scss +54 -0
- package/src/style/_index.scss +4 -0
- package/src/style/_sass-utils.scss +24 -0
- package/src/style/_typography-utils.scss +23 -0
- package/src/style/_typography.scss +139 -0
- package/src/style/overrides/_index.scss +2 -0
- package/src/style/overrides/igo2-lib/_index.scss +9 -0
- package/src/style/overrides/igo2-lib/_list.scss +22 -0
- package/src/style/overrides/igo2-lib/_panel.scss +7 -0
- package/src/style/overrides/igo2-lib/_search-bar.scss +70 -0
- package/src/style/overrides/material/_button.scss +118 -0
- package/src/style/overrides/material/_checkbox.scss +120 -0
- package/src/style/overrides/material/_chip.scss +122 -0
- package/src/style/overrides/material/_dialog.scss +37 -0
- package/src/style/overrides/material/_divider.scss +11 -0
- package/src/style/overrides/material/_form-field.scss +20 -0
- package/src/style/overrides/material/_icon.scss +34 -0
- package/src/style/overrides/material/_index.scss +25 -0
- package/src/style/overrides/material/_input.scss +5 -0
- package/src/style/overrides/material/_radio-button.scss +124 -0
- package/src/style/overrides/material/_sidenav.scss +9 -0
- package/src/style/overrides/material/_tab.scss +95 -0
- package/src/theme/_index.scss +1 -0
- package/src/theme/material/_index.scss +1 -0
- package/src/theme/material/_theme.scss +241 -0
- package/src/tokens/_index.scss +7 -0
- package/src/tokens/_sys-colors.scss +99 -0
- package/src/tokens/_sys-elevation.scss +17 -0
- package/src/tokens/_sys-layout.scss +28 -0
- package/src/tokens/_sys-palettes.scss +72 -0
- package/src/tokens/_sys-typography.scss +109 -0
- package/src/tokens/_system.scss +56 -0
- package/src/tokens/_token-utils.scss +79 -0
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
@use '@angular/material' as mat;
|
|
2
|
+
|
|
3
|
+
$focus-color: var(--sdg-color-blue-light);
|
|
4
|
+
$white: var(--sdg-color-white);
|
|
5
|
+
|
|
6
|
+
@mixin overrides() {
|
|
7
|
+
$border-outline-width: 2px;
|
|
8
|
+
|
|
9
|
+
.mat-mdc-chip-set {
|
|
10
|
+
.mdc-evolution-chip {
|
|
11
|
+
margin: 0;
|
|
12
|
+
min-height: 40px;
|
|
13
|
+
max-height: 60px;
|
|
14
|
+
min-width: 56px;
|
|
15
|
+
|
|
16
|
+
&-set__chips {
|
|
17
|
+
margin: 0;
|
|
18
|
+
gap: 8px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&__action-primary {
|
|
22
|
+
padding-left: 4px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&:focus-visible {
|
|
26
|
+
border: $border-outline-width solid $white;
|
|
27
|
+
outline: $border-outline-width solid $focus-color;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.mdc-evolution-chip__action {
|
|
33
|
+
&--presentational {
|
|
34
|
+
cursor: pointer;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&--primary:hover::before {
|
|
38
|
+
border-color: $focus-color !important;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&--primary:focus::before {
|
|
42
|
+
border-width: $border-outline-width;
|
|
43
|
+
outline: $border-outline-width solid $focus-color;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.mat-mdc-standard-chip {
|
|
48
|
+
&.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action {
|
|
49
|
+
&--primary {
|
|
50
|
+
padding-left: 8px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&--trailing {
|
|
54
|
+
padding-left: 4px;
|
|
55
|
+
padding-right: 6px;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
& .mdc-evolution-chip__action {
|
|
60
|
+
&--primary {
|
|
61
|
+
padding-left: 8px;
|
|
62
|
+
padding-right: 8px;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.mat-mdc-chip-remove {
|
|
68
|
+
&::after {
|
|
69
|
+
left: 2px;
|
|
70
|
+
right: 4px;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.mat-icon {
|
|
74
|
+
z-index: 1;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.mat-mdc-chip {
|
|
79
|
+
$background-color: var(--sdg-color-blue-pale);
|
|
80
|
+
$text-color: var(--sdg-color-blue-piv);
|
|
81
|
+
$disabled-background-color: var(--sdg-color-grey-pale);
|
|
82
|
+
$disabled-color: var(--sdg-color-grey-normal);
|
|
83
|
+
|
|
84
|
+
@include mat.chips-overrides(
|
|
85
|
+
(
|
|
86
|
+
container-shape-radius: 0,
|
|
87
|
+
|
|
88
|
+
outline-width: 1px,
|
|
89
|
+
outline-color: $background-color,
|
|
90
|
+
|
|
91
|
+
focus-outline-color: $white,
|
|
92
|
+
focus-state-layer-color: transparent,
|
|
93
|
+
focus-state-layer-opacity: 0,
|
|
94
|
+
|
|
95
|
+
disabled-outline-color: $disabled-background-color,
|
|
96
|
+
disabled-label-text-color: $disabled-color,
|
|
97
|
+
disabled-container-opacity: 1,
|
|
98
|
+
|
|
99
|
+
hover-state-layer-opacity: 0,
|
|
100
|
+
hover-state-layer-color: transparent,
|
|
101
|
+
|
|
102
|
+
elevated-container-color: $background-color,
|
|
103
|
+
elevated-selected-container-color: $background-color,
|
|
104
|
+
elevated-disabled-container-color: $disabled-background-color,
|
|
105
|
+
|
|
106
|
+
with-trailing-icon-disabled-trailing-icon-opacity: 1,
|
|
107
|
+
with-trailing-icon-disabled-trailing-icon-color: $disabled-color,
|
|
108
|
+
with-trailing-icon-trailing-icon-color: $text-color,
|
|
109
|
+
|
|
110
|
+
label-text-color: $text-color,
|
|
111
|
+
label-text-weight: 600,
|
|
112
|
+
label-text-line-height: var(--sdg-line-height-sm),
|
|
113
|
+
label-text-size: var(--sdg-font-size-sm),
|
|
114
|
+
trailing-action-focus-state-layer-opacity: 1,
|
|
115
|
+
trailing-action-hover-state-layer-opacity: 1,
|
|
116
|
+
trailing-action-state-layer-color: var(--sdg-color-grey-light),
|
|
117
|
+
trailing-action-focus-opacity: 1,
|
|
118
|
+
trailing-action-opacity: 1
|
|
119
|
+
)
|
|
120
|
+
);
|
|
121
|
+
}
|
|
122
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
@use '../../../style/typography-utils';
|
|
2
|
+
|
|
3
|
+
@mixin overrides() {
|
|
4
|
+
.mdc-dialog {
|
|
5
|
+
max-width: 600px;
|
|
6
|
+
|
|
7
|
+
&__surface {
|
|
8
|
+
border-radius: 0 !important;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&__title {
|
|
12
|
+
padding-top: 8px !important; // Workaround, this should be 32px but Material apply a default height for the title.
|
|
13
|
+
padding-bottom: 24px !important;
|
|
14
|
+
|
|
15
|
+
@include typography-utils.title-border;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&__tile,
|
|
19
|
+
&__content,
|
|
20
|
+
&__actions {
|
|
21
|
+
padding-left: 32px !important;
|
|
22
|
+
padding-right: 32px !important;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&__actions {
|
|
26
|
+
padding-top: 24px !important;
|
|
27
|
+
padding-bottom: 32px !important;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.close-button {
|
|
31
|
+
$iconButtonPadding: 8px;
|
|
32
|
+
position: absolute;
|
|
33
|
+
top: 16px - $iconButtonPadding;
|
|
34
|
+
right: 16px - $iconButtonPadding;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
@use '@angular/material' as mat;
|
|
3
|
+
@use '../../../tokens/sys-colors';
|
|
4
|
+
|
|
5
|
+
@mixin overrides() {
|
|
6
|
+
.mat-mdc-text-field-wrapper,
|
|
7
|
+
.mdc-notched-outline__leading,
|
|
8
|
+
.mdc-notched-outline__trailing {
|
|
9
|
+
border-radius: 0 !important;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@include mat.form-field-overrides(
|
|
13
|
+
(
|
|
14
|
+
outlined-outline-color: rgba(
|
|
15
|
+
map.get(sys-colors.$light-colors, 'black'),
|
|
16
|
+
0.38
|
|
17
|
+
)
|
|
18
|
+
)
|
|
19
|
+
);
|
|
20
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
@use '@angular/material' as mat;
|
|
2
|
+
|
|
3
|
+
@mixin overrides() {
|
|
4
|
+
@include color-variants-backwards-compatibility();
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
// Material custom color variants backwards compatibility
|
|
8
|
+
@mixin color-variants-backwards-compatibility() {
|
|
9
|
+
.mat-icon {
|
|
10
|
+
&.mat-accent {
|
|
11
|
+
@include mat.icon-overrides(
|
|
12
|
+
(
|
|
13
|
+
color: var(--sdg-color-pink-normal)
|
|
14
|
+
)
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&.mat-primary {
|
|
19
|
+
@include mat.icon-overrides(
|
|
20
|
+
(
|
|
21
|
+
color: var(--sdg-color-blue-piv)
|
|
22
|
+
)
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&.mat-warn {
|
|
27
|
+
@include mat.icon-overrides(
|
|
28
|
+
(
|
|
29
|
+
color: var(--sdg-color-red-normal)
|
|
30
|
+
)
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
@use './button';
|
|
2
|
+
@use './checkbox';
|
|
3
|
+
@use './chip';
|
|
4
|
+
@use './dialog';
|
|
5
|
+
@use './divider';
|
|
6
|
+
@use './form-field';
|
|
7
|
+
@use './icon';
|
|
8
|
+
@use './input';
|
|
9
|
+
@use './sidenav';
|
|
10
|
+
@use './radio-button';
|
|
11
|
+
@use './tab';
|
|
12
|
+
|
|
13
|
+
@mixin overrides() {
|
|
14
|
+
@include button.overrides();
|
|
15
|
+
@include checkbox.overrides();
|
|
16
|
+
@include chip.overrides();
|
|
17
|
+
@include dialog.overrides();
|
|
18
|
+
@include divider.overrides();
|
|
19
|
+
@include form-field.overrides();
|
|
20
|
+
@include icon.overrides();
|
|
21
|
+
@include input.overrides();
|
|
22
|
+
@include sidenav.overrides();
|
|
23
|
+
@include radio-button.overrides();
|
|
24
|
+
@include tab.overrides();
|
|
25
|
+
}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
@use '@angular/material' as mat;
|
|
2
|
+
|
|
3
|
+
@mixin overrides() {
|
|
4
|
+
.mat-mdc-radio-group {
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-flow: column;
|
|
7
|
+
row-gap: 16px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.mat-mdc-radio-button {
|
|
11
|
+
$disabled-color: var(--sdg-color-grey-light);
|
|
12
|
+
$unselected-color: var(--sdg-color-blue-dark);
|
|
13
|
+
$selected-color: var(--sdg-color-blue-normal);
|
|
14
|
+
|
|
15
|
+
$radio-button-size: 24px;
|
|
16
|
+
$size-with-padding: calc($radio-button-size + 4px);
|
|
17
|
+
|
|
18
|
+
@include mat.radio-overrides(
|
|
19
|
+
(
|
|
20
|
+
label-text-size: var(--sdg-font-size-md),
|
|
21
|
+
label-text-line-height: var(--sdg-font-size-md),
|
|
22
|
+
// same as font size to avoid extra space above and below
|
|
23
|
+
label-text-color: $unselected-color,
|
|
24
|
+
|
|
25
|
+
ripple-color: transparent,
|
|
26
|
+
checked-ripple-color: transparent,
|
|
27
|
+
|
|
28
|
+
disabled-label-color: $disabled-color,
|
|
29
|
+
disabled-unselected-icon-color: $disabled-color,
|
|
30
|
+
disabled-unselected-icon-opacity: 1,
|
|
31
|
+
disabled-selected-icon-color: $disabled-color,
|
|
32
|
+
disabled-selected-icon-opacity: 1,
|
|
33
|
+
|
|
34
|
+
unselected-icon-color: $unselected-color,
|
|
35
|
+
unselected-hover-icon-color: $unselected-color,
|
|
36
|
+
unselected-focus-icon-color: $selected-color,
|
|
37
|
+
unselected-pressed-icon-color: $selected-color,
|
|
38
|
+
|
|
39
|
+
selected-icon-color: $selected-color,
|
|
40
|
+
selected-hover-icon-color: $selected-color,
|
|
41
|
+
selected-focus-icon-color: $selected-color,
|
|
42
|
+
selected-pressed-icon-color: $selected-color,
|
|
43
|
+
|
|
44
|
+
state-layer-size: $size-with-padding
|
|
45
|
+
)
|
|
46
|
+
);
|
|
47
|
+
|
|
48
|
+
.mdc-radio {
|
|
49
|
+
height: $radio-button-size;
|
|
50
|
+
width: $radio-button-size;
|
|
51
|
+
padding: calc(
|
|
52
|
+
(var(--mdc-radio-state-layer-size, 40px) - $radio-button-size) / 2
|
|
53
|
+
);
|
|
54
|
+
|
|
55
|
+
.mdc-radio__native-control:checked
|
|
56
|
+
+ .mdc-radio__background
|
|
57
|
+
> .mdc-radio__inner-circle {
|
|
58
|
+
transform: scale(0.6);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.mdc-radio__background {
|
|
62
|
+
height: $radio-button-size;
|
|
63
|
+
width: $radio-button-size;
|
|
64
|
+
|
|
65
|
+
.mdc-radio__inner-circle {
|
|
66
|
+
border-width: calc($radio-button-size / 2);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.mat-mdc-radio-touch-target {
|
|
72
|
+
height: $size-with-padding;
|
|
73
|
+
width: $size-with-padding;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.mdc-form-field {
|
|
77
|
+
column-gap: 8px;
|
|
78
|
+
|
|
79
|
+
.mdc-label {
|
|
80
|
+
padding: 0;
|
|
81
|
+
transform: translateY(
|
|
82
|
+
1px
|
|
83
|
+
); // visually center the label with the radio button
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
&[compact] {
|
|
88
|
+
$radio-button-size: 16px;
|
|
89
|
+
$size-with-padding: calc($radio-button-size + 4px);
|
|
90
|
+
|
|
91
|
+
@include mat.radio-overrides(
|
|
92
|
+
(
|
|
93
|
+
state-layer-size: $size-with-padding
|
|
94
|
+
)
|
|
95
|
+
);
|
|
96
|
+
|
|
97
|
+
.mdc-radio {
|
|
98
|
+
height: $radio-button-size;
|
|
99
|
+
width: $radio-button-size;
|
|
100
|
+
padding: calc(
|
|
101
|
+
(var(--mdc-radio-state-layer-size, 40px) - $radio-button-size) / 2
|
|
102
|
+
);
|
|
103
|
+
|
|
104
|
+
.mdc-radio__background {
|
|
105
|
+
height: $radio-button-size;
|
|
106
|
+
width: $radio-button-size;
|
|
107
|
+
|
|
108
|
+
.mdc-radio__inner-circle {
|
|
109
|
+
border-width: calc($radio-button-size / 2);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.mdc-radio__outer-circle {
|
|
113
|
+
border-width: 1px;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.mat-mdc-radio-touch-target {
|
|
119
|
+
height: $size-with-padding;
|
|
120
|
+
width: $size-with-padding;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
@use '@angular/material' as mat;
|
|
2
|
+
|
|
3
|
+
@mixin overrides() {
|
|
4
|
+
.mat-mdc-tab-group {
|
|
5
|
+
$blue-piv: var(--sdg-color-blue-piv);
|
|
6
|
+
$blue-dark: var(--sdg-color-blue-dark);
|
|
7
|
+
$grey-pale: var(--sdg-color-grey-pale);
|
|
8
|
+
|
|
9
|
+
.mat-mdc-tab-labels {
|
|
10
|
+
column-gap: 24px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.mdc-tab {
|
|
14
|
+
padding: 0 8px;
|
|
15
|
+
min-width: unset;
|
|
16
|
+
|
|
17
|
+
&--active {
|
|
18
|
+
font-weight: bold;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&:hover:not(&--active) {
|
|
22
|
+
.mdc-tab-indicator {
|
|
23
|
+
border-bottom: 4px solid $grey-pale;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&:focus {
|
|
28
|
+
.mdc-tab-indicator {
|
|
29
|
+
border: 2px solid var(--sdg-color-blue-light);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.mat-mdc-tab-header-pagination {
|
|
35
|
+
min-width: 40px;
|
|
36
|
+
|
|
37
|
+
&-after,
|
|
38
|
+
&-before {
|
|
39
|
+
padding: 0;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&-after {
|
|
43
|
+
.mat-mdc-tab-header-pagination-chevron {
|
|
44
|
+
transform: rotate(45deg) translateX(-2px);
|
|
45
|
+
height: 10px;
|
|
46
|
+
width: 10px;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&-before {
|
|
51
|
+
.mat-mdc-tab-header-pagination-chevron {
|
|
52
|
+
transform: rotate(225deg) translate(-2px, 2px);
|
|
53
|
+
height: 10px;
|
|
54
|
+
width: 10px;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&:hover {
|
|
59
|
+
background-color: $grey-pale;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
&:active {
|
|
63
|
+
background-color: var(--sdg-color-blue-pale);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@include mat.tabs-overrides(
|
|
68
|
+
(
|
|
69
|
+
active-indicator-color: $blue-piv,
|
|
70
|
+
active-indicator-height: 4px,
|
|
71
|
+
active-hover-indicator-color: $blue-piv,
|
|
72
|
+
active-hover-label-text-color: $blue-dark,
|
|
73
|
+
active-focus-indicator-color: $blue-piv,
|
|
74
|
+
active-focus-label-text-color: $blue-dark,
|
|
75
|
+
active-ripple-color: transparent,
|
|
76
|
+
active-label-text-color: $blue-dark,
|
|
77
|
+
//
|
|
78
|
+
inactive-ripple-color: transparent,
|
|
79
|
+
inactive-label-text-color: $blue-piv,
|
|
80
|
+
inactive-focus-label-text-color: $blue-piv,
|
|
81
|
+
inactive-hover-label-text-color: $blue-piv,
|
|
82
|
+
//
|
|
83
|
+
divider-color: var(--sdg-color-grey-light),
|
|
84
|
+
divider-height: 1px,
|
|
85
|
+
//
|
|
86
|
+
label-text-size: var(--sdg-font-size-md),
|
|
87
|
+
label-text-line-height: var(--sdg-line-height-md),
|
|
88
|
+
//
|
|
89
|
+
pagination-icon-color: $blue-dark,
|
|
90
|
+
//
|
|
91
|
+
container-height: 40px
|
|
92
|
+
)
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@forward './material' as material-*;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@forward './theme';
|