File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ export default App = () => {
85
85
| ** closeRootStyle** | ` Object ` | Use this prop to override close button background style | ` {} ` |
86
86
| ** closeIconStyle** | ` Object ` | Use this prop to override close button icon style | ` {} ` |
87
87
| ** barStyle** | ` Object ` | Use this prop to override bar style | ` {} ` |
88
+ | ** smallPanelHeight** | ` Object ` | Use this prop to override the small panel default height | |
88
89
| ** closeOnTouchOutside** | ` bool ` | Set true if you want to close panel by touching outside | ` false ` |
89
90
| ** allowTouchOutside** | ` bool ` | Set true if you want to make toucable outside of panel | ` false ` |
90
91
| ** noBar** | ` bool ` | Set true if you want to remove gray bar | ` false ` |
Original file line number Diff line number Diff line change @@ -74,6 +74,11 @@ declare interface SwipeablePanelProps extends React.Props<SwipeablePanel> {
74
74
*/
75
75
barStyle ?: object ;
76
76
77
+ /**
78
+ * Use this prop to override the small panel default height
79
+ */
80
+ smallPanelHeight ?: number ;
81
+
77
82
/**
78
83
* Set true if you want to make toucable outside of panel
79
84
*/
Original file line number Diff line number Diff line change @@ -72,6 +72,11 @@ declare interface SwipeablePanelProps extends React.Props<SwipeablePanel> {
72
72
*/
73
73
barStyle ?: object ;
74
74
75
+ /**
76
+ * Use this prop to override the small panel default height
77
+ */
78
+ smallPanelHeight ?: number ;
79
+
75
80
/**
76
81
* Set true if you want to make toucable outside of panel
77
82
*/
You can’t perform that action at this time.
0 commit comments