5.0.5 • Published 2 years ago

classcat v5.0.5

Weekly downloads
31,510
License
MIT
Repository
github
Last release
2 years 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

democensafractures-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-1332week-scheduleweek-scheduler-reactsunshine-react-flowinfografikahyperapp-mdcharowintriguemdclub-adminmdclub-theme-materialmdui@williamzheng/react-flow-renderer@webdevandsausages/event-terminal@webdevandsausages/mailing-list-widget@wpj/tato@titaui/react-flow-renderer@thetechcompany/react-flow-renderer@tiezhu92/react-flow-renderer@ts-delight/class-to-component@touchtech/web-baselayer-ui@tntd/decision-tree-diagram@theforgeai/reactflow@tntx/decision-tree-diagram@vikadata/react-flow-renderer@usebirch/react-flow-renderer@xyflow/react@xyflow/svelte@zalastax/nolb-clasatomic-router-solid@easyv/react-flow-renderer@copart/core-components@ambroseus/react-flow-renderer@havlasme/react-cookie-consent@namehash/react@bharatpatil/background@bharatpatil/controls@bharatpatil/core@bharatpatil/minimap@bharatpatil/node-resizer@bharatpatil/node-toolbar@cbinsights/fds@mpen/jsxhtml@namehash/nameguard-react@namehash/namekit-react@narmi/design_system@mo-fang/materials@kinark/react-flow-renderer@kiroboio/minimap@kiroboio/node-resizer@kiroboio/node-toolbar@kiroboio/background@kiroboio/controls@kiroboio/core@moretall/react-flow-nns@rctflw/background@rctflw/controls@rctflw/core@rctflw/minimap@product-hackers/feature_article-body@r-4bb1t/rabbit-ui@saravntbe/react-flow-renderer-umd@reactflow/controls@reactflow/core@reactflow/minimap@reactflow/node-resizer@reactflow/node-toolbar@reactflowfork/background@reactflowfork/controls@reactflowfork/core@reactflowfork/minimap@reactflow/background@reactflowfork/node-resizer@reactflowfork/node-toolbar@remotelock/react-week-scheduler@revityactive/react-week-schedulermoppium-react-flow-rendereropsportal-corereact-cosmos-diagramreact-awesome-daterdf-rendererreact-flow-nnsreact-flow-rendererreact-flow-renderer-gd
5.0.5

2 years ago

5.0.4

3 years ago

5.0.3

5 years ago

5.0.2

5 years ago

5.0.1

5 years ago

5.0.0

5 years ago

4.1.0

5 years ago

4.0.2

6 years ago

4.0.1

6 years ago

4.0.0

6 years ago

3.2.5

7 years ago

3.2.4

7 years ago

3.2.3

7 years ago

3.2.2

7 years ago

3.2.1

7 years ago

3.2.0

7 years ago

3.1.2

7 years ago

3.1.1

7 years ago

3.1.0

7 years ago

3.0.2

8 years ago

3.0.1

8 years ago

3.0.0

8 years ago

2.0.0

8 years ago

1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago