-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Full rewrite for JSX4, records with optional fields + simplicity (#58)
- Loading branch information
Showing
25 changed files
with
11,926 additions
and
11,470 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,17 @@ | ||
'use strict'; | ||
|
||
var Core$ReactNavigation = require("./Core.bs.js"); | ||
var Interop = require("./Interop"); | ||
var BottomTabs = require("@react-navigation/bottom-tabs"); | ||
|
||
var BottomTabNavigationProp = Core$ReactNavigation.NavigationScreenProp; | ||
var TabBarBadge = {}; | ||
|
||
function Make(M) { | ||
var M$1 = {}; | ||
var include = Core$ReactNavigation.NavigationScreenProp(M$1); | ||
var Navigation = include; | ||
var bottomTabs = BottomTabs.createBottomTabNavigator(); | ||
var make = bottomTabs.Screen; | ||
var $$Screen = { | ||
make: make | ||
}; | ||
var make$1 = bottomTabs.Screen; | ||
var ScreenWithCallback = { | ||
make: make$1 | ||
}; | ||
var make$2 = bottomTabs.Navigator; | ||
var $$Navigator = { | ||
make: make$2 | ||
}; | ||
var make$3 = bottomTabs.Group; | ||
var Group = { | ||
make: make$3 | ||
}; | ||
return { | ||
Navigation: Navigation, | ||
bottomTabs: bottomTabs, | ||
$$Screen: $$Screen, | ||
ScreenWithCallback: ScreenWithCallback, | ||
$$Navigator: $$Navigator, | ||
Group: Group | ||
}; | ||
function Make($star) { | ||
return Interop.adaptNavigatorModule(BottomTabs.createBottomTabNavigator()); | ||
} | ||
|
||
exports.BottomTabNavigationProp = BottomTabNavigationProp; | ||
var Navigation = {}; | ||
|
||
exports.TabBarBadge = TabBarBadge; | ||
exports.Make = Make; | ||
/* @react-navigation/bottom-tabs Not a pure module */ | ||
exports.Navigation = Navigation; | ||
/* ./Interop Not a pure module */ |
Oops, something went wrong.