@artsy/palette-mobile 13.0.25 → 13.0.26
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 +12 -0
- package/dist/elements/Pill/Pill.js +6 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v13.0.26 (Fri Nov 24 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- chore: update gray shade of dotted pill [#170](https://github.com/artsy/palette-mobile/pull/170) ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Mounir Dhahri ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v13.0.25 (Wed Nov 22 2023)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
|
@@ -101,8 +101,8 @@ const PILL_VARIANTS = {
|
|
|
101
101
|
`,
|
|
102
102
|
selected: (0, styled_components_1.css) `
|
|
103
103
|
${PILL_STATES.selected}
|
|
104
|
-
background-color: ${(0, theme_get_1.default)("colors.
|
|
105
|
-
border-color: ${(0, theme_get_1.default)("colors.
|
|
104
|
+
background-color: ${(0, theme_get_1.default)("colors.black10")};
|
|
105
|
+
border-color: ${(0, theme_get_1.default)("colors.black10")};
|
|
106
106
|
`,
|
|
107
107
|
},
|
|
108
108
|
search: {
|
|
@@ -159,7 +159,10 @@ const defaultColors = {
|
|
|
159
159
|
};
|
|
160
160
|
const TEXT_COLOR = {
|
|
161
161
|
default: defaultColors,
|
|
162
|
-
dotted:
|
|
162
|
+
dotted: {
|
|
163
|
+
...defaultColors,
|
|
164
|
+
selected: "black100",
|
|
165
|
+
},
|
|
163
166
|
search: defaultColors,
|
|
164
167
|
profile: {
|
|
165
168
|
...defaultColors,
|