0.0.2 • Published 2 years ago

@solid-aria/separator v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@solid-aria/separator

pnpm turborepo size version stage

A separator is a visual divider between two groups of content, e.g. groups of menu items or sections of a page.

  • createSeparator - Provides the accessibility implementation for a separator.

Installation

npm install @solid-aria/separator
# or
yarn add @solid-aria/separator
# or
pnpm add @solid-aria/separator

createSeparator

Features

Horizontal separators can be built with the HTML <hr> element. However, there is no HTML element for a vertical separator. createSeparator helps achieve accessible separators that can be styled as needed.

  • Support for horizontal and vertical orientation
  • Support for HTML <hr> element or a custom element type

How to use it

This example shows how create both a horizontal and a vertical oriented separator.

import { AriaSeparatorProps, createSeparator } from "@solid-aria/separator";

function Separator(props: AriaSeparatorProps) {
  const { separatorProps } = createSeparator(props);

  return (
    <div
      {...separatorProps}
      style={{
        background: "gray",
        width: props.orientation === "vertical" ? "1px" : "100%",
        height: props.orientation === "vertical" ? "100%" : "1px",
        margin: props.orientation === "vertical" ? "0 5px" : "5px 0"
      }}
    />
  );
}

function App() {
  return (
    <>
      <div style={{ display: "flex", "flex-direction": "column" }}>
        Content above
        <Separator />
        Content below
      </div>
      <div
        style={{
          display: "flex",
          "flex-direction": "row",
          "margin-top": "20px",
          height: "40px",
          "align-items": "center"
        }}
      >
        Content left
        <Separator orientation="vertical" />
        Content right
      </div>
    </>
  );
}

Changelog

All notable changes are described in the CHANGELOG.md file.