Skip to content

Commit a4bc736

Browse files
committed
Merge branch 'master' into youssef/p-3482-replace-jigsaws-web-maps-implementation
2 parents 9584099 + 03d670d commit a4bc736

29 files changed

+2492
-1156
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- master
7-
- 46
7+
- 47
88
pull_request:
99
types: [assigned, opened, synchronize, reopened]
1010

@@ -61,8 +61,8 @@ jobs:
6161
--yes \
6262
--no-verify-access
6363
64-
- name: Release packages (46)
65-
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/46'
64+
- name: Release packages (47)
65+
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/47'
6666
env:
6767
NODE_AUTH_TOKEN: ${{ secrets.JIGSAW_AUTH_TOKEN }}
6868
run: |
@@ -71,8 +71,8 @@ jobs:
7171
--yes \
7272
--no-verify-access
7373
74-
- name: Release packages (46)
75-
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/46'
74+
- name: Release packages (47)
75+
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/47'
7676
env:
7777
NODE_AUTH_TOKEN: ${{ secrets.JIGSAW_AUTH_TOKEN }}
7878
run: |

example/package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@draftbit/example",
33
"description": "Example app for @draftbit/ui",
4-
"version": "47.3.1",
4+
"version": "48.0.0",
55
"private": true,
66
"main": "__generated__/AppEntry.js",
77
"scripts": {
@@ -15,32 +15,32 @@
1515
"clean:modules": "rimraf node_modules"
1616
},
1717
"dependencies": {
18-
"@draftbit/maps": "47.3.1",
19-
"@draftbit/ui": "47.3.1",
18+
"@draftbit/maps": "48.0.0",
19+
"@draftbit/ui": "48.0.0",
2020
"@expo/dev-server": "0.1.123",
21-
"@expo/webpack-config": "^0.17.2",
21+
"@expo/webpack-config": "^18.0.1",
2222
"@react-navigation/drawer": "^5.12.9",
2323
"@react-navigation/native": "^5.9.8",
24-
"@shopify/flash-list": "1.3.1",
25-
"expo": "^47.0.0",
24+
"@shopify/flash-list": "1.4.0",
25+
"expo": "^48.0.0",
2626
"expo-app-loading": "~2.1.1",
27-
"expo-asset": "~8.7.0",
28-
"expo-constants": "~14.0.2",
29-
"expo-font": "~11.0.1",
30-
"expo-splash-screen": "~0.17.5",
31-
"expo-status-bar": "~1.4.2",
32-
"react": "18.1.0",
33-
"react-dom": "18.1.0",
34-
"react-native": "0.70.8",
35-
"react-native-gesture-handler": "~2.8.0",
36-
"react-native-reanimated": "~2.12.0",
37-
"react-native-safe-area-context": "4.4.1",
38-
"react-native-screens": "~3.18.0",
39-
"react-native-web": "~0.18.7"
27+
"expo-asset": "~8.9.1",
28+
"expo-constants": "~14.2.1",
29+
"expo-font": "~11.1.1",
30+
"expo-splash-screen": "~0.18.2",
31+
"expo-status-bar": "~1.4.4",
32+
"react": "18.2.0",
33+
"react-dom": "18.2.0",
34+
"react-native": "0.71.7",
35+
"react-native-gesture-handler": "~2.9.0",
36+
"react-native-reanimated": "~2.14.4",
37+
"react-native-safe-area-context": "4.5.0",
38+
"react-native-screens": "~3.20.0",
39+
"react-native-web": "~0.18.11"
4040
},
4141
"devDependencies": {
42-
"@babel/core": "^7.19.3",
43-
"@types/react": "~18.0.24",
42+
"@babel/core": "^7.20.0",
43+
"@types/react": "~18.0.27",
4444
"@types/react-native": "~0.70.6",
4545
"babel-loader": "8.1.0",
4646
"sharp-cli": "2.1.0"

example/src/DatePickerExample.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ function DatePickerExample({ theme }) {
123123
mode={"date"}
124124
style={{
125125
backgroundColor: "red",
126-
fontFamily: "AbrilFatface_400Regular",
127126
fontSize: 22,
128127
paddingBottom: 16,
129128
paddingTop: 16,
@@ -139,7 +138,6 @@ function DatePickerExample({ theme }) {
139138
mode={"time"}
140139
style={{
141140
backgroundColor: "black",
142-
fontFamily: "AbrilFatface_400Regular",
143141
fontSize: 26,
144142
color: `white`,
145143
paddingBottom: 16,

example/src/LayoutExample.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,9 @@ function LayoutExample({ theme }) {
3939
</Section>
4040
<Divider />
4141
<Divider />
42-
<Surface>
43-
<Section title="Circle">
44-
<Circle />
45-
</Section>
46-
</Surface>
42+
<Section title="Circle">
43+
<Circle bgColor="black" />
44+
</Section>
4745
</ScreenContainer>
4846
);
4947
}

example/src/PickerExample.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ function PickerExample({ theme }) {
155155
style={{
156156
fontSize: 30,
157157
color: "red",
158-
fontFamily: "Courier New",
159158
}}
160159
leftIconName={"AntDesign/caretleft"}
161160
/>

example/src/TextFieldExample.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ export default function TextFieldExample() {
9090
style={{
9191
fontSize: 30,
9292
color: "red",
93-
fontFamily: "Courier New",
9493
}}
9594
/>
9695
<TextField

example/webpack.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@ const { createWebpackConfigAsync } = require("expo-yarn-workspaces/webpack");
22

33
module.exports = async function (env, argv) {
44
const config = await createWebpackConfigAsync(env, argv);
5-
config.resolve.alias["react-native"] = "react-native-web";
65
return config;
76
};

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "47.3.1",
2+
"version": "48.0.0",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"packages": ["packages/*", "example"],

package.json

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"clean": "lerna run clean",
2323
"clean:modules": "lerna run clean:modules && rm -rf node_modules",
2424
"typescript": "tsc --composite false",
25-
"version:expo": "lerna version major --no-push",
25+
"version:expo": "lerna version major --no-push --exact",
2626
"version:major": "lerna version minor --no-push --exact",
2727
"version:minor": "lerna version patch --no-push --exact",
2828
"version:patch": "echo \"No patch versions: See root README.md\"",
@@ -84,11 +84,11 @@
8484
"bracketSpacing": true
8585
}
8686
]
87+
},
88+
"parserOptions": {
89+
"requireConfigFile": false
8790
}
8891
},
89-
"resolutions": {
90-
"@expo/webpack-config": "^0.17.2"
91-
},
9292
"eslintIgnore": [
9393
"scripts",
9494
"example/web-build",
@@ -103,7 +103,8 @@
103103
"tabWidth": 2,
104104
"trailingComma": "es5",
105105
"useTabs": false,
106-
"bracketSpacing": true
106+
"bracketSpacing": true,
107+
"endOfLine": "auto"
107108
},
108109
"lint-staged": {
109110
"*.{js,ts,tsx,jsx}": "eslint --cache --fix",
@@ -122,8 +123,5 @@
122123
},
123124
"engines": {
124125
"node": "16.x"
125-
},
126-
"dependencies": {
127-
"@expo/webpack-config": "^0.17.2"
128126
}
129127
}

packages/core/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@draftbit/core",
3-
"version": "47.3.1",
3+
"version": "48.0.0",
44
"description": "Core (non-native) Components",
55
"main": "lib/src/index.js",
66
"types": "lib/src/index.d.ts",
@@ -39,26 +39,26 @@
3939
"dependencies": {
4040
"@date-io/date-fns": "^1.3.13",
4141
"@draftbit/react-theme-provider": "^2.1.1",
42-
"@draftbit/types": "47.3.1",
42+
"@draftbit/types": "48.0.0",
4343
"@expo/vector-icons": "^13.0.0",
4444
"@material-ui/core": "^4.11.0",
4545
"@material-ui/pickers": "^3.2.10",
46-
"@react-native-community/slider": "4.2.4",
46+
"@react-native-community/slider": "4.4.2",
4747
"@react-native-picker/picker": "2.4.8",
48-
"@shopify/flash-list": "1.3.1",
48+
"@shopify/flash-list": "1.4.0",
4949
"color": "^3.1.2",
5050
"date-fns": "^2.16.1",
5151
"dateformat": "^3.0.3",
52-
"expo-av": "~13.0.3",
52+
"expo-av": "~13.2.1",
5353
"lodash.isnumber": "^3.0.3",
5454
"lodash.omit": "^4.5.0",
5555
"lodash.tonumber": "^4.0.3",
5656
"react-native-deck-swiper": "^2.0.12",
57-
"react-native-gesture-handler": "~2.8.0",
57+
"react-native-gesture-handler": "~2.9.0",
5858
"react-native-markdown-display": "^7.0.0-alpha.2",
5959
"react-native-modal-datetime-picker": "^13.0.0",
60-
"react-native-pager-view": "6.0.1",
61-
"react-native-reanimated": "~2.12.0",
60+
"react-native-pager-view": "6.1.2",
61+
"react-native-reanimated": "~2.14.4",
6262
"react-native-shadow-2": "^7.0.7",
6363
"react-native-svg": "13.4.0",
6464
"react-native-swipe-list-view": "^3.2.9",

0 commit comments

Comments
 (0)