0.1.4 • Published 5 years ago

@traveloka/prop-types v0.1.4

Weekly downloads
549
License
MIT
Repository
github
Last release
5 years ago

prop-types

CircleCI codecov

Custom prop-types used in Traveloka project for react prop validation that can't be covered using compile-time typecheck (such as Flow/Typescript)

API

ElementWithProps

Used to validate certain prop to equal react element with predefined props

Example:

import { ElementWithProps } from '@traveloka/prop-types';

const B = () => null;
const A = () => null;

A.propTypes = {
  b: ElementWithProps(B, { x: 'y', other: PropTypes.string })
}

// fail
<A b={<B />} />
<A b={<B x='x' />} />
<A b={<B y='x' />} />

// pass
<A b={<B x='y' />} />
<A b={<B x='y' other='any' />} />

LICENSE

MIT

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago