UNPKG

grommet

Version:

focus on the essential experience

52 lines (51 loc) 2.63 kB
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } import { describe, PropTypes } from 'react-desc'; import { genericProps, getAvailableAtBadge, themeDocUtils } from '../../utils'; export var doc = function doc(Carousel) { var DocumentedCarousel = describe(Carousel).availableAt(getAvailableAtBadge('Carousel')).description("A carousel that cycles through children. Child components\n would typically be Images. It is the caller's responsibility to ensure\n that all children are the same size.").usage("import { Carousel } from 'grommet';\n<Carousel />").intrinsicElement('div'); DocumentedCarousel.propTypes = _extends({}, genericProps, { fill: PropTypes.bool.description("Whether to expand to fill\n all of the available width and height in the parent container."), play: PropTypes.number.description("If specified, the number of\n milliseconds between automatically transitioning to the next child. It\n will loop through all children indefinitely.") }); return DocumentedCarousel; }; export var themeDoc = _extends({ 'carousel.icons.next': { description: 'The icon to use for the next image navigation control.', type: 'element', defaultValue: '<Next />' }, 'carousel.animation.duration': { description: 'The duration of the Carousel animation.', type: 'number', defaultValue: 1000 }, 'carousel.icons.previous': { description: 'The icon to use for the previous image navigation control.', type: 'element', defaultValue: '<Previous />' }, 'carousel.icons.current': { description: 'The icon to use on the middle navigation control. One icon per carousel image.', type: 'element', defaultValue: '<Next />' }, 'carousel.icons.color': { description: 'The color used for Carousel icons.', type: "string | { 'dark': string, 'light': string }", defaultValue: undefined }, 'carousel.disabled.icons.color': { description: 'The color used for disabled Carousel icons.', type: "string | { 'dark': string, 'light': string }", defaultValue: undefined }, 'global.colors.icon': { description: 'The color used for Carousel icons.', type: "string | { 'dark': string, 'light': string }", defaultValue: { dark: '#f8f8f8', light: '#666666' } } }, themeDocUtils.edgeStyle('The possible sizes for margin.'));