cssxjs 0.2.9 → 0.2.11

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 (2) hide show
  1. package/index.js +5 -0
  2. package/package.json +9 -9
package/index.js CHANGED
@@ -1,3 +1,8 @@
1
+ export { default as variables } from '@cssxjs/runtime/variables'
2
+ export { defaultVariables, setDefaultVariables } from '@cssxjs/runtime/variables'
3
+ export { default as dimensions } from '@cssxjs/runtime/dimensions'
4
+ export { default as matcher } from '@cssxjs/runtime/matcher'
5
+
1
6
  export function css (cssString) {
2
7
  throw Error('[cssxjs] Unprocessed \'css\' template string. Bundler (Babel / Metro) did not process this file correctly.')
3
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cssxjs",
3
- "version": "0.2.9",
3
+ "version": "0.2.11",
4
4
  "description": "CSS-in-JS with actual CSS syntax",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -34,17 +34,17 @@
34
34
  "test": "echo 'No tests yet' && exit 0"
35
35
  },
36
36
  "dependencies": {
37
- "@cssxjs/babel-plugin-react-pug": "^0.2.9",
38
- "@cssxjs/babel-plugin-rn-stylename-inline": "^0.2.9",
39
- "@cssxjs/babel-plugin-rn-stylename-to-style": "^0.2.9",
40
- "@cssxjs/bundler": "^0.2.9",
41
- "@cssxjs/loaders": "^0.2.9",
42
- "@cssxjs/runtime": "^0.2.9",
43
- "babel-preset-cssxjs": "^0.2.9"
37
+ "@cssxjs/babel-plugin-react-pug": "^0.2.11",
38
+ "@cssxjs/babel-plugin-rn-stylename-inline": "^0.2.11",
39
+ "@cssxjs/babel-plugin-rn-stylename-to-style": "^0.2.11",
40
+ "@cssxjs/bundler": "^0.2.11",
41
+ "@cssxjs/loaders": "^0.2.11",
42
+ "@cssxjs/runtime": "^0.2.11",
43
+ "babel-preset-cssxjs": "^0.2.11"
44
44
  },
45
45
  "peerDependencies": {
46
46
  "react": "*"
47
47
  },
48
48
  "license": "MIT",
49
- "gitHead": "af8db22bc0f2aaff393010ad7c50b1233bc23214"
49
+ "gitHead": "93a4681bc0182d5c2faa9e3b8aa4cbdff6c4e780"
50
50
  }