Skip to content

Commit c916b4d

Browse files
committed
update gif lings for ActionBar and KeyboardTrackingView
1 parent 07c9fda commit c916b4d

File tree

3 files changed

+7
-13
lines changed

3 files changed

+7
-13
lines changed

generatedTypes/components/actionBar/index.d.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
import React from 'react';
22
import { ViewStyle } from 'react-native';
33
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-
*/
104
export declare type ActionBarProps = {
115
/**
126
* action bar height

lib/components/Keyboard/KeyboardTracking/KeyboardTrackingView.ios.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const KeyboardTrackingViewTempManager = NativeModules.KeyboardTrackingViewTempMa
1515
*
1616
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/nativeComponentScreens/KeyboardTrackingViewScreen.js
1717
* @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
1819
*/
1920
class KeyboardTrackingView extends PureComponent {
2021
static displayName = 'KeyboardTrackingView';

src/components/actionBar/index.tsx

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@ import {asBaseComponent} from '../../commons/new';
66
import View from '../view';
77
import Button, {ButtonProps} from '../button';
88

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-
169
export type ActionBarProps = {
1710
/**
1811
* action bar height
@@ -44,6 +37,12 @@ export type ActionBarProps = {
4437
style?: ViewStyle;
4538
};
4639

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+
*/
4746
class ActionBar extends Component<ActionBarProps> {
4847
static displayName = 'ActionBar';
4948

0 commit comments

Comments
 (0)