Sha256: c7db567eaaaea15a9dead0251a035aed95583dfda9d9df6587dfb35b92620be1

Contents?: true

Size: 956 Bytes

Versions: 216

Compression:

Stored size: 956 Bytes

Contents

/* @flow */

import React from 'react'
import classnames from 'classnames'

import { buildAriaProps, buildCss, buildDataProps } from '../utilities/props'

import TimelineItem from './_item.jsx'

type TimelineProps = {
  aria?: object,
  children?: array<React.ReactChild>,
  className?: string,
  data?: string,
  id?: string,
  orientation?: string,
  showDate?: boolean,
}

const Timeline = ({
  aria = {},
  className,
  children,
  data = {},
  orientation = 'horizontal',
  showDate = false,
}: TimelineProps) => {
  const ariaProps = buildAriaProps(aria)
  const dataProps = buildDataProps(data)
  const dateStyle = showDate === true ? '_with_date' : ''
  const timelineCss = buildCss('pb_timeline_kit', `_${orientation}`, dateStyle)
  return (
    <div
        {...ariaProps}
        {...dataProps}
        className={classnames(timelineCss, className)}
    >
      {children}
    </div>
  )
}

Timeline.Item = TimelineItem

export default Timeline

Version data entries

216 entries across 216 versions & 1 rubygems

Version Path
playbook_ui-12.16.0.pre.alpha.tooltippositionprop566 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.16.0.pre.alpha.PLAY693tooltipwrongbg558 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.16.0.pre.alpha.PLAY693tooltipwrongbg547 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.16.0.pre.alpha.PLAY693tooltipwrongbg532 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.16.0.pre.alpha.lightboxcurrentphotoprop531 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.16.0.pre.alpha.tiptaptestingpart1528 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.16.0 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.15.0 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.14.0.pre.alpha.lightboxcurrentphotoprop460 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.14.0.pre.alpha.PLAY603datepickerquickpickinputpresetdropdown457 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.14.0.pre.alpha.PLAY603datepickerquickpickinputpresetdropdown456 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.14.0 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.13.0.pre.alpha.PLAY693tooltipwrongbg440 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.13.0.pre.alpha.addingProductTokens439 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.13.0.pre.alpha.PLAY705phonenumberkit438 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.13.0 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.12.0.pre.alpha.PLAY697sandpacklayoutstyles413 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.12.0 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.11.0 app/pb_kits/playbook/pb_timeline/_timeline.jsx
playbook_ui-12.10.0.pre.alpha.PLAY705phonenumberreturn372 app/pb_kits/playbook/pb_timeline/_timeline.jsx