Sha256: 22281e75fffddae7c82845fc551ac8a9a50f3dd14ad067bfd8564a90991a136e

Contents?: true

Size: 1.42 KB

Versions: 465

Compression:

Stored size: 1.42 KB

Contents

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

type TableHeadPropTypes = {
  aria?: { [key: string]: string };
  children: React.ReactNode[] | React.ReactNode;
  className: string;
  data?: { [key: string]: string };
  htmlOptions?: { [key: string]: string | number | boolean | (() => void) };
  id?: string;
  tag?: "table" | "div";
};

const TableHead = (props: TableHeadPropTypes): React.ReactElement => {
  const {
    aria = {},
    children,
    className,
    data = {},
    htmlOptions = {},
    id,
    tag = "table",
  } = props;

  const ariaProps = buildAriaProps(aria);
  const dataProps = buildDataProps(data);
  const htmlProps = buildHtmlProps(htmlOptions);
  const classes = classnames("pb_table_thead", globalProps(props), className);
  const isTableTag = tag === "table";

  return (
    <>
      {isTableTag ? (
        <thead
            {...ariaProps}
            {...dataProps}
            {...htmlProps}
            className={classes}
            id={id}
        >
          {children}
        </thead>
      ) : (
        <div
            {...ariaProps}
            {...dataProps}
            {...htmlProps}
            className={classes}
            id={id}
        >
          {children}
        </div>
      )}
    </>
  );
};

export default TableHead;

Version data entries

465 entries across 465 versions & 1 rubygems

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