@weni/unnnic-system 3.26.1 → 3.27.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.
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +4 -4
- package/dist/unnnic.umd.js +2 -2
- package/package.json +1 -1
- package/src/components/Drawer/Drawer.vue +0 -9
- package/src/components/Toast/Toast.vue +7 -4
- package/src/components/ui/dialog/DialogFooter.vue +1 -5
- package/src/components/ui/drawer/DrawerFooter.vue +1 -5
package/package.json
CHANGED
|
@@ -244,14 +244,5 @@ const back = () => {
|
|
|
244
244
|
padding: $unnnic-spacing-md $unnnic-spacing-md 0 $unnnic-spacing-md;
|
|
245
245
|
flex: 1 0 0;
|
|
246
246
|
}
|
|
247
|
-
|
|
248
|
-
.unnnic-drawer__footer {
|
|
249
|
-
display: flex;
|
|
250
|
-
padding: $unnnic-spacing-md;
|
|
251
|
-
gap: $unnnic-spacing-ant;
|
|
252
|
-
> * {
|
|
253
|
-
flex-grow: 1;
|
|
254
|
-
}
|
|
255
|
-
}
|
|
256
247
|
}
|
|
257
248
|
</style>
|
|
@@ -172,22 +172,25 @@ onUnmounted(() => {
|
|
|
172
172
|
|
|
173
173
|
&--informational {
|
|
174
174
|
border-color: $unnnic-color-border-info;
|
|
175
|
-
background-color
|
|
175
|
+
background: linear-gradient($unnnic-color-bg-info), $unnnic-color-bg-base;
|
|
176
176
|
}
|
|
177
177
|
|
|
178
178
|
&--attention {
|
|
179
179
|
border-color: $unnnic-color-border-warning;
|
|
180
|
-
background
|
|
180
|
+
background:
|
|
181
|
+
linear-gradient($unnnic-color-bg-warning), $unnnic-color-bg-base;
|
|
181
182
|
}
|
|
182
183
|
|
|
183
184
|
&--success {
|
|
184
185
|
border-color: $unnnic-color-border-success;
|
|
185
|
-
background
|
|
186
|
+
background:
|
|
187
|
+
linear-gradient($unnnic-color-bg-success), $unnnic-color-bg-base;
|
|
186
188
|
}
|
|
187
189
|
|
|
188
190
|
&--error {
|
|
189
191
|
border-color: $unnnic-color-border-critical;
|
|
190
|
-
background
|
|
192
|
+
background:
|
|
193
|
+
linear-gradient($unnnic-color-bg-critical), $unnnic-color-bg-base;
|
|
191
194
|
}
|
|
192
195
|
|
|
193
196
|
&__content,
|
|
@@ -33,7 +33,7 @@ const props = withDefaults(
|
|
|
33
33
|
|
|
34
34
|
.unnnic-dialog-footer {
|
|
35
35
|
display: flex;
|
|
36
|
-
justify-content:
|
|
36
|
+
justify-content: flex-end;
|
|
37
37
|
align-items: center;
|
|
38
38
|
gap: $unnnic-space-2;
|
|
39
39
|
|
|
@@ -42,9 +42,5 @@ const props = withDefaults(
|
|
|
42
42
|
&--with-divider {
|
|
43
43
|
border-top: 1px solid $unnnic-color-border-soft;
|
|
44
44
|
}
|
|
45
|
-
|
|
46
|
-
> * {
|
|
47
|
-
width: 100%;
|
|
48
|
-
}
|
|
49
45
|
}
|
|
50
46
|
</style>
|