@artsy/palette-mobile 14.0.26 → 14.0.28
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.
|
@@ -7,5 +7,5 @@ export const Body = ({ children, fullwidth, scroll, disableKeyboardAvoidance = f
|
|
|
7
7
|
const Wrapper = disableKeyboardAvoidance ? Fragment : KeyboardAvoidingView;
|
|
8
8
|
return (_jsx(Wrapper, { ...(disableKeyboardAvoidance
|
|
9
9
|
? {}
|
|
10
|
-
: { style: { flex: 1 }, behavior: Platform.OS === "ios" ? "padding" : "height" }), children: _jsx(Flex, { flex: 1, ...flexProps,
|
|
10
|
+
: { style: { flex: 1 }, behavior: Platform.OS === "ios" ? "padding" : "height" }), children: _jsx(Flex, { flex: 1, ...flexProps, children: _jsx(Flex, { flex: 1, px: fullwidth ? undefined : SCREEN_HORIZONTAL_PADDING, children: scroll ? _jsx(ScrollView, { children: children }) : children }) }) }));
|
|
11
11
|
};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { Text } from "./Text";
|
|
3
|
-
export const LinkText = ({ style, ...props }) => (_jsx(Text, { ...props, style: [style, { textDecorationLine: "underline" }] }));
|
|
3
|
+
export const LinkText = ({ style, ...props }) => (_jsx(Text, { color: "black100", ...props, style: [style, { textDecorationLine: "underline" }] }));
|
package/dist/tokens.js
CHANGED
|
@@ -82,8 +82,8 @@ const v3dark = {
|
|
|
82
82
|
...THEME_DARK.colors,
|
|
83
83
|
devpurple: v3.colors.devpurple,
|
|
84
84
|
background: THEME_DARK.colors.white100,
|
|
85
|
-
onBackground: THEME_DARK.colors.
|
|
86
|
-
onBackgroundHigh: THEME_DARK.colors.
|
|
85
|
+
onBackground: THEME_DARK.colors.black100,
|
|
86
|
+
onBackgroundHigh: THEME_DARK.colors.black100,
|
|
87
87
|
onBackgroundMedium: THEME_DARK.colors.black30,
|
|
88
88
|
onBackgroundLow: THEME_DARK.colors.black60,
|
|
89
89
|
surface: "#333",
|
package/package.json
CHANGED