Sha256: 2eb4d4b066524e2ea012c35f06e61766913d8048d455f6940e4e068c4fcb1090
Contents?: true
Size: 1.62 KB
Versions: 1
Compression:
Stored size: 1.62 KB
Contents
import React from 'react' import classnames from 'classnames' import { buildAriaProps, buildCss, buildDataProps, buildHtmlProps } from '../utilities/props' import { GlobalProps, globalProps } from '../utilities/globalProps' import TimelineItem from './_item' import { TimelineStep, TimelineLabel, TimelineDetail, } from './subcomponents' type TimelineProps = { aria?: { [key: string]: string }, children?: React.ReactChild[] | React.ReactChild, className?: string, data?: { [key: string]: string }, htmlOptions?: {[key: string]: string | number | boolean | (() => void)}, id?: string, orientation?: string, showDate?: boolean, item_gap?: 'xs' | 'sm' | 'md' | 'lg' | 'none', } & GlobalProps const Timeline = ({ aria = {}, className, children, data = {}, htmlOptions = {}, id, orientation = 'horizontal', showDate = false, item_gap = 'none', ...props }: TimelineProps): React.ReactElement => { const ariaProps = buildAriaProps(aria) const dataProps = buildDataProps(data) const htmlProps = buildHtmlProps(htmlOptions) const dateStyle = showDate === true ? '_with_date' : '' const itemGapStyle = item_gap === 'none' ? '' : `gap_${item_gap}` const timelineCss = buildCss('pb_timeline_kit', `${orientation}`, dateStyle, itemGapStyle) return ( <div {...ariaProps} {...dataProps} {...htmlProps} className={classnames(timelineCss, globalProps(props), className)} id={id} > {children} </div> ) } Timeline.Item = TimelineItem Timeline.Step = TimelineStep Timeline.Label = TimelineLabel Timeline.Detail = TimelineDetail export default Timeline
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
playbook_ui-14.10.0.pre.alpha.play16825244 | app/pb_kits/playbook/pb_timeline/_timeline.tsx |