all files / src/ ctx-types.js

100% Statements 79/79
100% Branches 35/35
100% Functions 17/17
100% Lines 4/4
26 statements, 11 functions, 23 branches Ignored     
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24                                         
/**
 * Proptypes used for the context
 */
import { PropTypes as PT } from 'react';
 
export const contextTypes = {
    offset: PT.number,
    events: PT.object,
    animate: PT.bool,
    container: PT.object
};
 
export const defaultConfig = {
    offset: 0,
    events: {},
    animate: true,
    container: undefined
};
 
export default {
    contextTypes,
    defaultConfig
};