Sha256: 5869246978b67ab1c290c8177305fa9ce6d122e3419df28476bf48c354699df7

Contents?: true

Size: 1.11 KB

Versions: 633

Compression:

Stored size: 1.11 KB

Contents

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

type FormGroupProps = {
  aria?: {[key: string]: string},
  children?: Node,
  className?: string,
  data?: GenericObject,
  fullWidth?: boolean,
  htmlOptions?: {[key: string]: string | number | boolean | (() => void)},
  id?: string,
}

const FormGroup = (props: FormGroupProps): React.ReactElement => {
  const {
    aria = {},
    className,
    data = {},
    fullWidth = false,
    htmlOptions = {},
    id,
    children,
  } = props

  const ariaProps = buildAriaProps(aria)
  const dataProps = buildDataProps(data)
  const htmlProps = buildHtmlProps(htmlOptions)
  const classes = classnames(buildCss('pb_form_group_kit', { full: fullWidth }), globalProps(props), className)
  return (
    <div
        {...ariaProps}
        {...dataProps}
        {...htmlProps}
        className={classes}
        id={id}
    >
      {children}
    </div>
  )
}

export default FormGroup

Version data entries

633 entries across 633 versions & 1 rubygems

Version Path
playbook_ui-14.11.1.pre.alpha.PLAY17445539 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.11.1.pre.alpha.PBNTR798datepickerturbo5537 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.11.1.pre.alpha.pbntr703collapsiblerowsrails5536 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.11.1.pre.alpha.PLAY1751pbcontenttagpt25529 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.11.1.pre.alpha.PBNTR7495495 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.12.0.pre.rc.11 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.12.0.pre.rc.10 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.12.0.pre.rc.9 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.12.0.pre.rc.8 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.12.0.pre.rc.7 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.11.1.pre.alpha.play1724darkmodeauditmap5437 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.11.1.pre.alpha.PBNTR719listdraggablesimple5432 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.11.1.pre.alpha.PBNTR768stickyrightcolumn5431 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.12.0.pre.rc.6 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.11.1.pre.alpha.PBNTR718simiplifieddraggablereact5415 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.11.1.pre.alpha.play1724darkmodeauditmap5413 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.12.0.pre.rc.5 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.11.1.pre.alpha.play1724darkmodeauditmap5409 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.11.1.pre.alpha.PBNTR718simiplifieddraggablereact5400 app/pb_kits/playbook/pb_form_group/_form_group.tsx
playbook_ui-14.11.1.pre.alpha.PBNTR718simiplifieddraggablereact5392 app/pb_kits/playbook/pb_form_group/_form_group.tsx