5.0.5 • Published 23 days ago

classcat v5.0.5

Weekly downloads
31,510
License
MIT
Repository
github
Last release
23 days ago

Classcat

Build a class attribute string quickly.

  • Framework agnostic, reusable, plain vanilla JavaScript.
  • Up to 2.5x faster than alternatives.
  • 217 B (minified+gzipped). 👌

This module makes it easy to build a space-delimited class attribute string from an object or array of CSS class names. Just pair each class with a boolean value to add or remove them conditionally.

import cc from "classcat"

export const ToggleButton = ({ isOn, toggle }) => (
  <div className="btn" onClick={() => toggle(!isOn)}>
    <div
      className={cc({
        circle: true,
        off: !isOn,
        on: isOn,
      })}
    />
    <span className={cc({ textOff: !isOn })}>{isOn ? "ON" : "OFF"}</span>
  </div>
)

Try with React, lit-html, Mithril, Superfine

Installation

npm install classcat

Or without a build step—import it right in your browser.

<script type="module">
  import cc from "https://unpkg.com/classcat"
</script>

API

cc(names)

cc(names: string | number | object | array): string
import cc from "classcat"

cc("elf") //=> "elf"

cc(["elf", "orc", "gnome"]) //=> "elf orc gnome"

cc({
  elf: false,
  orc: null,
  gnome: undefined,
}) //=> ""

cc({
  elf: true,
  orc: false,
  gnome: true,
}) //=> "elf gnome"

cc([
  {
    elf: true,
    orc: false,
  },
  "gnome",
]) //=> "elf gnome"

Benchmarks

npm --prefix bench start

License

MIT

democensa@cbinsights/fdsfractures-uigray-react-tools@appist/app-btn@appist/app-iconreact-flow-dnd@walkme/wm-ui@stellaris/lynxmodalo@sec-ant/react-flow-renderercensapackagedesignsystemindesigndocumentabcdesignabcsystempackagestorypackagedesign@everything-registry/sub-chunk-1332emotion-jsxstyle@ohmunity/verification-codeopsportal-coreweek-scheduler-reactweek-schedule@product-hackers/feature_article-body@mo-fang/materials@kiroboio/background@kiroboio/controls@kiroboio/core@kiroboio/minimap@kiroboio/node-resizer@kiroboio/node-toolbar@mpen/jsxhtml@mpen/react-basic-inputs@nodeject/ui-components@openfn/workflow-diagramcensa_designcensa_design_system@easyv/react-flow-rendererchic-modules@moretall/react-flow-nns@sroussey/xyflow-react@remotelock/react-week-scheduler@saravntbe/react-flow-renderer-umd@sumbat/background@sumbat/controls@sumbat/core@sumbat/minimap@sumbat/node-resizer@sumbat/node-toolbar@theforgeai/reactflow@thetechcompany/react-flow-renderer@rctflw/background@rctflw/controls@rctflw/core@rctflw/minimap@reactflow/background@reactflow/controls@reactflow/core@reactflow/minimap@reactflow/node-resizer@reactflow/node-toolbar@reactflowfork/background@reactflowfork/controls@reactflowfork/core@reactflowfork/minimap@reactflowfork/node-resizer@reactflowfork/node-toolbar@namehash/react@namehash/nameguard-react@narmi/design_system@havlasme/react-cookie-consentmoppium-react-flow-renderer@forabi/react-week-scheduler@revityactive/react-week-scheduler@stellaris/lynx-editor@tiezhu92/react-flow-rendererharowgray-reactgreact-week-schedulerfluiduxgatsby-theme-recipe-organizergatsby-theme-tatogatsby-theme-heydaysgfd-react-week-schedulerinfografikahyperapp-mdcrewire-uirewire-gridintrigueatomic-router-solid@copart/core-componentsmdclub-adminmdclub-theme-materialmduisunshine-react-flowcode7-builder-flowcode7-leiacodeflow-react-crudcodeflow-react-ui
5.0.5

23 days ago

5.0.4

2 years ago

5.0.3

3 years ago

5.0.2

3 years ago

5.0.1

3 years ago

5.0.0

3 years ago

4.1.0

4 years ago

4.0.2

5 years ago

4.0.1

5 years ago

4.0.0

5 years ago

3.2.5

5 years ago

3.2.4

5 years ago

3.2.3

6 years ago

3.2.2

6 years ago

3.2.1

6 years ago

3.2.0

6 years ago

3.1.2

6 years ago

3.1.1

6 years ago

3.1.0

6 years ago

3.0.2

6 years ago

3.0.1

6 years ago

3.0.0

6 years ago

2.0.0

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

7 years ago