jsf.js_next_gen 1.0.0-beta-2 → 1.0.0-beta-5

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 (42) hide show
  1. package/dist/docs/.nojekyll +1 -0
  2. package/dist/docs/assets/highlight.css +22 -0
  3. package/dist/docs/assets/main.js +54 -0
  4. package/dist/docs/assets/search.js +1 -0
  5. package/dist/docs/assets/style.css +1225 -0
  6. package/dist/docs/assets/widgets.png +0 -0
  7. package/dist/docs/assets/widgets@2x.png +0 -0
  8. package/dist/docs/functions/jsf.ajax.addOnError.html +84 -0
  9. package/dist/docs/functions/jsf.ajax.addOnEvent.html +74 -0
  10. package/dist/docs/functions/jsf.ajax.request.html +74 -0
  11. package/dist/docs/functions/jsf.ajax.response.html +69 -0
  12. package/dist/docs/functions/jsf.getClientWindow.html +65 -0
  13. package/dist/docs/functions/jsf.getProjectStage.html +69 -0
  14. package/dist/docs/functions/jsf.getViewState.html +68 -0
  15. package/dist/docs/functions/jsf.push.close.html +63 -0
  16. package/dist/docs/functions/jsf.push.init.html +81 -0
  17. package/dist/docs/functions/jsf.push.open.html +63 -0
  18. package/dist/docs/functions/jsf.util.chain.html +69 -0
  19. package/dist/docs/functions/myfaces.ab.html +78 -0
  20. package/dist/docs/index.html +173 -0
  21. package/dist/docs/modules/jsf.ajax.html +59 -0
  22. package/dist/docs/modules/jsf.html +71 -0
  23. package/dist/docs/modules/jsf.push.html +57 -0
  24. package/dist/docs/modules/jsf.util.html +53 -0
  25. package/dist/docs/modules/myfaces.html +52 -0
  26. package/dist/docs/modules.html +48 -0
  27. package/dist/docs/variables/jsf.implversion.html +57 -0
  28. package/dist/docs/variables/jsf.separatorchar.html +54 -0
  29. package/dist/docs/variables/jsf.specversion.html +52 -0
  30. package/dist/window/jsf-development.js +1 -1
  31. package/dist/window/jsf-development.js.map +1 -1
  32. package/dist/window/jsf.js +1 -1
  33. package/dist/window/jsf.js.br +0 -0
  34. package/dist/window/jsf.js.gz +0 -0
  35. package/dist/window/jsf.js.map +1 -1
  36. package/dist/window/tmp +0 -0
  37. package/package.json +5 -3
  38. package/src/main/typescript/tsconfig-typedoc.json +20 -0
  39. package/src/test/resources/jsf-development.js +450 -3672
  40. package/src/test/resources/jsf.js +1 -1
  41. package/src/test/resources/jsf.js.br +0 -0
  42. package/src/test/resources/jsf.js.gz +0 -0
File without changes
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "jsf.js_next_gen",
3
- "version": "1.0.0-beta-2",
3
+ "version": "1.0.0-beta-5",
4
4
  "description": "A next generation typescript reimplementation of jsf.js",
5
5
  "main": "dist/window/jsf.js",
6
6
  "scripts": {
7
+ "doc": "npx typedoc --tsconfig src/main/typescript/tsconfig-typedoc.json",
7
8
  "test": "env TS_NODE_PROJECT=./src/test/typescript/tsconfig.json mocha -r ts-node/register ./src/test/typescript/**/**/*Test*.ts",
8
9
  "coverage": "nyc --reporter=html --reporter=text mocha -r ts-node/register ./**/test/typescript/**/**/*Test*.ts",
9
10
  "build-production": "webpack --mode production --env FILE_NAME=jsf && ts-node ./remap.ts --production",
10
11
  "build-development": "webpack --mode development --env FILE_NAME=jsf-development && ts-node ./remap.ts --development",
11
- "build": "npm run build-development && npm run build-production"
12
+ "build": "npm run doc && npm run build-development && npm run build-production"
12
13
  },
13
14
  "keywords": [
14
15
  "myfaces",
@@ -37,12 +38,13 @@
37
38
  "terser-webpack-plugin": "^5.3.6",
38
39
  "ts-loader": "^9.3.1",
39
40
  "ts-node": "^10.9.1",
41
+ "typedoc": "^0.23.14",
40
42
  "typescript": "^4.8.2",
41
43
  "webpack": "^5.74.0",
42
44
  "webpack-cli": "^4.10.0",
43
45
  "webpack-dev-server": "^4.10.1"
44
46
  },
45
47
  "dependencies": {
46
- "mona-dish": "0.21.0"
48
+ "mona-dish": "0.21.3"
47
49
  }
48
50
  }
@@ -0,0 +1,20 @@
1
+ /*
2
+ Special config to generate the tsdocs
3
+ */
4
+ {
5
+ "extends": "./tsconfig.json",
6
+ "compilerOptions": {
7
+ "skipLibCheck": true
8
+ },
9
+ "typedocOptions": {
10
+ "entryPoints": ["api/Jsf.ts"],
11
+ "out": "../../../dist/docs",
12
+ "externalPattern": "**/node_modules/**",
13
+ "exclude": "**/{node_modules,test,doc,impl,myfaces}/**/*",
14
+ "excludeExternals": true,
15
+ "excludePrivate": true,
16
+ "excludeProtected": true,
17
+ "emit": "both",
18
+ "disableSources": true
19
+ }
20
+ }