oipage 1.4.1 → 1.5.0-alpha.1

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 (56) hide show
  1. package/CHANGELOG +11 -1
  2. package/bin/WebSocket/decodeWsFrame.js +43 -0
  3. package/bin/WebSocket/encodeWsFrame.js +28 -0
  4. package/bin/WebSocket/headersToJSON.js +26 -0
  5. package/bin/WebSocket/index.js +80 -0
  6. package/bin/intercept.js +2 -2
  7. package/bin/serve.js +14 -10
  8. package/bin/template/404.html +5 -2
  9. package/bin/website-htmls/dialogs/imageSize/index.html +55 -0
  10. package/bin/website-htmls/dialogs/imageSize/index.js +53 -0
  11. package/bin/website-htmls/dialogs/imageSize/index.scss +139 -0
  12. package/bin/website-htmls/dialogs/index.js +29 -19
  13. package/bin/website-htmls/images/chart.png +0 -0
  14. package/bin/website-htmls/images/image-editor.png +0 -0
  15. package/bin/website-htmls/images/lock.png +0 -0
  16. package/bin/website-htmls/images/mosaic.png +0 -0
  17. package/bin/website-htmls/images/size.png +0 -0
  18. package/bin/website-htmls/index.html +1 -1
  19. package/bin/website-htmls/main.js +2 -0
  20. package/bin/website-htmls/pages/App/index.html +4 -1
  21. package/bin/website-htmls/pages/App/index.scss +6 -5
  22. package/bin/website-htmls/pages/appStore/index.html +19 -6
  23. package/bin/website-htmls/pages/appStore/index.js +3 -1
  24. package/bin/website-htmls/pages/appStore/index.scss +38 -23
  25. package/bin/website-htmls/pages/chart/index.html +9 -0
  26. package/bin/website-htmls/pages/chart/index.js +73 -0
  27. package/bin/website-htmls/pages/chart/index.scss +73 -0
  28. package/bin/website-htmls/pages/image-editor/index.html +28 -0
  29. package/bin/website-htmls/pages/image-editor/index.js +107 -0
  30. package/bin/website-htmls/pages/image-editor/index.scss +46 -0
  31. package/bin/website-htmls/router.config.js +6 -0
  32. package/bin/website-htmls/styles/common.css +0 -3
  33. package/bin/website-plugins/intercept/chart.js +34 -0
  34. package/bin/website-plugins/intercept/head.js +1 -1
  35. package/bin/website-plugins/intercept/index.js +5 -1
  36. package/bin/website-plugins/intercept/oipage-vislite-intercept.js +34 -0
  37. package/bin/website-plugins/intercept/oipage-zipaper-intercept.js +2 -2
  38. package/nodejs/animation/index.js +1 -1
  39. package/nodejs/cmdlog/index.js +1 -1
  40. package/nodejs/disk/index.js +1 -1
  41. package/nodejs/format/index.js +1 -1
  42. package/nodejs/json/index.js +1 -1
  43. package/nodejs/logform/index.js +1 -1
  44. package/nodejs/reader/index.js +1 -1
  45. package/nodejs/throttle/index.js +1 -1
  46. package/package.json +2 -2
  47. package/web/XMLHttpRequest/index.js +1 -1
  48. package/web/animation/index.js +1 -1
  49. package/web/format/index.js +1 -1
  50. package/web/json/index.js +1 -1
  51. package/web/onReady/index.js +1 -1
  52. package/web/performChunk/index.js +1 -1
  53. package/web/reader/index.js +1 -1
  54. package/web/style/index.js +1 -1
  55. package/web/throttle/index.js +1 -1
  56. /package/bin/website-htmls/{logo.png → images/logo.png} +0 -0
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * XMLHttpRequest of OIPage v1.4.1
2
+ * XMLHttpRequest of OIPage v1.5.0-alpha.1
3
3
  * git+https://github.com/oi-contrib/OIPage.git
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * animation of OIPage v1.4.1
2
+ * animation of OIPage v1.5.0-alpha.1
3
3
  * git+https://github.com/oi-contrib/OIPage.git
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * format of OIPage v1.4.1
2
+ * format of OIPage v1.5.0-alpha.1
3
3
  * git+https://github.com/oi-contrib/OIPage.git
4
4
  */
5
5
 
package/web/json/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * json of OIPage v1.4.1
2
+ * json of OIPage v1.5.0-alpha.1
3
3
  * git+https://github.com/oi-contrib/OIPage.git
4
4
  */
5
5
  import {reader} from "../reader/index.js";
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * onReady of OIPage v1.4.1
2
+ * onReady of OIPage v1.5.0-alpha.1
3
3
  * git+https://github.com/oi-contrib/OIPage.git
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * performChunk of OIPage v1.4.1
2
+ * performChunk of OIPage v1.5.0-alpha.1
3
3
  * git+https://github.com/oi-contrib/OIPage.git
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * reader of OIPage v1.4.1
2
+ * reader of OIPage v1.5.0-alpha.1
3
3
  * git+https://github.com/oi-contrib/OIPage.git
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * style of OIPage v1.4.1
2
+ * style of OIPage v1.5.0-alpha.1
3
3
  * git+https://github.com/oi-contrib/OIPage.git
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * throttle of OIPage v1.4.1
2
+ * throttle of OIPage v1.5.0-alpha.1
3
3
  * git+https://github.com/oi-contrib/OIPage.git
4
4
  */
5
5
 
File without changes