File tree Expand file tree Collapse file tree 3 files changed +7
-13
lines changed
generatedTypes/components/actionBar
lib/components/Keyboard/KeyboardTracking Expand file tree Collapse file tree 3 files changed +7
-13
lines changed Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import { ViewStyle } from 'react-native' ;
3
3
import { ButtonProps } from '../button' ;
4
- /**
5
- * @description : Quick actions bar, each action support Button component props
6
- * @modifiers : margin, padding
7
- * @gif : https://media.giphy.com/media/xULW8DwxkniFDMw7TO/giphy.gif
8
- * @example : https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/ActionBarScreen.tsx
9
- */
10
4
export declare type ActionBarProps = {
11
5
/**
12
6
* action bar height
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ const KeyboardTrackingViewTempManager = NativeModules.KeyboardTrackingViewTempMa
15
15
*
16
16
* @example : https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/nativeComponentScreens/KeyboardTrackingViewScreen.js
17
17
* @notes : This view is useful only for iOS.
18
+ * @gif : https://github.com/wix/react-native-ui-lib/blob/master/demo/showcase/KeyboardTrackingView/KeyboardTrackingView.gif?raw=true
18
19
*/
19
20
class KeyboardTrackingView extends PureComponent {
20
21
static displayName = 'KeyboardTrackingView' ;
Original file line number Diff line number Diff line change @@ -6,13 +6,6 @@ import {asBaseComponent} from '../../commons/new';
6
6
import View from '../view' ;
7
7
import Button , { ButtonProps } from '../button' ;
8
8
9
- /**
10
- * @description : Quick actions bar, each action support Button component props
11
- * @modifiers : margin, padding
12
- * @gif : https://media.giphy.com/media/xULW8DwxkniFDMw7TO/giphy.gif
13
- * @example : https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/ActionBarScreen.tsx
14
- */
15
-
16
9
export type ActionBarProps = {
17
10
/**
18
11
* action bar height
@@ -44,6 +37,12 @@ export type ActionBarProps = {
44
37
style ?: ViewStyle ;
45
38
} ;
46
39
40
+ /**
41
+ * @description : Quick actions bar, each action support Button component props
42
+ * @modifiers : margin, padding
43
+ * @gif : https://github.com/wix/react-native-ui-lib/blob/master/demo/showcase/ActionBar/ActionBar.gif?raw=true
44
+ * @example : https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/ActionBarScreen.tsx
45
+ */
47
46
class ActionBar extends Component < ActionBarProps > {
48
47
static displayName = 'ActionBar' ;
49
48
You can’t perform that action at this time.
0 commit comments