Skip to content

Fix broken links in docs #1154

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import KeyboardTrackingView from './KeyboardTrackingView';
/**
* @description: Used to add an inset when a keyboard is used and might hide part of the screen.
*
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/InputsScreen.js
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/TextFieldScreen/InputsScreen.js
* @notes: This view is useful only for iOS.
*/
const KeyboardAwareInsetsView = props => (
Expand Down
2 changes: 1 addition & 1 deletion markdowns/foundation/modifiers.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ It's always important to use your margins and paddings correctly, with modifiers
<View marginT-5 marginB-10>...</View>
```

! padding and margin modifiers can also take [Spacing](https://github.com/wix/react-native-ui-lib/blob/master/src/style/spacings.js) constants.
! padding and margin modifiers can also take [Spacing](https://github.com/wix/react-native-ui-lib/blob/master/src/style/spacings.ts) constants.
```
<View margin-s5 padding-s2>...</View>
```
Expand Down
4 changes: 2 additions & 2 deletions markdowns/getting-started/v5.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Implementation had slightly changed, please see [example screen](https://github.
- Blur effect is not part of the component

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

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

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

#### Carousel
Component API and implementation has changed.
Expand Down
2 changes: 1 addition & 1 deletion src/components/animatedScanner/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import View from '../../components/view';
* @description: Scanner component for progress indication
* @extends: Animated.View
* @gif: https://media.giphy.com/media/l49JVcxoclUXbryiA/giphy.gif
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/animationScreens/CardScannerScreen.js
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/CardScannerScreen.js
*/
export default class AnimatedScanner extends BaseComponent {
static displayName = 'AnimatedScanner';
Expand Down
2 changes: 1 addition & 1 deletion src/components/slider/ColorSliderGroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Text from '../text';

/**
* @description: A Gradient Slider component
* @example: https://github.com/wix/react-native-ui-lib/blob/feat/new_components/demo/src/screens/componentScreens/SliderScreen.js
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/SliderScreen.js
*/
class ColorSliderGroup extends PureComponent {
static displayName = 'ColorSliderGroup';
Expand Down
2 changes: 1 addition & 1 deletion src/components/slider/GradientSlider.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const GRADIENT_TYPES = {

/**
* @description: A Gradient Slider component
* @example: https://github.com/wix/react-native-ui-lib/blob/feat/new_components/demo/src/screens/componentScreens/SliderScreen.js
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/SliderScreen.js
*/
class GradientSlider extends Component {
static displayName = 'GradientSlider';
Expand Down
2 changes: 1 addition & 1 deletion src/components/slider/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const INACTIVE_COLOR = Colors.dark60;

/**
* @description: A Slider component
* @example: https://github.com/wix/react-native-ui-lib/blob/feat/new_components/demo/src/screens/componentScreens/SliderScreen.js
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/SliderScreen.js
*/
export default class Slider extends PureBaseComponent {
static displayName = 'Slider';
Expand Down
2 changes: 1 addition & 1 deletion src/components/stackAggregator/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const icon = require('./assets/arrow-down.png');
/**
* @description: Stack aggregator component
* @modifiers: margin, padding
* @example: https://github.com/wix/react-native-ui-lib/blob/feat/StackAggregator/demo/src/screens/componentScreens/StackAggregatorScreen.js
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/StackAggregatorScreen.js
*/
export default class StackAggregator extends PureBaseComponent {
static displayName = 'StackAggregator';
Expand Down
2 changes: 1 addition & 1 deletion src/components/stepper/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {PureBaseComponent} from '../../commons';
/**
* @description: Stepper component with increase and decrease buttons
* @gif: https://media.giphy.com/media/3oFzm47bk0v4WV15O8/giphy.gif
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/FormScreen.js
* @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/StepperScreen.js
*/
export default class Stepper extends PureBaseComponent {
static displayName = 'Stepper';
Expand Down