1.0.3 • Published 8 months ago

pandacss-react-aria-components v1.0.3

Weekly downloads
-
License
0BSD
Repository
github
Last release
8 months ago

pandacss-react-aria-components

A Panda preset for React Aria Components (RAC) to make styling states of components easier, with autocompleting conditions courtesy of Panda.

Installation

npm i -D pandacss-react-aria-components
# or
yarn add -D pandacss-react-aria-components
# or
pnpm add -D pandacss-react-aria-components

Usage

Add the preset to your panda.config.js file.

import { defineConfig } from "@pandacss/dev";
import racPreset from "pandacss-react-aria-components";

export default defineConfig({
  presets: [racPreset()],
});

With the preset added, you can now access all states easily.

<div className={css({
  _selected: {
    background: "blue.500"
  },
  _disabled: {
    background: "gray.100"
  }
})}>

Options

// default config
export default defineConfig({
  presets: [
    racPreset({
      includePandaPresetBase: true,
      prefix: "",
      includeCombinators: true,
    }),
  ],
});

Panda Preset Base (includePandaPresetBase)

By default, Panda provides conditions of their own within @pandacss/preset-base that overlap with RAC. These conditions can be merged gracefully with RAC, applying conditionally based on whether the element belongs to a RAC component.

Prefix (prefix)

Assign a prefix for the conditions. This will disable merging with @pandacss/preset-base conditions as it is no longer necessary.

Combinators (includeCombinators)

Add new variants for Tailwind-like group and peer combinators, such as _groupFocusWithin and _peerSelected. @pandacss/preset-base provides a few that won't be overridden to support RAC if this is set to false.

Acknowledgements

License

BSD Zero Clause License

Please note the other licenses present within the NOTICE file.

1.0.3

8 months ago

1.0.2

11 months ago

1.0.1

12 months ago

1.0.0

12 months ago