vasille-web 0.99.1 → 0.99.3

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.
package/README.md CHANGED
@@ -47,7 +47,7 @@ $ npx degit vasille-js/example-javascript my-project
47
47
 
48
48
  ### Examples
49
49
  * [TypeScript Example](https://github.com/vasille-js/example-typescript)
50
- * [JavaScript Example](https://github.com/vas[README.md](..%2Ftest%2Fmy-app%2FREADME.md)ille-js/example-javascript)
50
+ * [JavaScript Example](https://github.com/vasille-js/example-javascript)
51
51
 
52
52
  <hr>
53
53
 
@@ -104,8 +104,8 @@ All of these are supported:
104
104
  * [x] `100%` Test Coverage for the JSX library.
105
105
  * [x] Develop the `Vasille Babel Plugin`.
106
106
  * [ ] `100%` Test Coverage fot babel plugin.
107
- * [ ] Add CSS support (define styles in components).
108
- * [ ] Add custom `<input/>` components with 2-way value binding.
107
+ * [x] Add CSS support (define styles in components).
108
+ * [ ] Add custom `input` components with 2-way value binding.
109
109
  * [ ] Add router.
110
110
  * [ ] Develop dev-tools extension for debugging.
111
111
  * [ ] Develop a lot of libraries for the framework.
package/index-node.js CHANGED
@@ -1,4 +1,5 @@
1
1
  "use strict";
2
2
  exports = {
3
- ...require("vasille-dx")
3
+ ...require("vasille-dx"),
4
+ ...require("vasille-css"),
4
5
  };
package/index.d.ts CHANGED
@@ -14,4 +14,27 @@ export {
14
14
  Slot,
15
15
  Watch,
16
16
  awaited,
17
- } from "vasille-dx";
17
+ ref,
18
+ bind,
19
+ calculate,
20
+ forward,
21
+ arrayModel,
22
+ setModel,
23
+ mapModel,
24
+ reactiveObject,
25
+ value,
26
+ watch,
27
+ } from "vasille-dx";
28
+ export {
29
+ theme,
30
+ tablet,
31
+ dark,
32
+ mobile,
33
+ laptop,
34
+ prefersLight,
35
+ prefersDark,
36
+ webStyleSheet,
37
+ setMobileMaxWidth,
38
+ setTabletMaxWidth,
39
+ setLaptopMaxWidth,
40
+ } from "vasille-css";
package/index.js CHANGED
@@ -15,4 +15,10 @@ export {
15
15
  Watch,
16
16
  awaited,
17
17
  $,
18
- } from "vasille-dx";
18
+ } from "vasille-dx";
19
+ export {
20
+ webStyleSheet,
21
+ setMobileMaxWidth,
22
+ setTabletMaxWidth,
23
+ setLaptopMaxWidth,
24
+ } from "vasille-css";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vasille-web",
3
- "version": "0.99.1",
3
+ "version": "0.99.3",
4
4
  "description": "Front-end framework with best developer experience ever.",
5
5
  "main": "index.js",
6
6
  "types": "./index.d.ts",
@@ -29,7 +29,8 @@
29
29
  },
30
30
  "homepage": "https://github.com/vasille-js/vasille-js#readme",
31
31
  "dependencies": {
32
- "babel-plugin-vasille": "^0.99.0",
33
- "vasille-dx": "^3.0.1"
32
+ "babel-plugin-vasille": "^0.99.2",
33
+ "vasille-css": "^3.0.3",
34
+ "vasille-dx": "^3.0.3"
34
35
  }
35
36
  }