@linaria/core
Advanced tools
Comparing version 3.0.0-beta.13 to 3.0.0-beta.15
@@ -6,2 +6,13 @@ # Change Log | ||
# [3.0.0-beta.15](https://github.com/callstack/linaria/compare/v3.0.0-beta.14...v3.0.0-beta.15) (2021-11-29) | ||
### Features | ||
* **atomic:** create an atomic package for the css API ([#867](https://github.com/callstack/linaria/issues/867)) ([4773bcf](https://github.com/callstack/linaria/commit/4773bcf4b14f08cdc4d2b612654b962cdfc97eaa)) | ||
# [3.0.0-beta.13](https://github.com/callstack/linaria/compare/v3.0.0-beta.12...v3.0.0-beta.13) (2021-09-13) | ||
@@ -8,0 +19,0 @@ |
export { default as css } from './css'; | ||
export { default as cx } from './cx'; | ||
export { cx } from '@linaria/utils'; | ||
//# sourceMappingURL=index.js.map |
@@ -10,7 +10,7 @@ "use strict"; | ||
var _cx = _interopRequireDefault(require("./cx")); | ||
var _utils = require("@linaria/utils"); | ||
exports.cx = _cx.default; | ||
exports.cx = _utils.cx; | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@linaria/core", | ||
"version": "3.0.0-beta.13", | ||
"version": "3.0.0-beta.15", | ||
"publishConfig": { | ||
@@ -40,3 +40,6 @@ "access": "public" | ||
}, | ||
"gitHead": "c49df269ebbbc956d43720b007a92f9f865662c5" | ||
"dependencies": { | ||
"@linaria/utils": "^3.0.0-beta.15" | ||
}, | ||
"gitHead": "a8ada3794c6e13231f70711d92b516d57677a5b1" | ||
} |
@@ -0,8 +1,6 @@ | ||
import type { LinariaClassName } from '@linaria/utils'; | ||
import type { CSSProperties } from './CSSProperties'; | ||
import type { StyledMeta } from './StyledMeta'; | ||
export declare type LinariaClassName = string & { | ||
__linariaClassName: true; | ||
}; | ||
declare type CSS = (strings: TemplateStringsArray, ...exprs: Array<string | number | CSSProperties | StyledMeta>) => LinariaClassName; | ||
declare const css: CSS; | ||
export default css; |
export { default as css } from './css'; | ||
export { default as cx } from './cx'; | ||
export { cx } from '@linaria/utils'; | ||
export type { CSSProperties } from './CSSProperties'; | ||
export type { StyledMeta } from './StyledMeta'; | ||
export type { LinariaClassName } from './css'; | ||
export type { LinariaClassName } from '@linaria/utils'; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
9965
1
25
54
+ Added@linaria/utils@3.0.0-beta.20(transitive)