/ piacw.com / dev / pias-backend-2 / node_modules / @emotion / cache /

[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]dist/2 years ago -  
[DIR]src/2 years ago -  
[DIR]types/2 years ago -  
[TXT]CHANGELOG.md40 years ago1.9K 
[   ]LICENSE40 years ago1.1K0fb859dc fixed mobile overflwo options [كارل مبارك]
[TXT]README.md40 years ago2.0K0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]package.json2 years ago1.7K 
README.md

@emotion/cache

createCache

createCache allows for low level customization of how styles get inserted by emotion. It's intended to be used with the <CacheProvider/> component to override the default cache, which is created with sensible defaults for most applications.

import createCache from '@emotion/cache'

export const myCache = createCache({
  key: 'my-prefix-key',
  stylisPlugins: [
    /* your plugins here */
  ]
})

Primary use cases

Options

nonce

string

A nonce that will be set on each style tag that emotion inserts for Content Security Policies.

stylisPlugins

Function | Array<Function>

A Stylis plugin or plugins that will be run by Stylis during preprocessing. Read the Stylis docs to find out more. This can be used for many purposes such as RTL.

prefix

boolean | Function, defaults to true

Allows changing Stylis's vendor prefixing settings. It can be a boolean or a function to dynamically set which properties are prefixed. More information can be found in the Stylis docs.

key

string, defaults to "css"

The prefix before class names. It will also be set as the value of the data-emotion attribute on the style tags that emotion inserts and it's used in the attribute name that marks style elements in renderStylesToString and renderStylesToNodeStream. This is required if using multiple emotion caches in the same app.

container

HTMLElement

A DOM node that emotion will insert all of its style tags into. This is useful for inserting styles into iframes.

Apache/2.4.38 (Debian) Server at www.karls.computer Port 80