Skip to content

Commit 242e8c8

Browse files
authored
Fix broken links in docs (#1154)
1 parent ec50638 commit 242e8c8

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

lib/components/Keyboard/KeyboardTracking/KeyboardAwareInsetsView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import KeyboardTrackingView from './KeyboardTrackingView';
55
/**
66
* @description: Used to add an inset when a keyboard is used and might hide part of the screen.
77
*
8-
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/InputsScreen.js
8+
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/TextFieldScreen/InputsScreen.js
99
* @notes: This view is useful only for iOS.
1010
*/
1111
const KeyboardAwareInsetsView = props => (

markdowns/foundation/modifiers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ It's always important to use your margins and paddings correctly, with modifiers
7676
<View marginT-5 marginB-10>...</View>
7777
```
7878

79-
! padding and margin modifiers can also take [Spacing](https://github.com/wix/react-native-ui-lib/blob/master/src/style/spacings.js) constants.
79+
! padding and margin modifiers can also take [Spacing](https://github.com/wix/react-native-ui-lib/blob/master/src/style/spacings.ts) constants.
8080
```
8181
<View margin-s5 padding-s2>...</View>
8282
```

markdowns/getting-started/v5.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Implementation had slightly changed, please see [example screen](https://github.
4646
- Blur effect is not part of the component
4747

4848
#### TabBar
49-
Implementation had slightly changed, please see [example screen](https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/TabBarScreen.js)
49+
Implementation had slightly changed, please see [example screen](https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/TabBarScreen.tsx)
5050

5151
#### ListItem
5252
Component not supporting animation out of the box (animatable wrapper was removed)
@@ -56,7 +56,7 @@ Remove `animationProps`.
5656

5757
#### Drawer
5858
Component implementation was completely changed and using `react-native-gesture-handler` as its base infrastructure instead of `react-native-interactable`
59-
Please see [example screen](https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/interactableComponentScreens/DrawerScreen.js)
59+
Please see [example screen](https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/DrawerScreen.tsx)
6060

6161
#### Carousel
6262
Component API and implementation has changed.

src/components/animatedScanner/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import View from '../../components/view';
1212
* @description: Scanner component for progress indication
1313
* @extends: Animated.View
1414
* @gif: https://media.giphy.com/media/l49JVcxoclUXbryiA/giphy.gif
15-
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/animationScreens/CardScannerScreen.js
15+
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/CardScannerScreen.js
1616
*/
1717
export default class AnimatedScanner extends BaseComponent {
1818
static displayName = 'AnimatedScanner';

src/components/slider/ColorSliderGroup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Text from '../text';
99

1010
/**
1111
* @description: A Gradient Slider component
12-
* @example: https://github.com/wix/react-native-ui-lib/blob/feat/new_components/demo/src/screens/componentScreens/SliderScreen.js
12+
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/SliderScreen.js
1313
*/
1414
class ColorSliderGroup extends PureComponent {
1515
static displayName = 'ColorSliderGroup';

src/components/slider/GradientSlider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const GRADIENT_TYPES = {
1818

1919
/**
2020
* @description: A Gradient Slider component
21-
* @example: https://github.com/wix/react-native-ui-lib/blob/feat/new_components/demo/src/screens/componentScreens/SliderScreen.js
21+
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/SliderScreen.js
2222
*/
2323
class GradientSlider extends Component {
2424
static displayName = 'GradientSlider';

src/components/slider/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const INACTIVE_COLOR = Colors.dark60;
2323

2424
/**
2525
* @description: A Slider component
26-
* @example: https://github.com/wix/react-native-ui-lib/blob/feat/new_components/demo/src/screens/componentScreens/SliderScreen.js
26+
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/SliderScreen.js
2727
*/
2828
export default class Slider extends PureBaseComponent {
2929
static displayName = 'Slider';

src/components/stackAggregator/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const icon = require('./assets/arrow-down.png');
1919
/**
2020
* @description: Stack aggregator component
2121
* @modifiers: margin, padding
22-
* @example: https://github.com/wix/react-native-ui-lib/blob/feat/StackAggregator/demo/src/screens/componentScreens/StackAggregatorScreen.js
22+
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/StackAggregatorScreen.js
2323
*/
2424
export default class StackAggregator extends PureBaseComponent {
2525
static displayName = 'StackAggregator';

src/components/stepper/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {PureBaseComponent} from '../../commons';
99
/**
1010
* @description: Stepper component with increase and decrease buttons
1111
* @gif: https://media.giphy.com/media/3oFzm47bk0v4WV15O8/giphy.gif
12-
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/FormScreen.js
12+
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/StepperScreen.js
1313
*/
1414
export default class Stepper extends PureBaseComponent {
1515
static displayName = 'Stepper';

0 commit comments

Comments
 (0)