@react-navigation/drawer 7.0.0-rc.21 → 7.0.0-rc.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/lib/commonjs/views/DrawerItem.js +3 -0
- package/lib/commonjs/views/DrawerItem.js.map +1 -1
- package/lib/commonjs/views/DrawerView.js +4 -3
- package/lib/commonjs/views/DrawerView.js.map +1 -1
- package/lib/module/index.js +2 -0
- package/lib/module/index.js.map +1 -1
- package/lib/module/navigators/createDrawerNavigator.js +2 -0
- package/lib/module/navigators/createDrawerNavigator.js.map +1 -1
- package/lib/module/types.js +2 -0
- package/lib/module/utils/DrawerPositionContext.js +2 -0
- package/lib/module/utils/DrawerPositionContext.js.map +1 -1
- package/lib/module/utils/DrawerStatusContext.js +2 -0
- package/lib/module/utils/DrawerStatusContext.js.map +1 -1
- package/lib/module/utils/addCancelListener.js +2 -0
- package/lib/module/utils/addCancelListener.js.map +1 -1
- package/lib/module/utils/addCancelListener.native.js +2 -0
- package/lib/module/utils/addCancelListener.native.js.map +1 -1
- package/lib/module/utils/getDrawerStatusFromState.js +2 -0
- package/lib/module/utils/getDrawerStatusFromState.js.map +1 -1
- package/lib/module/utils/useDrawerStatus.js +2 -0
- package/lib/module/utils/useDrawerStatus.js.map +1 -1
- package/lib/module/views/DrawerContent.js +2 -0
- package/lib/module/views/DrawerContent.js.map +1 -1
- package/lib/module/views/DrawerContentScrollView.js +2 -0
- package/lib/module/views/DrawerContentScrollView.js.map +1 -1
- package/lib/module/views/DrawerItem.js +5 -0
- package/lib/module/views/DrawerItem.js.map +1 -1
- package/lib/module/views/DrawerItemList.js +2 -0
- package/lib/module/views/DrawerItemList.js.map +1 -1
- package/lib/module/views/DrawerToggleButton.js +2 -0
- package/lib/module/views/DrawerToggleButton.js.map +1 -1
- package/lib/module/views/DrawerView.js +6 -3
- package/lib/module/views/DrawerView.js.map +1 -1
- package/lib/module/views/ScreenFallback.js +2 -0
- package/lib/module/views/ScreenFallback.js.map +1 -1
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
- package/lib/typescript/{src → commonjs/src}/navigators/createDrawerNavigator.d.ts +2 -2
- package/lib/typescript/commonjs/src/navigators/createDrawerNavigator.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/types.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/DrawerPositionContext.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/DrawerStatusContext.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/addCancelListener.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/addCancelListener.native.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/getDrawerStatusFromState.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/utils/useDrawerStatus.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/views/DrawerContent.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/views/DrawerContentScrollView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/views/DrawerItem.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/views/DrawerItemList.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/views/DrawerToggleButton.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/views/DrawerView.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/views/ScreenFallback.d.ts.map +1 -0
- package/lib/typescript/commonjs/tsconfig.build.tsbuildinfo +1 -0
- package/lib/typescript/module/package.json +1 -0
- package/lib/typescript/module/src/index.d.ts +25 -0
- package/lib/typescript/module/src/index.d.ts.map +1 -0
- package/lib/typescript/module/src/navigators/createDrawerNavigator.d.ts +17 -0
- package/lib/typescript/module/src/navigators/createDrawerNavigator.d.ts.map +1 -0
- package/lib/typescript/module/src/types.d.ts +279 -0
- package/lib/typescript/module/src/types.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/DrawerPositionContext.d.ts +3 -0
- package/lib/typescript/module/src/utils/DrawerPositionContext.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/DrawerStatusContext.d.ts +4 -0
- package/lib/typescript/module/src/utils/DrawerStatusContext.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/addCancelListener.d.ts +2 -0
- package/lib/typescript/module/src/utils/addCancelListener.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/addCancelListener.native.d.ts +2 -0
- package/lib/typescript/module/src/utils/addCancelListener.native.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/getDrawerStatusFromState.d.ts +3 -0
- package/lib/typescript/module/src/utils/getDrawerStatusFromState.d.ts.map +1 -0
- package/lib/typescript/module/src/utils/useDrawerStatus.d.ts +7 -0
- package/lib/typescript/module/src/utils/useDrawerStatus.d.ts.map +1 -0
- package/lib/typescript/module/src/views/DrawerContent.d.ts +3 -0
- package/lib/typescript/module/src/views/DrawerContent.d.ts.map +1 -0
- package/lib/typescript/module/src/views/DrawerContentScrollView.d.ts +6 -0
- package/lib/typescript/module/src/views/DrawerContentScrollView.d.ts.map +1 -0
- package/lib/typescript/module/src/views/DrawerItem.d.ts +92 -0
- package/lib/typescript/module/src/views/DrawerItem.d.ts.map +1 -0
- package/lib/typescript/module/src/views/DrawerItemList.d.ts +14 -0
- package/lib/typescript/module/src/views/DrawerItemList.d.ts.map +1 -0
- package/lib/typescript/module/src/views/DrawerToggleButton.d.ts +9 -0
- package/lib/typescript/module/src/views/DrawerToggleButton.d.ts.map +1 -0
- package/lib/typescript/module/src/views/DrawerView.d.ts +11 -0
- package/lib/typescript/module/src/views/DrawerView.d.ts.map +1 -0
- package/lib/typescript/module/src/views/ScreenFallback.d.ts +17 -0
- package/lib/typescript/module/src/views/ScreenFallback.d.ts.map +1 -0
- package/lib/typescript/module/tsconfig.build.tsbuildinfo +1 -0
- package/package.json +19 -12
- package/src/navigators/createDrawerNavigator.tsx +4 -4
- package/src/views/DrawerItem.tsx +3 -0
- package/src/views/DrawerView.tsx +5 -3
- package/lib/commonjs/views/assets/toggle-drawer-icon@1.5x.android.png +0 -0
- package/lib/commonjs/views/assets/toggle-drawer-icon@1.5x.ios.png +0 -0
- package/lib/module/views/assets/toggle-drawer-icon@1.5x.android.png +0 -0
- package/lib/module/views/assets/toggle-drawer-icon@1.5x.ios.png +0 -0
- package/lib/typescript/src/index.d.ts.map +0 -1
- package/lib/typescript/src/navigators/createDrawerNavigator.d.ts.map +0 -1
- package/lib/typescript/src/types.d.ts.map +0 -1
- package/lib/typescript/src/utils/DrawerPositionContext.d.ts.map +0 -1
- package/lib/typescript/src/utils/DrawerStatusContext.d.ts.map +0 -1
- package/lib/typescript/src/utils/addCancelListener.d.ts.map +0 -1
- package/lib/typescript/src/utils/addCancelListener.native.d.ts.map +0 -1
- package/lib/typescript/src/utils/getDrawerStatusFromState.d.ts.map +0 -1
- package/lib/typescript/src/utils/useDrawerStatus.d.ts.map +0 -1
- package/lib/typescript/src/views/DrawerContent.d.ts.map +0 -1
- package/lib/typescript/src/views/DrawerContentScrollView.d.ts.map +0 -1
- package/lib/typescript/src/views/DrawerItem.d.ts.map +0 -1
- package/lib/typescript/src/views/DrawerItemList.d.ts.map +0 -1
- package/lib/typescript/src/views/DrawerToggleButton.d.ts.map +0 -1
- package/lib/typescript/src/views/DrawerView.d.ts.map +0 -1
- package/lib/typescript/src/views/ScreenFallback.d.ts.map +0 -1
- package/src/views/assets/toggle-drawer-icon@1.5x.android.png +0 -0
- package/src/views/assets/toggle-drawer-icon@1.5x.ios.png +0 -0
- /package/lib/typescript/{src → commonjs/src}/index.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/types.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/utils/DrawerPositionContext.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/utils/DrawerStatusContext.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/utils/addCancelListener.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/utils/addCancelListener.native.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/utils/getDrawerStatusFromState.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/utils/useDrawerStatus.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/views/DrawerContent.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/views/DrawerContentScrollView.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/views/DrawerItem.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/views/DrawerItemList.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/views/DrawerToggleButton.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/views/DrawerView.d.ts +0 -0
- /package/lib/typescript/{src → commonjs/src}/views/ScreenFallback.d.ts +0 -0
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|