@abp/ng.core 6.0.0-rc.3 → 6.0.0-rc.4
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/directives/form-submit.directive.mjs +4 -1
- package/esm2020/lib/utils/common-utils.mjs +4 -1
- package/esm2020/lib/validators/index.mjs +3 -1
- package/esm2020/lib/validators/required.validator.mjs +4 -2
- package/esm2020/lib/validators/url.validator.mjs +3 -2
- package/esm2020/lib/validators/username.validator.mjs +14 -0
- package/fesm2015/abp-ng.core.mjs +25 -3
- package/fesm2015/abp-ng.core.mjs.map +1 -1
- package/fesm2020/abp-ng.core.mjs +25 -3
- package/fesm2020/abp-ng.core.mjs.map +1 -1
- package/lib/directives/form-submit.directive.d.ts +3 -0
- package/lib/utils/common-utils.d.ts +1 -0
- package/lib/validators/index.d.ts +2 -0
- package/lib/validators/username.validator.d.ts +10 -0
- package/package.json +2 -2
package/fesm2020/abp-ng.core.mjs
CHANGED
|
@@ -176,6 +176,9 @@ function isUndefinedOrEmptyString(value) {
|
|
|
176
176
|
function isNullOrUndefined(obj) {
|
|
177
177
|
return obj === null || obj === undefined;
|
|
178
178
|
}
|
|
179
|
+
function isNullOrEmpty(obj) {
|
|
180
|
+
return obj === null || obj === undefined || obj === '';
|
|
181
|
+
}
|
|
179
182
|
function exists(obj) {
|
|
180
183
|
return !isNullOrUndefined(obj);
|
|
181
184
|
}
|
|
@@ -1846,6 +1849,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.6", ngImpor
|
|
|
1846
1849
|
args: ['abpForEmptyRef']
|
|
1847
1850
|
}] } });
|
|
1848
1851
|
|
|
1852
|
+
/**
|
|
1853
|
+
* @deprecated FormSubmitDirective will be removed in V7.0.0. Use `ngSubmit` instead.
|
|
1854
|
+
*/
|
|
1849
1855
|
class FormSubmitDirective {
|
|
1850
1856
|
constructor(formGroupDirective, host, cdRef, subscription) {
|
|
1851
1857
|
this.formGroupDirective = formGroupDirective;
|
|
@@ -4306,9 +4312,11 @@ function getMinError(value, min, max) {
|
|
|
4306
4312
|
}
|
|
4307
4313
|
|
|
4308
4314
|
function validateRequired({ allowEmptyStrings } = {}) {
|
|
4309
|
-
|
|
4315
|
+
// note: please do not remove name of the function, it is used in function compare with type 'RequiredError'
|
|
4316
|
+
const required = (control) => {
|
|
4310
4317
|
return isValidRequired(control.value, allowEmptyStrings) ? null : { required: true };
|
|
4311
4318
|
};
|
|
4319
|
+
return required;
|
|
4312
4320
|
}
|
|
4313
4321
|
function isValidRequired(value, allowEmptyStrings) {
|
|
4314
4322
|
if (value || value === 0 || value === false)
|
|
@@ -4335,7 +4343,7 @@ function getMinLengthError(value, requiredLength) {
|
|
|
4335
4343
|
|
|
4336
4344
|
function validateUrl() {
|
|
4337
4345
|
return (control) => {
|
|
4338
|
-
if (
|
|
4346
|
+
if (isNullOrUndefined(control.value))
|
|
4339
4347
|
return null;
|
|
4340
4348
|
return isValidUrl(control.value) ? null : { url: true };
|
|
4341
4349
|
};
|
|
@@ -4349,6 +4357,19 @@ function isValidUrl(value) {
|
|
|
4349
4357
|
return false;
|
|
4350
4358
|
}
|
|
4351
4359
|
|
|
4360
|
+
const onlyLetterAndNumberRegex = /^[a-zA-Z0-9]+$/;
|
|
4361
|
+
function validateUsername({ pattern } = { pattern: onlyLetterAndNumberRegex }) {
|
|
4362
|
+
return (control) => {
|
|
4363
|
+
const isValid = isValidUserName(control.value, pattern);
|
|
4364
|
+
return isValid ? null : { usernamePattern: { actualValue: control.value } };
|
|
4365
|
+
};
|
|
4366
|
+
}
|
|
4367
|
+
function isValidUserName(value, pattern) {
|
|
4368
|
+
if (isNullOrEmpty(value))
|
|
4369
|
+
return true;
|
|
4370
|
+
return pattern.test(value);
|
|
4371
|
+
}
|
|
4372
|
+
|
|
4352
4373
|
const AbpValidators = {
|
|
4353
4374
|
creditCard: validateCreditCard,
|
|
4354
4375
|
emailAddress: () => Validators.email,
|
|
@@ -4357,6 +4378,7 @@ const AbpValidators = {
|
|
|
4357
4378
|
required: validateRequired,
|
|
4358
4379
|
stringLength: validateStringLength,
|
|
4359
4380
|
url: validateUrl,
|
|
4381
|
+
username: validateUsername,
|
|
4360
4382
|
};
|
|
4361
4383
|
|
|
4362
4384
|
// export * from './lib/handlers';
|
|
@@ -4365,5 +4387,5 @@ const AbpValidators = {
|
|
|
4365
4387
|
* Generated bundle index. Do not edit.
|
|
4366
4388
|
*/
|
|
4367
4389
|
|
|
4368
|
-
export { APP_INIT_ERROR_HANDLERS, AbpApiDefinitionService, AbpApplicationConfigurationService, AbpTenantService, AbpValidators, AbstractNavTreeService, AbstractNgModelComponent, AbstractTreeService, ApiInterceptor, AuditedEntityDto, AuditedEntityWithUserDto, AuthGuard, AuthService, AutofocusDirective, BaseCoreModule, BaseTreeNode, CONTAINER_STRATEGY, CONTENT_SECURITY_STRATEGY, CONTENT_STRATEGY, CONTEXT_STRATEGY, COOKIE_LANGUAGE_KEY, CORE_OPTIONS, CROSS_ORIGIN_STRATEGY, ClearContainerStrategy, ComponentContextStrategy, ComponentProjectionStrategy, ConfigStateService, ContainerStrategy, ContentProjectionService, ContentSecurityStrategy, ContentStrategy, ContextStrategy, CoreModule, CreationAuditedEntityDto, CreationAuditedEntityWithUserDto, CrossOriginStrategy, DOM_STRATEGY, DomInsertionService, DomStrategy, DynamicLayoutComponent, EntityDto, EnvironmentService, ExtensibleAuditedEntityDto, ExtensibleAuditedEntityWithUserDto, ExtensibleCreationAuditedEntityDto, ExtensibleCreationAuditedEntityWithUserDto, ExtensibleEntityDto, ExtensibleFullAuditedEntityDto, ExtensibleFullAuditedEntityWithUserDto, ExtensibleObject, ForDirective, FormSubmitDirective, FullAuditedEntityDto, FullAuditedEntityWithUserDto, HttpErrorReporterService, HttpWaitService, INJECTOR_PIPE_DATA_TOKEN, InitDirective, InputEventDebounceDirective, InsertIntoContainerStrategy, InternalStore, LIST_QUERY_DEBOUNCE_TIME, LOADER_DELAY, LOADING_STRATEGY, LOCALIZATIONS, LazyLoadService, LazyModuleFactory, LimitedResultRequestDto, ListResultDto, ListService, LoadingStrategy, LocalizationModule, LocalizationPipe, LocalizationService, LooseContentSecurityStrategy, MultiTenancyService, NAVIGATE_TO_MANAGE_PROFILE, NavigationEvent, NoContentSecurityStrategy, NoContextStrategy, NoCrossOriginStrategy, index as ObjectExtending, PROJECTION_STRATEGY, PagedAndSortedResultRequestDto, PagedResultDto, PagedResultRequestDto, PermissionDirective, PermissionGuard, PermissionService, ProjectionStrategy, ReplaceableComponentsService, ReplaceableRouteContainerComponent, ReplaceableTemplateDirective, ResourceWaitService, RestService, RootComponentProjectionStrategy, RootCoreModule, RouterEvents, RouterOutletComponent, RouterWaitService, RoutesService, ScriptContentStrategy, ScriptLoadingStrategy, SessionStateService, ShortDatePipe, ShortDateTimePipe, ShortTimePipe, SortPipe, StopPropagationDirective, StyleContentStrategy, StyleLoadingStrategy, SubscriptionService, TENANT_KEY, TemplateContextStrategy, TemplateProjectionStrategy, ToInjectorPipe, TrackByService, WebHttpUrlEncodingCodec, checkAccessToken, coreOptionsFactory, createLocalizationPipeKeyGenerator, createLocalizer, createLocalizerWithFallback, createMapFromList, createTokenParser, createTreeFromList, createTreeNodeFilterCreator, deepMerge, differentLocales, downloadBlob, escapeHtmlChars, exists, featuresFactory, findRoute, fromLazyLoad, generateHash, generatePassword, getInitialData, getLocaleDirection, getPathName, getRemoteEnv, getRoutePath, getShortDateFormat, getShortDateShortTimeFormat, getShortTimeFormat, interpolate, isArray, isNode, isNullOrUndefined, isNumber, isObject, isObjectAndNotArray, isObjectAndNotArrayNotNode, isUndefinedOrEmptyString, localeInitializer, localizationContributor, localizations$, mapEnumToOptions, noop, parseTenantFromUrl, pipeToLogin, pushValueTo, reloadRoute, removeRememberMe, setRememberMe, setTokenResponseToStorage, storageFactory, trackBy, trackByDeep, uuid, validateCreditCard, validateMinAge, validateRange, validateRequired, validateStringLength, validateUrl };
|
|
4390
|
+
export { APP_INIT_ERROR_HANDLERS, AbpApiDefinitionService, AbpApplicationConfigurationService, AbpTenantService, AbpValidators, AbstractNavTreeService, AbstractNgModelComponent, AbstractTreeService, ApiInterceptor, AuditedEntityDto, AuditedEntityWithUserDto, AuthGuard, AuthService, AutofocusDirective, BaseCoreModule, BaseTreeNode, CONTAINER_STRATEGY, CONTENT_SECURITY_STRATEGY, CONTENT_STRATEGY, CONTEXT_STRATEGY, COOKIE_LANGUAGE_KEY, CORE_OPTIONS, CROSS_ORIGIN_STRATEGY, ClearContainerStrategy, ComponentContextStrategy, ComponentProjectionStrategy, ConfigStateService, ContainerStrategy, ContentProjectionService, ContentSecurityStrategy, ContentStrategy, ContextStrategy, CoreModule, CreationAuditedEntityDto, CreationAuditedEntityWithUserDto, CrossOriginStrategy, DOM_STRATEGY, DomInsertionService, DomStrategy, DynamicLayoutComponent, EntityDto, EnvironmentService, ExtensibleAuditedEntityDto, ExtensibleAuditedEntityWithUserDto, ExtensibleCreationAuditedEntityDto, ExtensibleCreationAuditedEntityWithUserDto, ExtensibleEntityDto, ExtensibleFullAuditedEntityDto, ExtensibleFullAuditedEntityWithUserDto, ExtensibleObject, ForDirective, FormSubmitDirective, FullAuditedEntityDto, FullAuditedEntityWithUserDto, HttpErrorReporterService, HttpWaitService, INJECTOR_PIPE_DATA_TOKEN, InitDirective, InputEventDebounceDirective, InsertIntoContainerStrategy, InternalStore, LIST_QUERY_DEBOUNCE_TIME, LOADER_DELAY, LOADING_STRATEGY, LOCALIZATIONS, LazyLoadService, LazyModuleFactory, LimitedResultRequestDto, ListResultDto, ListService, LoadingStrategy, LocalizationModule, LocalizationPipe, LocalizationService, LooseContentSecurityStrategy, MultiTenancyService, NAVIGATE_TO_MANAGE_PROFILE, NavigationEvent, NoContentSecurityStrategy, NoContextStrategy, NoCrossOriginStrategy, index as ObjectExtending, PROJECTION_STRATEGY, PagedAndSortedResultRequestDto, PagedResultDto, PagedResultRequestDto, PermissionDirective, PermissionGuard, PermissionService, ProjectionStrategy, ReplaceableComponentsService, ReplaceableRouteContainerComponent, ReplaceableTemplateDirective, ResourceWaitService, RestService, RootComponentProjectionStrategy, RootCoreModule, RouterEvents, RouterOutletComponent, RouterWaitService, RoutesService, ScriptContentStrategy, ScriptLoadingStrategy, SessionStateService, ShortDatePipe, ShortDateTimePipe, ShortTimePipe, SortPipe, StopPropagationDirective, StyleContentStrategy, StyleLoadingStrategy, SubscriptionService, TENANT_KEY, TemplateContextStrategy, TemplateProjectionStrategy, ToInjectorPipe, TrackByService, WebHttpUrlEncodingCodec, checkAccessToken, coreOptionsFactory, createLocalizationPipeKeyGenerator, createLocalizer, createLocalizerWithFallback, createMapFromList, createTokenParser, createTreeFromList, createTreeNodeFilterCreator, deepMerge, differentLocales, downloadBlob, escapeHtmlChars, exists, featuresFactory, findRoute, fromLazyLoad, generateHash, generatePassword, getInitialData, getLocaleDirection, getPathName, getRemoteEnv, getRoutePath, getShortDateFormat, getShortDateShortTimeFormat, getShortTimeFormat, interpolate, isArray, isNode, isNullOrEmpty, isNullOrUndefined, isNumber, isObject, isObjectAndNotArray, isObjectAndNotArrayNotNode, isUndefinedOrEmptyString, localeInitializer, localizationContributor, localizations$, mapEnumToOptions, noop, parseTenantFromUrl, pipeToLogin, pushValueTo, reloadRoute, removeRememberMe, setRememberMe, setTokenResponseToStorage, storageFactory, trackBy, trackByDeep, uuid, validateCreditCard, validateMinAge, validateRange, validateRequired, validateStringLength, validateUrl };
|
|
4369
4391
|
//# sourceMappingURL=abp-ng.core.mjs.map
|