@jinntec/fore 1.0.0-1 → 1.0.0-4
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 +20 -1
- package/dist/fore-all.js +10 -10
- package/dist/fore-debug.js +140 -0
- package/index.js +8 -0
- package/package.json +7 -6
- package/resources/{vars.css → fore-styles.css} +292 -0
- package/src/DependencyNotifyingDomFacade.js +9 -1
- package/src/ForeElementMixin.js +25 -17
- package/src/actions/abstract-action.js +8 -7
- package/src/actions/fx-action.js +6 -1
- package/src/actions/fx-dispatch.js +10 -2
- package/src/actions/fx-hide.js +23 -0
- package/src/actions/fx-insert.js +9 -9
- package/src/actions/fx-send.js +1 -1
- package/src/actions/fx-setvalue.js +2 -4
- package/src/actions/fx-show.js +23 -0
- package/src/dep_graph.js +9 -0
- package/src/drawdown.js +172 -0
- package/src/fore.js +56 -3
- package/src/fx-bind.js +20 -17
- package/src/fx-fore.js +297 -33
- package/src/fx-instance.js +27 -6
- package/src/fx-model.js +182 -37
- package/src/fx-submission.js +29 -7
- package/src/fx-var.js +43 -0
- package/src/getInScopeContext.js +28 -7
- package/src/modelitem.js +1 -0
- package/src/ui/abstract-control.js +17 -4
- package/src/ui/fx-alert.js +16 -20
- package/src/ui/fx-container.js +9 -4
- package/src/ui/fx-control.js +76 -39
- package/src/ui/fx-dialog.js +68 -0
- package/src/ui/fx-inspector.js +44 -0
- package/src/ui/fx-items.js +120 -0
- package/src/ui/fx-output.js +50 -12
- package/src/ui/fx-repeat.js +83 -16
- package/src/ui/fx-repeatitem.js +11 -4
- package/src/ui/fx-trigger.js +3 -0
- package/src/xpath-evaluation.js +372 -135
- package/src/xpath-util.js +52 -12
- package/dist/fore.js +0 -2
- package/resources/fore.css +0 -86
- package/resources/toastify.css +0 -87
package/README.md
CHANGED
|
@@ -14,7 +14,16 @@
|
|
|
14
14
|
|
|
15
15
|
[](https://twitter.com/JinnForeTec)
|
|
16
16
|
|
|
17
|
-
## [Demos](https://jinntec.github.io/Fore)
|
|
17
|
+
## [Demos Demos Demos Demos Demos](https://jinntec.github.io/Fore)
|
|
18
|
+
|
|
19
|
+
Sorry for being loud - some people complaining not finding demos.
|
|
20
|
+
|
|
21
|
+
> ATTENTION: Demos are out of sync with latest release. If you want latest and greatest checkout your local copy please. Demos will be updated
|
|
22
|
+
> for final release.
|
|
23
|
+
|
|
24
|
+
## [Element Reference](https://jinntec.github.io/Fore/doc/reference.html)
|
|
25
|
+
|
|
26
|
+
For latest and greatest please use a local installation. See 'Running demos and docs'
|
|
18
27
|
|
|
19
28
|
# What it does
|
|
20
29
|
|
|
@@ -197,4 +206,14 @@ Include the repective bundle in your webpage with a module import:
|
|
|
197
206
|
</script>
|
|
198
207
|
```
|
|
199
208
|
|
|
209
|
+
## Giant shoulders
|
|
210
|
+
|
|
211
|
+
The giants that made Fore possible:
|
|
212
|
+
|
|
213
|
+
* past and current [XForms editors](https://www.w3.org/community/xformsusers/wiki/XForms_2.0) - not all brilliant ideas get traction and fame. Nevertheless a brilliantly worked out state engine.
|
|
214
|
+
* [fontoXPath](https://github.com/FontoXML/fontoxpath) - without this wonderful XPath 3.1 implementation in the browser Fore has never been possible - period.
|
|
215
|
+
* [depGraph](https://github.com/jriecken/dependency-graph) - finding this gem saved a big bunch of work.
|
|
216
|
+
|
|
217
|
+
Thanks to all giants!
|
|
218
|
+
|
|
200
219
|
|