monkey-front-core 0.0.565 → 0.0.566
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/utils/index.mjs +4 -4
- package/fesm2015/monkey-front-core.mjs +44 -44
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +47 -47
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/utils/index.d.ts +3 -3
- package/monkey-front-core-0.0.566.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.565.tgz +0 -0
|
@@ -1056,6 +1056,52 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1056
1056
|
}]
|
|
1057
1057
|
}], ctorParameters: function () { return [{ type: i0.Injector }]; } });
|
|
1058
1058
|
|
|
1059
|
+
function buildQueuePropertys(queue) {
|
|
1060
|
+
const params = {
|
|
1061
|
+
item: {
|
|
1062
|
+
...queue,
|
|
1063
|
+
id: MonkeyEcxUtils.getRandomString(40)
|
|
1064
|
+
},
|
|
1065
|
+
status: MonkeyEcxQueueEvents.OnGoing
|
|
1066
|
+
};
|
|
1067
|
+
return params;
|
|
1068
|
+
}
|
|
1069
|
+
function buildDownloadPropertys(name, description, size) {
|
|
1070
|
+
const params = {
|
|
1071
|
+
item: {
|
|
1072
|
+
name,
|
|
1073
|
+
description,
|
|
1074
|
+
id: `${MonkeyEcxUtils.getRandomString(40)}`,
|
|
1075
|
+
size,
|
|
1076
|
+
createdAt: new Date()
|
|
1077
|
+
},
|
|
1078
|
+
status: MonkeyEcxQueueEvents.OnGoing
|
|
1079
|
+
};
|
|
1080
|
+
return params;
|
|
1081
|
+
}
|
|
1082
|
+
function buildUploadPropertys(name, description) {
|
|
1083
|
+
const params = {
|
|
1084
|
+
item: {
|
|
1085
|
+
name,
|
|
1086
|
+
description,
|
|
1087
|
+
id: `${MonkeyEcxUtils.getRandomString(40)}`
|
|
1088
|
+
},
|
|
1089
|
+
status: MonkeyEcxUploadEvents.OnGoing
|
|
1090
|
+
};
|
|
1091
|
+
return params;
|
|
1092
|
+
}
|
|
1093
|
+
function hasMonkeyEcxServiceAndHandlingProperties(context) {
|
|
1094
|
+
return Object.prototype.hasOwnProperty.call(context, 'monkeyecxService');
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
var decoratorsUtils = /*#__PURE__*/Object.freeze({
|
|
1098
|
+
__proto__: null,
|
|
1099
|
+
buildQueuePropertys: buildQueuePropertys,
|
|
1100
|
+
buildDownloadPropertys: buildDownloadPropertys,
|
|
1101
|
+
buildUploadPropertys: buildUploadPropertys,
|
|
1102
|
+
hasMonkeyEcxServiceAndHandlingProperties: hasMonkeyEcxServiceAndHandlingProperties
|
|
1103
|
+
});
|
|
1104
|
+
|
|
1059
1105
|
const moment$3 = moment_;
|
|
1060
1106
|
class DateValidator {
|
|
1061
1107
|
static do(control) {
|
|
@@ -1291,52 +1337,6 @@ var validateUtils = /*#__PURE__*/Object.freeze({
|
|
|
1291
1337
|
DateRangeValidator: DateRangeValidator
|
|
1292
1338
|
});
|
|
1293
1339
|
|
|
1294
|
-
function buildQueuePropertys(queue) {
|
|
1295
|
-
const params = {
|
|
1296
|
-
item: {
|
|
1297
|
-
...queue,
|
|
1298
|
-
id: MonkeyEcxUtils.getRandomString(40)
|
|
1299
|
-
},
|
|
1300
|
-
status: MonkeyEcxQueueEvents.OnGoing
|
|
1301
|
-
};
|
|
1302
|
-
return params;
|
|
1303
|
-
}
|
|
1304
|
-
function buildDownloadPropertys(name, description, size) {
|
|
1305
|
-
const params = {
|
|
1306
|
-
item: {
|
|
1307
|
-
name,
|
|
1308
|
-
description,
|
|
1309
|
-
id: `${MonkeyEcxUtils.getRandomString(40)}`,
|
|
1310
|
-
size,
|
|
1311
|
-
createdAt: new Date()
|
|
1312
|
-
},
|
|
1313
|
-
status: MonkeyEcxQueueEvents.OnGoing
|
|
1314
|
-
};
|
|
1315
|
-
return params;
|
|
1316
|
-
}
|
|
1317
|
-
function buildUploadPropertys(name, description) {
|
|
1318
|
-
const params = {
|
|
1319
|
-
item: {
|
|
1320
|
-
name,
|
|
1321
|
-
description,
|
|
1322
|
-
id: `${MonkeyEcxUtils.getRandomString(40)}`
|
|
1323
|
-
},
|
|
1324
|
-
status: MonkeyEcxUploadEvents.OnGoing
|
|
1325
|
-
};
|
|
1326
|
-
return params;
|
|
1327
|
-
}
|
|
1328
|
-
function hasMonkeyEcxServiceAndHandlingProperties(context) {
|
|
1329
|
-
return Object.prototype.hasOwnProperty.call(context, 'monkeyecxService');
|
|
1330
|
-
}
|
|
1331
|
-
|
|
1332
|
-
var decoratorsUtils = /*#__PURE__*/Object.freeze({
|
|
1333
|
-
__proto__: null,
|
|
1334
|
-
buildQueuePropertys: buildQueuePropertys,
|
|
1335
|
-
buildDownloadPropertys: buildDownloadPropertys,
|
|
1336
|
-
buildUploadPropertys: buildUploadPropertys,
|
|
1337
|
-
hasMonkeyEcxServiceAndHandlingProperties: hasMonkeyEcxServiceAndHandlingProperties
|
|
1338
|
-
});
|
|
1339
|
-
|
|
1340
1340
|
const moment$2 = moment_;
|
|
1341
1341
|
const EMAIL_REGEXP = /^[\w-.]+@([\w-]+\.)+[\w-]{1,64}$/;
|
|
1342
1342
|
function isEmptyInputValue(value) {
|
|
@@ -7154,5 +7154,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
7154
7154
|
* Generated bundle index. Do not edit.
|
|
7155
7155
|
*/
|
|
7156
7156
|
|
|
7157
|
-
export { AlertsComponent, AlertsModule, ClosedToMaintenanceComponent, ClosedToMaintenanceModule, CurrencyConfigComponent, CurrencyConfigModule, decoratorsUtils as DecoratorsUtils, LService, Link, MECX_ALPHA, MECX_BETA, MECX_DATE_FORMAT, MECX_ENV, MECX_LANG, MECX_TIMEZONEOFFSET, MonkeyEcxAlertsService, MonkeyEcxAuthGuard, MonkeyEcxAuthGuardByRole, MonkeyEcxAuthGuardCompany, MonkeyEcxAuthGuardLogin, MonkeyEcxAuthenticationService, MonkeyEcxBlobSecurePipe, MonkeyEcxCommonsActions, MonkeyEcxCommonsResolveBaseService, MonkeyEcxCommonsResolveService, MonkeyEcxCommonsSelectors, MonkeyEcxCommonsService, MonkeyEcxCommonsStoreBaseService, MonkeyEcxCommonsStoreService, MonkeyEcxConfigModule, MonkeyEcxConfigService, MonkeyEcxCookieStorageService, MonkeyEcxCoreCharts, MonkeyEcxCoreClearDecorators, MonkeyEcxCoreLog, MonkeyEcxCoreService, MonkeyEcxCoreServiceConstructor, MonkeyEcxCoreServicePaged, MonkeyEcxCoreServiceQueue, MonkeyEcxCurrencyCodePipe, MonkeyEcxCurrencyConfigService, MonkeyEcxDirectivesModule, MonkeyEcxDiscoveryParamsService, MonkeyEcxDisplayFirstNamePipe, MonkeyEcxDisplayInitialsPipe, MonkeyEcxDisplaySupportPhone, MonkeyEcxDragDropDirective, MonkeyEcxErrorConfigService, MonkeyEcxErrorHandlingModule, MonkeyEcxErrorHandlingService, MonkeyEcxFeatureByProgramDirective, MonkeyEcxFeatureDirective, MonkeyEcxFeatureToggleService, MonkeyEcxFormatAddressPipe, MonkeyEcxFormatBeaufityJSONPipe, MonkeyEcxFormatCurrency, MonkeyEcxFormatCurrencyPipe, MonkeyEcxFormatDateGroupPipe, MonkeyEcxFormatDatePipe, MonkeyEcxFormatDateTimelapsePipe, MonkeyEcxFormatDateUnixTimelapsePipe, MonkeyEcxFormatDocumentPipe, MonkeyEcxFormatDocumentTypePipe, MonkeyEcxFormatNumberPipe, MonkeyEcxFormatPhonePipe, MonkeyEcxFormatSizePipe, MonkeyEcxFormatTaxPipe, MonkeyEcxFormatUpper, MonkeyEcxFormatValue, MonkeyEcxFormatZipCodePipe, MonkeyEcxHandlingService, MonkeyEcxHttpConfigErrorInterceptor, MonkeyEcxHttpConfigHeaderInterceptor, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxHttpConfigLoadingInProgressInterceptor, MonkeyEcxHttpConfigQueueInterceptor, MonkeyEcxHttpErrorHandlingService, MonkeyEcxLinksModel, MonkeyEcxLoadingDirective, MonkeyEcxLoggedHandlingService, MonkeyEcxLogsConfigService, MonkeyEcxMaintenanceConfigService, MonkeyEcxModel, MonkeyEcxOnlyAlphaNumericDirective, MonkeyEcxOnlyNumbersDirective, MonkeyEcxOthersErrorsHandlingService, MonkeyEcxPaginationService, MonkeyEcxPipesModule, MonkeyEcxPopoverDirective, MonkeyEcxPopoverOptionsDirective, MonkeyEcxProgressBarComponent, MonkeyEcxProgressBarModule, MonkeyEcxProgressBarService, MonkeyEcxRequestDownloadHandlingService, MonkeyEcxRequestDownloadedHandlingService, MonkeyEcxRequestPagedHandling, MonkeyEcxRequestQueueHandlingService, MonkeyEcxRequestQueueModalHandlingService, MonkeyEcxRequestScheduleService, MonkeyEcxSecurityConsoleConfigService, MonkeyEcxSecurityDirective, MonkeyEcxService, MonkeyEcxServiceDownload, MonkeyEcxServiceUpload, MonkeyEcxServiceWorkerConfigService, MonkeyEcxSpecificationSearch, MonkeyEcxTextTruncatePipe, MonkeyEcxTokenStorageService, MonkeyEcxTooltipDirective, MonkeyEcxTruncateQtdPipe, MonkeyEcxUtils, MonkeyEcxi18nConfigService, MonkeyFrontCoreModule, OpSearch, POPOVER_OPTIONS, statics as Statics, validateUtils as ValidateUtils, Validators, VersionChangedComponent, VersionChangedModule, comboValidator, dateRangeValidator, dateStartEndValidator, dateValidator, differentFromZero, documentValidator, documentValidatorByType, emailValidator, minYearsValidator, passwordConfirmValidator, registerValidator, requiredWithTrimValidator, index as store, trueValidator, urlValidator, valueGreaterThanZero, zipCodeValidator };
|
|
7157
|
+
export { AlertsComponent, AlertsModule, ClosedToMaintenanceComponent, ClosedToMaintenanceModule, CurrencyConfigComponent, CurrencyConfigModule, decoratorsUtils as DecoratorsUtils, LService, Link, MECX_ALPHA, MECX_BETA, MECX_DATE_FORMAT, MECX_ENV, MECX_LANG, MECX_TIMEZONEOFFSET, MonkeyEcxAlertsService, MonkeyEcxAuthGuard, MonkeyEcxAuthGuardByRole, MonkeyEcxAuthGuardCompany, MonkeyEcxAuthGuardLogin, MonkeyEcxAuthenticationService, MonkeyEcxBlobSecurePipe, MonkeyEcxCommonsActions, MonkeyEcxCommonsResolveBaseService, MonkeyEcxCommonsResolveService, MonkeyEcxCommonsSelectors, MonkeyEcxCommonsService, MonkeyEcxCommonsStoreBaseService, MonkeyEcxCommonsStoreService, MonkeyEcxConfigModule, MonkeyEcxConfigService, MonkeyEcxCookieStorageService, MonkeyEcxCoreCharts, MonkeyEcxCoreClearDecorators, MonkeyEcxCoreLog, MonkeyEcxCoreService, MonkeyEcxCoreServiceConstructor, MonkeyEcxCoreServicePaged, MonkeyEcxCoreServiceQueue, MonkeyEcxCurrencyCodePipe, MonkeyEcxCurrencyConfigService, MonkeyEcxDirectivesModule, MonkeyEcxDiscoveryParamsService, MonkeyEcxDisplayFirstNamePipe, MonkeyEcxDisplayInitialsPipe, MonkeyEcxDisplaySupportPhone, MonkeyEcxDragDropDirective, MonkeyEcxErrorConfigService, MonkeyEcxErrorHandlingModule, MonkeyEcxErrorHandlingService, MonkeyEcxFeatureByProgramDirective, MonkeyEcxFeatureDirective, MonkeyEcxFeatureToggleService, MonkeyEcxFormatAddressPipe, MonkeyEcxFormatBeaufityJSONPipe, MonkeyEcxFormatCurrency, MonkeyEcxFormatCurrencyPipe, MonkeyEcxFormatDateGroupPipe, MonkeyEcxFormatDatePipe, MonkeyEcxFormatDateTimelapsePipe, MonkeyEcxFormatDateUnixTimelapsePipe, MonkeyEcxFormatDocumentPipe, MonkeyEcxFormatDocumentTypePipe, MonkeyEcxFormatNumberPipe, MonkeyEcxFormatPhonePipe, MonkeyEcxFormatSizePipe, MonkeyEcxFormatTaxPipe, MonkeyEcxFormatUpper, MonkeyEcxFormatValue, MonkeyEcxFormatZipCodePipe, MonkeyEcxHandlingService, MonkeyEcxHttpConfigErrorInterceptor, MonkeyEcxHttpConfigHeaderInterceptor, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxHttpConfigLoadingInProgressInterceptor, MonkeyEcxHttpConfigQueueInterceptor, MonkeyEcxHttpErrorHandlingService, MonkeyEcxLinksModel, MonkeyEcxLoadingDirective, MonkeyEcxLoggedHandlingService, MonkeyEcxLogs, MonkeyEcxLogsConfigService, MonkeyEcxMaintenanceConfigService, MonkeyEcxModel, MonkeyEcxOnlyAlphaNumericDirective, MonkeyEcxOnlyNumbersDirective, MonkeyEcxOthersErrorsHandlingService, MonkeyEcxPaginationService, MonkeyEcxPipesModule, MonkeyEcxPopoverDirective, MonkeyEcxPopoverOptionsDirective, MonkeyEcxProgressBarComponent, MonkeyEcxProgressBarModule, MonkeyEcxProgressBarService, MonkeyEcxRequestDownloadHandlingService, MonkeyEcxRequestDownloadedHandlingService, MonkeyEcxRequestPagedHandling, MonkeyEcxRequestQueueHandlingService, MonkeyEcxRequestQueueModalHandlingService, MonkeyEcxRequestScheduleService, MonkeyEcxSecurityConsoleConfigService, MonkeyEcxSecurityDirective, MonkeyEcxService, MonkeyEcxServiceDownload, MonkeyEcxServiceUpload, MonkeyEcxServiceWorkerConfigService, MonkeyEcxSpecificationSearch, MonkeyEcxTextTruncatePipe, MonkeyEcxTokenStorageService, MonkeyEcxTooltipDirective, MonkeyEcxTruncateQtdPipe, MonkeyEcxUtils, MonkeyEcxi18nConfigService, MonkeyFrontCoreModule, OpSearch, POPOVER_OPTIONS, statics as Statics, validateUtils as ValidateUtils, Validators, VersionChangedComponent, VersionChangedModule, comboValidator, dateRangeValidator, dateStartEndValidator, dateValidator, differentFromZero, documentValidator, documentValidatorByType, emailValidator, minYearsValidator, passwordConfirmValidator, registerValidator, requiredWithTrimValidator, index as store, trueValidator, urlValidator, valueGreaterThanZero, zipCodeValidator };
|
|
7158
7158
|
//# sourceMappingURL=monkey-front-core.mjs.map
|