@react-native-styled-system/core 0.0.19 → 0.0.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-styled-system/core",
3
- "version": "0.0.19",
3
+ "version": "0.0.23",
4
4
  "description": "React Native Styled System",
5
5
  "main": "lib/commonjs/index.js",
6
6
  "types": "lib/typescript/src/index.d.ts",
@@ -66,5 +66,5 @@
66
66
  "**/*.test.*"
67
67
  ]
68
68
  },
69
- "gitHead": "c22ac9f8e8cad8696c7edbd50fc0b95f5f71fdc9"
69
+ "gitHead": "72d3b85e58034004cfd0b0f5dcc721f3ba5f817d"
70
70
  }
@@ -11,7 +11,7 @@ import type { ThemedStyleType } from '../util/propsToThemedStyle';
11
11
  import type { StyleFallback, StyleTransform } from './useSx';
12
12
  import { useSx } from './useSx';
13
13
 
14
- export function expectResult(
14
+ function expectResult(
15
15
  theme: ThemedDict,
16
16
  props: { style?: StyleProp<any> } & TextSxProps & Record<string, any>,
17
17
  {
@@ -25,7 +25,7 @@ const theme: ThemedDict = {
25
25
  typography: {},
26
26
  };
27
27
 
28
- export function expectResult<T extends keyof ThemedTypings, V extends ThemedTypings[T]>(
28
+ function expectResult<T extends keyof ThemedTypings, V extends ThemedTypings[T]>(
29
29
  theme: ThemedDict,
30
30
  tokenGroup: T,
31
31
  tokenValues: Array<Exclude<V, null | undefined>>,