@onemrvapublic/design-system-theme 16.2.5 → 16.2.8
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/_chips.scss +36 -8
- package/package.json +26 -26
package/components/_chips.scss
CHANGED
|
@@ -39,19 +39,17 @@
|
|
|
39
39
|
display: flex;
|
|
40
40
|
align-items: center;
|
|
41
41
|
}
|
|
42
|
-
|
|
43
|
-
.mat-icon {
|
|
44
|
-
line-height: 18px;
|
|
45
|
-
font-size: 18px;
|
|
46
|
-
height: 18px;
|
|
47
|
-
width: 22px;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
42
|
+
|
|
50
43
|
&.mat-primary {
|
|
51
44
|
background: µ.primary($theme, 50) !important;
|
|
52
45
|
border: 1px solid µ.primary($theme, 300);
|
|
53
46
|
.mat-mdc-chip-action-label {
|
|
54
47
|
color: $primary;
|
|
48
|
+
.mat-icon {
|
|
49
|
+
font-size: 18px;
|
|
50
|
+
height: 18px;
|
|
51
|
+
width: 22px;
|
|
52
|
+
}
|
|
55
53
|
}
|
|
56
54
|
}
|
|
57
55
|
&.mat-accent {
|
|
@@ -60,6 +58,11 @@
|
|
|
60
58
|
border: none;
|
|
61
59
|
.mat-mdc-chip-action-label {
|
|
62
60
|
color: $color;
|
|
61
|
+
.mat-icon {
|
|
62
|
+
font-size: 18px;
|
|
63
|
+
height: 18px;
|
|
64
|
+
width: 22px;
|
|
65
|
+
}
|
|
63
66
|
}
|
|
64
67
|
}
|
|
65
68
|
&.mat-warn {
|
|
@@ -67,6 +70,11 @@
|
|
|
67
70
|
border: 1px solid µ.warn($theme, 200);
|
|
68
71
|
.mat-mdc-chip-action-label {
|
|
69
72
|
color: µ.warn($theme, 600);
|
|
73
|
+
.mat-icon {
|
|
74
|
+
font-size: 18px;
|
|
75
|
+
height: 18px;
|
|
76
|
+
width: 22px;
|
|
77
|
+
}
|
|
70
78
|
}
|
|
71
79
|
}
|
|
72
80
|
&.mat-success {
|
|
@@ -74,6 +82,11 @@
|
|
|
74
82
|
border: 1px solid µ.success($theme, 200);
|
|
75
83
|
.mat-mdc-chip-action-label {
|
|
76
84
|
color: µ.success($theme);
|
|
85
|
+
.mat-icon {
|
|
86
|
+
font-size: 18px;
|
|
87
|
+
height: 18px;
|
|
88
|
+
width: 22px;
|
|
89
|
+
}
|
|
77
90
|
}
|
|
78
91
|
}
|
|
79
92
|
&.mat-error {
|
|
@@ -82,6 +95,11 @@
|
|
|
82
95
|
display: inline-flex;
|
|
83
96
|
.mat-mdc-chip-action-label {
|
|
84
97
|
color: µ.error($theme);
|
|
98
|
+
.mat-icon {
|
|
99
|
+
font-size: 18px;
|
|
100
|
+
height: 18px;
|
|
101
|
+
width: 22px;
|
|
102
|
+
}
|
|
85
103
|
}
|
|
86
104
|
}
|
|
87
105
|
&.mat-info {
|
|
@@ -89,6 +107,11 @@
|
|
|
89
107
|
border: 1px solid µ.info($theme, 200);
|
|
90
108
|
.mat-mdc-chip-action-label {
|
|
91
109
|
color: µ.info($theme);
|
|
110
|
+
.mat-icon {
|
|
111
|
+
font-size: 18px;
|
|
112
|
+
height: 18px;
|
|
113
|
+
width: 22px;
|
|
114
|
+
}
|
|
92
115
|
}
|
|
93
116
|
}
|
|
94
117
|
&.mat-mdc-chip-disabled {
|
|
@@ -96,6 +119,11 @@
|
|
|
96
119
|
border: 1px solid µ.grayscale($theme, 400);
|
|
97
120
|
.mat-mdc-chip-action-label {
|
|
98
121
|
color: µ.grayscale($theme);
|
|
122
|
+
.mat-icon {
|
|
123
|
+
font-size: 18px;
|
|
124
|
+
height: 18px;
|
|
125
|
+
width: 22px;
|
|
126
|
+
}
|
|
99
127
|
}
|
|
100
128
|
}
|
|
101
129
|
&.sticker {
|
package/package.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
"name": "@onemrvapublic/design-system-theme",
|
|
3
|
+
"version": "16.2.8",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"peerDependencies": {
|
|
8
|
+
"@angular/common": "^16.0.0",
|
|
9
|
+
"@angular/core": "^16.0.0"
|
|
10
|
+
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"tslib": "^2.3.0"
|
|
13
|
+
},
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"sass": "./index.scss",
|
|
17
|
+
"types": "./index.d.ts",
|
|
18
|
+
"esm2022": "./esm2022/onemrvapublic-design-system-theme.mjs",
|
|
19
|
+
"esm": "./esm2022/onemrvapublic-design-system-theme.mjs",
|
|
20
|
+
"default": "./fesm2022/onemrvapublic-design-system-theme.mjs"
|
|
6
21
|
},
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"exports": {
|
|
15
|
-
".": {
|
|
16
|
-
"sass": "./index.scss",
|
|
17
|
-
"types": "./index.d.ts",
|
|
18
|
-
"esm2022": "./esm2022/onemrvapublic-design-system-theme.mjs",
|
|
19
|
-
"esm": "./esm2022/onemrvapublic-design-system-theme.mjs",
|
|
20
|
-
"default": "./fesm2022/onemrvapublic-design-system-theme.mjs"
|
|
21
|
-
},
|
|
22
|
-
"./package.json": {
|
|
23
|
-
"default": "./package.json"
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"module": "fesm2022/onemrvapublic-design-system-theme.mjs",
|
|
27
|
-
"typings": "index.d.ts",
|
|
28
|
-
"sideEffects": false
|
|
22
|
+
"./package.json": {
|
|
23
|
+
"default": "./package.json"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"module": "fesm2022/onemrvapublic-design-system-theme.mjs",
|
|
27
|
+
"typings": "index.d.ts",
|
|
28
|
+
"sideEffects": false
|
|
29
29
|
}
|