@booleon/core
TypeScript icon, indicating that this package has built-in type declarations

3.0.0 • Public • Published

booleon/core

Highly typed declarative CSS-in-JS


Booleon core is a collection of functions with a goal to manipulate and compile CSS, based on boolean props.

NPM version NPM version NPM version NPM version NPM version

Get Started

Instalation

npm i @booleon/core
yarn add @booleon/core

Functions

// https://github.com/kripod/style-vendorizer/blob/main/src/index.ts
function browserPrefixer('position:sticky;'): 'position:-webkit-sticky;position:sticky;'

function categorizeProps({
  prop: true,
  dark__prop: true,
}): [{ prop: true, }, { dark__prop: true, }]

function classCompiler('class', { css: 'css' }): '.class { css }'

function cssCompiler('flex', true, { flex: () => 'display:flex;' }): 'display:flex;'

function filterProps({ custom: true, id: 'id' }): [
  { custom: true },
  { id: 'id' },
]

function propsReducer({ flex: true }, { flex: () => 'display:flex;' }): { css: 'display:flex;' }

// https://stackoverflow.com/questions/7616461/generate-a-hash-from-string-in-javascript#7616484
function stringHash('stringHash'): -1573444417

function styleAppender('className', () => 'css'): <style data-booleon="className">.className{css}</style>

function uniqueClass('flex', 'flex', 'grid', 'grid'): 'flex grid'

Readme

Keywords

none

Package Sidebar

Install

npm i @booleon/core

Weekly Downloads

4

Version

3.0.0

License

MIT

Unpacked Size

39.2 kB

Total Files

21

Last publish

Collaborators

  • viniciusflv