simplyview 1.0.0 → 2.0.2
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 +9 -6
- package/dist/simply.everything.js +1596 -1139
- package/docs/examples.md +82 -0
- package/docs/readme.md +33 -0
- package/docs/simply.action.md +42 -0
- package/docs/simply.activate.md +27 -0
- package/docs/simply.api.md +188 -0
- package/docs/simply.app.md +27 -0
- package/docs/simply.collect.md +64 -0
- package/docs/simply.command.md +110 -0
- package/docs/simply.include.md +61 -0
- package/docs/simply.keyboard.md +60 -0
- package/docs/simply.path.md +3 -0
- package/docs/simply.route.md +133 -0
- package/docs/simply.view.md +53 -0
- package/docs/simply.viewmodel.md +3 -0
- package/examples/counter.html +1 -0
- package/examples/github.html +39 -0
- package/examples/githubv4.html +107 -0
- package/examples/graphql.html +51 -0
- package/examples/graphql.html~ +35 -0
- package/examples/keyboard.html +41 -0
- package/examples/viewmodel.html +359 -0
- package/js/simply.action.js +14 -5
- package/js/simply.activate.js +12 -4
- package/js/simply.api.js +229 -0
- package/js/simply.app.js +27 -9
- package/js/simply.collect.js +13 -5
- package/js/simply.command.js +36 -6
- package/js/simply.include.js +38 -17
- package/js/simply.keyboard.js +45 -0
- package/js/simply.modules.js +22 -0
- package/js/simply.observe.js +13 -4
- package/js/simply.path.js +12 -4
- package/js/simply.render.js +12 -6
- package/js/simply.resize.js +28 -20
- package/js/simply.route.js +149 -19
- package/js/simply.view.js +16 -9
- package/js/simply.viewmodel.js +174 -0
- package/make +16 -2
- package/make~ +17 -0
- package/package.json +6 -3
- package/package.json~ +8 -5
- package/test/simply.route.test.js +102 -0
- package/examples/todo.html~ +0 -50
- package/js/simply.app.js~ +0 -44
- package/js/simply.bind.js +0 -253
- package/js/simply.command.js~ +0 -166
- package/js/simply.resize.js~ +0 -69
package/README.md
CHANGED
|
@@ -9,7 +9,15 @@ See the [reference](https://reference.simplyedit.io/simplyview/) for more inform
|
|
|
9
9
|
|
|
10
10
|
## Usage
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
### Browser using Unpkg CDN
|
|
13
|
+
|
|
14
|
+
`<script src="https://unpkg.com/simplyview@1.0.0/dist/simply.everything.js"></script>`
|
|
15
|
+
|
|
16
|
+
### Using NPM
|
|
17
|
+
|
|
18
|
+
`npm install simplyview`
|
|
19
|
+
|
|
20
|
+
### Using GIT
|
|
13
21
|
|
|
14
22
|
`git clone https://github.com/SimplyEdit/simplyview.git`
|
|
15
23
|
|
|
@@ -17,8 +25,3 @@ You'll get the whole repository, which includes the separate javascript files in
|
|
|
17
25
|
|
|
18
26
|
If you use `simply.include.js`, make sure to also include `simply.include.next.js` in the same directory.
|
|
19
27
|
|
|
20
|
-
## Status
|
|
21
|
-
|
|
22
|
-
SimplyView is still in Beta, so use at your own risk. That said, most components are ready and have been tested in most browsers and in different applications. Only the simply.observe.js is relatively untested and simply.bind.js and simply.render.js are not finished.
|
|
23
|
-
|
|
24
|
-
simply.bind.js will probably be combined with simply.render and renamed simply.field.js. This component, in combination with a new simply.list.js, will implement the rendering part of SimplyEdit. For now just use SimplyEdit in combination with SimplyView.
|