@onemrvapublic/design-system-theme 20.1.1 → 20.2.1-develop.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.
|
@@ -3,9 +3,9 @@ import { NgModule } from '@angular/core';
|
|
|
3
3
|
import { MAT_FORM_FIELD_DEFAULT_OPTIONS } from '@angular/material/form-field';
|
|
4
4
|
|
|
5
5
|
class OnemrvaThemeModule {
|
|
6
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.
|
|
7
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.
|
|
8
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.
|
|
6
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: OnemrvaThemeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.7", ngImport: i0, type: OnemrvaThemeModule }); }
|
|
8
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: OnemrvaThemeModule, providers: [
|
|
9
9
|
{
|
|
10
10
|
provide: MAT_FORM_FIELD_DEFAULT_OPTIONS,
|
|
11
11
|
useValue: {
|
|
@@ -15,7 +15,7 @@ class OnemrvaThemeModule {
|
|
|
15
15
|
},
|
|
16
16
|
] }); }
|
|
17
17
|
}
|
|
18
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.7", ngImport: i0, type: OnemrvaThemeModule, decorators: [{
|
|
19
19
|
type: NgModule,
|
|
20
20
|
args: [{
|
|
21
21
|
providers: [
|
package/package.json
CHANGED
package/utilities/_fonts.scss
CHANGED
|
@@ -34,6 +34,18 @@
|
|
|
34
34
|
color: var(--mat-sys-primary);
|
|
35
35
|
font-weight: var(--mat-sys-label-large-weight);
|
|
36
36
|
}
|
|
37
|
+
.bold {
|
|
38
|
+
font-weight: bold;
|
|
39
|
+
}
|
|
40
|
+
.bolder {
|
|
41
|
+
font-weight: bolder;
|
|
42
|
+
}
|
|
43
|
+
.lighter {
|
|
44
|
+
font-weight: lighter;
|
|
45
|
+
}
|
|
46
|
+
.font-weight-normal {
|
|
47
|
+
font-weight: normal;
|
|
48
|
+
}
|
|
37
49
|
|
|
38
50
|
@include mat.theme-overrides(
|
|
39
51
|
(
|
|
@@ -158,6 +158,24 @@
|
|
|
158
158
|
.d-inline-flex {
|
|
159
159
|
display: inline-flex !important;
|
|
160
160
|
}
|
|
161
|
+
.flex-column {
|
|
162
|
+
flex-direction: column;
|
|
163
|
+
}
|
|
164
|
+
.flex-column-reverse {
|
|
165
|
+
flex-direction: column-reverse;
|
|
166
|
+
}
|
|
167
|
+
.flex-row {
|
|
168
|
+
flex-direction: row;
|
|
169
|
+
}
|
|
170
|
+
.flex-row-reverse {
|
|
171
|
+
flex-direction: row-reverse;
|
|
172
|
+
}
|
|
173
|
+
.flex-revert {
|
|
174
|
+
flex-direction: revert;
|
|
175
|
+
}
|
|
176
|
+
.flex-revert-layer {
|
|
177
|
+
flex-direction: revert-layer;
|
|
178
|
+
}
|
|
161
179
|
|
|
162
180
|
@each $breakpoint in variables.$breakpoints {
|
|
163
181
|
@include media.media(variables.$breakpoints, list.nth($breakpoint, 1)) {
|