stylis-rule-sheet

stylis plugin to extract individual rules to use with insertRule API

MIT 10 个版本
安装
npm install stylis-rule-sheet
yarn add stylis-rule-sheet
pnpm add stylis-rule-sheet
bun add stylis-rule-sheet
README

stylis rule-sheet

stylis plugin to extract individual rules to use with the insertRule API

var sheet = document.head.appendChild(document.createElement('style')).sheet
var length = sheet.cssRules.length

var plugin = stylisRuleSheet((value) => {
	length = sheet.insertRule(value, length) + 1
})

stylis.use(plugin)
版本列表
0.0.10 2018-03-08
0.0.9 2018-03-08
0.0.8 2018-02-15
0.0.7 2017-11-23
0.0.6 2017-10-14
0.0.5 2017-10-13
0.0.4 2017-10-11
0.0.3 2017-10-11
0.0.2 2017-10-10
0.0.1 2017-10-08