@onemrvapublic/design-system-theme 19.2.0-develop.1 → 19.2.0-develop.10
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/_table.scss
CHANGED
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
transition: background-color 400ms ease-out;
|
|
75
75
|
padding: 16px;
|
|
76
76
|
line-height: 23px;
|
|
77
|
+
--mat-expansion-container-background-color: transparent;
|
|
77
78
|
|
|
78
79
|
td.mat-mdc-cell {
|
|
79
80
|
line-height: 22px;
|
|
@@ -97,7 +98,6 @@
|
|
|
97
98
|
&.onemrva-clickable-row {
|
|
98
99
|
background: µ.grayscale($theme, 50) 0% 0% no-repeat padding-box;
|
|
99
100
|
color: µ.grayscale($theme, 900);
|
|
100
|
-
cursor: pointer;
|
|
101
101
|
border-radius: 10px;
|
|
102
102
|
td:first-child {
|
|
103
103
|
border-radius: 10px 0 0 10px;
|
|
@@ -106,9 +106,12 @@
|
|
|
106
106
|
border-radius: 0 10px 10px 0;
|
|
107
107
|
padding-right: 10px;
|
|
108
108
|
}
|
|
109
|
+
td:only-child {
|
|
110
|
+
border-radius: 10px;
|
|
111
|
+
}
|
|
109
112
|
|
|
110
|
-
|
|
111
|
-
|
|
113
|
+
&.clickable:hover,
|
|
114
|
+
&.clickable:active {
|
|
112
115
|
box-shadow: variables.$box-shadow;
|
|
113
116
|
}
|
|
114
117
|
|
|
@@ -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: "19.2.
|
|
7
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
8
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
6
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: OnemrvaThemeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.4", ngImport: i0, type: OnemrvaThemeModule }); }
|
|
8
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.4", 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: "19.2.
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: OnemrvaThemeModule, decorators: [{
|
|
19
19
|
type: NgModule,
|
|
20
20
|
args: [{
|
|
21
21
|
providers: [
|
package/package.json
CHANGED
|
@@ -42,6 +42,35 @@
|
|
|
42
42
|
text-transform: capitalize !important;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
+
.rotate-0 {
|
|
46
|
+
transform: rotate(0deg);
|
|
47
|
+
transition: transform 0.3s ease;
|
|
48
|
+
}
|
|
49
|
+
.rotate-45 {
|
|
50
|
+
transform: rotate(45deg);
|
|
51
|
+
transition: transform 0.3s ease;
|
|
52
|
+
}
|
|
53
|
+
.rotate-90 {
|
|
54
|
+
transform: rotate(90deg);
|
|
55
|
+
transition: transform 0.3s ease;
|
|
56
|
+
}
|
|
57
|
+
.rotate-135 {
|
|
58
|
+
transform: rotate(135deg);
|
|
59
|
+
transition: transform 0.3s ease;
|
|
60
|
+
}
|
|
61
|
+
.rotate-180 {
|
|
62
|
+
transform: rotate(180deg);
|
|
63
|
+
transition: transform 0.3s ease;
|
|
64
|
+
}
|
|
65
|
+
.rotate-225 {
|
|
66
|
+
transform: rotate(225deg);
|
|
67
|
+
transition: transform 0.3s ease;
|
|
68
|
+
}
|
|
69
|
+
.rotate-270 {
|
|
70
|
+
transform: rotate(270deg);
|
|
71
|
+
transition: transform 0.3s ease;
|
|
72
|
+
}
|
|
73
|
+
|
|
45
74
|
// align
|
|
46
75
|
.align-baseline {
|
|
47
76
|
vertical-align: baseline !important;
|