@jseeio/jsee 0.2.1 → 0.2.5
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/CHANGELOG.md +27 -0
- package/CNAME +1 -0
- package/README.md +1 -1
- package/_config.yml +2 -2
- package/dist/jsee.js +1 -1
- package/dist/jsee.runtime.js +1 -1
- package/dist/worker_bundle.js +1 -0
- package/jest-puppeteer.config.js +12 -0
- package/jest.config.js +7 -0
- package/load.html +8 -4
- package/main.js +292 -155
- package/package.json +11 -6
- package/src/app.js +22 -7
- package/src/overlay.js +1 -16
- package/src/utils.js +52 -0
- package/src/worker.js +65 -58
- package/templates/bulma-app.vue +108 -13
- package/templates/bulma-output.vue +2 -2
- package/test/code.html +25 -0
- package/test/codew.html +25 -0
- package/test/example-async-function.js +0 -0
- package/test/example-async-init.js +0 -0
- package/test/example-class.js +8 -0
- package/test/example-sum.js +3 -0
- package/test/minimal.html +14 -0
- package/test/string.html +26 -0
- package/test/stringw.html +29 -0
- package/test/sum.schema.json +17 -0
- package/test/sumw.schema.json +17 -0
- package/test.js +121 -0
- package/webpack.config.js +3 -1
- package/dist/port.js +0 -1
- package/dist/port.runtime.js +0 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
## [Unreleased] - yyyy-mm-dd
|
|
2
|
+
|
|
3
|
+
### Added
|
|
4
|
+
-
|
|
5
|
+
|
|
6
|
+
### Changed
|
|
7
|
+
-
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
-
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## [0.2.5] - yyyy-mm-dd
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- [x] Tests
|
|
17
|
+
- [x] Load schema from query (loader)
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- [x] Reset button appears only after data change
|
|
21
|
+
- [x] Default input type (`string`)
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
- [x] Directly load code when running in a window (not code to text)
|
|
25
|
+
- [x] Passing code directly
|
|
26
|
+
|
|
27
|
+
|
package/CNAME
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
jsee.org
|
package/README.md
CHANGED
|
@@ -57,4 +57,4 @@ JSEE takes a schema object that contains five main blocks:
|
|
|
57
57
|
- `inputs` - Inputs definition
|
|
58
58
|
- `outputs` - Outputs definition
|
|
59
59
|
|
|
60
|
-
JSEE is a reactive version of StatSim's [Port](https://github.com/statsim/port)
|
|
60
|
+
JSEE is a reactive version of [StatSim](https://statsim.com)'s [Port](https://github.com/statsim/port). Still work in progress. Expect API changes.
|
package/_config.yml
CHANGED
|
@@ -5,12 +5,12 @@ description: > # this means to ignore newlines until "show_excerpts:"
|
|
|
5
5
|
show_excerpts: false
|
|
6
6
|
|
|
7
7
|
logo_header:
|
|
8
|
-
src: https://jsee.io/
|
|
8
|
+
src: https://jsee.io/design/jsee_logo.svg
|
|
9
9
|
href: https://jsee.org/
|
|
10
10
|
width: 70
|
|
11
11
|
|
|
12
12
|
logo_footer:
|
|
13
|
-
src: https://jsee.io/
|
|
13
|
+
src: https://jsee.io/design/jsee_logo.svg
|
|
14
14
|
href: https://jsee.org/
|
|
15
15
|
width: 50
|
|
16
16
|
|