@artsy/palette-mobile 13.2.15 → 13.2.16

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.
@@ -48,7 +48,7 @@ const Checkbox = ({ checked: checkedProp, disabled, error, onPress, text, subtit
48
48
  ? disabledCheckboxStyle
49
49
  : checkboxStyles[error ? "error" : "default"][isChecked ? "checked" : "unchecked"];
50
50
  const textColor = error ? color("red100") : disabled ? color("black30") : color("black100");
51
- const subtitleColor = error ? color("red100") : color("black30");
51
+ const subtitleColor = error ? color("red100") : disabled ? color("black30") : color("black60");
52
52
  return ((0, jsx_runtime_1.jsx)(react_native_1.TouchableWithoutFeedback, { onPress: (event) => {
53
53
  if (disabled) {
54
54
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/palette-mobile",
3
- "version": "13.2.15",
3
+ "version": "13.2.16",
4
4
  "description": "Artsy's design system for React Native",
5
5
  "scripts": {
6
6
  "android": "RCT_METRO_PORT=8082 react-native run-android --port 8082",