Sha256: 058235b09d492d0e275a9992e98496c26272c7505faf0fd65de0d37b093d2e49

Contents?: true

Size: 1.4 KB

Versions: 644

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

644 entries across 644 versions & 1 rubygems

Version Path
playbook_ui-13.21.0.pre.alpha.PLAY120322465 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.21.0.pre.alpha.pbntr220improveexpansionspeed2451 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.21.0.pre.alpha.PBNTR224letuserresetrowexpansion2441 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.21.0.pre.alpha.PBNTR225advancedtablefeedback2438 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.21.0.pre.alpha.PBNTR238DatePickerYearBug2436 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.21.0.pre.alpha.pbntr220improveexpansionspeed2431 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.21.0.pre.alpha.pbntr220improveexpansionspeed2415 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.20.0.pre.alpha.play1247htmloptions2404 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.20.0.pre.alpha.play1247htmloptions2403 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.20.0.pre.alpha.PLAY12572402 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.21.0 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.20.0.pre.alpha.PBNTR225advancedtablefeedback2375 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.19.0.pre.alpha.PBNTR200addadvancedtablekitdarkmodestyles2346 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.19.0.pre.alpha.play1174fixconfimationtoastmobilebug2345 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.19.0.pre.alpha.play1174fixconfimationtoastmobilebug2342 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.19.0.pre.alpha.play1186collapsiblenaviconcolorbug2321 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.19.0.pre.alpha.PBNTR211tablekitsubcomponentsreact2318 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.19.0.pre.alpha.play1174fixconfimationtoastmobilebug2306 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.19.0.pre.alpha.play1174fixconfimationtoastmobilebug2305 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx
playbook_ui-13.20.0 app/pb_kits/playbook/pb_progress_step/_progress_step.tsx