@cauca-911/material 20.2.11 → 20.2.13
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/.eslintrc.json +77 -0
- package/README.md +24 -5
- package/README_PACKAGE.md +5 -0
- package/karma.conf.js +50 -0
- package/ng-package.json +7 -0
- package/package.json +23 -38
- package/{assets → src/assets}/i18n/cauca/en-material.json +104 -104
- package/{assets → src/assets}/i18n/cauca/es-material.json +104 -104
- package/{assets → src/assets}/i18n/cauca/fr-material.json +106 -106
- package/src/lib/cauca-material.component.html +1 -0
- package/src/lib/cauca-material.component.spec.ts +29 -0
- package/src/lib/cauca-material.component.ts +12 -0
- package/src/lib/cauca-material.service.spec.ts +16 -0
- package/src/lib/cauca-material.service.ts +7 -0
- package/src/lib/components/button/button.component.html +52 -0
- package/src/lib/components/button/button.component.scss +6 -0
- package/src/lib/components/button/button.component.spec.ts +134 -0
- package/src/lib/components/button/button.component.ts +21 -0
- package/src/lib/components/buttons/base-button.ts +35 -0
- package/src/lib/components/buttons/basic-button/basic-button.component.html +5 -0
- package/src/lib/components/buttons/basic-button/basic-button.component.scss +12 -0
- package/src/lib/components/buttons/basic-button/basic-button.component.spec.ts +106 -0
- package/src/lib/components/buttons/basic-button/basic-button.component.ts +17 -0
- package/src/lib/components/buttons/fab-button/fab-button.component.html +3 -0
- package/src/lib/components/buttons/fab-button/fab-button.component.scss +12 -0
- package/src/lib/components/buttons/fab-button/fab-button.component.spec.ts +82 -0
- package/src/lib/components/buttons/fab-button/fab-button.component.ts +16 -0
- package/src/lib/components/buttons/flat-button/flat-button.component.html +5 -0
- package/src/lib/components/buttons/flat-button/flat-button.component.scss +12 -0
- package/src/lib/components/buttons/flat-button/flat-button.component.spec.ts +106 -0
- package/src/lib/components/buttons/flat-button/flat-button.component.ts +17 -0
- package/src/lib/components/buttons/icon-button/icon-button.component.html +3 -0
- package/src/lib/components/buttons/icon-button/icon-button.component.scss +23 -0
- package/src/lib/components/buttons/icon-button/icon-button.component.spec.ts +38 -0
- package/src/lib/components/buttons/icon-button/icon-button.component.ts +15 -0
- package/src/lib/components/buttons/link-button/link-button.component.html +1 -0
- package/src/lib/components/buttons/link-button/link-button.component.scss +3 -0
- package/src/lib/components/buttons/link-button/link-button.component.spec.ts +97 -0
- package/src/lib/components/buttons/link-button/link-button.component.ts +25 -0
- package/src/lib/components/buttons/menu-item/menu-item.component.html +5 -0
- package/src/lib/components/buttons/menu-item/menu-item.component.scss +6 -0
- package/src/lib/components/buttons/menu-item/menu-item.component.spec.ts +66 -0
- package/src/lib/components/buttons/menu-item/menu-item.component.ts +19 -0
- package/src/lib/components/buttons/raised-button/raised-button.component.html +5 -0
- package/src/lib/components/buttons/raised-button/raised-button.component.scss +12 -0
- package/src/lib/components/buttons/raised-button/raised-button.component.spec.ts +108 -0
- package/src/lib/components/buttons/raised-button/raised-button.component.ts +17 -0
- package/src/lib/components/buttons/refresh-button/refresh-button.component.html +1 -0
- package/src/lib/components/buttons/refresh-button/refresh-button.component.scss +0 -0
- package/src/lib/components/buttons/refresh-button/refresh-button.component.spec.ts +81 -0
- package/src/lib/components/buttons/refresh-button/refresh-button.component.ts +19 -0
- package/src/lib/components/buttons/round-button/round-button.component.html +3 -0
- package/src/lib/components/buttons/round-button/round-button.component.scss +34 -0
- package/src/lib/components/buttons/round-button/round-button.component.spec.ts +26 -0
- package/src/lib/components/buttons/round-button/round-button.component.ts +14 -0
- package/src/lib/components/buttons/stroked-button/stroked-button.component.html +5 -0
- package/src/lib/components/buttons/stroked-button/stroked-button.component.scss +23 -0
- package/src/lib/components/buttons/stroked-button/stroked-button.component.spec.ts +114 -0
- package/src/lib/components/buttons/stroked-button/stroked-button.component.ts +17 -0
- package/src/lib/components/cauca-date-time-picker/cauca-date-time-picker.component.html +9 -0
- package/src/lib/components/cauca-date-time-picker/cauca-date-time-picker.component.scss +7 -0
- package/src/lib/components/cauca-date-time-picker/cauca-date-time-picker.component.spec.ts +68 -0
- package/src/lib/components/cauca-date-time-picker/cauca-date-time-picker.component.ts +155 -0
- package/src/lib/components/cauca-date-time-picker/components/desktop-time-picker/desktop-time-picker.component.html +6 -0
- package/src/lib/components/cauca-date-time-picker/components/desktop-time-picker/desktop-time-picker.component.scss +25 -0
- package/src/lib/components/cauca-date-time-picker/components/desktop-time-picker/desktop-time-picker.component.spec.ts +23 -0
- package/src/lib/components/cauca-date-time-picker/components/desktop-time-picker/desktop-time-picker.component.ts +23 -0
- package/src/lib/components/cauca-date-time-picker/components/dialog-date-time-picker/dialog-date-time-picker.component.html +53 -0
- package/src/lib/components/cauca-date-time-picker/components/dialog-date-time-picker/dialog-date-time-picker.component.scss +124 -0
- package/src/lib/components/cauca-date-time-picker/components/dialog-date-time-picker/dialog-date-time-picker.component.spec.ts +93 -0
- package/src/lib/components/cauca-date-time-picker/components/dialog-date-time-picker/dialog-date-time-picker.component.ts +227 -0
- package/src/lib/components/cauca-date-time-picker/components/mobile-time-picker/mobile-time-picker.component.html +9 -0
- package/src/lib/components/cauca-date-time-picker/components/mobile-time-picker/mobile-time-picker.component.scss +15 -0
- package/src/lib/components/cauca-date-time-picker/components/mobile-time-picker/mobile-time-picker.component.spec.ts +103 -0
- package/src/lib/components/cauca-date-time-picker/components/mobile-time-picker/mobile-time-picker.component.ts +47 -0
- package/src/lib/components/cauca-date-time-picker/models/dialog-date-time-picker-data.ts +29 -0
- package/src/lib/components/deprecated-components/cauca-input-file/cauca-input-file.component.html +11 -0
- package/src/lib/components/deprecated-components/cauca-input-file/cauca-input-file.component.scss +3 -0
- package/src/lib/components/deprecated-components/cauca-input-file/cauca-input-file.component.ts +87 -0
- package/src/lib/components/deprecated-components/cauca-input-multiple-langue/cauca-input-multiple-langue.component.html +8 -0
- package/src/lib/components/deprecated-components/cauca-input-multiple-langue/cauca-input-multiple-langue.component.scss +3 -0
- package/src/lib/components/deprecated-components/cauca-input-multiple-langue/cauca-input-multiple-langue.component.spec.ts +35 -0
- package/src/lib/components/deprecated-components/cauca-input-multiple-langue/cauca-input-multiple-langue.component.ts +57 -0
- package/src/lib/components/deprecated-components/cauca-menu-sidebar/cauca-menu-sidebar.component.html +19 -0
- package/src/lib/components/deprecated-components/cauca-menu-sidebar/cauca-menu-sidebar.component.scss +142 -0
- package/src/lib/components/deprecated-components/cauca-menu-sidebar/cauca-menu-sidebar.component.spec.ts +30 -0
- package/src/lib/components/deprecated-components/cauca-menu-sidebar/cauca-menu-sidebar.component.ts +112 -0
- package/src/lib/components/deprecated-components/cauca-menu-vertical/cauca-menu-vertical.component.html +26 -0
- package/src/lib/components/deprecated-components/cauca-menu-vertical/cauca-menu-vertical.component.scss +52 -0
- package/src/lib/components/deprecated-components/cauca-menu-vertical/cauca-menu-vertical.component.spec.ts +28 -0
- package/src/lib/components/deprecated-components/cauca-menu-vertical/cauca-menu-vertical.component.ts +53 -0
- package/src/lib/components/deprecated-components/cauca-simple-dialog/cauca-simple-dialog.component.html +7 -0
- package/src/lib/components/deprecated-components/cauca-simple-dialog/cauca-simple-dialog.component.scss +4 -0
- package/src/lib/components/deprecated-components/cauca-simple-dialog/cauca-simple-dialog.component.spec.ts +39 -0
- package/src/lib/components/deprecated-components/cauca-simple-dialog/cauca-simple-dialog.component.ts +20 -0
- package/src/lib/components/deprecated-components/cauca-slideshow/cauca-slideshow.component.html +7 -0
- package/src/lib/components/deprecated-components/cauca-slideshow/cauca-slideshow.component.scss +41 -0
- package/src/lib/components/deprecated-components/cauca-slideshow/cauca-slideshow.component.spec.ts +24 -0
- package/src/lib/components/deprecated-components/cauca-slideshow/cauca-slideshow.component.ts +67 -0
- package/src/lib/components/deprecated-components/shared/models/menu-item.ts +11 -0
- package/src/lib/components/deprecated-components/shared/models/simple-dialog-data.ts +5 -0
- package/src/lib/components/dialogs/alert-dialog/alert-dialog.component.html +10 -0
- package/src/lib/components/dialogs/alert-dialog/alert-dialog.component.scss +14 -0
- package/src/lib/components/dialogs/alert-dialog/alert-dialog.component.spec.ts +90 -0
- package/src/lib/components/dialogs/alert-dialog/alert-dialog.component.ts +41 -0
- package/src/lib/components/dialogs/confirm-dialog/confirm-dialog.component.html +11 -0
- package/src/lib/components/dialogs/confirm-dialog/confirm-dialog.component.scss +29 -0
- package/src/lib/components/dialogs/confirm-dialog/confirm-dialog.component.spec.ts +137 -0
- package/src/lib/components/dialogs/confirm-dialog/confirm-dialog.component.ts +47 -0
- package/src/lib/components/dialogs/delete-dialog/delete-dialog.component.html +17 -0
- package/src/lib/components/dialogs/delete-dialog/delete-dialog.component.scss +14 -0
- package/src/lib/components/dialogs/delete-dialog/delete-dialog.component.spec.ts +96 -0
- package/src/lib/components/dialogs/delete-dialog/delete-dialog.component.ts +40 -0
- package/src/lib/components/dialogs/delete-dialog/models/delete-dialog-data.spec.ts +7 -0
- package/src/lib/components/dialogs/delete-dialog/models/delete-dialog-data.ts +5 -0
- package/src/lib/components/dialogs/dialog-styles.css +9 -0
- package/src/lib/components/dialogs/dialog-styles.scss +9 -0
- package/src/lib/components/dialogs/error-dialog/error-dialog.component.html +10 -0
- package/src/lib/components/dialogs/error-dialog/error-dialog.component.scss +10 -0
- package/src/lib/components/dialogs/error-dialog/error-dialog.component.spec.ts +91 -0
- package/src/lib/components/dialogs/error-dialog/error-dialog.component.ts +32 -0
- package/src/lib/components/dialogs/services/dialog.service.spec.ts +82 -0
- package/src/lib/components/dialogs/services/dialog.service.ts +107 -0
- package/src/lib/components/dialogs/text-input-dialog/text-input-dialog.component.html +24 -0
- package/src/lib/components/dialogs/text-input-dialog/text-input-dialog.component.scss +22 -0
- package/src/lib/components/dialogs/text-input-dialog/text-input-dialog.component.spec.ts +126 -0
- package/src/lib/components/dialogs/text-input-dialog/text-input-dialog.component.ts +66 -0
- package/src/lib/components/inputs/color-picker/color-picker.component.html +9 -0
- package/src/lib/components/inputs/color-picker/color-picker.component.scss +0 -0
- package/src/lib/components/inputs/color-picker/color-picker.component.spec.ts +29 -0
- package/src/lib/components/inputs/color-picker/color-picker.component.ts +111 -0
- package/src/lib/components/inputs/date-range-picker/date-range-picker.component.html +13 -0
- package/src/lib/components/inputs/date-range-picker/date-range-picker.component.scss +0 -0
- package/src/lib/components/inputs/date-range-picker/date-range-picker.component.spec.ts +80 -0
- package/src/lib/components/inputs/date-range-picker/date-range-picker.component.ts +46 -0
- package/src/lib/components/inputs/dropdown-chip-autocomplete/dropdown-chip-autocomplete.component.html +40 -0
- package/src/lib/components/inputs/dropdown-chip-autocomplete/dropdown-chip-autocomplete.component.scss +39 -0
- package/src/lib/components/inputs/dropdown-chip-autocomplete/dropdown-chip-autocomplete.component.spec.ts +135 -0
- package/src/lib/components/inputs/dropdown-chip-autocomplete/dropdown-chip-autocomplete.component.ts +263 -0
- package/src/lib/components/inputs/password/password-criteria/password-criteria.component.html +6 -0
- package/src/lib/components/inputs/password/password-criteria/password-criteria.component.scss +27 -0
- package/src/lib/components/inputs/password/password-criteria/password-criteria.component.spec.ts +90 -0
- package/src/lib/components/inputs/password/password-criteria/password-criteria.component.ts +17 -0
- package/src/lib/components/inputs/password/password-criteria-viewer/password-criteria-viewer.component.html +5 -0
- package/src/lib/components/inputs/password/password-criteria-viewer/password-criteria-viewer.component.scss +8 -0
- package/src/lib/components/inputs/password/password-criteria-viewer/password-criteria-viewer.component.spec.ts +98 -0
- package/src/lib/components/inputs/password/password-criteria-viewer/password-criteria-viewer.component.ts +16 -0
- package/src/lib/components/inputs/password/password-input/password-input.component.html +11 -0
- package/src/lib/components/inputs/password/password-input/password-input.component.scss +12 -0
- package/src/lib/components/inputs/password/password-input/password-input.component.spec.ts +141 -0
- package/src/lib/components/inputs/password/password-input/password-input.component.ts +67 -0
- package/src/lib/components/inputs/password/password-selection/password-selection.component.html +15 -0
- package/src/lib/components/inputs/password/password-selection/password-selection.component.scss +32 -0
- package/src/lib/components/inputs/password/password-selection/password-selection.component.spec.ts +138 -0
- package/src/lib/components/inputs/password/password-selection/password-selection.component.ts +100 -0
- package/src/lib/components/inputs/select-with-search/select-with-search.component.html +19 -0
- package/src/lib/components/inputs/select-with-search/select-with-search.component.scss +0 -0
- package/src/lib/components/inputs/select-with-search/select-with-search.component.spec.ts +213 -0
- package/src/lib/components/inputs/select-with-search/select-with-search.component.ts +108 -0
- package/src/lib/components/layout/expandable-panel/expandable-panel.component.html +12 -0
- package/src/lib/components/layout/expandable-panel/expandable-panel.component.scss +43 -0
- package/src/lib/components/layout/expandable-panel/expandable-panel.component.spec.ts +48 -0
- package/src/lib/components/layout/expandable-panel/expandable-panel.component.ts +19 -0
- package/src/lib/components/layout/group-container/group-container.component.html +6 -0
- package/src/lib/components/layout/group-container/group-container.component.scss +22 -0
- package/src/lib/components/layout/group-container/group-container.component.spec.ts +34 -0
- package/src/lib/components/layout/group-container/group-container.component.ts +14 -0
- package/src/lib/components/layout/menu-expandable-panel/menu-expandable-panel.component.html +13 -0
- package/src/lib/components/layout/menu-expandable-panel/menu-expandable-panel.component.scss +27 -0
- package/src/lib/components/layout/menu-expandable-panel/menu-expandable-panel.component.spec.ts +144 -0
- package/src/lib/components/layout/menu-expandable-panel/menu-expandable-panel.component.ts +52 -0
- package/src/lib/components/layout/menu-expandable-panel-item/menu-expandable-panel-item.component.html +4 -0
- package/src/lib/components/layout/menu-expandable-panel-item/menu-expandable-panel-item.component.scss +10 -0
- package/src/lib/components/layout/menu-expandable-panel-item/menu-expandable-panel-item.component.spec.ts +80 -0
- package/src/lib/components/layout/menu-expandable-panel-item/menu-expandable-panel-item.component.ts +28 -0
- package/src/lib/components/layout/page-title/page-title.component.html +28 -0
- package/src/lib/components/layout/page-title/page-title.component.scss +40 -0
- package/src/lib/components/layout/page-title/page-title.component.spec.ts +162 -0
- package/src/lib/components/layout/page-title/page-title.component.ts +28 -0
- package/src/lib/components/layout/sections/main-section/main-section.component.html +6 -0
- package/src/lib/components/layout/sections/main-section/main-section.component.scss +27 -0
- package/src/lib/components/layout/sections/main-section/main-section.component.spec.ts +42 -0
- package/src/lib/components/layout/sections/main-section/main-section.component.ts +13 -0
- package/src/lib/components/layout/sections/section-column/section-column.component.html +3 -0
- package/src/lib/components/layout/sections/section-column/section-column.component.scss +18 -0
- package/src/lib/components/layout/sections/section-column/section-column.component.spec.ts +35 -0
- package/src/lib/components/layout/sections/section-column/section-column.component.ts +12 -0
- package/src/lib/components/layout/sections/section-field/section-field.component.html +21 -0
- package/src/lib/components/layout/sections/section-field/section-field.component.scss +44 -0
- package/src/lib/components/layout/sections/section-field/section-field.component.spec.ts +74 -0
- package/src/lib/components/layout/sections/section-field/section-field.component.ts +22 -0
- package/src/lib/components/list-paginator/list-paginator.component.html +16 -0
- package/src/lib/components/list-paginator/list-paginator.component.scss +46 -0
- package/src/lib/components/list-paginator/list-paginator.component.spec.ts +248 -0
- package/src/lib/components/list-paginator/list-paginator.component.ts +81 -0
- package/src/lib/components/misc/loading-error/loading-error.component.html +11 -0
- package/src/lib/components/misc/loading-error/loading-error.component.scss +0 -0
- package/src/lib/components/misc/loading-error/loading-error.component.spec.ts +75 -0
- package/src/lib/components/misc/loading-error/loading-error.component.ts +18 -0
- package/src/lib/components/misc/loading-spinner-indicator/loading-spinner-indicator.component.html +3 -0
- package/src/lib/components/misc/loading-spinner-indicator/loading-spinner-indicator.component.scss +0 -0
- package/src/lib/components/misc/loading-spinner-indicator/loading-spinner-indicator.component.spec.ts +43 -0
- package/src/lib/components/misc/loading-spinner-indicator/loading-spinner-indicator.component.ts +16 -0
- package/src/lib/components/misc/snack-bar/snack-bar.component.html +16 -0
- package/src/lib/components/misc/snack-bar/snack-bar.component.scss +84 -0
- package/src/lib/components/misc/snack-bar/snack-bar.component.spec.ts +136 -0
- package/src/lib/components/misc/snack-bar/snack-bar.component.ts +39 -0
- package/src/lib/components/notifications/saving-confirmed-box/saving-confirmed-box.component.html +11 -0
- package/src/lib/components/notifications/saving-confirmed-box/saving-confirmed-box.component.scss +0 -0
- package/src/lib/components/notifications/saving-confirmed-box/saving-confirmed-box.component.spec.ts +67 -0
- package/src/lib/components/notifications/saving-confirmed-box/saving-confirmed-box.component.ts +15 -0
- package/src/lib/components/notifications/saving-error-box/saving-error-box.component.html +11 -0
- package/src/lib/components/notifications/saving-error-box/saving-error-box.component.scss +0 -0
- package/src/lib/components/notifications/saving-error-box/saving-error-box.component.spec.ts +77 -0
- package/src/lib/components/notifications/saving-error-box/saving-error-box.component.ts +17 -0
- package/src/lib/components/presenters/badge/badge.component.html +6 -0
- package/src/lib/components/presenters/badge/badge.component.scss +10 -0
- package/src/lib/components/presenters/badge/badge.component.spec.ts +41 -0
- package/src/lib/components/presenters/badge/badge.component.ts +18 -0
- package/src/lib/components/presenters/icon/icon.component.scss +9 -0
- package/src/lib/components/presenters/icon/icon.component.spec.ts +38 -0
- package/src/lib/components/presenters/icon/icon.component.ts +37 -0
- package/src/lib/core/breadcrumb.service.spec.ts +35 -0
- package/src/lib/core/breadcrumb.service.ts +24 -0
- package/src/lib/core/directives/auto-trim-and-lower.directive.spec.ts +22 -0
- package/src/lib/core/directives/auto-trim-and-lower.directive.ts +19 -0
- package/src/lib/core/directives/form-error/form-error.module.ts +21 -0
- package/src/lib/core/directives/form-error/has-error-root.directive.ts +29 -0
- package/src/lib/core/directives/form-error/has-error.directive.ts +95 -0
- package/src/lib/core/loading-state.service.spec.ts +57 -0
- package/src/lib/core/loading-state.service.ts +44 -0
- package/src/lib/core/models/breadcrumb-location.ts +6 -0
- package/src/lib/core/models/password-validation.ts +20 -0
- package/src/lib/core/validators/password/password-validator.spec.ts +155 -0
- package/src/lib/core/validators/password/password-validator.ts +30 -0
- package/src/lib/provide-cauca-material.ts +10 -0
- package/src/public-api.ts +74 -0
- package/src/test.ts +17 -0
- package/tsconfig.lib.json +22 -0
- package/tsconfig.lib.prod.json +4 -0
- package/tsconfig.spec.json +17 -0
- package/LICENSE +0 -21
- package/fesm2022/cauca-911-material.mjs +0 -4731
- package/fesm2022/cauca-911-material.mjs.map +0 -1
- package/index.d.ts +0 -795
- /package/{assets → src/assets}/images/loading.gif +0 -0
|
@@ -1,104 +1,104 @@
|
|
|
1
|
-
{
|
|
2
|
-
"material": {
|
|
3
|
-
"ok": "Ok",
|
|
4
|
-
"apply": "Aplicar",
|
|
5
|
-
"cancel": "Cancelar",
|
|
6
|
-
"clear": "Claro",
|
|
7
|
-
"description": "La librería \"@cauca-911/material\" agrega componentes basados en @angular/material",
|
|
8
|
-
"select": "Para seleccionar",
|
|
9
|
-
"dialogTitle": "Adquisición de datos",
|
|
10
|
-
"dialogMessage": "Adquisición de datos en curso <img src=\"/assets/images/loading.gif\" alt=\"\" width=\"20\" />",
|
|
11
|
-
"version": "Versión",
|
|
12
|
-
"refresh": "Actualizar"
|
|
13
|
-
},
|
|
14
|
-
"ok": "Ok",
|
|
15
|
-
"apply": "Aplicar",
|
|
16
|
-
"cancel": "Cancelar",
|
|
17
|
-
"clear": "Claro",
|
|
18
|
-
"description": "La librería \"@cauca-911/material\" agrega muchos componentes visuales",
|
|
19
|
-
"select": "Seleccionar",
|
|
20
|
-
"dialogTitle": "Adquisición de datos",
|
|
21
|
-
"dialogMessage": "Adquisición de datos en curso <img src=\"/assets/images/loading.gif\" alt=\"\" width=\"20\" />",
|
|
22
|
-
"version": "Versión",
|
|
23
|
-
"refresh": "Actualizar",
|
|
24
|
-
"close": "Cerrar",
|
|
25
|
-
"copyLink": "Copiar enlace",
|
|
26
|
-
"logout": "Cerrar sesión",
|
|
27
|
-
"search": "Buscar",
|
|
28
|
-
"en": "Inglés",
|
|
29
|
-
"fr": "Francés",
|
|
30
|
-
"or": "O",
|
|
31
|
-
"errorTitle": "Error",
|
|
32
|
-
"edit": "Editar",
|
|
33
|
-
"delete": "Eliminar",
|
|
34
|
-
"save": "Guardar",
|
|
35
|
-
"yes": "Sí",
|
|
36
|
-
"no": "No",
|
|
37
|
-
"dateRangeSelectorLabel": "Fechas",
|
|
38
|
-
"errorDialog": {
|
|
39
|
-
"titleError": "Error al eliminar",
|
|
40
|
-
"messageError": "Ocurrió un error al eliminar \"{{itemName}}\". Por favor, inténtalo de nuevo más tarde."
|
|
41
|
-
},
|
|
42
|
-
"savingSuccessNotification": {
|
|
43
|
-
"title": "Guardando",
|
|
44
|
-
"message": "El guardado fue exitoso."
|
|
45
|
-
},
|
|
46
|
-
"deleteDialog": {
|
|
47
|
-
"titleFemale": "Eliminar {{itemType}}",
|
|
48
|
-
"titleMale": "Eliminar {{itemType}}",
|
|
49
|
-
"message": "¿Está seguro que desea eliminar \"{{itemName}}\"?",
|
|
50
|
-
"titleError": "No se puede eliminar",
|
|
51
|
-
"messageError": "Ocurrió un error al eliminar el elemento \"{{itemName}}\""
|
|
52
|
-
},
|
|
53
|
-
"cancelEditionDialog": {
|
|
54
|
-
"title": "Confirmación de cancelación",
|
|
55
|
-
"message": "Tiene cambios sin guardar, ¿está seguro que desea deshacerlos?"
|
|
56
|
-
},
|
|
57
|
-
"validationErrorDialog": {
|
|
58
|
-
"title": "Datos inválidos",
|
|
59
|
-
"message": "No puede guardar porque tiene información inválida.",
|
|
60
|
-
"messageNext": "No puede continuar porque tiene información inválida."
|
|
61
|
-
},
|
|
62
|
-
"alertDialog": {
|
|
63
|
-
"errorTitle": "Error",
|
|
64
|
-
"noResult": "Sin resultados",
|
|
65
|
-
"deleteErrorMessage": "Ocurrió un error al eliminar el elemento, por favor intente de nuevo.",
|
|
66
|
-
"genericErrorMessage": "Ocurrió un error, por favor intente de nuevo.",
|
|
67
|
-
"saveErrorMessage": "Ocurrió un error al guardar los datos, por favor intente de nuevo.",
|
|
68
|
-
"loadErrorMessage": "Ocurrió un error al cargar los datos, por favor intente de nuevo."
|
|
69
|
-
},
|
|
70
|
-
"generalError": {
|
|
71
|
-
"errorAlertTitle": "Error",
|
|
72
|
-
"loadingErrorAlertTitle": "Error al cargar",
|
|
73
|
-
"loadingErrorAlertMessage": "Ocurrió una alerta al cargar los datos. Por favor intente de nuevo.",
|
|
74
|
-
"savingErrorAlertTitle": "Error al guardar",
|
|
75
|
-
"savingErrorAlertMessage": "Ocurrió una alerta al guardar los datos. Por favor intente de nuevo.",
|
|
76
|
-
"retryButtonLabel": "Reintentar"
|
|
77
|
-
},
|
|
78
|
-
"error": {
|
|
79
|
-
"requiredField": "Campo obligatorio.",
|
|
80
|
-
"maxLength": "El valor debe tener menos de {{value}} caracteres.",
|
|
81
|
-
"valueMin": "Valor por debajo del mínimo",
|
|
82
|
-
"valueMax": "Valor por encima del máximo",
|
|
83
|
-
"invalidEmail": "Correo electrónico inválido",
|
|
84
|
-
"invalidPhoneNumber": "Número de teléfono inválido",
|
|
85
|
-
"min": "Valor mínimo: {{value}}",
|
|
86
|
-
"max": "Valor máximo: {{value}}",
|
|
87
|
-
"length": "La longitud no debe exceder {{value}} caracteres.",
|
|
88
|
-
"identicalPassword": "Contraseñas iguales",
|
|
89
|
-
"minimumCharacters": "Mínimo 13 caracteres",
|
|
90
|
-
"minimumNumeric": "Mínimo 1 número (0-9)",
|
|
91
|
-
"minimumSpecialCharacter": "Mínimo 1 carácter especial (!, @, $, ...)",
|
|
92
|
-
"minimumUpperAndLowercase": "Mínimo 1 mayúscula y 1 minúscula (A, z)"
|
|
93
|
-
},
|
|
94
|
-
"passwordEdition": {
|
|
95
|
-
"passwordSelection": "Por favor, elija una contraseña.",
|
|
96
|
-
"password": "Contraseña",
|
|
97
|
-
"passwordConfirmation": "Confirmación de contraseña",
|
|
98
|
-
"minimumCharacters": "Mínimo 13 caracteres",
|
|
99
|
-
"minimumOneNumeric": "Mínimo 1 número (0-9)",
|
|
100
|
-
"minimumOneSpecialCharacter": "Mínimo 1 carácter especial (!, @, $, etc.)",
|
|
101
|
-
"needLowerAndUppercase": "Mínimo 1 mayúscula y 1 minúscula (A, z)",
|
|
102
|
-
"equalPasswords": "Contraseñas iguales"
|
|
103
|
-
}
|
|
104
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"material": {
|
|
3
|
+
"ok": "Ok",
|
|
4
|
+
"apply": "Aplicar",
|
|
5
|
+
"cancel": "Cancelar",
|
|
6
|
+
"clear": "Claro",
|
|
7
|
+
"description": "La librería \"@cauca-911/material\" agrega componentes basados en @angular/material",
|
|
8
|
+
"select": "Para seleccionar",
|
|
9
|
+
"dialogTitle": "Adquisición de datos",
|
|
10
|
+
"dialogMessage": "Adquisición de datos en curso <img src=\"/assets/images/loading.gif\" alt=\"\" width=\"20\" />",
|
|
11
|
+
"version": "Versión",
|
|
12
|
+
"refresh": "Actualizar"
|
|
13
|
+
},
|
|
14
|
+
"ok": "Ok",
|
|
15
|
+
"apply": "Aplicar",
|
|
16
|
+
"cancel": "Cancelar",
|
|
17
|
+
"clear": "Claro",
|
|
18
|
+
"description": "La librería \"@cauca-911/material\" agrega muchos componentes visuales",
|
|
19
|
+
"select": "Seleccionar",
|
|
20
|
+
"dialogTitle": "Adquisición de datos",
|
|
21
|
+
"dialogMessage": "Adquisición de datos en curso <img src=\"/assets/images/loading.gif\" alt=\"\" width=\"20\" />",
|
|
22
|
+
"version": "Versión",
|
|
23
|
+
"refresh": "Actualizar",
|
|
24
|
+
"close": "Cerrar",
|
|
25
|
+
"copyLink": "Copiar enlace",
|
|
26
|
+
"logout": "Cerrar sesión",
|
|
27
|
+
"search": "Buscar",
|
|
28
|
+
"en": "Inglés",
|
|
29
|
+
"fr": "Francés",
|
|
30
|
+
"or": "O",
|
|
31
|
+
"errorTitle": "Error",
|
|
32
|
+
"edit": "Editar",
|
|
33
|
+
"delete": "Eliminar",
|
|
34
|
+
"save": "Guardar",
|
|
35
|
+
"yes": "Sí",
|
|
36
|
+
"no": "No",
|
|
37
|
+
"dateRangeSelectorLabel": "Fechas",
|
|
38
|
+
"errorDialog": {
|
|
39
|
+
"titleError": "Error al eliminar",
|
|
40
|
+
"messageError": "Ocurrió un error al eliminar \"{{itemName}}\". Por favor, inténtalo de nuevo más tarde."
|
|
41
|
+
},
|
|
42
|
+
"savingSuccessNotification": {
|
|
43
|
+
"title": "Guardando",
|
|
44
|
+
"message": "El guardado fue exitoso."
|
|
45
|
+
},
|
|
46
|
+
"deleteDialog": {
|
|
47
|
+
"titleFemale": "Eliminar {{itemType}}",
|
|
48
|
+
"titleMale": "Eliminar {{itemType}}",
|
|
49
|
+
"message": "¿Está seguro que desea eliminar \"{{itemName}}\"?",
|
|
50
|
+
"titleError": "No se puede eliminar",
|
|
51
|
+
"messageError": "Ocurrió un error al eliminar el elemento \"{{itemName}}\""
|
|
52
|
+
},
|
|
53
|
+
"cancelEditionDialog": {
|
|
54
|
+
"title": "Confirmación de cancelación",
|
|
55
|
+
"message": "Tiene cambios sin guardar, ¿está seguro que desea deshacerlos?"
|
|
56
|
+
},
|
|
57
|
+
"validationErrorDialog": {
|
|
58
|
+
"title": "Datos inválidos",
|
|
59
|
+
"message": "No puede guardar porque tiene información inválida.",
|
|
60
|
+
"messageNext": "No puede continuar porque tiene información inválida."
|
|
61
|
+
},
|
|
62
|
+
"alertDialog": {
|
|
63
|
+
"errorTitle": "Error",
|
|
64
|
+
"noResult": "Sin resultados",
|
|
65
|
+
"deleteErrorMessage": "Ocurrió un error al eliminar el elemento, por favor intente de nuevo.",
|
|
66
|
+
"genericErrorMessage": "Ocurrió un error, por favor intente de nuevo.",
|
|
67
|
+
"saveErrorMessage": "Ocurrió un error al guardar los datos, por favor intente de nuevo.",
|
|
68
|
+
"loadErrorMessage": "Ocurrió un error al cargar los datos, por favor intente de nuevo."
|
|
69
|
+
},
|
|
70
|
+
"generalError": {
|
|
71
|
+
"errorAlertTitle": "Error",
|
|
72
|
+
"loadingErrorAlertTitle": "Error al cargar",
|
|
73
|
+
"loadingErrorAlertMessage": "Ocurrió una alerta al cargar los datos. Por favor intente de nuevo.",
|
|
74
|
+
"savingErrorAlertTitle": "Error al guardar",
|
|
75
|
+
"savingErrorAlertMessage": "Ocurrió una alerta al guardar los datos. Por favor intente de nuevo.",
|
|
76
|
+
"retryButtonLabel": "Reintentar"
|
|
77
|
+
},
|
|
78
|
+
"error": {
|
|
79
|
+
"requiredField": "Campo obligatorio.",
|
|
80
|
+
"maxLength": "El valor debe tener menos de {{value}} caracteres.",
|
|
81
|
+
"valueMin": "Valor por debajo del mínimo",
|
|
82
|
+
"valueMax": "Valor por encima del máximo",
|
|
83
|
+
"invalidEmail": "Correo electrónico inválido",
|
|
84
|
+
"invalidPhoneNumber": "Número de teléfono inválido",
|
|
85
|
+
"min": "Valor mínimo: {{value}}",
|
|
86
|
+
"max": "Valor máximo: {{value}}",
|
|
87
|
+
"length": "La longitud no debe exceder {{value}} caracteres.",
|
|
88
|
+
"identicalPassword": "Contraseñas iguales",
|
|
89
|
+
"minimumCharacters": "Mínimo 13 caracteres",
|
|
90
|
+
"minimumNumeric": "Mínimo 1 número (0-9)",
|
|
91
|
+
"minimumSpecialCharacter": "Mínimo 1 carácter especial (!, @, $, ...)",
|
|
92
|
+
"minimumUpperAndLowercase": "Mínimo 1 mayúscula y 1 minúscula (A, z)"
|
|
93
|
+
},
|
|
94
|
+
"passwordEdition": {
|
|
95
|
+
"passwordSelection": "Por favor, elija una contraseña.",
|
|
96
|
+
"password": "Contraseña",
|
|
97
|
+
"passwordConfirmation": "Confirmación de contraseña",
|
|
98
|
+
"minimumCharacters": "Mínimo 13 caracteres",
|
|
99
|
+
"minimumOneNumeric": "Mínimo 1 número (0-9)",
|
|
100
|
+
"minimumOneSpecialCharacter": "Mínimo 1 carácter especial (!, @, $, etc.)",
|
|
101
|
+
"needLowerAndUppercase": "Mínimo 1 mayúscula y 1 minúscula (A, z)",
|
|
102
|
+
"equalPasswords": "Contraseñas iguales"
|
|
103
|
+
}
|
|
104
|
+
}
|
|
@@ -1,106 +1,106 @@
|
|
|
1
|
-
{
|
|
2
|
-
"material": {
|
|
3
|
-
"ok": "Ok",
|
|
4
|
-
"apply": "Appliquer",
|
|
5
|
-
"cancel": "Annuler",
|
|
6
|
-
"clear": "Vider",
|
|
7
|
-
"description": "La librairie \"@cauca-911/material\" ajoute des composants basé sur @angular/material",
|
|
8
|
-
"select": "Sélectionner",
|
|
9
|
-
"dialogTitle": "Acquisition des données",
|
|
10
|
-
"dialogMessage": "Acquisition des données en cours <img src=\"/assets/images/loading.gif\" alt=\"\" width=\"20\" />",
|
|
11
|
-
"version": "Version",
|
|
12
|
-
"refresh": "Rafraîchir"
|
|
13
|
-
},
|
|
14
|
-
"ok": "Ok",
|
|
15
|
-
"apply": "Appliquer",
|
|
16
|
-
"cancel": "Annuler",
|
|
17
|
-
"clear": "Vider",
|
|
18
|
-
"description": "La librairie \"@cauca-911/material\" ajoute des composants basé sur @angular/material",
|
|
19
|
-
"select": "Sélectionner",
|
|
20
|
-
"dialogTitle": "Acquisition des données",
|
|
21
|
-
"dialogMessage": "Acquisition des données en cours <img src=\"/assets/images/loading.gif\" alt=\"\" width=\"20\" />",
|
|
22
|
-
"version": "Version",
|
|
23
|
-
"refresh": "Rafraîchir",
|
|
24
|
-
"errorTitle": "Erreur",
|
|
25
|
-
"edit": "Éditer",
|
|
26
|
-
"delete": "Supprimer",
|
|
27
|
-
"save": "Sauvegarder",
|
|
28
|
-
"yes": "Oui",
|
|
29
|
-
"no": "Non",
|
|
30
|
-
"close": "Fermer",
|
|
31
|
-
"copyLink": "Copier le lien",
|
|
32
|
-
"logout": "Déconnexion",
|
|
33
|
-
"search": "Rechercher",
|
|
34
|
-
"en": "Anglais",
|
|
35
|
-
"fr": "Français",
|
|
36
|
-
"es": "Espagnol",
|
|
37
|
-
"or": "OU",
|
|
38
|
-
"dateRangeSelectorLabel": "Dates",
|
|
39
|
-
"errorDialog": {
|
|
40
|
-
"titleError": "Erreur de suppression",
|
|
41
|
-
"messageError": "Une erreur est survenue lors de la suppression de \"{{itemName}}\". Veuillez réessayer plus tard."
|
|
42
|
-
},
|
|
43
|
-
"deleteDialog": {
|
|
44
|
-
"titleFemale": "Supprimer une {{itemType}}",
|
|
45
|
-
"titleMale": "Supprimer un {{itemType}}",
|
|
46
|
-
"message": "Êtes-vous sûr de vouloir supprimer l'élément \"{{itemName}}\" ?",
|
|
47
|
-
"titleError": "Erreur de suppression",
|
|
48
|
-
"messageError": "Une erreur s'est produite lors de la suppression de l'élément \"{{itemName}}\"."
|
|
49
|
-
},
|
|
50
|
-
"cancelEditionDialog": {
|
|
51
|
-
"title": "Confirmation d'annulation",
|
|
52
|
-
"message": "Vous avez des changements non sauvegardés, êtes-vous sûr de vouloir les annuler ?"
|
|
53
|
-
},
|
|
54
|
-
"validationErrorDialog": {
|
|
55
|
-
"title": "Données invalides",
|
|
56
|
-
"message": "Vous ne pouvez sauvegarder parce que vous avez des informations invalides.",
|
|
57
|
-
"messageNext": "Vous ne pouvez continuer parce que vous avez des informations invalides."
|
|
58
|
-
},
|
|
59
|
-
"alertDialog": {
|
|
60
|
-
"errorTitle": "Erreur",
|
|
61
|
-
"noResult": "Aucun résultat",
|
|
62
|
-
"genericErrorMessage": "Une erreur s'est produite, veuillez réessayer.",
|
|
63
|
-
"saveErrorMessage": "Une erreur s'est produite lors de la sauvegarde, veuillez réessayer.",
|
|
64
|
-
"loadErrorMessage": "Une erreur s'est produite lors du chargement, veuillez réessayer.",
|
|
65
|
-
"deleteErrorMessage": "Une erreur s'est produite lors de la suppression, veuillez réessayer.",
|
|
66
|
-
"creationErrorMessage": "Une erreur s'est produite lors de la création du fichier, veuillez réessayer."
|
|
67
|
-
},
|
|
68
|
-
"savingSuccessNotification": {
|
|
69
|
-
"title": "Sauvegarde",
|
|
70
|
-
"message": "La sauvegarde s'est effectuée avec succès."
|
|
71
|
-
},
|
|
72
|
-
"generalError": {
|
|
73
|
-
"errorAlertTitle": "Erreur",
|
|
74
|
-
"loadingErrorAlertTitle": "Erreur de chargement",
|
|
75
|
-
"loadingErrorAlertMessage": "Une erreur s'est produite pendant le chargement, veuillez réessayer.",
|
|
76
|
-
"savingErrorAlertTitle": "Erreur de sauvegarde",
|
|
77
|
-
"savingErrorAlertMessage": "Une erreur s'est produite pendant la sauvegarde, veuillez réessayer.",
|
|
78
|
-
"retryButtonLabel": "Réessayer"
|
|
79
|
-
},
|
|
80
|
-
"error": {
|
|
81
|
-
"requiredField": "Ce champ est obligatoire.",
|
|
82
|
-
"maxLength": "Ce champ doit avoir moins de {{value}} caractères.",
|
|
83
|
-
"valueMin": "Valeur sous minimum",
|
|
84
|
-
"valueMax": "Valeur au dessus maximum",
|
|
85
|
-
"invalidEmail": "Le courriel entré n'est pas valide",
|
|
86
|
-
"invalidPhoneNumber": "Le téléphone n'est pas valide",
|
|
87
|
-
"min": "Valeur minimale: {{value}}",
|
|
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",
|
|
94
|
-
"length": "La longueur ne doit pas dépasser {{value}} caractères."
|
|
95
|
-
},
|
|
96
|
-
"passwordEdition" : {
|
|
97
|
-
"passwordSelection": "Veuillez choisir un mot de passe.",
|
|
98
|
-
"password": "Mot de passe",
|
|
99
|
-
"passwordConfirmation": "Confirmation du mot de passe",
|
|
100
|
-
"minimumCharacters": "Minimum 13 caractères",
|
|
101
|
-
"minimumOneNumeric": "Minimum 1 chiffre (0-9)",
|
|
102
|
-
"minimumOneSpecialCharacter": "Minimum 1 caractère spécial (!, @, $, etc.)",
|
|
103
|
-
"needLowerAndUppercase": "Minimum 1 majuscule et 1 minuscule (A, z)",
|
|
104
|
-
"equalPasswords": "Mots de passe identiques"
|
|
105
|
-
}
|
|
106
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"material": {
|
|
3
|
+
"ok": "Ok",
|
|
4
|
+
"apply": "Appliquer",
|
|
5
|
+
"cancel": "Annuler",
|
|
6
|
+
"clear": "Vider",
|
|
7
|
+
"description": "La librairie \"@cauca-911/material\" ajoute des composants basé sur @angular/material",
|
|
8
|
+
"select": "Sélectionner",
|
|
9
|
+
"dialogTitle": "Acquisition des données",
|
|
10
|
+
"dialogMessage": "Acquisition des données en cours <img src=\"/assets/images/loading.gif\" alt=\"\" width=\"20\" />",
|
|
11
|
+
"version": "Version",
|
|
12
|
+
"refresh": "Rafraîchir"
|
|
13
|
+
},
|
|
14
|
+
"ok": "Ok",
|
|
15
|
+
"apply": "Appliquer",
|
|
16
|
+
"cancel": "Annuler",
|
|
17
|
+
"clear": "Vider",
|
|
18
|
+
"description": "La librairie \"@cauca-911/material\" ajoute des composants basé sur @angular/material",
|
|
19
|
+
"select": "Sélectionner",
|
|
20
|
+
"dialogTitle": "Acquisition des données",
|
|
21
|
+
"dialogMessage": "Acquisition des données en cours <img src=\"/assets/images/loading.gif\" alt=\"\" width=\"20\" />",
|
|
22
|
+
"version": "Version",
|
|
23
|
+
"refresh": "Rafraîchir",
|
|
24
|
+
"errorTitle": "Erreur",
|
|
25
|
+
"edit": "Éditer",
|
|
26
|
+
"delete": "Supprimer",
|
|
27
|
+
"save": "Sauvegarder",
|
|
28
|
+
"yes": "Oui",
|
|
29
|
+
"no": "Non",
|
|
30
|
+
"close": "Fermer",
|
|
31
|
+
"copyLink": "Copier le lien",
|
|
32
|
+
"logout": "Déconnexion",
|
|
33
|
+
"search": "Rechercher",
|
|
34
|
+
"en": "Anglais",
|
|
35
|
+
"fr": "Français",
|
|
36
|
+
"es": "Espagnol",
|
|
37
|
+
"or": "OU",
|
|
38
|
+
"dateRangeSelectorLabel": "Dates",
|
|
39
|
+
"errorDialog": {
|
|
40
|
+
"titleError": "Erreur de suppression",
|
|
41
|
+
"messageError": "Une erreur est survenue lors de la suppression de \"{{itemName}}\". Veuillez réessayer plus tard."
|
|
42
|
+
},
|
|
43
|
+
"deleteDialog": {
|
|
44
|
+
"titleFemale": "Supprimer une {{itemType}}",
|
|
45
|
+
"titleMale": "Supprimer un {{itemType}}",
|
|
46
|
+
"message": "Êtes-vous sûr de vouloir supprimer l'élément \"{{itemName}}\" ?",
|
|
47
|
+
"titleError": "Erreur de suppression",
|
|
48
|
+
"messageError": "Une erreur s'est produite lors de la suppression de l'élément \"{{itemName}}\"."
|
|
49
|
+
},
|
|
50
|
+
"cancelEditionDialog": {
|
|
51
|
+
"title": "Confirmation d'annulation",
|
|
52
|
+
"message": "Vous avez des changements non sauvegardés, êtes-vous sûr de vouloir les annuler ?"
|
|
53
|
+
},
|
|
54
|
+
"validationErrorDialog": {
|
|
55
|
+
"title": "Données invalides",
|
|
56
|
+
"message": "Vous ne pouvez sauvegarder parce que vous avez des informations invalides.",
|
|
57
|
+
"messageNext": "Vous ne pouvez continuer parce que vous avez des informations invalides."
|
|
58
|
+
},
|
|
59
|
+
"alertDialog": {
|
|
60
|
+
"errorTitle": "Erreur",
|
|
61
|
+
"noResult": "Aucun résultat",
|
|
62
|
+
"genericErrorMessage": "Une erreur s'est produite, veuillez réessayer.",
|
|
63
|
+
"saveErrorMessage": "Une erreur s'est produite lors de la sauvegarde, veuillez réessayer.",
|
|
64
|
+
"loadErrorMessage": "Une erreur s'est produite lors du chargement, veuillez réessayer.",
|
|
65
|
+
"deleteErrorMessage": "Une erreur s'est produite lors de la suppression, veuillez réessayer.",
|
|
66
|
+
"creationErrorMessage": "Une erreur s'est produite lors de la création du fichier, veuillez réessayer."
|
|
67
|
+
},
|
|
68
|
+
"savingSuccessNotification": {
|
|
69
|
+
"title": "Sauvegarde",
|
|
70
|
+
"message": "La sauvegarde s'est effectuée avec succès."
|
|
71
|
+
},
|
|
72
|
+
"generalError": {
|
|
73
|
+
"errorAlertTitle": "Erreur",
|
|
74
|
+
"loadingErrorAlertTitle": "Erreur de chargement",
|
|
75
|
+
"loadingErrorAlertMessage": "Une erreur s'est produite pendant le chargement, veuillez réessayer.",
|
|
76
|
+
"savingErrorAlertTitle": "Erreur de sauvegarde",
|
|
77
|
+
"savingErrorAlertMessage": "Une erreur s'est produite pendant la sauvegarde, veuillez réessayer.",
|
|
78
|
+
"retryButtonLabel": "Réessayer"
|
|
79
|
+
},
|
|
80
|
+
"error": {
|
|
81
|
+
"requiredField": "Ce champ est obligatoire.",
|
|
82
|
+
"maxLength": "Ce champ doit avoir moins de {{value}} caractères.",
|
|
83
|
+
"valueMin": "Valeur sous minimum",
|
|
84
|
+
"valueMax": "Valeur au dessus maximum",
|
|
85
|
+
"invalidEmail": "Le courriel entré n'est pas valide",
|
|
86
|
+
"invalidPhoneNumber": "Le téléphone n'est pas valide",
|
|
87
|
+
"min": "Valeur minimale: {{value}}",
|
|
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",
|
|
94
|
+
"length": "La longueur ne doit pas dépasser {{value}} caractères."
|
|
95
|
+
},
|
|
96
|
+
"passwordEdition" : {
|
|
97
|
+
"passwordSelection": "Veuillez choisir un mot de passe.",
|
|
98
|
+
"password": "Mot de passe",
|
|
99
|
+
"passwordConfirmation": "Confirmation du mot de passe",
|
|
100
|
+
"minimumCharacters": "Minimum 13 caractères",
|
|
101
|
+
"minimumOneNumeric": "Minimum 1 chiffre (0-9)",
|
|
102
|
+
"minimumOneSpecialCharacter": "Minimum 1 caractère spécial (!, @, $, etc.)",
|
|
103
|
+
"needLowerAndUppercase": "Minimum 1 majuscule et 1 minuscule (A, z)",
|
|
104
|
+
"equalPasswords": "Mots de passe identiques"
|
|
105
|
+
}
|
|
106
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<div>{{'core.noGenericComponentOnThisLibrary' | translate}}</div>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
2
|
+
import { TranslateModule } from '@ngx-translate/core';
|
|
3
|
+
|
|
4
|
+
import { CaucaMaterialComponent } from './cauca-material.component';
|
|
5
|
+
|
|
6
|
+
describe('CaucaMaterialComponent', () => {
|
|
7
|
+
let component: CaucaMaterialComponent;
|
|
8
|
+
let fixture: ComponentFixture<CaucaMaterialComponent>;
|
|
9
|
+
|
|
10
|
+
beforeEach(waitForAsync(() => {
|
|
11
|
+
TestBed.configureTestingModule({
|
|
12
|
+
imports: [
|
|
13
|
+
CaucaMaterialComponent,
|
|
14
|
+
TranslateModule.forRoot()
|
|
15
|
+
]
|
|
16
|
+
})
|
|
17
|
+
.compileComponents();
|
|
18
|
+
}));
|
|
19
|
+
|
|
20
|
+
beforeEach(() => {
|
|
21
|
+
fixture = TestBed.createComponent(CaucaMaterialComponent);
|
|
22
|
+
component = fixture.componentInstance;
|
|
23
|
+
fixture.detectChanges();
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
it('should create', () => {
|
|
27
|
+
expect(component).toBeTruthy();
|
|
28
|
+
});
|
|
29
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { TranslateModule } from '@ngx-translate/core';
|
|
3
|
+
|
|
4
|
+
@Component({
|
|
5
|
+
selector: 'cauca-material',
|
|
6
|
+
templateUrl: './cauca-material.component.html',
|
|
7
|
+
styles: [],
|
|
8
|
+
imports: [TranslateModule]
|
|
9
|
+
})
|
|
10
|
+
export class CaucaMaterialComponent {
|
|
11
|
+
|
|
12
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { TestBed } from '@angular/core/testing';
|
|
2
|
+
|
|
3
|
+
import { CaucaMaterialService } from './cauca-material.service';
|
|
4
|
+
|
|
5
|
+
describe('CaucaMaterialService', () => {
|
|
6
|
+
let service: CaucaMaterialService;
|
|
7
|
+
|
|
8
|
+
beforeEach(() => {
|
|
9
|
+
TestBed.configureTestingModule({});
|
|
10
|
+
service = TestBed.inject(CaucaMaterialService);
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
it('should be created', () => {
|
|
14
|
+
expect(service).toBeTruthy();
|
|
15
|
+
});
|
|
16
|
+
});
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
@if (type === 'basic') {
|
|
2
|
+
<button [ngClass]="class" mat-button (click)="buttonClick.emit()" [disabled]="disable || inProgress" [color]="color" class="button-basic">
|
|
3
|
+
@if (inProgress || icon) {
|
|
4
|
+
<mat-icon [class.button-spin]="inProgress">{{ inProgress ? 'update' : icon }}</mat-icon>
|
|
5
|
+
}
|
|
6
|
+
<span>{{label}}</span>
|
|
7
|
+
</button>
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@if (type === 'raised') {
|
|
11
|
+
<button [ngClass]="class" matButton="elevated" (click)="buttonClick.emit()" [disabled]="disable || inProgress" [color]="color" class="button-raised">
|
|
12
|
+
@if (inProgress || icon) {
|
|
13
|
+
<mat-icon [class.button-spin]="inProgress">{{ inProgress ? 'update' : icon }}</mat-icon>
|
|
14
|
+
}
|
|
15
|
+
<span>{{label}}</span>
|
|
16
|
+
</button>
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@if (type === 'stroked') {
|
|
20
|
+
<button [ngClass]="class" matButton="outlined" (click)="buttonClick.emit()" [disabled]="disable || inProgress" [color]="color" class="button-stroked">
|
|
21
|
+
@if (inProgress || icon) {
|
|
22
|
+
<mat-icon [class.button-spin]="inProgress">{{ inProgress ? 'update' : icon }}</mat-icon>
|
|
23
|
+
}
|
|
24
|
+
<span>{{label}}</span>
|
|
25
|
+
</button>
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@if (type === 'flat') {
|
|
29
|
+
<button [ngClass]="class" matButton="filled" (click)="buttonClick.emit()" [disabled]="disable || inProgress" [color]="color" class="button-flat">
|
|
30
|
+
@if (inProgress || icon) {
|
|
31
|
+
<mat-icon [class.button-spin]="inProgress">{{ inProgress ? 'update' : icon }}</mat-icon>
|
|
32
|
+
}
|
|
33
|
+
<span>{{label}}</span>
|
|
34
|
+
</button>
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@if (type === 'icon') {
|
|
38
|
+
<button [ngClass]="class" matIconButton (click)="buttonClick.emit()" [disabled]="disable || inProgress" [color]="color" class="button-icon">
|
|
39
|
+
@if (inProgress || icon) {
|
|
40
|
+
<mat-icon [class.button-spin]="inProgress">{{ inProgress ? 'update' : icon }}</mat-icon>
|
|
41
|
+
}
|
|
42
|
+
</button>
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@if (type === 'fab') {
|
|
46
|
+
<button [ngClass]="class" matFab (click)="buttonClick.emit()" [disabled]="disable || inProgress" [color]="color" class="button-icon">
|
|
47
|
+
@if (inProgress || icon) {
|
|
48
|
+
<mat-icon [class.button-spin]="inProgress">{{ inProgress ? 'update' : icon }}</mat-icon>
|
|
49
|
+
}
|
|
50
|
+
<span>{{label}}</span>
|
|
51
|
+
</button>
|
|
52
|
+
}
|