Sha256: 043fddced517c95c75163e2e5f457a552c539f86ee74c5b1188328ae12a36ab0

Contents?: true

Size: 903 Bytes

Versions: 223

Compression:

Stored size: 903 Bytes

Contents

import React from 'react'
import classnames from 'classnames'
import { buildHtmlProps } from '../../utilities/props'
import { globalProps, GlobalProps } from "../../utilities/globalProps"
import DateStacked from '../../pb_date_stacked/_date_stacked'

type TimelineLabelProps = {
  date?: Date,
  children?: React.ReactNode,
  className?: string,
  htmlOptions?: { [key: string]: any },
} & GlobalProps

const TimelineLabel: React.FC<TimelineLabelProps> = ({
  date,
  children,
  className,
  htmlOptions = {},
  ...props
}) => {
  const htmlProps = buildHtmlProps(htmlOptions)
  return (
    <div
        {...htmlProps}
        className={classnames('pb_timeline_item_left_block', globalProps(props), className)}
    >
      {children}
      {date && (
        <DateStacked align="center"
            date={date}
            size="sm"
        />
      )}
    </div>
  )
}

export default TimelineLabel

Version data entries

223 entries across 223 versions & 1 rubygems

Version Path
playbook_ui-14.12.0.pre.alpha.play1790darkaudittable5802 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.12.0.pre.alpha.play1752updatecontenttag5801 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.13.0.pre.rc.6 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.13.0.pre.rc.5 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.12.0.pre.alpha.PLAY1602lightboxoverlapnitrobug5781 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.13.0.pre.rc.4 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.12.0.pre.alpha.playrailsinputmaskissue5775 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.12.0.pre.alpha.PBNTR456fixedconftoastrailsautoclose5757 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.12.0.pre.alpha.PBNTR456fixedconftoastrailsautoclose5754 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.12.0.pre.alpha.PLAY1602lightboxoverlapnitrobugzindextoken5751 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.12.0.pre.alpha.PBNTR456fixedconftoastrailsautoclose5738 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.13.0.pre.rc.3 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.12.0.pre.alpha.PLAY1865reactdatepickerreinitializingbug5732 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.12.0.pre.alpha.PBNTR456fixedconftoastrailsautoclose5728 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.12.0.pre.alpha.play1862buttondisabledlinkbug5716 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.12.0.pre.alpha.play1862buttondisabledlinkbug5714 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.13.0.pre.rc.2 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.13.0.pre.rc.1 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.13.0.pre.rc.0 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx
playbook_ui-14.12.0.pre.alpha.advancedtablealignmentfixes5693 app/pb_kits/playbook/pb_timeline/subcomponents/Label.tsx