@jinntec/fore 1.6.0 → 1.7.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/README.md +5 -3
- package/dist/fore-dev.js +2 -2
- package/dist/fore-dev.js.map +1 -1
- package/dist/fore.js +2 -2
- package/dist/fore.js.map +1 -1
- package/index.js +1 -0
- package/package.json +2 -2
- package/src/actions/fx-toggleboolean.js +58 -0
- package/src/fore.js +2 -1
- package/src/functions/fx-function.js +6 -4
- package/src/fx-bind.js +2 -0
- package/src/fx-fore.js +16 -0
- package/src/fx-instance.js +8 -4
- package/src/fx-model.js +4 -5
- package/src/fx-submission.js +103 -1
- package/src/getInScopeContext.js +8 -0
- package/src/ui/fx-control.js +5 -1
- package/src/xpath-evaluation.js +20 -15
- package/src/ui/fx-action-log.js +0 -358
package/README.md
CHANGED
|
@@ -41,12 +41,14 @@ conjunction with it.
|
|
|
41
41
|
* state engine with dependency tracking for optimized updating
|
|
42
42
|
* lifecycle with detailed state events
|
|
43
43
|
* descriptive actions for data mutations (setvalue, insert, delete)
|
|
44
|
-
*
|
|
44
|
+
* binding for structured data like XML, HTML and JSON
|
|
45
45
|
* group, repeat, dialog + switch container components
|
|
46
|
-
* generic UI control
|
|
47
|
-
*
|
|
46
|
+
* generic UI control binding any native control or third-party component
|
|
47
|
+
* auto-updating Template Expressions
|
|
48
48
|
* powerful XPath/XQuery 3.1 support in the browser
|
|
49
49
|
* Submission module declaratively wrapping the fetch API
|
|
50
|
+
* efficient partial DOM updates
|
|
51
|
+
* no build (tool) required
|
|
50
52
|
|
|
51
53
|
|
|
52
54
|
## An xformish framework in Web Components
|