simplyview 3.0.0 → 3.0.1
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/package.json +3 -2
- package/src/changes.md +18 -0
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simplyview",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "WIP: Library to rapidly build UI components, using declarative tools",
|
|
5
|
-
"main": "
|
|
5
|
+
"main": "src/everything.mjs",
|
|
6
|
+
"type": "module",
|
|
6
7
|
"directories": {
|
|
7
8
|
"example": "examples"
|
|
8
9
|
},
|
package/src/changes.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# changes
|
|
2
|
+
|
|
3
|
+
removed:
|
|
4
|
+
- render, observe
|
|
5
|
+
these are replaced with bind.mjs and state.mjs (signal, effect)
|
|
6
|
+
- view
|
|
7
|
+
replaced by state.mjs (signal)
|
|
8
|
+
- collect
|
|
9
|
+
replaced by state.mjs (effect)
|
|
10
|
+
- keyboard
|
|
11
|
+
renamed to key.mjs
|
|
12
|
+
- path
|
|
13
|
+
was never used, use jsonPointer instead if you need it
|
|
14
|
+
- viewmodel
|
|
15
|
+
replaced wiht model.mjs
|
|
16
|
+
- resize
|
|
17
|
+
use @container queries instead
|
|
18
|
+
|