@1024pix/pix-ui 29.1.0 → 29.1.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/CHANGELOG.md +10 -0
- package/addon/styles/_a11y.scss +1 -1
- package/addon/styles/_pix-modal.scss +2 -2
- package/addon/styles/_pix-tag.scss +10 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Pix-UI Changelog
|
|
2
2
|
|
|
3
|
+
## v29.1.1 (31/03/2023)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### :building_construction: Tech
|
|
7
|
+
- [#375](https://github.com/1024pix/pix-ui/pull/375) [TECH] Améliorer l'affichage des éléments en screen-reader-only ayant des sous élements (PIX-7623)
|
|
8
|
+
|
|
9
|
+
### :bug: Correction
|
|
10
|
+
- [#373](https://github.com/1024pix/pix-ui/pull/373) [BUGFIX] Rendre les couleurs des tags cohérentes avec celles des maquettes (PIX-7582)
|
|
11
|
+
- [#374](https://github.com/1024pix/pix-ui/pull/374) [BUGFIX] Rendre les typographies de la modale cohérentes avec celles des maquettes (PIX-7615)
|
|
12
|
+
|
|
3
13
|
## v29.1.0 (28/03/2023)
|
|
4
14
|
|
|
5
15
|
|
package/addon/styles/_a11y.scss
CHANGED
|
@@ -68,7 +68,7 @@ $button-margin: 16px;
|
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
&__title {
|
|
71
|
-
@extend %pix-title-
|
|
71
|
+
@extend %pix-title-xs;
|
|
72
72
|
|
|
73
73
|
margin-bottom: 0;
|
|
74
74
|
color: $pix-neutral-90;
|
|
@@ -80,7 +80,7 @@ $button-margin: 16px;
|
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
&__content {
|
|
83
|
-
@extend %pix-body-
|
|
83
|
+
@extend %pix-body-s;
|
|
84
84
|
|
|
85
85
|
padding: $modal-padding;
|
|
86
86
|
color: $pix-neutral-90;
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
background-color: $pix-primary;
|
|
12
12
|
|
|
13
13
|
&--blue-light {
|
|
14
|
-
color:
|
|
15
|
-
background-color:
|
|
14
|
+
color: $pix-primary-80;
|
|
15
|
+
background-color: $pix-primary-10;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
&--green {
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
&--green-light {
|
|
23
|
-
color: $pix-success-
|
|
24
|
-
background-color: $pix-success-
|
|
23
|
+
color: $pix-success-80;
|
|
24
|
+
background-color: $pix-success-10;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
&--purple {
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
&--yellow-light {
|
|
42
|
-
color:
|
|
43
|
-
background-color:
|
|
42
|
+
color: $pix-warning-80;
|
|
43
|
+
background-color: $pix-warning-10;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
&--orange {
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
&--orange-light {
|
|
51
|
-
color: $pix-warning-
|
|
52
|
-
background-color: $pix-warning-
|
|
51
|
+
color: $pix-warning-80;
|
|
52
|
+
background-color: $pix-warning-10;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
&--grey {
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
&--grey-light {
|
|
61
|
-
color: $pix-neutral-
|
|
62
|
-
background-color: $pix-neutral-
|
|
61
|
+
color: $pix-neutral-90;
|
|
62
|
+
background-color: $pix-neutral-20;
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
&--compact {
|