Sha256: b561bee121e6d0148d2bc5aadfd023f9d4ae4868ac1ee9859d50777cf177faf4

Contents?: true

Size: 1.17 KB

Versions: 644

Compression:

Stored size: 1.17 KB

Contents

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

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

import Icon from '../pb_icon/_icon'

type ProgressStepItemProps = {
  className?: string,
  data?: { [key: string]: string },
  status?: "complete" | "active" | "inactive" | "hidden",
  children?: React.ReactNode | React.ReactNode[],
  htmlOptions?: {[key: string]: string | number | boolean | (() => void)},
  icon?: string,
}

const ProgressStepItem = (props: ProgressStepItemProps): React.ReactElement => {
  const {
    className,
    data = {},
    status = 'inactive',
    children,
    htmlOptions = {},
    icon = 'check',
  } = props

  const progressStepItem = buildCss('pb_progress_step_item', status)
   const dataProps = buildDataProps(data)
   const htmlProps = buildHtmlProps(htmlOptions)

  return (
    <li 
        {...dataProps}
        {...htmlProps}
        className={classnames(progressStepItem, className)}
    >
      <div className="box">
        <div className="circle">
          <Icon icon={icon} />
        </div>
        <div className="content">{children}</div>
      </div>
    </li>
  )
}

export default ProgressStepItem

Version data entries

644 entries across 644 versions & 1 rubygems

Version Path
playbook_ui-13.25.0 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.24.0.pre.alpha.play1305drycontenttag2689 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.24.0.pre.alpha.PBNTR261NewKitDropdown2681 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.24.0.pre.alpha.PLAY1181circleiconkitfixsizingerrorglobalspacingprops2675 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.24.0.pre.alpha.PLAY998backgroundkitremoveemptyinlinline2666 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.23.0.pre.alpha.PLAY1284investigation2657 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.24.0 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.22.0.pre.alpha.pbntr254barchartnegativenumber2640 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.22.0.pre.alpha.PLAY1297updatetextstyles2636 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.22.0.pre.alpha.playbookgemspecrailsversion2608 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.23.0 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.21.0.pre.alpha.PLAY12582531 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.21.0.pre.alpha.PLAY12582516 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.21.0.pre.alpha.PLAY12582515 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.21.0.pre.alpha.PLAY12582514 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.22.0 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.21.0.pre.alpha.PBNTR243globalpositioningpropinset2504 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.21.0.pre.alpha.PLAY12652489 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.21.0.pre.alpha.PLAY12582474 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx
playbook_ui-13.21.0.pre.alpha.PBNTR224letuserresetrowexpansion2466 app/pb_kits/playbook/pb_progress_step/_progress_step_item.tsx