@vgip/meta-ui 2.1.0 → 2.1.2
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/fesm2022/vgip-meta-ui.mjs +8 -5
- package/fesm2022/vgip-meta-ui.mjs.map +1 -1
- package/package.json +2 -2
- package/vendor/volta3/scss/components/_accordions.scss +5 -1
- package/vendor/volta3/scss/components/_badge.scss +5 -1
- package/vendor/volta3/scss/components/_callouts.scss +6 -2
- package/vendor/volta3/scss/components/_card.scss +1 -1
- package/vendor/volta3/scss/components/_form-elements.scss +1 -1
- package/vendor/volta3/scss/components/_modals.scss +1 -1
- package/vendor/volta3/scss/components/_tables.scss +1 -1
- package/vendor/volta3/scss/lib/_variables.scss +1 -1
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vgip/meta-ui",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "VGIP Meta UI",
|
|
5
5
|
"peerDependencies": {
|
|
6
|
-
"@angular/common": "
|
|
6
|
+
"@angular/common": "^20.3.5",
|
|
7
7
|
"@angular/core": "^20.3.5",
|
|
8
8
|
"ngx-quill": "^28.0.1",
|
|
9
9
|
"quill": "^2.0.3"
|
|
@@ -25,7 +25,11 @@
|
|
|
25
25
|
border-bottom: 1px solid variables.$grey-dark;
|
|
26
26
|
|
|
27
27
|
&__trigger {
|
|
28
|
-
|
|
28
|
+
appearance: none;
|
|
29
|
+
background: none;
|
|
30
|
+
border: 0;
|
|
31
|
+
outline: none;
|
|
32
|
+
padding: 0;
|
|
29
33
|
border-top: 1px solid variables.$grey-dark;
|
|
30
34
|
cursor: pointer;
|
|
31
35
|
display: flex;
|
|
@@ -157,7 +157,11 @@
|
|
|
157
157
|
}
|
|
158
158
|
|
|
159
159
|
&__dismiss {
|
|
160
|
-
|
|
160
|
+
appearance: none;
|
|
161
|
+
background: none;
|
|
162
|
+
border: 0;
|
|
163
|
+
outline: none;
|
|
164
|
+
padding: 0;
|
|
161
165
|
$fill-color: utils.encode-hex-code(variables.$purple-dark);
|
|
162
166
|
background-image: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A#{$fill-color}%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A');
|
|
163
167
|
background-position: center;
|
|
@@ -75,7 +75,11 @@
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
&__dismiss {
|
|
78
|
-
|
|
78
|
+
appearance: none;
|
|
79
|
+
background: none;
|
|
80
|
+
border: 0;
|
|
81
|
+
outline: none;
|
|
82
|
+
padding: 0;
|
|
79
83
|
background-position: center;
|
|
80
84
|
background-size: contain;
|
|
81
85
|
cursor: pointer;
|
|
@@ -101,7 +105,7 @@
|
|
|
101
105
|
@extend %Vlt-btn !optional;
|
|
102
106
|
@extend %Vlt-btn--small !optional;
|
|
103
107
|
@extend %Vlt-btn--secondary !optional;
|
|
104
|
-
|
|
108
|
+
border-radius: 6px;
|
|
105
109
|
line-height: 1.6rem; // needed for Safari
|
|
106
110
|
margin-bottom: 0px;
|
|
107
111
|
margin-top: 10px;
|