monkey-front-core 0.0.180 → 0.0.183
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/esm2020/lib/core/interfaces/monkeyecx-config.mjs +1 -1
- package/esm2020/lib/core/services/commons/monkeyecx-commons.service.mjs +4 -1
- package/esm2020/lib/core/services/storage/monkeyecx-cookie-storage.service.mjs +5 -4
- package/esm2020/lib/core/specification-search/monkeyecx-specification-search.mjs +2 -1
- package/fesm2015/monkey-front-core.mjs +8 -3
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +8 -3
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/interfaces/monkeyecx-config.d.ts +20 -12
- package/lib/core/services/commons/monkeyecx-commons.service.d.ts +4 -1
- package/lib/core/services/storage/monkeyecx-cookie-storage.service.d.ts +1 -1
- package/lib/core/specification-search/monkeyecx-specification-search.d.ts +2 -1
- package/monkey-front-core-0.0.183.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.180.tgz +0 -0
|
@@ -336,15 +336,16 @@ class MonkeyEcxCookieStorageService {
|
|
|
336
336
|
// not to do
|
|
337
337
|
}
|
|
338
338
|
setCookie(name, value, environment) {
|
|
339
|
-
this.removeCookie(name);
|
|
339
|
+
this.removeCookie(name, environment);
|
|
340
340
|
const { urlDomain } = environment;
|
|
341
341
|
this.cookieService.set(name, value, undefined, '/', `.${urlDomain}`, true);
|
|
342
342
|
}
|
|
343
343
|
getCookie(name) {
|
|
344
344
|
return this.cookieService.get(name);
|
|
345
345
|
}
|
|
346
|
-
removeCookie(name) {
|
|
347
|
-
|
|
346
|
+
removeCookie(name, environment) {
|
|
347
|
+
const { urlDomain } = environment;
|
|
348
|
+
this.cookieService.delete(name, '/', `.${urlDomain}`, true);
|
|
348
349
|
}
|
|
349
350
|
}
|
|
350
351
|
MonkeyEcxCookieStorageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxCookieStorageService, deps: [{ token: i1$2.CookieService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
@@ -2123,6 +2124,9 @@ class MonkeyEcxCommonsService {
|
|
|
2123
2124
|
this.tokenStorage = tokenStorage;
|
|
2124
2125
|
this.otherArgs = otherArgs;
|
|
2125
2126
|
this.flagValidator = true;
|
|
2127
|
+
this.__data$ = null;
|
|
2128
|
+
this.__pagination$ = null;
|
|
2129
|
+
this.__control$ = null;
|
|
2126
2130
|
this.__savedState = null;
|
|
2127
2131
|
this.__error = null;
|
|
2128
2132
|
this.__handledError = null;
|
|
@@ -4706,6 +4710,7 @@ var OpSearch;
|
|
|
4706
4710
|
OpSearch["LT"] = "<:value";
|
|
4707
4711
|
OpSearch["EQUAL"] = "::value";
|
|
4708
4712
|
OpSearch["IN"] = " IN :value";
|
|
4713
|
+
OpSearch["NOT"] = " !:value";
|
|
4709
4714
|
})(OpSearch || (OpSearch = {}));
|
|
4710
4715
|
class MonkeyEcxSpecificationSearch {
|
|
4711
4716
|
constructor() {
|