Sha256: 277d3646efd26090ad5885cf28ef11256bf27070582a0ac9e286cef9e51ec83b

Contents?: true

Size: 1.42 KB

Versions: 643

Compression:

Stored size: 1.42 KB

Contents

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

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

import Flex from '../../pb_flex/_flex'
import SectionSeparator from '../../pb_section_separator/_section_separator'


type DialogFooterProps = {
  aria?: {[key: string]: string},
  children: React.ReactChild[] | React.ReactChild | string,
  className?: string,
  data?: {[key: string]: string},
  htmlOptions?: {[key: string]: string | number | boolean | (() => void)},
  id?: string,
  padding?: string,
  paddingBottom?: string,
  paddingX?: string,
  separator?: boolean,
  spacing?: "none" | "between" | "around" | "evenly",
} & GlobalProps

// Footer component
const DialogFooter = (props: DialogFooterProps): React.ReactElement => {
  const {
    children,
    className,
    htmlOptions = {},
    spacing = "between",
    separator = false,
  } = props

  const footerCSS = buildCss("dialog_footer")
  const footerSpacing = globalProps(props)
  const htmlProps = buildHtmlProps(htmlOptions)

  return (
    <div 
        {...htmlProps}
    >
      {separator &&
        <SectionSeparator />
      }
      <div className="dialog-pseudo-footer" />
      <Flex
          className={classnames(footerCSS, footerSpacing, className)}
          spacing={spacing}
      >
        {children}
      </Flex>
    </div>
  )
}

export default DialogFooter

Version data entries

643 entries across 643 versions & 1 rubygems

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