Comparing version 0.0.0-9b91201 to 0.0.0-e336189
{ | ||
"version": "0.0.0-9b91201", | ||
"version": "0.0.0-e336189", | ||
"name": "styleq", | ||
"main": "styleq.js", | ||
"module": "dist/styleq.js", | ||
"sideEffects": false, | ||
"license": "MIT", | ||
@@ -7,0 +8,0 @@ "description": "A quick JavaScript runtime for Atomic CSS compilers.", |
@@ -133,3 +133,3 @@ # styleQ · [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/necolas/styleq/blob/main/LICENSE) [![npm version](https://img.shields.io/npm/v/styleq.svg?style=flat)](https://www.npmjs.com/package/styleq) [![Build Status](https://github.com/necolas/styleq/workflows/tests/badge.svg)](https://github.com/necolas/styleq/actions) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/necolas/styleq/blob/master/.github/CONTRIBUTING.md) | ||
WARNING: Transforming compiled styles to support runtime dynamism while retaining excellent performance is possible, however, transforms must be done carefully to avoid creating merge operations that cannot be efficiently memoized. `WeakMap` is recommneded for memoizing the result of transforms, so that static objects are passed to styleq. | ||
WARNING: Transforming compiled styles to support runtime dynamism while retaining excellent performance is possible, however, transforms must be done carefully to avoid creating merge operations that cannot be efficiently memoized. `WeakMap` is recommended for memoizing the result of transforms, so that static objects are passed to styleq. | ||
@@ -381,3 +381,3 @@ ## Notes for compiler authors | ||
$$css: true, | ||
'@@theme': 'theme-default' | ||
$$theme: 'theme-default' | ||
}; | ||
@@ -384,0 +384,0 @@ |
@@ -19,3 +19,3 @@ /** | ||
* | ||
* { '@@transform:i18n': float: [ 'float-left', 'float-right' ] } | ||
* { '$$transform$i18n': float: [ 'float-left', 'float-right' ] } | ||
* => | ||
@@ -22,0 +22,0 @@ * { float: 'float-left' } |
@@ -324,3 +324,3 @@ /** | ||
$$css: true, | ||
'@@transform.i18n': true, | ||
$$transform$i18n: true, | ||
backgroundColor: 'backgroundColor-class', | ||
@@ -327,0 +327,0 @@ borderColor: 'borderColor-class', |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
51600