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 +3 -3
- package/index-node.js +2 -1
- package/index.d.ts +24 -1
- package/index.js +7 -1
- package/package.json +4 -3
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/
|
|
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
|
-
* [
|
|
108
|
-
* [ ] Add custom
|
|
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
package/index.d.ts
CHANGED
|
@@ -14,4 +14,27 @@ export {
|
|
|
14
14
|
Slot,
|
|
15
15
|
Watch,
|
|
16
16
|
awaited,
|
|
17
|
-
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vasille-web",
|
|
3
|
-
"version": "0.99.
|
|
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.
|
|
33
|
-
"vasille-
|
|
32
|
+
"babel-plugin-vasille": "^0.99.2",
|
|
33
|
+
"vasille-css": "^3.0.3",
|
|
34
|
+
"vasille-dx": "^3.0.3"
|
|
34
35
|
}
|
|
35
36
|
}
|