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.
Files changed (49) hide show
  1. package/README.md +9 -6
  2. package/dist/simply.everything.js +1596 -1139
  3. package/docs/examples.md +82 -0
  4. package/docs/readme.md +33 -0
  5. package/docs/simply.action.md +42 -0
  6. package/docs/simply.activate.md +27 -0
  7. package/docs/simply.api.md +188 -0
  8. package/docs/simply.app.md +27 -0
  9. package/docs/simply.collect.md +64 -0
  10. package/docs/simply.command.md +110 -0
  11. package/docs/simply.include.md +61 -0
  12. package/docs/simply.keyboard.md +60 -0
  13. package/docs/simply.path.md +3 -0
  14. package/docs/simply.route.md +133 -0
  15. package/docs/simply.view.md +53 -0
  16. package/docs/simply.viewmodel.md +3 -0
  17. package/examples/counter.html +1 -0
  18. package/examples/github.html +39 -0
  19. package/examples/githubv4.html +107 -0
  20. package/examples/graphql.html +51 -0
  21. package/examples/graphql.html~ +35 -0
  22. package/examples/keyboard.html +41 -0
  23. package/examples/viewmodel.html +359 -0
  24. package/js/simply.action.js +14 -5
  25. package/js/simply.activate.js +12 -4
  26. package/js/simply.api.js +229 -0
  27. package/js/simply.app.js +27 -9
  28. package/js/simply.collect.js +13 -5
  29. package/js/simply.command.js +36 -6
  30. package/js/simply.include.js +38 -17
  31. package/js/simply.keyboard.js +45 -0
  32. package/js/simply.modules.js +22 -0
  33. package/js/simply.observe.js +13 -4
  34. package/js/simply.path.js +12 -4
  35. package/js/simply.render.js +12 -6
  36. package/js/simply.resize.js +28 -20
  37. package/js/simply.route.js +149 -19
  38. package/js/simply.view.js +16 -9
  39. package/js/simply.viewmodel.js +174 -0
  40. package/make +16 -2
  41. package/make~ +17 -0
  42. package/package.json +6 -3
  43. package/package.json~ +8 -5
  44. package/test/simply.route.test.js +102 -0
  45. package/examples/todo.html~ +0 -50
  46. package/js/simply.app.js~ +0 -44
  47. package/js/simply.bind.js +0 -253
  48. package/js/simply.command.js~ +0 -166
  49. 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
- For now the simplest way to start is to clone this repository in your project:
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.