@sumaris-net/ngx-components 0.27.13 → 0.27.17
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/bundles/sumaris-net.ngx-components.umd.js +63 -16
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +2 -2
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/core.module.js +5 -2
- package/esm2015/src/app/core/icon/icon.component.js +29 -0
- package/esm2015/src/app/core/menu/menu.model.js +1 -1
- package/esm2015/src/app/shared/colors.utils.js +2 -0
- package/esm2015/src/app/shared/services/translate-context.service.js +4 -4
- package/esm2015/src/app/shared/types.js +1 -1
- package/esm2015/src/app/shared/validator/validators.js +25 -14
- package/esm2015/sumaris-net.ngx-components.js +2 -1
- package/fesm2015/sumaris-net.ngx-components.js +58 -17
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/icon/icon.component.d.ts +9 -0
- package/src/app/core/menu/menu.model.d.ts +0 -2
- package/src/app/shared/colors.utils.d.ts +3 -0
- package/src/app/shared/types.d.ts +1 -0
- package/src/app/shared/validator/validators.d.ts +2 -0
- package/src/assets/i18n/fr.json +2 -2
- package/sumaris-net.ngx-components.d.ts +1 -0
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { AbstractControl, FormControl, ValidationErrors, ValidatorFn } from '@angular/forms';
|
|
2
2
|
import { Moment, unitOfTime } from 'moment';
|
|
3
3
|
export declare class SharedValidators {
|
|
4
|
+
private static _REGEXP_CACHE;
|
|
5
|
+
private static getDoubleRegexp;
|
|
4
6
|
static readonly I18N_ERROR_KEYS: {
|
|
5
7
|
required: string;
|
|
6
8
|
min: string;
|
package/src/assets/i18n/fr.json
CHANGED
|
@@ -442,8 +442,8 @@
|
|
|
442
442
|
"FIELD_MIN_COMPACT": "Min autorisée={{min}}",
|
|
443
443
|
"FIELD_MAX": "Valeur maximale autorisée: {{max}}",
|
|
444
444
|
"FIELD_MAX_COMPACT": "Max {{max}}",
|
|
445
|
-
"FIELD_MAXIMUM_DECIMALS": "Nombre de décimale incorrect ({{
|
|
446
|
-
"FIELD_MAXIMUM_DECIMALS_COMPACT": "Nb décimale max={{
|
|
445
|
+
"FIELD_MAXIMUM_DECIMALS": "Nombre de décimale incorrect ({{maxDecimals}} max)",
|
|
446
|
+
"FIELD_MAXIMUM_DECIMALS_COMPACT": "Nb décimale max={{maxDecimals}}",
|
|
447
447
|
"FIELD_INVALID": "Valeur non valide",
|
|
448
448
|
"FIELD_NOT_VALID_INTEGER": "Valeur entière attendue",
|
|
449
449
|
"FIELD_NOT_VALID_EMAIL": "Addresse email invalide",
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
4
|
export * from './public_api';
|
|
5
|
+
export { AppIconComponent as ɵl } from './src/app/core/icon/icon.component';
|
|
5
6
|
export { RegisterForm as ɵg } from './src/app/core/register/form/form-register';
|
|
6
7
|
export { RegisterModal as ɵi } from './src/app/core/register/modal/modal-register';
|
|
7
8
|
export { AccountValidatorService as ɵh } from './src/app/core/services/validator/account.validator';
|