jsf.js_next_gen 1.0.0-beta-11 → 1.0.0-beta-14

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 (43) hide show
  1. package/dist/window/jsf-development.js +3615 -73
  2. package/dist/window/jsf-development.js.map +1 -1
  3. package/dist/window/jsf.js +1 -1
  4. package/dist/window/jsf.js.br +0 -0
  5. package/dist/window/jsf.js.gz +0 -0
  6. package/dist/window/jsf.js.map +1 -1
  7. package/package.json +10 -8
  8. package/src/main/typescript/impl/AjaxImpl.ts +3 -3
  9. package/src/main/typescript/impl/util/AsyncQueue.ts +1 -1
  10. package/src/main/typescript/impl/util/ExtDomQuery.ts +70 -12
  11. package/src/main/typescript/impl/xhrCore/ErrorData.ts +2 -2
  12. package/src/main/typescript/impl/xhrCore/ResponseProcessor.ts +3 -2
  13. package/src/main/typescript/impl/xhrCore/XhrFormData.ts +2 -1
  14. package/src/main/typescript/impl/xhrCore/XhrRequest.ts +6 -5
  15. package/src/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.ts +2 -1
  16. package/src/main/typescript/test/queue/AsynchronousQueueTest.spec.ts +3 -3
  17. package/src/main/typescript/test/xhrCore/ResponseTest.spec.ts +0 -1
  18. package/src/test/resources/jsf-development.js +2 -2
  19. package/target/impl/AjaxImpl.js +1 -1
  20. package/target/impl/AjaxImpl.js.map +1 -1
  21. package/target/impl/util/AsyncQueue.js +13 -13
  22. package/target/impl/util/AsyncQueue.js.map +1 -1
  23. package/target/impl/util/ExtDomQuery.js +65 -11
  24. package/target/impl/util/ExtDomQuery.js.map +1 -1
  25. package/target/impl/xhrCore/ErrorData.js +3 -2
  26. package/target/impl/xhrCore/ErrorData.js.map +1 -1
  27. package/target/impl/xhrCore/ResponseProcessor.js +3 -2
  28. package/target/impl/xhrCore/ResponseProcessor.js.map +1 -1
  29. package/target/impl/xhrCore/XhrFormData.js +2 -1
  30. package/target/impl/xhrCore/XhrFormData.js.map +1 -1
  31. package/target/impl/xhrCore/XhrRequest.js +7 -5
  32. package/target/impl/xhrCore/XhrRequest.js.map +1 -1
  33. package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js +2 -1
  34. package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js.map +1 -1
  35. package/target/test/queue/AsynchronousQueueTest.spec.js +2 -2
  36. package/target/test/queue/AsynchronousQueueTest.spec.js.map +1 -1
  37. package/target/test/xhrCore/ResponseTest.spec.js.map +1 -1
  38. package/webpack.config.js +7 -3
  39. package/webpack.config.js.map +1 -1
  40. package/webpack.config.ts +8 -7
  41. package/dist/docs/assets/widgets.png +0 -0
  42. package/dist/docs/assets/widgets@2x.png +0 -0
  43. package/dist/window/tmp +0 -0
package/webpack.config.ts CHANGED
@@ -26,11 +26,13 @@ function build(env: {[key:string]: string}, argv: {[key:string]: string}) {
26
26
  libraryTarget: libraryTarget,
27
27
  filename: (argv.mode == "production") ? "jsf.js" : "jsf-development.js"
28
28
  },
29
+
29
30
  resolve: {
30
31
  extensions: [".tsx", ".ts", ".json"],
31
32
  alias: {
32
33
  /*we load the reduced core, because there are some parts we simply do not need*/
33
- "mona-dish": path.resolve(__dirname, "node_modules/mona-dish/dist/js/commonjs/index_core.js")
34
+ //"mona-dish": path.resolve(__dirname, "node_modules/mona-dish/dist/js/commonjs/index_core.js")
35
+ "mona-dish": path.resolve(__dirname, "node_modules/mona-dish/src/main/typescript/index_core.ts")
34
36
  }
35
37
  },
36
38
  externals: {
@@ -42,8 +44,11 @@ function build(env: {[key:string]: string}, argv: {[key:string]: string}) {
42
44
  // all files with a '.ts' or '.tsx' extension will be handled by 'ts-loader'
43
45
  {
44
46
  test: /\.tsx?$/, use: [{
45
- loader: "ts-loader"
46
- }], exclude: /node_modules/
47
+ loader: "ts-loader",
48
+ options: {
49
+ allowTsInNodeModules: true
50
+ }
51
+ }]
47
52
  }, {
48
53
  test: /jsf\.js$/,
49
54
  loader: 'string-replace-loader',
@@ -56,10 +61,6 @@ function build(env: {[key:string]: string}, argv: {[key:string]: string}) {
56
61
  },
57
62
 
58
63
 
59
-
60
-
61
-
62
-
63
64
  plugins: [
64
65
 
65
66
  new CompressionPlugin({
Binary file
Binary file
package/dist/window/tmp DELETED
File without changes