jsf.js_next_gen 1.0.0-beta-3 → 1.0.0-beta-6
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/dist/docs/.nojekyll +1 -0
- package/dist/docs/assets/highlight.css +22 -0
- package/dist/docs/assets/main.js +54 -0
- package/dist/docs/assets/search.js +1 -0
- package/dist/docs/assets/style.css +1225 -0
- package/dist/docs/assets/widgets.png +0 -0
- package/dist/docs/assets/widgets@2x.png +0 -0
- package/dist/docs/functions/jsf.ajax.addOnError.html +84 -0
- package/dist/docs/functions/jsf.ajax.addOnEvent.html +74 -0
- package/dist/docs/functions/jsf.ajax.request.html +74 -0
- package/dist/docs/functions/jsf.ajax.response.html +69 -0
- package/dist/docs/functions/jsf.getClientWindow.html +65 -0
- package/dist/docs/functions/jsf.getProjectStage.html +69 -0
- package/dist/docs/functions/jsf.getViewState.html +68 -0
- package/dist/docs/functions/jsf.push.close.html +63 -0
- package/dist/docs/functions/jsf.push.init.html +81 -0
- package/dist/docs/functions/jsf.push.open.html +63 -0
- package/dist/docs/functions/jsf.util.chain.html +69 -0
- package/dist/docs/functions/myfaces.ab.html +78 -0
- package/dist/docs/index.html +173 -0
- package/dist/docs/modules/jsf.ajax.html +59 -0
- package/dist/docs/modules/jsf.html +71 -0
- package/dist/docs/modules/jsf.push.html +57 -0
- package/dist/docs/modules/jsf.util.html +53 -0
- package/dist/docs/modules/myfaces.html +52 -0
- package/dist/docs/modules.html +48 -0
- package/dist/docs/variables/jsf.implversion.html +57 -0
- package/dist/docs/variables/jsf.separatorchar.html +54 -0
- package/dist/docs/variables/jsf.specversion.html +52 -0
- package/dist/window/jsf-development.js +1 -1
- package/dist/window/jsf-development.js.map +1 -1
- package/dist/window/jsf.js +1 -1
- package/dist/window/jsf.js.br +0 -0
- package/dist/window/jsf.js.gz +0 -0
- package/dist/window/jsf.js.map +1 -1
- package/dist/window/tmp +0 -0
- package/package.json +5 -3
- package/src/main/typescript/api/Jsf.ts +1 -1
- package/src/main/typescript/tsconfig-typedoc.json +20 -0
- package/src/test/resources/jsf-development.js +450 -3672
- package/src/test/resources/jsf.js +1 -1
- package/src/test/resources/jsf.js.br +0 -0
- package/src/test/resources/jsf.js.gz +0 -0
- package/target/api/Jsf.js.map +1 -1
package/dist/window/tmp
ADDED
|
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-
|
|
3
|
+
"version": "1.0.0-beta-6",
|
|
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.
|
|
48
|
+
"mona-dish": "0.21.3"
|
|
47
49
|
}
|
|
48
50
|
}
|
|
@@ -176,7 +176,7 @@ export module jsf {
|
|
|
176
176
|
* @returns true if the chain has succeeded false otherwise
|
|
177
177
|
*/
|
|
178
178
|
export function chain(source, event, ...funcs: Array<Function | string>): boolean {
|
|
179
|
-
return Implementation.chain(source, event, ...funcs);
|
|
179
|
+
return Implementation.chain(source, event, ...(funcs as EvalFuncs));
|
|
180
180
|
}
|
|
181
181
|
}
|
|
182
182
|
|
|
@@ -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
|
+
}
|