simplyview 3.0.2 → 3.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 +2 -5
- package/dist/simply.app.js +126 -735
- package/dist/simply.app.min.js +1 -1
- package/dist/simply.app.min.js.map +4 -4
- package/dist/simply.everything.js +141 -1042
- package/dist/simply.everything.min.js +1 -1
- package/dist/simply.everything.min.js.map +4 -4
- package/package.json +4 -4
- package/src/app.mjs +23 -25
- package/src/bind.mjs +132 -37
- package/src/command.mjs +1 -1
- package/src/everything.mjs +6 -10
- package/src/include.mjs +13 -10
- package/src/key.mjs +74 -21
- package/src/route.mjs +25 -13
- package/src/view.mjs +20 -0
- package/src/changes.md +0 -18
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ See the [reference](https://reference.simplyedit.io/simplyview/) for more inform
|
|
|
11
11
|
|
|
12
12
|
### Browser using Unpkg CDN
|
|
13
13
|
|
|
14
|
-
`<script src="https://unpkg.com/simplyview@
|
|
14
|
+
`<script src="https://unpkg.com/simplyview@3.0.0/dist/simply.everything.js"></script>`
|
|
15
15
|
|
|
16
16
|
### Using NPM
|
|
17
17
|
|
|
@@ -21,7 +21,4 @@ See the [reference](https://reference.simplyedit.io/simplyview/) for more inform
|
|
|
21
21
|
|
|
22
22
|
`git clone https://github.com/SimplyEdit/simplyview.git`
|
|
23
23
|
|
|
24
|
-
You'll get the whole repository, which includes the separate javascript files in `simplyview/js/`, as well as the combined set in `simplyview/dist`.
|
|
25
|
-
|
|
26
|
-
If you use `simply.include.js`, make sure to also include `simply.include.next.js` in the same directory.
|
|
27
|
-
|
|
24
|
+
You'll get the whole repository, which includes the separate javascript files in `simplyview/js/`, as well as the combined set in `simplyview/dist`.
|