@cauca-911/material 20.2.6 → 20.2.7

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.
@@ -38,10 +38,16 @@
38
38
  "titleError": "Deletion Error",
39
39
  "messageError": "An error occurred while deleting \"{{itemName}}\". Please try again later."
40
40
  },
41
+ "savingSuccessNotification": {
42
+ "title": "Saving",
43
+ "message": "The save was successful."
44
+ },
41
45
  "deleteDialog": {
42
46
  "titleFemale": "Delete {{itemType}}",
43
47
  "titleMale": "Delete {{itemType}}",
44
- "message": "Are you sure you want to delete \"{{itemName}}\"?"
48
+ "message": "Are you sure you want to delete \"{{itemName}}\"?",
49
+ "titleError": "Unable to delete",
50
+ "messageError": "An error occurred while deleting the item \"{{itemName}}\""
45
51
  },
46
52
  "cancelEditionDialog": {
47
53
  "title": "Cancel confirmation",
@@ -77,7 +83,12 @@
77
83
  "invalidPhoneNumber": "Invalid phone number",
78
84
  "min": "Minimum value: {{value}}",
79
85
  "max": "Maximum value: {{value}}",
80
- "length": "Length must not exceed {{value}} characters."
86
+ "length": "Length must not exceed {{value}} characters.",
87
+ "identicalPassword": "Same passwords",
88
+ "minimumCharacters": "Minimum 13 characters",
89
+ "minimumNumeric": "Minimum 1 numbers (0-9)",
90
+ "minimumSpecialCharacter": "Minimum 1 special character (!, @, $, ...)",
91
+ "minimumUpperAndLowercase": "Minimum 1 uppercase et 1 lowercase (A, z)"
81
92
  },
82
93
  "passwordEdition" : {
83
94
  "passwordSelection": "Please choose a password.",
@@ -65,6 +65,10 @@
65
65
  "deleteErrorMessage": "Une erreur s'est produite lors de la suppression, veuillez réessayer.",
66
66
  "creationErrorMessage": "Une erreur s'est produite lors de la création du fichier, veuillez réessayer."
67
67
  },
68
+ "savingSuccessNotification": {
69
+ "title": "Sauvegarde",
70
+ "message": "La sauvegarde s'est effectuée avec succès."
71
+ },
68
72
  "generalError": {
69
73
  "errorAlertTitle": "Erreur",
70
74
  "loadingErrorAlertTitle": "Erreur de chargement",
@@ -82,6 +86,11 @@
82
86
  "invalidPhoneNumber": "Le téléphone n'est pas valide",
83
87
  "min": "Valeur minimale: {{value}}",
84
88
  "max": "Valeur maximale: {{value}}",
89
+ "minimumCharacters": "Minimum 13 caractères",
90
+ "minimumNumeric": "Minimum 1 chiffre (0-9)",
91
+ "minimumSpecialCharacter": "Minimum 1 caractère spécial (!, @, $, ...)",
92
+ "minimumUpperAndLowercase": "Minimum 1 majuscule et 1 minuscule (A, z)",
93
+ "identicalPassword": "Mots de passe identiques",
85
94
  "length": "La longueur ne doit pas dépasser {{value}} caractères."
86
95
  },
87
96
  "passwordEdition" : {
@@ -1856,6 +1856,30 @@ class BreadcrumbLocation {
1856
1856
  }
1857
1857
  }
1858
1858
 
1859
+ class BreadcrumbService {
1860
+ constructor() {
1861
+ this.showBreadcrumb = computed(() => this.isShown(), ...(ngDevMode ? [{ debugName: "showBreadcrumb" }] : []));
1862
+ this.location = signal([], ...(ngDevMode ? [{ debugName: "location" }] : []));
1863
+ this.breadcrumb = signal('', ...(ngDevMode ? [{ debugName: "breadcrumb" }] : []));
1864
+ this.translateBreadcrumb = signal(false, ...(ngDevMode ? [{ debugName: "translateBreadcrumb" }] : []));
1865
+ this.isShown = signal(false, ...(ngDevMode ? [{ debugName: "isShown" }] : []));
1866
+ }
1867
+ show(breadcrumb, location = [], translateBreadcrumb = true) {
1868
+ this.isShown.set(true);
1869
+ this.breadcrumb.set(breadcrumb);
1870
+ this.location.set(location);
1871
+ this.translateBreadcrumb.set(translateBreadcrumb);
1872
+ }
1873
+ hide() {
1874
+ this.isShown.set(false);
1875
+ }
1876
+ static { this.ɵfac = function BreadcrumbService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || BreadcrumbService)(); }; }
1877
+ static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: BreadcrumbService, factory: BreadcrumbService.ɵfac }); }
1878
+ }
1879
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BreadcrumbService, [{
1880
+ type: Injectable
1881
+ }], null, null); })();
1882
+
1859
1883
  class LoadingStateService {
1860
1884
  constructor() {
1861
1885
  this.showLoadingIndicator = computed(() => this.isLoading(), ...(ngDevMode ? [{ debugName: "showLoadingIndicator" }] : []));
@@ -3394,30 +3418,6 @@ class SectionFieldComponent {
3394
3418
  }], null, null); })();
3395
3419
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SectionFieldComponent, { className: "SectionFieldComponent", filePath: "lib/components/layout/sections/section-field/section-field.component.ts", lineNumber: 12 }); })();
3396
3420
 
3397
- class BreadcrumbService {
3398
- constructor() {
3399
- this.showBreadcrumb = computed(() => this.isShown(), ...(ngDevMode ? [{ debugName: "showBreadcrumb" }] : []));
3400
- this.location = signal([], ...(ngDevMode ? [{ debugName: "location" }] : []));
3401
- this.breadcrumb = signal('', ...(ngDevMode ? [{ debugName: "breadcrumb" }] : []));
3402
- this.translateBreadcrumb = signal(false, ...(ngDevMode ? [{ debugName: "translateBreadcrumb" }] : []));
3403
- this.isShown = signal(false, ...(ngDevMode ? [{ debugName: "isShown" }] : []));
3404
- }
3405
- show(breadcrumb, location = [], translateBreadcrumb = true) {
3406
- this.isShown.set(true);
3407
- this.breadcrumb.set(breadcrumb);
3408
- this.location.set(location);
3409
- this.translateBreadcrumb.set(translateBreadcrumb);
3410
- }
3411
- hide() {
3412
- this.isShown.set(false);
3413
- }
3414
- static { this.ɵfac = function BreadcrumbService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || BreadcrumbService)(); }; }
3415
- static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: BreadcrumbService, factory: BreadcrumbService.ɵfac }); }
3416
- }
3417
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BreadcrumbService, [{
3418
- type: Injectable
3419
- }], null, null); })();
3420
-
3421
3421
  function PageTitleComponent_Conditional_4_Conditional_1_Template(rf, ctx) { if (rf & 1) {
3422
3422
  i0.ɵɵelementStart(0, "div", 4);
3423
3423
  i0.ɵɵtext(1);
@@ -4728,5 +4728,5 @@ class CaucaSlideshowComponent {
4728
4728
  * Generated bundle index. Do not edit.
4729
4729
  */
4730
4730
 
4731
- export { AutoTrimAndLowerDirective, BadgeComponent, BasicButtonComponent, BreadcrumbLocation, ButtonComponent, CaucaDateTimePickerComponent, CaucaInputFileComponent, CaucaInputMultipleLangueComponent, CaucaMaterialComponent, CaucaMaterialService, CaucaMenuSidebarComponent, CaucaMenuVerticalComponent, CaucaSimpleDialogComponent, CaucaSlideshowComponent, ColorPickerComponent, ConfirmationResult, DateRangePickerComponent, DialogService, DropdownChipAutocompleteComponent, ExpandablePanelComponent, FabButtonComponent, FlatButtonComponent, FormErrorModule, GroupContainerComponent, HasErrorDirective, HasErrorRootDirective, IconButtonComponent, IconComponent, LinkButtonComponent, ListPaginatorComponent, LoadingErrorComponent, LoadingSpinnerIndicatorComponent, LoadingStateService, MainSectionComponent, MenuExpandablePanelComponent, MenuExpandablePanelItemComponent, MenuItem, MenuItemComponent, PageTitleComponent, PasswordCriteriaViewerComponent, PasswordInputComponent, PasswordSelectionComponent, RaisedButtonComponent, RefreshButtonComponent, RoundButtonComponent, SavingConfirmedBoxComponent, SavingErrorBoxComponent, SectionColumnComponent, SectionFieldComponent, SelectWithSearchComponent, SnackBarComponent, StrokedButtonComponent, provideCaucaMaterial };
4731
+ export { AutoTrimAndLowerDirective, BadgeComponent, BasicButtonComponent, BreadcrumbLocation, BreadcrumbService, ButtonComponent, CaucaDateTimePickerComponent, CaucaInputFileComponent, CaucaInputMultipleLangueComponent, CaucaMaterialComponent, CaucaMaterialService, CaucaMenuSidebarComponent, CaucaMenuVerticalComponent, CaucaSimpleDialogComponent, CaucaSlideshowComponent, ColorPickerComponent, ConfirmationResult, DateRangePickerComponent, DialogService, DropdownChipAutocompleteComponent, ExpandablePanelComponent, FabButtonComponent, FlatButtonComponent, FormErrorModule, GroupContainerComponent, HasErrorDirective, HasErrorRootDirective, IconButtonComponent, IconComponent, LinkButtonComponent, ListPaginatorComponent, LoadingErrorComponent, LoadingSpinnerIndicatorComponent, LoadingStateService, MainSectionComponent, MenuExpandablePanelComponent, MenuExpandablePanelItemComponent, MenuItem, MenuItemComponent, PageTitleComponent, PasswordCriteriaViewerComponent, PasswordInputComponent, PasswordSelectionComponent, RaisedButtonComponent, RefreshButtonComponent, RoundButtonComponent, SavingConfirmedBoxComponent, SavingErrorBoxComponent, SectionColumnComponent, SectionFieldComponent, SelectWithSearchComponent, SnackBarComponent, StrokedButtonComponent, provideCaucaMaterial };
4732
4732
  //# sourceMappingURL=cauca-911-material.mjs.map