@linaria/atomic 3.0.0-beta.21 → 3.0.0-beta.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/esm/CSSProperties.js +0 -0
  2. package/esm/CSSProperties.js.map +0 -0
  3. package/esm/css.js +0 -0
  4. package/esm/css.js.map +0 -0
  5. package/esm/index.js +0 -0
  6. package/esm/index.js.map +0 -0
  7. package/esm/processors/css.js +0 -0
  8. package/esm/processors/css.js.map +0 -0
  9. package/esm/processors/helpers/atomize.js +0 -0
  10. package/esm/processors/helpers/atomize.js.map +0 -0
  11. package/esm/processors/helpers/propertyPriority.js +0 -0
  12. package/esm/processors/helpers/propertyPriority.js.map +0 -0
  13. package/esm/processors/styled.js +0 -0
  14. package/esm/processors/styled.js.map +0 -0
  15. package/lib/CSSProperties.js +0 -0
  16. package/lib/CSSProperties.js.map +0 -0
  17. package/lib/css.js +0 -0
  18. package/lib/css.js.map +0 -0
  19. package/lib/index.js +0 -0
  20. package/lib/index.js.map +0 -0
  21. package/lib/processors/css.js +0 -0
  22. package/lib/processors/css.js.map +0 -0
  23. package/lib/processors/helpers/atomize.js +0 -0
  24. package/lib/processors/helpers/atomize.js.map +0 -0
  25. package/lib/processors/helpers/propertyPriority.js +0 -0
  26. package/lib/processors/helpers/propertyPriority.js.map +0 -0
  27. package/lib/processors/styled.js +0 -0
  28. package/lib/processors/styled.js.map +0 -0
  29. package/package.json +7 -7
  30. package/processors/css.js +5 -0
  31. package/processors/styled.js +5 -0
  32. package/types/CSSProperties.d.ts +0 -0
  33. package/types/css.d.ts +0 -0
  34. package/types/index.d.ts +0 -0
  35. package/types/processors/css.d.ts +0 -0
  36. package/types/processors/helpers/atomize.d.ts +0 -0
  37. package/types/processors/helpers/propertyPriority.d.ts +0 -0
  38. package/types/processors/styled.d.ts +0 -0
File without changes
File without changes
package/esm/css.js CHANGED
File without changes
package/esm/css.js.map CHANGED
File without changes
package/esm/index.js CHANGED
File without changes
package/esm/index.js.map CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/lib/css.js CHANGED
File without changes
package/lib/css.js.map CHANGED
File without changes
package/lib/index.js CHANGED
File without changes
package/lib/index.js.map CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@linaria/atomic",
3
3
  "description": "Blazing fast zero-runtime CSS in JS library",
4
- "version": "3.0.0-beta.21",
4
+ "version": "3.0.0-beta.22",
5
5
  "bugs": "https://github.com/callstack/linaria/issues",
6
6
  "dependencies": {
7
- "@linaria/core": "^3.0.0-beta.21",
7
+ "@linaria/core": "^3.0.0-beta.22",
8
8
  "@linaria/logger": "^3.0.0-beta.20",
9
- "@linaria/react": "^3.0.0-beta.21",
9
+ "@linaria/react": "^3.0.0-beta.22",
10
10
  "@linaria/utils": "^3.0.0-beta.20",
11
11
  "known-css-properties": "^0.24.0",
12
12
  "postcss": "^8.3.11",
@@ -20,9 +20,10 @@
20
20
  "node": "^12.16.0 || >=13.7.0"
21
21
  },
22
22
  "files": [
23
- "types/",
23
+ "esm/",
24
24
  "lib/",
25
- "esm/"
25
+ "processors/",
26
+ "types/"
26
27
  ],
27
28
  "homepage": "https://github.com/callstack/linaria#readme",
28
29
  "keywords": [
@@ -54,6 +55,5 @@
54
55
  "build:lib": "cross-env NODE_ENV=legacy babel src --out-dir lib --extensions '.js,.jsx,.ts,.tsx' --source-maps --delete-dir-on-start",
55
56
  "typecheck": "tsc --noEmit --composite false",
56
57
  "watch": "npm run build --watch"
57
- },
58
- "readme": "<p align=\"center\">\n <img alt=\"Linaria\" src=\"https://raw.githubusercontent.com/callstack/linaria/HEAD/website/assets/linaria-logo@2x.png\" width=\"496\">\n</p>\n\n<p align=\"center\">\nZero-runtime CSS in JS library.\n</p>\n\n---\n\n### 📖 Please refer to the [GitHub](https://github.com/callstack/linaria#readme) for full documentation.\n\n## Features\n\n- Write CSS in JS, but with **zero runtime**, CSS is extracted to CSS files during build\n- Familiar **CSS syntax** with Sass like nesting\n- Use **dynamic prop based styles** with the React bindings, uses CSS variables behind the scenes\n- Easily find where the style was defined with **CSS sourcemaps**\n- **Lint your CSS** in JS with [stylelint](https://github.com/stylelint/stylelint)\n- Use **JavaScript for logic**, no CSS preprocessor needed\n- Optionally use any **CSS preprocessor** such as Sass or PostCSS\n\n**[Why use Linaria](../../docs/BENEFITS.md)**\n\n## Installation\n\n```sh\nnpm install @linaria/core @linaria/react @linaria/babel-preset @linaria/shaker\n```\n\nor\n\n```sh\nyarn add @linaria/core @linaria/react @linaria/babel-preset @linaria/shaker\n```\n"
58
+ }
59
59
  }
@@ -0,0 +1,5 @@
1
+ Object.defineProperty(exports, '__esModule', {
2
+ value: true,
3
+ });
4
+
5
+ exports.default = require('../lib/processors/css').default;
@@ -0,0 +1,5 @@
1
+ Object.defineProperty(exports, '__esModule', {
2
+ value: true,
3
+ });
4
+
5
+ exports.default = require('../lib/processors/styled').default;
File without changes
package/types/css.d.ts CHANGED
File without changes
package/types/index.d.ts CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes