@draftbit/core 46.10.3-bf9cea.2 → 46.10.3-bfb540.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.
@@ -27,7 +27,7 @@ declare const _default: React.ComponentType<import("@draftbit/react-theme-provid
27
27
  placeholder: string;
28
28
  disabled: string;
29
29
  };
30
- fonts: import("packages/types/lib/typescript/src").Fonts;
30
+ fonts: import("@draftbit/types").Fonts;
31
31
  typography: {
32
32
  headline1: {
33
33
  fontSize: number;
@@ -1529,7 +1529,7 @@ declare const _default: React.ComponentType<import("@draftbit/react-theme-provid
1529
1529
  placeholder: string;
1530
1530
  disabled: string;
1531
1531
  };
1532
- fonts: import("packages/types/lib/typescript/src").Fonts;
1532
+ fonts: import("@draftbit/types").Fonts;
1533
1533
  typography: {
1534
1534
  headline1: {
1535
1535
  fontSize: number;
@@ -3029,7 +3029,7 @@ declare const _default: React.ComponentType<import("@draftbit/react-theme-provid
3029
3029
  placeholder: string;
3030
3030
  disabled: string;
3031
3031
  };
3032
- fonts: import("packages/types/lib/typescript/src").Fonts;
3032
+ fonts: import("@draftbit/types").Fonts;
3033
3033
  typography: {
3034
3034
  headline1: {
3035
3035
  fontSize: number;
@@ -24,7 +24,7 @@ declare const DefaultTheme: {
24
24
  placeholder: string;
25
25
  disabled: string;
26
26
  };
27
- fonts: import("packages/types/lib/typescript/src").Fonts;
27
+ fonts: import("@draftbit/types").Fonts;
28
28
  typography: {
29
29
  headline1: {
30
30
  fontSize: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@draftbit/core",
3
- "version": "46.10.3-bf9cea.2+bf9cea9",
3
+ "version": "46.10.3-bfb540.2+bfb5401",
4
4
  "description": "Core (non-native) Components",
5
5
  "main": "lib\\commonjs\\index.js",
6
6
  "module": "lib\\module\\index.js",
@@ -15,6 +15,7 @@
15
15
  "!**/__mocks__"
16
16
  ],
17
17
  "scripts": {
18
+ "prepare": "bob build",
18
19
  "clean": "rimraf lib",
19
20
  "clean:modules": "rimraf node_modules",
20
21
  "prepack": "bob build"
@@ -41,7 +42,7 @@
41
42
  "dependencies": {
42
43
  "@date-io/date-fns": "^1.3.13",
43
44
  "@draftbit/react-theme-provider": "^2.1.1",
44
- "@draftbit/types": "^46.10.3-bf9cea.2+bf9cea9",
45
+ "@draftbit/types": "^46.10.3-bfb540.2+bfb5401",
45
46
  "@material-ui/core": "^4.11.0",
46
47
  "@material-ui/pickers": "^3.2.10",
47
48
  "@react-native-community/slider": "4.2.3",
@@ -72,7 +73,8 @@
72
73
  "@types/dateformat": "^3.0.1",
73
74
  "@types/lodash.isnumber": "^3.0.6",
74
75
  "@types/lodash.omit": "^4.5.6",
75
- "@types/lodash.tonumber": "^4.0.6"
76
+ "@types/lodash.tonumber": "^4.0.6",
77
+ "react-native-builder-bob": "^0.20.4"
76
78
  },
77
79
  "react-native-builder-bob": {
78
80
  "source": "src",
@@ -80,18 +82,12 @@
80
82
  "targets": [
81
83
  "commonjs",
82
84
  "module",
83
- [
84
- "typescript",
85
- {
86
- "project": "tsconfig.build.json",
87
- "tsc": "../../node_modules/typescript/bin/tsc"
88
- }
89
- ]
85
+ "typescript"
90
86
  ]
91
87
  },
92
88
  "eslintIgnore": [
93
89
  "node_modules/",
94
90
  "lib/"
95
91
  ],
96
- "gitHead": "bf9cea99454a30b130bdc7627f792e2bd407ef73"
92
+ "gitHead": "bfb540123e04af5a75a052114a62468f19744d75"
97
93
  }