File tree Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ export default App = () => {
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
88
| ** barContainerStyle** | ` Object ` | Use this prop to override bar container style | ` {} ` |
89
+ | ** smallPanelHeight** | ` Object ` | Use this prop to override the small panel default height | |
89
90
| ** closeOnTouchOutside** | ` bool ` | Set true if you want to close panel by touching outside | ` false ` |
90
91
| ** allowTouchOutside** | ` bool ` | Set true if you want to make toucable outside of panel | ` false ` |
91
92
| ** noBar** | ` bool ` | Set true if you want to remove gray bar | ` false ` |
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ declare interface SwipeablePanelProps extends React.Props<SwipeablePanel> {
24
24
*/
25
25
fullWidth ?: boolean ;
26
26
27
+
28
+
27
29
/**
28
30
* Set true if you want to disable black background opacity
29
31
*/
@@ -79,6 +81,11 @@ declare interface SwipeablePanelProps extends React.Props<SwipeablePanel> {
79
81
*/
80
82
barContainerStyle ?: object ;
81
83
84
+ /**
85
+ * Use this prop to override the small panel default height
86
+ */
87
+ smallPanelHeight ?: number ;
88
+
82
89
/**
83
90
* Set true if you want to make toucable outside of panel
84
91
*/
Original file line number Diff line number Diff line change @@ -77,6 +77,11 @@ declare interface SwipeablePanelProps extends React.Props<SwipeablePanel> {
77
77
*/
78
78
barContainerStyle ?: object ;
79
79
80
+ /**
81
+ * Use this prop to override the small panel default height
82
+ */
83
+ smallPanelHeight ?: number ;
84
+
80
85
/**
81
86
* Set true if you want to make toucable outside of panel
82
87
*/
You can’t perform that action at this time.
0 commit comments