Sha256: 058235b09d492d0e275a9992e98496c26272c7505faf0fd65de0d37b093d2e49

Contents?: true

Size: 1.4 KB

Versions: 507

Compression:

Stored size: 1.4 KB

Contents

import React from 'react'
import classnames from 'classnames'
import { buildAriaProps, buildCss, buildDataProps, buildHtmlProps } from '../utilities/props'
import { globalProps } from '../utilities/globalProps'

type ProgressStepProps = {
  aria?: { [key: string]: string },
  className?: string,
  data?: { [key: string]: string },
  htmlOptions?: {[key: string]: string | number | boolean | (() => void)},
  id?: string,
  children?: React.ReactChild[] | React.ReactChild,
  orientation?: "horizontal" | "vertical",
  icon?: boolean,
  showIcon?: boolean,
  variant?: string,
  color?: string,
}

const ProgressStep = (props: ProgressStepProps): React.ReactElement => {
  const {
    aria = {},
    className,
    children,
    color,
    data = {},
    orientation = 'horizontal',
    htmlOptions = {},
    icon = false,
    showIcon = false,
    variant,
  } = props

  const ariaProps = buildAriaProps(aria)
  const dataProps = buildDataProps(data)
  const htmlProps = buildHtmlProps(htmlOptions)
  const iconStyle = icon === true || showIcon === true ? 'icon' : ''
  const progressStepCss = buildCss(
    'pb_progress_step_kit',
    orientation,
    iconStyle,
    variant,
    color,
  )

  return (
    <ul
        {...ariaProps}
        {...dataProps}
        {...htmlProps}
        className={classnames(progressStepCss, globalProps(props), className)}
    >
      {children}
    </ul>
  )
}

export default ProgressStep

Version data entries

507 entries across 507 versions & 1 rubygems

Version Path
playbook_ui-14.9.0.pre.rc.9 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.8.0.pre.alpha.PLAY1680newwidthprop4661 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.8.0.pre.alpha.PLAY1658tanstackbump4657 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.8.0.pre.alpha.PLAY1649rolloutheightglobalprops4635 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.9.0.pre.rc.8 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.8.0.pre.alpha.PLAY1598floatinguiupgrade4617 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.9.0.pre.rc.7 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.9.0.pre.rc.6 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.9.0.pre.rc.5 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.8.0.pre.alpha.pbntr661createstickyleftprop4612 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.8.0.pre.alpha.play1648heightglobalprops4606 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.9.0.pre.rc.4 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.9.0.pre.rc.3 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.9.0.pre.rc.2 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.8.0.pre.alpha.revert3916revert3893PBNTR667railstypeaheadformintegration4567 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.8.0.pre.alpha.revert3916revert3893PBNTR667railstypeaheadformintegration4565 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.8.0.pre.alpha.PLAY1598floatinguiupgrade4563 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.8.0.pre.alpha.play1648heightglobalprops4559 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.9.0.pre.rc.1 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-14.8.0.pre.alpha.PLAY16254545 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx