jsf.js_next_gen 4.0.4-beta.6 → 4.0.4-beta.8
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/functions/myfaces.ab.html +8 -3
- package/dist/window/faces-development.js +157 -147
- package/dist/window/faces-development.js.map +1 -1
- package/dist/window/faces.js +1 -1
- package/dist/window/faces.js.map +1 -1
- package/dist/window/jsf-development.js +157 -147
- package/dist/window/jsf-development.js.map +1 -1
- package/dist/window/jsf.js +1 -1
- package/dist/window/jsf.js.map +1 -1
- package/package.json +6 -6
- package/src/main/typescript/@types/definitions/index.d.ts +1 -1
- package/src/main/typescript/api/_api.ts +31 -15
- package/src/main/typescript/impl/AjaxImpl.ts +5 -5
- package/src/main/typescript/impl/util/Assertions.ts +1 -1
- package/src/main/typescript/impl/util/Lang.ts +2 -2
- package/src/main/typescript/impl/util/XhrQueueController.ts +1 -1
- package/src/main/typescript/impl/xhrCore/ErrorData.ts +2 -2
- package/src/main/typescript/impl/xhrCore/RequestDataResolver.ts +1 -1
- package/src/main/typescript/impl/xhrCore/ResponseProcessor.ts +5 -5
- package/src/main/typescript/impl/xhrCore/XhrFormData.ts +1 -1
- package/src/main/typescript/impl/xhrCore/XhrRequest.ts +1 -1
- package/src/main/typescript/myfaces/OamSubmit.ts +1 -1
- package/src/main/typescript/test/api/MyFacesABTest.spec.ts +117 -0
- package/src/main/typescript/test/frameworkBase/LangTest.spec.ts +11 -14
- package/src/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.ts +8 -10
- package/src/main/typescript/test/frameworkBase/_ext/monadish/LangTest.spec.ts +6 -2
- package/src/main/typescript/test/frameworkBase/_ext/monadish/MappingProbes.ts +9 -9
- package/src/main/typescript/test/frameworkBase/_ext/monadish/MonadTest.spec.ts +5 -4
- package/src/main/typescript/test/frameworkBase/_ext/shared/StandardInits.ts +30 -30
- package/src/main/typescript/test/impl/ImplTest.spec.ts +2 -2
- package/src/main/typescript/test/impl/ImplTest_23.spec.ts +2 -2
- package/src/main/typescript/test/impl/SeparatorCharsTest.spec.ts +2 -2
- package/src/main/typescript/test/impl/util/ExtDomQueryTest.spec.ts +1 -1
- package/src/main/typescript/test/myfaces/OamSubmit.spec.ts +4 -4
- package/src/main/typescript/test/myfaces/OnLoad.spec.ts +1 -1
- package/src/main/typescript/test/queue/AsynchronousQueueTest.spec.ts +4 -4
- package/src/main/typescript/test/xhrCore/ClientWindow.spec.ts +3 -3
- package/src/main/typescript/test/xhrCore/ErrorChainTest.spec.ts +5 -5
- package/src/main/typescript/test/xhrCore/EventTests.spec.ts +4 -4
- package/src/main/typescript/test/xhrCore/FileUploadTest.spec.ts +3 -3
- package/src/main/typescript/test/xhrCore/NamespacesRequestTest.spec.ts +5 -5
- package/src/main/typescript/test/xhrCore/OamSubmitTest.spec.ts +4 -4
- package/src/main/typescript/test/xhrCore/RequestParamsTest.spec.ts +5 -5
- package/src/main/typescript/test/xhrCore/RequestTest.spec.ts +10 -10
- package/src/main/typescript/test/xhrCore/RequestTest_23.spec.ts +9 -9
- package/src/main/typescript/test/xhrCore/ResponseTest.spec.ts +24 -24
- package/src/main/typescript/test/xhrCore/ResponseTest23.spec.ts +25 -25
- package/src/main/typescript/test/xhrCore/ShadowDomTest.spec.ts +3 -3
- package/src/main/typescript/test/xhrCore/TobagoFileUploadTest.spec.ts +3 -3
- package/src/main/typescript/test/xhrCore/WebsocketTest.ts +8 -8
- package/src/main/typescript/test/xhrCore/XhrFormDataTest.spec.ts +10 -10
- package/src/main/typescript/test/xhrCore/XhrRequestProgress.spec.ts +3 -3
- package/target/api/_api.js +17 -3
- package/target/api/_api.js.map +1 -1
- package/target/impl/AjaxImpl.js +5 -5
- package/target/impl/AjaxImpl.js.map +1 -1
- package/target/impl/util/Assertions.js.map +1 -1
- package/target/impl/util/Lang.js.map +1 -1
- package/target/impl/util/XhrQueueController.js +1 -1
- package/target/impl/util/XhrQueueController.js.map +1 -1
- package/target/impl/xhrCore/ErrorData.js +2 -2
- package/target/impl/xhrCore/ErrorData.js.map +1 -1
- package/target/impl/xhrCore/RequestDataResolver.js.map +1 -1
- package/target/impl/xhrCore/ResponseProcessor.js +2 -2
- package/target/impl/xhrCore/ResponseProcessor.js.map +1 -1
- package/target/impl/xhrCore/XhrFormData.js +1 -1
- package/target/impl/xhrCore/XhrFormData.js.map +1 -1
- package/target/impl/xhrCore/XhrRequest.js +1 -1
- package/target/impl/xhrCore/XhrRequest.js.map +1 -1
- package/target/myfaces/OamSubmit.js +1 -1
- package/target/myfaces/OamSubmit.js.map +1 -1
- package/target/test/api/MyFacesABTest.spec.js +117 -0
- package/target/test/api/MyFacesABTest.spec.js.map +1 -0
- package/target/test/frameworkBase/LangTest.spec.js +8 -11
- package/target/test/frameworkBase/LangTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js +3 -5
- package/target/test/frameworkBase/_ext/monadish/DomQueryTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/LangTest.spec.js +15 -8
- package/target/test/frameworkBase/_ext/monadish/LangTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/MappingProbes.js.map +1 -1
- package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js +44 -40
- package/target/test/frameworkBase/_ext/monadish/MonadTest.spec.js.map +1 -1
- package/target/test/frameworkBase/_ext/shared/StandardInits.js.map +1 -1
- package/target/test/impl/ImplTest.spec.js +1 -1
- package/target/test/impl/ImplTest.spec.js.map +1 -1
- package/target/test/impl/ImplTest_23.spec.js +1 -1
- package/target/test/impl/ImplTest_23.spec.js.map +1 -1
- package/target/test/impl/SeparatorCharsTest.spec.js +2 -2
- package/target/test/impl/SeparatorCharsTest.spec.js.map +1 -1
- package/target/test/impl/util/ExtDomQueryTest.spec.js +1 -1
- package/target/test/impl/util/ExtDomQueryTest.spec.js.map +1 -1
- package/target/test/myfaces/OamSubmit.spec.js +4 -4
- package/target/test/myfaces/OamSubmit.spec.js.map +1 -1
- package/target/test/myfaces/OnLoad.spec.js +1 -1
- package/target/test/myfaces/OnLoad.spec.js.map +1 -1
- package/target/test/queue/AsynchronousQueueTest.spec.js +1 -1
- package/target/test/queue/AsynchronousQueueTest.spec.js.map +1 -1
- package/target/test/xhrCore/ClientWindow.spec.js.map +1 -1
- package/target/test/xhrCore/ErrorChainTest.spec.js +2 -2
- package/target/test/xhrCore/ErrorChainTest.spec.js.map +1 -1
- package/target/test/xhrCore/EventTests.spec.js +2 -2
- package/target/test/xhrCore/EventTests.spec.js.map +1 -1
- package/target/test/xhrCore/FileUploadTest.spec.js +1 -1
- package/target/test/xhrCore/FileUploadTest.spec.js.map +1 -1
- package/target/test/xhrCore/NamespacesRequestTest.spec.js +2 -2
- package/target/test/xhrCore/NamespacesRequestTest.spec.js.map +1 -1
- package/target/test/xhrCore/OamSubmitTest.spec.js +1 -1
- package/target/test/xhrCore/OamSubmitTest.spec.js.map +1 -1
- package/target/test/xhrCore/RequestParamsTest.spec.js +2 -2
- package/target/test/xhrCore/RequestParamsTest.spec.js.map +1 -1
- package/target/test/xhrCore/RequestTest.spec.js +4 -4
- package/target/test/xhrCore/RequestTest.spec.js.map +1 -1
- package/target/test/xhrCore/RequestTest_23.spec.js +3 -3
- package/target/test/xhrCore/RequestTest_23.spec.js.map +1 -1
- package/target/test/xhrCore/ResponseTest.spec.js +2 -2
- package/target/test/xhrCore/ResponseTest.spec.js.map +1 -1
- package/target/test/xhrCore/ResponseTest23.spec.js +3 -2
- package/target/test/xhrCore/ResponseTest23.spec.js.map +1 -1
- package/target/test/xhrCore/ShadowDomTest.spec.js +1 -1
- package/target/test/xhrCore/ShadowDomTest.spec.js.map +1 -1
- package/target/test/xhrCore/TobagoFileUploadTest.spec.js +1 -1
- package/target/test/xhrCore/TobagoFileUploadTest.spec.js.map +1 -1
- package/target/test/xhrCore/WebsocketTest.js +2 -2
- package/target/test/xhrCore/WebsocketTest.js.map +1 -1
- package/target/test/xhrCore/XhrFormDataTest.spec.js +1 -1
- package/target/test/xhrCore/XhrFormDataTest.spec.js.map +1 -1
- package/target/test/xhrCore/XhrRequestProgress.spec.js +1 -1
- package/target/test/xhrCore/XhrRequestProgress.spec.js.map +1 -1
- package/webpack.config.ts +2 -2
- package/faulty_response.html +0 -167
- package/pom.xml +0 -68
- package/remap.js +0 -43
- package/remap.js.map +0 -1
- package/target/classes/application.properties +0 -1
- package/target/classes/com/example/jsfs_js_ts/DecoratedFacesJS.class +0 -0
- package/target/classes/com/example/jsfs_js_ts/DecoratingResourceHandlerWrapper.class +0 -0
- package/target/classes/com/example/jsfs_js_ts/FacesJSMapFileResourceWrapper.class +0 -0
- package/target/classes/com/example/jsfs_js_ts/FacesJSMappingDecorator.class +0 -0
- package/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +0 -4
- package/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +0 -4
- package/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst +0 -1
- package/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +0 -1
- package/target/surefire-reports/TEST-com.example.jsfs_js_ts.JsfsJsTsApplicationTests.xml +0 -76
- package/target/surefire-reports/com.example.jsfs_js_ts.JsfsJsTsApplicationTests.txt +0 -7
- package/target/test-classes/.gz +0 -0
- package/target/test-classes/com/example/jsfs_js_ts/JsfsJsTsApplicationTests.class +0 -0
- package/target/test-classes/fileuploadtest.html +0 -24
- package/target/test-classes/jsf-development.js +0 -3559
- package/target/test-classes/jsf-development.js.br +0 -0
- package/target/test-classes/jsf-development.js.gz +0 -0
- package/target/test-classes/jsf-development.js.map +0 -1
- package/target/test-classes/jsf.js +0 -3
- package/target/test-classes/jsf.js.br +0 -0
- package/target/test-classes/jsf.js.gz +0 -0
- package/webpack.config.js +0 -54
- package/webpack.config.js.map +0 -1
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ var __webpack_modules__ = ({
|
|
4
4
|
|
|
5
|
-
/***/ "./node_modules/mona-dish/src/main/typescript/AssocArray.ts"
|
|
5
|
+
/***/ "./node_modules/mona-dish/src/main/typescript/AssocArray.ts"
|
|
6
6
|
/*!******************************************************************!*\
|
|
7
7
|
!*** ./node_modules/mona-dish/src/main/typescript/AssocArray.ts ***!
|
|
8
8
|
\******************************************************************/
|
|
9
|
-
|
|
9
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
/*!
|
|
@@ -367,13 +367,13 @@ function deepEqual(obj1, obj2) {
|
|
|
367
367
|
exports.deepEqual = deepEqual;
|
|
368
368
|
|
|
369
369
|
|
|
370
|
-
/***/ }
|
|
370
|
+
/***/ },
|
|
371
371
|
|
|
372
|
-
/***/ "./node_modules/mona-dish/src/main/typescript/Config.ts"
|
|
372
|
+
/***/ "./node_modules/mona-dish/src/main/typescript/Config.ts"
|
|
373
373
|
/*!**************************************************************!*\
|
|
374
374
|
!*** ./node_modules/mona-dish/src/main/typescript/Config.ts ***!
|
|
375
375
|
\**************************************************************/
|
|
376
|
-
|
|
376
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
377
377
|
|
|
378
378
|
|
|
379
379
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
@@ -381,7 +381,7 @@ exports.Config = exports.CONFIG_ANY = exports.CONFIG_VALUE = void 0;
|
|
|
381
381
|
const Es2019Array_1 = __webpack_require__(/*! ./Es2019Array */ "./node_modules/mona-dish/src/main/typescript/Es2019Array.ts");
|
|
382
382
|
const Monad_1 = __webpack_require__(/*! ./Monad */ "./node_modules/mona-dish/src/main/typescript/Monad.ts");
|
|
383
383
|
const Lang_1 = __webpack_require__(/*! ./Lang */ "./node_modules/mona-dish/src/main/typescript/Lang.ts");
|
|
384
|
-
|
|
384
|
+
const objAssign = Lang_1.Lang.objAssign;
|
|
385
385
|
const AssocArray_1 = __webpack_require__(/*! ./AssocArray */ "./node_modules/mona-dish/src/main/typescript/AssocArray.ts");
|
|
386
386
|
/**
|
|
387
387
|
* specialized value embedder
|
|
@@ -611,13 +611,13 @@ class Config extends Monad_1.Optional {
|
|
|
611
611
|
exports.Config = Config;
|
|
612
612
|
|
|
613
613
|
|
|
614
|
-
/***/ }
|
|
614
|
+
/***/ },
|
|
615
615
|
|
|
616
|
-
/***/ "./node_modules/mona-dish/src/main/typescript/DomQuery.ts"
|
|
616
|
+
/***/ "./node_modules/mona-dish/src/main/typescript/DomQuery.ts"
|
|
617
617
|
/*!****************************************************************!*\
|
|
618
618
|
!*** ./node_modules/mona-dish/src/main/typescript/DomQuery.ts ***!
|
|
619
619
|
\****************************************************************/
|
|
620
|
-
|
|
620
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
621
621
|
|
|
622
622
|
|
|
623
623
|
/*!
|
|
@@ -652,10 +652,10 @@ const SourcesCollectors_1 = __webpack_require__(/*! ./SourcesCollectors */ "./no
|
|
|
652
652
|
const Lang_1 = __webpack_require__(/*! ./Lang */ "./node_modules/mona-dish/src/main/typescript/Lang.ts");
|
|
653
653
|
const Global_1 = __webpack_require__(/*! ./Global */ "./node_modules/mona-dish/src/main/typescript/Global.ts");
|
|
654
654
|
const Es2019Array_1 = __webpack_require__(/*! ./Es2019Array */ "./node_modules/mona-dish/src/main/typescript/Es2019Array.ts");
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
655
|
+
const trim = Lang_1.Lang.trim;
|
|
656
|
+
const isString = Lang_1.Lang.isString;
|
|
657
|
+
const eqi = Lang_1.Lang.equalsIgnoreCase;
|
|
658
|
+
const objToArray = Lang_1.Lang.objToArray;
|
|
659
659
|
const AssocArray_1 = __webpack_require__(/*! ./AssocArray */ "./node_modules/mona-dish/src/main/typescript/AssocArray.ts");
|
|
660
660
|
class NonceValueEmbedder extends Monad_1.ValueEmbedder {
|
|
661
661
|
constructor(rootElems) {
|
|
@@ -993,7 +993,7 @@ class DomQuery {
|
|
|
993
993
|
this.id.value = value;
|
|
994
994
|
}
|
|
995
995
|
get checked() {
|
|
996
|
-
return new Es2019Array_1.Es2019Array(...this.values).every(el => !!el.checked);
|
|
996
|
+
return new Es2019Array_1.Es2019Array(...this.values).every(el => !!(el).checked);
|
|
997
997
|
}
|
|
998
998
|
set checked(newChecked) {
|
|
999
999
|
this.eachElem(el => el.checked = newChecked);
|
|
@@ -1442,7 +1442,7 @@ class DomQuery {
|
|
|
1442
1442
|
filterSelector(selector) {
|
|
1443
1443
|
let matched = [];
|
|
1444
1444
|
this.eachElem(item => {
|
|
1445
|
-
if (this.
|
|
1445
|
+
if (this._matchesSelector(item, selector)) {
|
|
1446
1446
|
matched.push(item);
|
|
1447
1447
|
}
|
|
1448
1448
|
});
|
|
@@ -1456,7 +1456,7 @@ class DomQuery {
|
|
|
1456
1456
|
*/
|
|
1457
1457
|
matchesSelector(selector) {
|
|
1458
1458
|
return this.asArray
|
|
1459
|
-
.some(item => this.
|
|
1459
|
+
.some(item => this._matchesSelector(item.getAsElem(0).value, selector));
|
|
1460
1460
|
}
|
|
1461
1461
|
/**
|
|
1462
1462
|
* easy node traversal, you can pass
|
|
@@ -2201,7 +2201,7 @@ class DomQuery {
|
|
|
2201
2201
|
}).filter(item => {
|
|
2202
2202
|
return item?.value?.value?.nodeType == TYPE_CDATA_BLOCK;
|
|
2203
2203
|
}).reduce((reduced: Array<any>, item: DomQuery) => {
|
|
2204
|
-
reduced.push((
|
|
2204
|
+
reduced.push((item?.value?.value)?.data ?? "" as any);
|
|
2205
2205
|
return reduced;
|
|
2206
2206
|
}, []).value;*/
|
|
2207
2207
|
// response may contain several blocks
|
|
@@ -2249,8 +2249,9 @@ class DomQuery {
|
|
|
2249
2249
|
attachShadow(params = { mode: "open" }) {
|
|
2250
2250
|
let shadowRoots = [];
|
|
2251
2251
|
this.eachElem((item) => {
|
|
2252
|
+
var _a;
|
|
2252
2253
|
let shadowElement;
|
|
2253
|
-
if (item === null ||
|
|
2254
|
+
if ((_a = (item)) === null || _a === void 0 ? void 0 : _a.attachShadow) {
|
|
2254
2255
|
shadowElement = DomQuery.byId(item.attachShadow(params));
|
|
2255
2256
|
shadowRoots.push(shadowElement);
|
|
2256
2257
|
}
|
|
@@ -2471,8 +2472,6 @@ class DomQuery {
|
|
|
2471
2472
|
}
|
|
2472
2473
|
return foundNodes;
|
|
2473
2474
|
}
|
|
2474
|
-
// source: https:// developer.mozilla.org/en-US/docs/Web/API/Element/matches
|
|
2475
|
-
// code snippet license: https:// creativecommons.org/licenses/by-sa/2.5/
|
|
2476
2475
|
/**
|
|
2477
2476
|
* matches selector call in a browser independent manner
|
|
2478
2477
|
*
|
|
@@ -2480,21 +2479,12 @@ class DomQuery {
|
|
|
2480
2479
|
* @param selector
|
|
2481
2480
|
* @private
|
|
2482
2481
|
*/
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
prototypeOwner.oMatchesSelector ||
|
|
2490
|
-
prototypeOwner.webkitMatchesSelector ||
|
|
2491
|
-
function (s) {
|
|
2492
|
-
let matches = (document || ownerDocument).querySelectorAll(s), i = matches.length;
|
|
2493
|
-
while (--i >= 0 && matches.item(i) !== toMatch) {
|
|
2494
|
-
}
|
|
2495
|
-
return i > -1;
|
|
2496
|
-
};
|
|
2497
|
-
return matchesSelector.call(toMatch, selector);
|
|
2482
|
+
_matchesSelector(toMatch, selector) {
|
|
2483
|
+
if (toMatch.matches) {
|
|
2484
|
+
return toMatch.matches(selector);
|
|
2485
|
+
}
|
|
2486
|
+
var foundElements = (document || ownerDocument).querySelectorAll(selector);
|
|
2487
|
+
return Array.prototype.indexOf.call(foundElements, toMatch) !== -1;
|
|
2498
2488
|
}
|
|
2499
2489
|
/**
|
|
2500
2490
|
* sticky non-sticky unified code of the load script eval
|
|
@@ -2621,13 +2611,13 @@ exports.DQ = DomQuery;
|
|
|
2621
2611
|
exports.DQ$ = DomQuery.querySelectorAll;
|
|
2622
2612
|
|
|
2623
2613
|
|
|
2624
|
-
/***/ }
|
|
2614
|
+
/***/ },
|
|
2625
2615
|
|
|
2626
|
-
/***/ "./node_modules/mona-dish/src/main/typescript/Es2019Array.ts"
|
|
2616
|
+
/***/ "./node_modules/mona-dish/src/main/typescript/Es2019Array.ts"
|
|
2627
2617
|
/*!*******************************************************************!*\
|
|
2628
2618
|
!*** ./node_modules/mona-dish/src/main/typescript/Es2019Array.ts ***!
|
|
2629
2619
|
\*******************************************************************/
|
|
2630
|
-
|
|
2620
|
+
(__unused_webpack_module, exports) {
|
|
2631
2621
|
|
|
2632
2622
|
|
|
2633
2623
|
/**
|
|
@@ -2650,10 +2640,10 @@ class Es2019Array_ extends Array {
|
|
|
2650
2640
|
this._another = another;
|
|
2651
2641
|
}
|
|
2652
2642
|
//for testing it definitely runs into this branch because we are on es5 level
|
|
2653
|
-
//if (!(
|
|
2643
|
+
//if (!(Array.prototype).flatMap as any) {
|
|
2654
2644
|
this.flatMap = (flatMapFun) => this._flatMap(flatMapFun);
|
|
2655
2645
|
//}
|
|
2656
|
-
//if (!(
|
|
2646
|
+
//if (!(Array.prototype).flat as any) {
|
|
2657
2647
|
this.flat = (flatLevel = 1) => this._flat(flatLevel);
|
|
2658
2648
|
//}
|
|
2659
2649
|
}
|
|
@@ -2752,13 +2742,13 @@ exports.Es2019Array = (Array.prototype.flatMap) ? function (...data) {
|
|
|
2752
2742
|
} : _Es2019Array;
|
|
2753
2743
|
|
|
2754
2744
|
|
|
2755
|
-
/***/ }
|
|
2745
|
+
/***/ },
|
|
2756
2746
|
|
|
2757
|
-
/***/ "./node_modules/mona-dish/src/main/typescript/Global.ts"
|
|
2747
|
+
/***/ "./node_modules/mona-dish/src/main/typescript/Global.ts"
|
|
2758
2748
|
/*!**************************************************************!*\
|
|
2759
2749
|
!*** ./node_modules/mona-dish/src/main/typescript/Global.ts ***!
|
|
2760
2750
|
\**************************************************************/
|
|
2761
|
-
|
|
2751
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
2762
2752
|
|
|
2763
2753
|
|
|
2764
2754
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
@@ -2799,13 +2789,13 @@ function _global$() {
|
|
|
2799
2789
|
exports._global$ = _global$;
|
|
2800
2790
|
|
|
2801
2791
|
|
|
2802
|
-
/***/ }
|
|
2792
|
+
/***/ },
|
|
2803
2793
|
|
|
2804
|
-
/***/ "./node_modules/mona-dish/src/main/typescript/Lang.ts"
|
|
2794
|
+
/***/ "./node_modules/mona-dish/src/main/typescript/Lang.ts"
|
|
2805
2795
|
/*!************************************************************!*\
|
|
2806
2796
|
!*** ./node_modules/mona-dish/src/main/typescript/Lang.ts ***!
|
|
2807
2797
|
\************************************************************/
|
|
2808
|
-
|
|
2798
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
2809
2799
|
|
|
2810
2800
|
|
|
2811
2801
|
/*!
|
|
@@ -2919,7 +2909,7 @@ var Lang;
|
|
|
2919
2909
|
}
|
|
2920
2910
|
//since offset is numeric we cannot use the shortcut due to 0 being false
|
|
2921
2911
|
//special condition array delivered no offset no pack
|
|
2922
|
-
if (obj instanceof Array && !offset && !pack)
|
|
2912
|
+
if ((obj) instanceof Array && !offset && !pack)
|
|
2923
2913
|
return obj;
|
|
2924
2914
|
return new Es2019Array_1.Es2019Array(...pack.concat(Array.prototype.slice.call(obj, offset)));
|
|
2925
2915
|
}
|
|
@@ -2975,8 +2965,8 @@ var Lang;
|
|
|
2975
2965
|
throw new TypeError('Cannot convert undefined or null to object');
|
|
2976
2966
|
}
|
|
2977
2967
|
let to = Object(target);
|
|
2978
|
-
if (Object.assign) {
|
|
2979
|
-
theArgs.forEach(item => Object.assign(to, item));
|
|
2968
|
+
if ((Object).assign) {
|
|
2969
|
+
theArgs.forEach(item => (Object).assign(to, item));
|
|
2980
2970
|
return to;
|
|
2981
2971
|
}
|
|
2982
2972
|
theArgs.filter(item => item != null).forEach(item => {
|
|
@@ -2991,13 +2981,13 @@ var Lang;
|
|
|
2991
2981
|
})(Lang || (exports.Lang = Lang = {}));
|
|
2992
2982
|
|
|
2993
2983
|
|
|
2994
|
-
/***/ }
|
|
2984
|
+
/***/ },
|
|
2995
2985
|
|
|
2996
|
-
/***/ "./node_modules/mona-dish/src/main/typescript/Monad.ts"
|
|
2986
|
+
/***/ "./node_modules/mona-dish/src/main/typescript/Monad.ts"
|
|
2997
2987
|
/*!*************************************************************!*\
|
|
2998
2988
|
!*** ./node_modules/mona-dish/src/main/typescript/Monad.ts ***!
|
|
2999
2989
|
\*************************************************************/
|
|
3000
|
-
|
|
2990
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
3001
2991
|
|
|
3002
2992
|
|
|
3003
2993
|
/*!
|
|
@@ -3330,13 +3320,13 @@ exports.ValueEmbedder = ValueEmbedder;
|
|
|
3330
3320
|
ValueEmbedder.absent = ValueEmbedder.fromNullable(null);
|
|
3331
3321
|
|
|
3332
3322
|
|
|
3333
|
-
/***/ }
|
|
3323
|
+
/***/ },
|
|
3334
3324
|
|
|
3335
|
-
/***/ "./node_modules/mona-dish/src/main/typescript/SourcesCollectors.ts"
|
|
3325
|
+
/***/ "./node_modules/mona-dish/src/main/typescript/SourcesCollectors.ts"
|
|
3336
3326
|
/*!*************************************************************************!*\
|
|
3337
3327
|
!*** ./node_modules/mona-dish/src/main/typescript/SourcesCollectors.ts ***!
|
|
3338
3328
|
\*************************************************************************/
|
|
3339
|
-
|
|
3329
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
3340
3330
|
|
|
3341
3331
|
|
|
3342
3332
|
/*!
|
|
@@ -3783,13 +3773,13 @@ class ArrayCollector {
|
|
|
3783
3773
|
exports.ArrayCollector = ArrayCollector;
|
|
3784
3774
|
|
|
3785
3775
|
|
|
3786
|
-
/***/ }
|
|
3776
|
+
/***/ },
|
|
3787
3777
|
|
|
3788
|
-
/***/ "./node_modules/mona-dish/src/main/typescript/XmlQuery.ts"
|
|
3778
|
+
/***/ "./node_modules/mona-dish/src/main/typescript/XmlQuery.ts"
|
|
3789
3779
|
/*!****************************************************************!*\
|
|
3790
3780
|
!*** ./node_modules/mona-dish/src/main/typescript/XmlQuery.ts ***!
|
|
3791
3781
|
\****************************************************************/
|
|
3792
|
-
|
|
3782
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
3793
3783
|
|
|
3794
3784
|
|
|
3795
3785
|
/*!
|
|
@@ -3812,7 +3802,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
3812
3802
|
exports.XQ = exports.XMLQuery = void 0;
|
|
3813
3803
|
const Lang_1 = __webpack_require__(/*! ./Lang */ "./node_modules/mona-dish/src/main/typescript/Lang.ts");
|
|
3814
3804
|
const DomQuery_1 = __webpack_require__(/*! ./DomQuery */ "./node_modules/mona-dish/src/main/typescript/DomQuery.ts");
|
|
3815
|
-
|
|
3805
|
+
const isString = Lang_1.Lang.isString;
|
|
3816
3806
|
const Global_1 = __webpack_require__(/*! ./Global */ "./node_modules/mona-dish/src/main/typescript/Global.ts");
|
|
3817
3807
|
/**
|
|
3818
3808
|
* xml query as specialized case for DomQuery
|
|
@@ -3876,13 +3866,13 @@ exports.XMLQuery = XMLQuery;
|
|
|
3876
3866
|
exports.XQ = XMLQuery;
|
|
3877
3867
|
|
|
3878
3868
|
|
|
3879
|
-
/***/ }
|
|
3869
|
+
/***/ },
|
|
3880
3870
|
|
|
3881
|
-
/***/ "./node_modules/mona-dish/src/main/typescript/index_core.ts"
|
|
3871
|
+
/***/ "./node_modules/mona-dish/src/main/typescript/index_core.ts"
|
|
3882
3872
|
/*!******************************************************************!*\
|
|
3883
3873
|
!*** ./node_modules/mona-dish/src/main/typescript/index_core.ts ***!
|
|
3884
3874
|
\******************************************************************/
|
|
3885
|
-
|
|
3875
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
3886
3876
|
|
|
3887
3877
|
|
|
3888
3878
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -3961,13 +3951,13 @@ Object.defineProperty(exports, "Es2019Array", ({ enumerable: true, get: function
|
|
|
3961
3951
|
Object.defineProperty(exports, "_Es2019Array", ({ enumerable: true, get: function () { return Es2019Array_1._Es2019Array; } }));
|
|
3962
3952
|
|
|
3963
3953
|
|
|
3964
|
-
/***/ }
|
|
3954
|
+
/***/ },
|
|
3965
3955
|
|
|
3966
|
-
/***/ "./src/main/typescript/api/_api.ts"
|
|
3956
|
+
/***/ "./src/main/typescript/api/_api.ts"
|
|
3967
3957
|
/*!*****************************************!*\
|
|
3968
3958
|
!*** ./src/main/typescript/api/_api.ts ***!
|
|
3969
3959
|
\*****************************************/
|
|
3970
|
-
|
|
3960
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
3971
3961
|
|
|
3972
3962
|
|
|
3973
3963
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
@@ -4202,13 +4192,20 @@ var myfaces;
|
|
|
4202
4192
|
*
|
|
4203
4193
|
* @param source the event source
|
|
4204
4194
|
* @param event the event
|
|
4205
|
-
* @param eventName event name for java.jakarta.faces.behavior.
|
|
4195
|
+
* @param eventName event name for java.jakarta.faces.behavior.event
|
|
4206
4196
|
* @param execute execute list as passed down in faces.ajax.request
|
|
4207
4197
|
* @param render the render list as string
|
|
4208
|
-
* @param options the options which need to be
|
|
4198
|
+
* @param options the options which need to be merged in
|
|
4199
|
+
* @param userParameters a set of user parameters which go into the final options under params, they can overide whatever is passed via options
|
|
4209
4200
|
*/
|
|
4210
|
-
function ab(source, event, eventName, execute, render, options = {}) {
|
|
4201
|
+
function ab(source, event, eventName, execute, render, options = {}, userParameters = {}) {
|
|
4211
4202
|
var _a, _b;
|
|
4203
|
+
if (!options) {
|
|
4204
|
+
options = {};
|
|
4205
|
+
}
|
|
4206
|
+
if (!userParameters) {
|
|
4207
|
+
userParameters = {};
|
|
4208
|
+
}
|
|
4212
4209
|
if (eventName) {
|
|
4213
4210
|
options[Const_1.CTX_OPTIONS_PARAMS] = (_a = options === null || options === void 0 ? void 0 : options[Const_1.CTX_OPTIONS_PARAMS]) !== null && _a !== void 0 ? _a : {};
|
|
4214
4211
|
options[Const_1.CTX_OPTIONS_PARAMS][(0, Const_1.$nsp)(Const_1.P_BEHAVIOR_EVENT)] = eventName;
|
|
@@ -4219,6 +4216,13 @@ var myfaces;
|
|
|
4219
4216
|
if (render) {
|
|
4220
4217
|
options[Const_1.CTX_PARAM_RENDER] = render;
|
|
4221
4218
|
}
|
|
4219
|
+
//we push the users parameters in
|
|
4220
|
+
if (!options["params"]) {
|
|
4221
|
+
options["params"] = {};
|
|
4222
|
+
}
|
|
4223
|
+
for (let key in userParameters) {
|
|
4224
|
+
options["params"][key] = userParameters[key];
|
|
4225
|
+
}
|
|
4222
4226
|
((_b = window === null || window === void 0 ? void 0 : window.faces) !== null && _b !== void 0 ? _b : window.jsf).ajax.request(source, event, options);
|
|
4223
4227
|
}
|
|
4224
4228
|
myfaces.ab = ab;
|
|
@@ -4265,13 +4269,13 @@ var myfaces;
|
|
|
4265
4269
|
})(myfaces || (exports.myfaces = myfaces = {}));
|
|
4266
4270
|
|
|
4267
4271
|
|
|
4268
|
-
/***/ }
|
|
4272
|
+
/***/ },
|
|
4269
4273
|
|
|
4270
|
-
/***/ "./src/main/typescript/impl/AjaxImpl.ts"
|
|
4274
|
+
/***/ "./src/main/typescript/impl/AjaxImpl.ts"
|
|
4271
4275
|
/*!**********************************************!*\
|
|
4272
4276
|
!*** ./src/main/typescript/impl/AjaxImpl.ts ***!
|
|
4273
4277
|
\**********************************************/
|
|
4274
|
-
|
|
4278
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
4275
4279
|
|
|
4276
4280
|
|
|
4277
4281
|
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@@ -4381,12 +4385,12 @@ var Implementation;
|
|
|
4381
4385
|
Note the inclusion of this library uses a reduced build which only includes the part of it, which we really use
|
|
4382
4386
|
|
|
4383
4387
|
*/
|
|
4384
|
-
|
|
4385
|
-
|
|
4386
|
-
|
|
4388
|
+
const trim = mona_dish_1.Lang.trim;
|
|
4389
|
+
const getMessage = Lang_1.ExtLang.getMessage;
|
|
4390
|
+
const getGlobalConfig = Lang_1.ExtLang.getGlobalConfig;
|
|
4387
4391
|
var assert = Assertions_1.Assertions.assert;
|
|
4388
|
-
|
|
4389
|
-
|
|
4392
|
+
const ofAssoc = Lang_1.ExtLang.ofAssoc;
|
|
4393
|
+
const collectAssoc = Lang_1.ExtLang.collectAssoc;
|
|
4390
4394
|
let projectStage = null;
|
|
4391
4395
|
let separator = null;
|
|
4392
4396
|
let eventQueue = [];
|
|
@@ -5022,13 +5026,13 @@ var Implementation;
|
|
|
5022
5026
|
})(Implementation || (exports.Implementation = Implementation = {}));
|
|
5023
5027
|
|
|
5024
5028
|
|
|
5025
|
-
/***/ }
|
|
5029
|
+
/***/ },
|
|
5026
5030
|
|
|
5027
|
-
/***/ "./src/main/typescript/impl/PushImpl.ts"
|
|
5031
|
+
/***/ "./src/main/typescript/impl/PushImpl.ts"
|
|
5028
5032
|
/*!**********************************************!*\
|
|
5029
5033
|
!*** ./src/main/typescript/impl/PushImpl.ts ***!
|
|
5030
5034
|
\**********************************************/
|
|
5031
|
-
|
|
5035
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
5032
5036
|
|
|
5033
5037
|
|
|
5034
5038
|
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@@ -5290,13 +5294,13 @@ var PushImpl;
|
|
|
5290
5294
|
})(PushImpl || (exports.PushImpl = PushImpl = {}));
|
|
5291
5295
|
|
|
5292
5296
|
|
|
5293
|
-
/***/ }
|
|
5297
|
+
/***/ },
|
|
5294
5298
|
|
|
5295
|
-
/***/ "./src/main/typescript/impl/core/Const.ts"
|
|
5299
|
+
/***/ "./src/main/typescript/impl/core/Const.ts"
|
|
5296
5300
|
/*!************************************************!*\
|
|
5297
5301
|
!*** ./src/main/typescript/impl/core/Const.ts ***!
|
|
5298
5302
|
\************************************************/
|
|
5299
|
-
|
|
5303
|
+
(__unused_webpack_module, exports) {
|
|
5300
5304
|
|
|
5301
5305
|
|
|
5302
5306
|
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@@ -5476,13 +5480,13 @@ function $nsp(inputNamespace) {
|
|
|
5476
5480
|
exports.$nsp = $nsp;
|
|
5477
5481
|
|
|
5478
5482
|
|
|
5479
|
-
/***/ }
|
|
5483
|
+
/***/ },
|
|
5480
5484
|
|
|
5481
|
-
/***/ "./src/main/typescript/impl/core/ImplTypes.ts"
|
|
5485
|
+
/***/ "./src/main/typescript/impl/core/ImplTypes.ts"
|
|
5482
5486
|
/*!****************************************************!*\
|
|
5483
5487
|
!*** ./src/main/typescript/impl/core/ImplTypes.ts ***!
|
|
5484
5488
|
\****************************************************/
|
|
5485
|
-
|
|
5489
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
5486
5490
|
|
|
5487
5491
|
|
|
5488
5492
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
@@ -5523,13 +5527,13 @@ class StateHolder {
|
|
|
5523
5527
|
exports.StateHolder = StateHolder;
|
|
5524
5528
|
|
|
5525
5529
|
|
|
5526
|
-
/***/ }
|
|
5530
|
+
/***/ },
|
|
5527
5531
|
|
|
5528
|
-
/***/ "./src/main/typescript/impl/i18n/Messages.ts"
|
|
5532
|
+
/***/ "./src/main/typescript/impl/i18n/Messages.ts"
|
|
5529
5533
|
/*!***************************************************!*\
|
|
5530
5534
|
!*** ./src/main/typescript/impl/i18n/Messages.ts ***!
|
|
5531
5535
|
\***************************************************/
|
|
5532
|
-
|
|
5536
|
+
(__unused_webpack_module, exports) {
|
|
5533
5537
|
|
|
5534
5538
|
|
|
5535
5539
|
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@@ -5645,13 +5649,13 @@ class Messages {
|
|
|
5645
5649
|
exports.Messages = Messages;
|
|
5646
5650
|
|
|
5647
5651
|
|
|
5648
|
-
/***/ }
|
|
5652
|
+
/***/ },
|
|
5649
5653
|
|
|
5650
|
-
/***/ "./src/main/typescript/impl/util/Assertions.ts"
|
|
5654
|
+
/***/ "./src/main/typescript/impl/util/Assertions.ts"
|
|
5651
5655
|
/*!*****************************************************!*\
|
|
5652
5656
|
!*** ./src/main/typescript/impl/util/Assertions.ts ***!
|
|
5653
5657
|
\*****************************************************/
|
|
5654
|
-
|
|
5658
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
5655
5659
|
|
|
5656
5660
|
|
|
5657
5661
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
@@ -5755,13 +5759,13 @@ var Assertions;
|
|
|
5755
5759
|
})(Assertions || (exports.Assertions = Assertions = {}));
|
|
5756
5760
|
|
|
5757
5761
|
|
|
5758
|
-
/***/ }
|
|
5762
|
+
/***/ },
|
|
5759
5763
|
|
|
5760
|
-
/***/ "./src/main/typescript/impl/util/AsyncRunnable.ts"
|
|
5764
|
+
/***/ "./src/main/typescript/impl/util/AsyncRunnable.ts"
|
|
5761
5765
|
/*!********************************************************!*\
|
|
5762
5766
|
!*** ./src/main/typescript/impl/util/AsyncRunnable.ts ***!
|
|
5763
5767
|
\********************************************************/
|
|
5764
|
-
|
|
5768
|
+
(__unused_webpack_module, exports) {
|
|
5765
5769
|
|
|
5766
5770
|
|
|
5767
5771
|
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@@ -5842,13 +5846,13 @@ class AsyncRunnable {
|
|
|
5842
5846
|
exports.AsyncRunnable = AsyncRunnable;
|
|
5843
5847
|
|
|
5844
5848
|
|
|
5845
|
-
/***/ }
|
|
5849
|
+
/***/ },
|
|
5846
5850
|
|
|
5847
|
-
/***/ "./src/main/typescript/impl/util/ExtDomQuery.ts"
|
|
5851
|
+
/***/ "./src/main/typescript/impl/util/ExtDomQuery.ts"
|
|
5848
5852
|
/*!******************************************************!*\
|
|
5849
5853
|
!*** ./src/main/typescript/impl/util/ExtDomQuery.ts ***!
|
|
5850
5854
|
\******************************************************/
|
|
5851
|
-
|
|
5855
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
5852
5856
|
|
|
5853
5857
|
|
|
5854
5858
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
@@ -6157,13 +6161,13 @@ class ExtConfig extends mona_dish_1.Config {
|
|
|
6157
6161
|
exports.ExtConfig = ExtConfig;
|
|
6158
6162
|
|
|
6159
6163
|
|
|
6160
|
-
/***/ }
|
|
6164
|
+
/***/ },
|
|
6161
6165
|
|
|
6162
|
-
/***/ "./src/main/typescript/impl/util/FileUtils.ts"
|
|
6166
|
+
/***/ "./src/main/typescript/impl/util/FileUtils.ts"
|
|
6163
6167
|
/*!****************************************************!*\
|
|
6164
6168
|
!*** ./src/main/typescript/impl/util/FileUtils.ts ***!
|
|
6165
6169
|
\****************************************************/
|
|
6166
|
-
|
|
6170
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
6167
6171
|
|
|
6168
6172
|
|
|
6169
6173
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
@@ -6265,13 +6269,13 @@ function getFormInputsAsArr(parentItem) {
|
|
|
6265
6269
|
exports.getFormInputsAsArr = getFormInputsAsArr;
|
|
6266
6270
|
|
|
6267
6271
|
|
|
6268
|
-
/***/ }
|
|
6272
|
+
/***/ },
|
|
6269
6273
|
|
|
6270
|
-
/***/ "./src/main/typescript/impl/util/HiddenInputBuilder.ts"
|
|
6274
|
+
/***/ "./src/main/typescript/impl/util/HiddenInputBuilder.ts"
|
|
6271
6275
|
/*!*************************************************************!*\
|
|
6272
6276
|
!*** ./src/main/typescript/impl/util/HiddenInputBuilder.ts ***!
|
|
6273
6277
|
\*************************************************************/
|
|
6274
|
-
|
|
6278
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
6275
6279
|
|
|
6276
6280
|
|
|
6277
6281
|
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@@ -6357,13 +6361,13 @@ class HiddenInputBuilder {
|
|
|
6357
6361
|
exports.HiddenInputBuilder = HiddenInputBuilder;
|
|
6358
6362
|
|
|
6359
6363
|
|
|
6360
|
-
/***/ }
|
|
6364
|
+
/***/ },
|
|
6361
6365
|
|
|
6362
|
-
/***/ "./src/main/typescript/impl/util/Lang.ts"
|
|
6366
|
+
/***/ "./src/main/typescript/impl/util/Lang.ts"
|
|
6363
6367
|
/*!***********************************************!*\
|
|
6364
6368
|
!*** ./src/main/typescript/impl/util/Lang.ts ***!
|
|
6365
6369
|
\***********************************************/
|
|
6366
|
-
|
|
6370
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
6367
6371
|
|
|
6368
6372
|
|
|
6369
6373
|
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@@ -6630,19 +6634,19 @@ var ExtLang;
|
|
|
6630
6634
|
})(ExtLang || (exports.ExtLang = ExtLang = {}));
|
|
6631
6635
|
|
|
6632
6636
|
|
|
6633
|
-
/***/ }
|
|
6637
|
+
/***/ },
|
|
6634
6638
|
|
|
6635
|
-
/***/ "./src/main/typescript/impl/util/XhrQueueController.ts"
|
|
6639
|
+
/***/ "./src/main/typescript/impl/util/XhrQueueController.ts"
|
|
6636
6640
|
/*!*************************************************************!*\
|
|
6637
6641
|
!*** ./src/main/typescript/impl/util/XhrQueueController.ts ***!
|
|
6638
6642
|
\*************************************************************/
|
|
6639
|
-
|
|
6643
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
6640
6644
|
|
|
6641
6645
|
|
|
6642
6646
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
6643
6647
|
exports.XhrQueueController = void 0;
|
|
6644
6648
|
const Lang_1 = __webpack_require__(/*! ./Lang */ "./src/main/typescript/impl/util/Lang.ts");
|
|
6645
|
-
|
|
6649
|
+
const debounce = Lang_1.ExtLang.debounce;
|
|
6646
6650
|
/**
|
|
6647
6651
|
* A simple XHR queue controller
|
|
6648
6652
|
* following the async op -> next pattern
|
|
@@ -6731,13 +6735,13 @@ class XhrQueueController {
|
|
|
6731
6735
|
exports.XhrQueueController = XhrQueueController;
|
|
6732
6736
|
|
|
6733
6737
|
|
|
6734
|
-
/***/ }
|
|
6738
|
+
/***/ },
|
|
6735
6739
|
|
|
6736
|
-
/***/ "./src/main/typescript/impl/xhrCore/ErrorData.ts"
|
|
6740
|
+
/***/ "./src/main/typescript/impl/xhrCore/ErrorData.ts"
|
|
6737
6741
|
/*!*******************************************************!*\
|
|
6738
6742
|
!*** ./src/main/typescript/impl/xhrCore/ErrorData.ts ***!
|
|
6739
6743
|
\*******************************************************/
|
|
6740
|
-
|
|
6744
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
6741
6745
|
|
|
6742
6746
|
|
|
6743
6747
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
@@ -6761,7 +6765,7 @@ const Const_1 = __webpack_require__(/*! ../core/Const */ "./src/main/typescript/
|
|
|
6761
6765
|
const mona_dish_1 = __webpack_require__(/*! mona-dish */ "./node_modules/mona-dish/src/main/typescript/index_core.ts");
|
|
6762
6766
|
const EventData_1 = __webpack_require__(/*! ./EventData */ "./src/main/typescript/impl/xhrCore/EventData.ts");
|
|
6763
6767
|
const Lang_1 = __webpack_require__(/*! ../util/Lang */ "./src/main/typescript/impl/util/Lang.ts");
|
|
6764
|
-
|
|
6768
|
+
const getMessage = Lang_1.ExtLang.getMessage;
|
|
6765
6769
|
var ErrorType;
|
|
6766
6770
|
(function (ErrorType) {
|
|
6767
6771
|
ErrorType["SERVER_ERROR"] = "serverError";
|
|
@@ -6788,7 +6792,7 @@ class ErrorData extends EventData_1.EventData {
|
|
|
6788
6792
|
this.type = Const_1.ERROR;
|
|
6789
6793
|
this.errorName = errorName;
|
|
6790
6794
|
//tck requires that the type is prefixed to the message itself (jsdoc also) in case of a server error
|
|
6791
|
-
this.errorMessage = errorMessage;
|
|
6795
|
+
this.errorMessage = (type == ErrorType.SERVER_ERROR) ? type + ": " + errorMessage : errorMessage;
|
|
6792
6796
|
this.responseCode = responseCode;
|
|
6793
6797
|
this.responseText = responseText;
|
|
6794
6798
|
this.responseXML = responseXML;
|
|
@@ -6827,13 +6831,13 @@ class ErrorData extends EventData_1.EventData {
|
|
|
6827
6831
|
exports.ErrorData = ErrorData;
|
|
6828
6832
|
|
|
6829
6833
|
|
|
6830
|
-
/***/ }
|
|
6834
|
+
/***/ },
|
|
6831
6835
|
|
|
6832
|
-
/***/ "./src/main/typescript/impl/xhrCore/EventData.ts"
|
|
6836
|
+
/***/ "./src/main/typescript/impl/xhrCore/EventData.ts"
|
|
6833
6837
|
/*!*******************************************************!*\
|
|
6834
6838
|
!*** ./src/main/typescript/impl/xhrCore/EventData.ts ***!
|
|
6835
6839
|
\*******************************************************/
|
|
6836
|
-
|
|
6840
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
6837
6841
|
|
|
6838
6842
|
|
|
6839
6843
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
@@ -6888,13 +6892,13 @@ class EventData {
|
|
|
6888
6892
|
exports.EventData = EventData;
|
|
6889
6893
|
|
|
6890
6894
|
|
|
6891
|
-
/***/ }
|
|
6895
|
+
/***/ },
|
|
6892
6896
|
|
|
6893
|
-
/***/ "./src/main/typescript/impl/xhrCore/RequestDataResolver.ts"
|
|
6897
|
+
/***/ "./src/main/typescript/impl/xhrCore/RequestDataResolver.ts"
|
|
6894
6898
|
/*!*****************************************************************!*\
|
|
6895
6899
|
!*** ./src/main/typescript/impl/xhrCore/RequestDataResolver.ts ***!
|
|
6896
6900
|
\*****************************************************************/
|
|
6897
|
-
|
|
6901
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
6898
6902
|
|
|
6899
6903
|
|
|
6900
6904
|
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@@ -7084,13 +7088,13 @@ function resolveDefaults(event, opts, el = null) {
|
|
|
7084
7088
|
exports.resolveDefaults = resolveDefaults;
|
|
7085
7089
|
|
|
7086
7090
|
|
|
7087
|
-
/***/ }
|
|
7091
|
+
/***/ },
|
|
7088
7092
|
|
|
7089
|
-
/***/ "./src/main/typescript/impl/xhrCore/ResonseDataResolver.ts"
|
|
7093
|
+
/***/ "./src/main/typescript/impl/xhrCore/ResonseDataResolver.ts"
|
|
7090
7094
|
/*!*****************************************************************!*\
|
|
7091
7095
|
!*** ./src/main/typescript/impl/xhrCore/ResonseDataResolver.ts ***!
|
|
7092
7096
|
\*****************************************************************/
|
|
7093
|
-
|
|
7097
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
7094
7098
|
|
|
7095
7099
|
|
|
7096
7100
|
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@@ -7198,13 +7202,13 @@ function resolveSourceElementId(context, internalContext) {
|
|
|
7198
7202
|
}
|
|
7199
7203
|
|
|
7200
7204
|
|
|
7201
|
-
/***/ }
|
|
7205
|
+
/***/ },
|
|
7202
7206
|
|
|
7203
|
-
/***/ "./src/main/typescript/impl/xhrCore/Response.ts"
|
|
7207
|
+
/***/ "./src/main/typescript/impl/xhrCore/Response.ts"
|
|
7204
7208
|
/*!******************************************************!*\
|
|
7205
7209
|
!*** ./src/main/typescript/impl/xhrCore/Response.ts ***!
|
|
7206
7210
|
\******************************************************/
|
|
7207
|
-
|
|
7211
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
7208
7212
|
|
|
7209
7213
|
|
|
7210
7214
|
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@@ -7393,13 +7397,13 @@ var Response;
|
|
|
7393
7397
|
})(Response || (exports.Response = Response = {}));
|
|
7394
7398
|
|
|
7395
7399
|
|
|
7396
|
-
/***/ }
|
|
7400
|
+
/***/ },
|
|
7397
7401
|
|
|
7398
|
-
/***/ "./src/main/typescript/impl/xhrCore/ResponseProcessor.ts"
|
|
7402
|
+
/***/ "./src/main/typescript/impl/xhrCore/ResponseProcessor.ts"
|
|
7399
7403
|
/*!***************************************************************!*\
|
|
7400
7404
|
!*** ./src/main/typescript/impl/xhrCore/ResponseProcessor.ts ***!
|
|
7401
7405
|
\***************************************************************/
|
|
7402
|
-
|
|
7406
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
7403
7407
|
|
|
7404
7408
|
|
|
7405
7409
|
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@@ -7428,9 +7432,9 @@ const EventData_1 = __webpack_require__(/*! ./EventData */ "./src/main/typescrip
|
|
|
7428
7432
|
const Const_1 = __webpack_require__(/*! ../core/Const */ "./src/main/typescript/impl/core/Const.ts");
|
|
7429
7433
|
const ExtDomQuery_1 = __webpack_require__(/*! ../util/ExtDomQuery */ "./src/main/typescript/impl/util/ExtDomQuery.ts");
|
|
7430
7434
|
const HiddenInputBuilder_1 = __webpack_require__(/*! ../util/HiddenInputBuilder */ "./src/main/typescript/impl/util/HiddenInputBuilder.ts");
|
|
7431
|
-
|
|
7435
|
+
const trim = mona_dish_1.Lang.trim;
|
|
7432
7436
|
const Lang_1 = __webpack_require__(/*! ../util/Lang */ "./src/main/typescript/impl/util/Lang.ts");
|
|
7433
|
-
|
|
7437
|
+
const ofAssoc = Lang_1.ExtLang.ofAssoc;
|
|
7434
7438
|
/**
|
|
7435
7439
|
* Response processor
|
|
7436
7440
|
*
|
|
@@ -7870,13 +7874,13 @@ class ResponseProcessor {
|
|
|
7870
7874
|
exports.ResponseProcessor = ResponseProcessor;
|
|
7871
7875
|
|
|
7872
7876
|
|
|
7873
|
-
/***/ }
|
|
7877
|
+
/***/ },
|
|
7874
7878
|
|
|
7875
|
-
/***/ "./src/main/typescript/impl/xhrCore/XhrFormData.ts"
|
|
7879
|
+
/***/ "./src/main/typescript/impl/xhrCore/XhrFormData.ts"
|
|
7876
7880
|
/*!*********************************************************!*\
|
|
7877
7881
|
!*** ./src/main/typescript/impl/xhrCore/XhrFormData.ts ***!
|
|
7878
7882
|
\*********************************************************/
|
|
7879
|
-
|
|
7883
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
7880
7884
|
|
|
7881
7885
|
|
|
7882
7886
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
@@ -7900,7 +7904,7 @@ const mona_dish_1 = __webpack_require__(/*! mona-dish */ "./node_modules/mona-di
|
|
|
7900
7904
|
const Const_1 = __webpack_require__(/*! ../core/Const */ "./src/main/typescript/impl/core/Const.ts");
|
|
7901
7905
|
const FileUtils_1 = __webpack_require__(/*! ../util/FileUtils */ "./src/main/typescript/impl/util/FileUtils.ts");
|
|
7902
7906
|
const Lang_1 = __webpack_require__(/*! ../util/Lang */ "./src/main/typescript/impl/util/Lang.ts");
|
|
7903
|
-
|
|
7907
|
+
const ofAssoc = Lang_1.ExtLang.ofAssoc;
|
|
7904
7908
|
const mona_dish_2 = __webpack_require__(/*! mona-dish */ "./node_modules/mona-dish/src/main/typescript/index_core.ts");
|
|
7905
7909
|
const defaultParamsMapper = (key, item) => [key, item];
|
|
7906
7910
|
/**
|
|
@@ -8042,13 +8046,13 @@ class XhrFormData extends mona_dish_1.Config {
|
|
|
8042
8046
|
exports.XhrFormData = XhrFormData;
|
|
8043
8047
|
|
|
8044
8048
|
|
|
8045
|
-
/***/ }
|
|
8049
|
+
/***/ },
|
|
8046
8050
|
|
|
8047
|
-
/***/ "./src/main/typescript/impl/xhrCore/XhrRequest.ts"
|
|
8051
|
+
/***/ "./src/main/typescript/impl/xhrCore/XhrRequest.ts"
|
|
8048
8052
|
/*!********************************************************!*\
|
|
8049
8053
|
!*** ./src/main/typescript/impl/xhrCore/XhrRequest.ts ***!
|
|
8050
8054
|
\********************************************************/
|
|
8051
|
-
|
|
8055
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
8052
8056
|
|
|
8053
8057
|
|
|
8054
8058
|
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@@ -8077,7 +8081,7 @@ const EventData_1 = __webpack_require__(/*! ./EventData */ "./src/main/typescrip
|
|
|
8077
8081
|
const Lang_1 = __webpack_require__(/*! ../util/Lang */ "./src/main/typescript/impl/util/Lang.ts");
|
|
8078
8082
|
const Const_1 = __webpack_require__(/*! ../core/Const */ "./src/main/typescript/impl/core/Const.ts");
|
|
8079
8083
|
const RequestDataResolver_1 = __webpack_require__(/*! ./RequestDataResolver */ "./src/main/typescript/impl/xhrCore/RequestDataResolver.ts");
|
|
8080
|
-
|
|
8084
|
+
const failSaveExecute = Lang_1.ExtLang.failSaveExecute;
|
|
8081
8085
|
const ExtDomQuery_1 = __webpack_require__(/*! ../util/ExtDomQuery */ "./src/main/typescript/impl/util/ExtDomQuery.ts");
|
|
8082
8086
|
/**
|
|
8083
8087
|
* Faces XHR Request Wrapper
|
|
@@ -8479,13 +8483,13 @@ XhrRequest.TYPE_CHECKBOX = "checkbox";
|
|
|
8479
8483
|
XhrRequest.TYPE_RADIO = "radio";
|
|
8480
8484
|
|
|
8481
8485
|
|
|
8482
|
-
/***/ }
|
|
8486
|
+
/***/ },
|
|
8483
8487
|
|
|
8484
|
-
/***/ "./src/main/typescript/myfaces/OamSubmit.ts"
|
|
8488
|
+
/***/ "./src/main/typescript/myfaces/OamSubmit.ts"
|
|
8485
8489
|
/*!**************************************************!*\
|
|
8486
8490
|
!*** ./src/main/typescript/myfaces/OamSubmit.ts ***!
|
|
8487
8491
|
\**************************************************/
|
|
8488
|
-
|
|
8492
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
8489
8493
|
|
|
8490
8494
|
|
|
8491
8495
|
/*! Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@@ -8520,7 +8524,7 @@ const Lang_1 = __webpack_require__(/*! ../impl/util/Lang */ "./src/main/typescri
|
|
|
8520
8524
|
*/
|
|
8521
8525
|
var oam;
|
|
8522
8526
|
(function (oam) {
|
|
8523
|
-
|
|
8527
|
+
const ofAssoc = Lang_1.ExtLang.ofAssoc;
|
|
8524
8528
|
/**
|
|
8525
8529
|
* sets a hidden input field
|
|
8526
8530
|
* @param formName the formName
|
|
@@ -8616,7 +8620,7 @@ var oam;
|
|
|
8616
8620
|
})(oam || (exports.oam = oam = {}));
|
|
8617
8621
|
|
|
8618
8622
|
|
|
8619
|
-
/***/ }
|
|
8623
|
+
/***/ }
|
|
8620
8624
|
|
|
8621
8625
|
/******/ });
|
|
8622
8626
|
/************************************************************************/
|
|
@@ -8630,6 +8634,12 @@ var oam;
|
|
|
8630
8634
|
/******/ if (cachedModule !== undefined) {
|
|
8631
8635
|
/******/ return cachedModule.exports;
|
|
8632
8636
|
/******/ }
|
|
8637
|
+
/******/ // Check if module exists (development only)
|
|
8638
|
+
/******/ if (__webpack_modules__[moduleId] === undefined) {
|
|
8639
|
+
/******/ var e = new Error("Cannot find module '" + moduleId + "'");
|
|
8640
|
+
/******/ e.code = 'MODULE_NOT_FOUND';
|
|
8641
|
+
/******/ throw e;
|
|
8642
|
+
/******/ }
|
|
8633
8643
|
/******/ // Create a new module (and put it into the cache)
|
|
8634
8644
|
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
8635
8645
|
/******/ // no module.id needed
|
|
@@ -8659,7 +8669,7 @@ var oam;
|
|
|
8659
8669
|
/******/
|
|
8660
8670
|
/************************************************************************/
|
|
8661
8671
|
var __webpack_exports__ = {};
|
|
8662
|
-
// This entry
|
|
8672
|
+
// This entry needs to be wrapped in an IIFE because it needs to be isolated against other modules in the chunk.
|
|
8663
8673
|
(() => {
|
|
8664
8674
|
var exports = __webpack_exports__;
|
|
8665
8675
|
/*!******************************************!*\
|
|
@@ -8713,7 +8723,7 @@ exports.myfaces = window.myfaces;
|
|
|
8713
8723
|
})();
|
|
8714
8724
|
|
|
8715
8725
|
var __webpack_export_target__ = window;
|
|
8716
|
-
for(var
|
|
8726
|
+
for(var __webpack_i__ in __webpack_exports__) __webpack_export_target__[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
8717
8727
|
if(__webpack_exports__.__esModule) Object.defineProperty(__webpack_export_target__, "__esModule", { value: true });
|
|
8718
8728
|
/******/ })()
|
|
8719
8729
|
;
|