@draftbit/core 50.2.0 → 50.2.1-94f681.2

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": "@draftbit/core",
3
- "version": "50.2.0",
3
+ "version": "50.2.1-94f681.2+94f6815",
4
4
  "description": "Core (non-native) Components",
5
5
  "main": "lib/commonjs/index.js",
6
6
  "types": "lib/typescript/src/index.d.ts",
@@ -41,7 +41,7 @@
41
41
  "dependencies": {
42
42
  "@date-io/date-fns": "^1.3.13",
43
43
  "@draftbit/react-theme-provider": "^2.1.1",
44
- "@draftbit/theme": "50.2.0",
44
+ "@draftbit/theme": "^50.2.1-94f681.2+94f6815",
45
45
  "@expo/vector-icons": "^14.0.0",
46
46
  "@gorhom/bottom-sheet": "5.0.0-alpha.7",
47
47
  "@material-ui/core": "^4.11.0",
@@ -117,5 +117,5 @@
117
117
  ],
118
118
  "testEnvironment": "node"
119
119
  },
120
- "gitHead": "d9cbdd276f33fb823496c67065f6e8e0c13223cd"
120
+ "gitHead": "94f68151c471f630e71ed76625873edd647621ee"
121
121
  }
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ import { View, Text } from "react-native";
3
+ const Toast = ({}) => {
4
+ return (React.createElement(View, null,
5
+ React.createElement(Text, null, "Test")));
6
+ };
7
+ export default Toast;
8
+ //# sourceMappingURL=Toast.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Toast.js","sourceRoot":"","sources":["Toast.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAI1C,MAAM,KAAK,GAA6C,CAAC,EAAE,EAAE,EAAE;IAC7D,OAAO,CACL,oBAAC,IAAI;QACH,oBAAC,IAAI,eAAY,CACZ,CACR,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,KAAK,CAAC"}
@@ -0,0 +1,14 @@
1
+ import React from "react";
2
+ import { View, Text } from "react-native";
3
+
4
+ type Props = {};
5
+
6
+ const Toast: React.FC<React.PropsWithChildren<Props>> = ({}) => {
7
+ return (
8
+ <View>
9
+ <Text>Test</Text>
10
+ </View>
11
+ );
12
+ };
13
+
14
+ export default Toast;
@@ -0,0 +1,2 @@
1
+ export { default as Toast } from "./Toast";
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC"}
@@ -0,0 +1 @@
1
+ export { default as Toast } from "./Toast";