fam-archetype-app 0.0.1
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/README.md +38 -0
- package/package.json +25 -0
- package/src/collection.json +10 -0
- package/src/fam-archetype-app/files/.editorconfig +16 -0
- package/src/fam-archetype-app/files/.prettierignore +15 -0
- package/src/fam-archetype-app/files/.prettierrc.json +29 -0
- package/src/fam-archetype-app/files/LICENSE.md +21 -0
- package/src/fam-archetype-app/files/README.md +59 -0
- package/src/fam-archetype-app/files/angular.json.template +178 -0
- package/src/fam-archetype-app/files/cli +361 -0
- package/src/fam-archetype-app/files/eslint.config.js +89 -0
- package/src/fam-archetype-app/files/package-lock.json.template +18812 -0
- package/src/fam-archetype-app/files/package.json.template +62 -0
- package/src/fam-archetype-app/files/src/assets/fonts/DiBaScreen-Regular.woff2 +0 -0
- package/src/fam-archetype-app/files/src/assets/translations/translations-ca.json +284 -0
- package/src/fam-archetype-app/files/src/assets/translations/translations-en.json +28 -0
- package/src/fam-archetype-app/files/src/assets/translations/translations-es.json +28 -0
- package/src/fam-archetype-app/files/src/core/layout/component/footer/footer.component.html.template +3 -0
- package/src/fam-archetype-app/files/src/core/layout/component/footer/footer.component.scss +8 -0
- package/src/fam-archetype-app/files/src/core/layout/component/layout/layout.component.html +19 -0
- package/src/fam-archetype-app/files/src/core/layout/component/layout/layout.component.scss +28 -0
- package/src/fam-archetype-app/files/src/core/layout/component/main-info-popup/main-info-popup.component.html +33 -0
- package/src/fam-archetype-app/files/src/core/layout/component/main-info-popup/main-info-popup.component.scss +3 -0
- package/src/fam-archetype-app/files/src/core/layout/component/menu/menu.component.html +3 -0
- package/src/fam-archetype-app/files/src/core/layout/component/menu/menu.component.scss +163 -0
- package/src/fam-archetype-app/files/src/core/layout/component/menuitem/menuitem.component.html +39 -0
- package/src/fam-archetype-app/files/src/core/layout/component/menuitem/menuitem.component.scss +44 -0
- package/src/fam-archetype-app/files/src/core/layout/component/not-found/not-found.component.html +12 -0
- package/src/fam-archetype-app/files/src/core/layout/component/not-found/not-found.component.scss +17 -0
- package/src/fam-archetype-app/files/src/core/layout/component/sidebar/sidebar.component.html +13 -0
- package/src/fam-archetype-app/files/src/core/layout/component/sidebar/sidebar.component.scss +33 -0
- package/src/fam-archetype-app/files/src/core/layout/component/top-menu/top-menu.component.html +12 -0
- package/src/fam-archetype-app/files/src/core/layout/component/top-menu/top-menu.component.scss +9 -0
- package/src/fam-archetype-app/files/src/core/layout/component/topbar/_mixins.scss +8 -0
- package/src/fam-archetype-app/files/src/core/layout/component/topbar/topbar.component.html.template +45 -0
- package/src/fam-archetype-app/files/src/core/layout/component/topbar/topbar.component.scss +77 -0
- package/src/fam-archetype-app/files/src/environments/environment.dev.ts.template +12 -0
- package/src/fam-archetype-app/files/src/environments/environment.int.ts.template +12 -0
- package/src/fam-archetype-app/files/src/environments/environment.pre.ts.template +12 -0
- package/src/fam-archetype-app/files/src/environments/environment.ts.template +12 -0
- package/src/fam-archetype-app/files/src/index.html.template +18 -0
- package/src/fam-archetype-app/files/src/shared/filters/diba-filters/diba-filters.component.html +69 -0
- package/src/fam-archetype-app/files/src/shared/filters/diba-filters/diba-filters.component.scss +0 -0
- package/src/fam-archetype-app/files/src/shared/styles/_movements.scss +19 -0
- package/src/fam-archetype-app/files/src/shared/styles/global/_core.scss +20 -0
- package/src/fam-archetype-app/files/src/shared/styles/global/_icons.scss +37 -0
- package/src/fam-archetype-app/files/src/shared/styles/global/_tooltips.scss +14 -0
- package/src/fam-archetype-app/files/src/shared/styles/global/_typography.scss +68 -0
- package/src/fam-archetype-app/files/src/shared/styles/global/_utils.scss +24 -0
- package/src/fam-archetype-app/files/src/shared/styles/global/layout.scss +5 -0
- package/src/fam-archetype-app/files/src/shared/table/column-visibility-selector/column-visibility-selector.component.html +10 -0
- package/src/fam-archetype-app/files/src/shared/table/column-visibility-selector/column-visibility-selector.component.scss +0 -0
- package/src/fam-archetype-app/files/src/shared/table/diba-table/diba-table.component.html +136 -0
- package/src/fam-archetype-app/files/src/shared/table/diba-table/diba-table.component.scss +0 -0
- package/src/fam-archetype-app/files/src/styles.scss +109 -0
- package/src/fam-archetype-app/files/src/tailwind.css +3 -0
- package/src/fam-archetype-app/files/tailwind.config.js +36 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/commands/commands.txt +1 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/commands/db_to_entities.txt +1 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/commands/test_db_connection.txt +1 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/databases.yaml +188 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/downloads/.keep +0 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/lib/.keep +0 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamActivitat.entity +26 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamActivitatsUbicacio.entity +40 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamAlumne.entity +76 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamArea.entity +33 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamComanda.entity +37 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamCurs.entity +50 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamDocument.entity +53 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamDocumentTipus.entity +26 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamEntitatBase.entity +84 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamExpedient.entity +71 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamExpedientDocument.entity +51 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamExpedientEstat.entity +26 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamExpedientTipus.entity +26 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamJerarquia.entity +33 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamLinia.entity +56 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamMatricula.entity +63 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamTipusArticle.entity +26 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamUbicacio.entity +35 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FamZona.entity +27 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/Funcionalitat.entity +65 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/FuncionalitatGrupFunc.entity +58 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/GrupFuncionalitat.entity +54 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/PerfilGrupFuncionalitat.entity +50 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/VusPerfil.entity +31 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/models/app/model.yaml +4 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/telosys-tools.cfg +31 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/telosys.env +5 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/README.md +12 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/database.properties +23 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/include/init_var_entity.vm +169 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/include/macros.vm +218 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/app_config_ts.vm +56 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/app_routes_ts.vm +21 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/core/layout/component/menu/menu_component_ts.vm +30 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/core/layout/component/top-menu/top-menu_component_ts.vm +36 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/core/layout/service/menu_model_service_ts.vm +49 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/application/create-Xxx_use-case_ts.vm +18 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/application/create-file-Xxx_use-case_ts.vm +17 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/application/delete-Xxx_use-case_ts.vm +17 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/application/download-Xxx-file_use-case_ts.vm +24 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/application/find-Xxx_use-case_ts.vm +18 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/application/search-Xxx_use-case_ts.vm +25 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/application/update-Xxx_use-case_ts.vm +18 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/domain/Xxx_entity_ts.vm +36 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/domain/Xxx_repository_interface_ts.vm +27 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/infrastructure/inbound/mappers/Xxx_jsona_mapper_ts.vm +52 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/infrastructure/inbound/mappers/Xxx_mapper_ts.vm +36 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/infrastructure/inbound/pages/Xxx_routes_ts.vm +15 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/infrastructure/inbound/pages/detail/Xxx_detail_html.vm +178 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/infrastructure/inbound/pages/detail/Xxx_detail_scss.vm +0 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/infrastructure/inbound/pages/detail/Xxx_detail_spec_ts.vm +29 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/infrastructure/inbound/pages/detail/Xxx_detail_ts.vm +382 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/infrastructure/inbound/pages/list/Xxx_list_html.vm +37 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/infrastructure/inbound/pages/list/Xxx_list_scss.vm +10 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/infrastructure/inbound/pages/list/Xxx_list_spec_ts.vm +29 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/infrastructure/inbound/pages/list/Xxx_list_ts.vm +430 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/infrastructure/inbound/resources/Xxx_resource_ts.vm +43 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/modules/infrastructure/outbound/Xxx_repository_impl_ts.vm +162 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/main-angular/test_code.vm +3 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/templates.cfg +52 -0
- package/src/fam-archetype-app/files/tools/cli/TelosysTools/templates/fam-app-templates/tools-test/test-api_Xxx_rest.vm +181 -0
- package/src/fam-archetype-app/files/tools/cli/telosys +5 -0
- package/src/fam-archetype-app/files/tools/cli/telosys-cli-4.2.0-001.jar +0 -0
- package/src/fam-archetype-app/files/tools/cli/telosys-cli.cfg +55 -0
- package/src/fam-archetype-app/files/tools/cli/telosys-term.sh +30 -0
- package/src/fam-archetype-app/files/tools/cli/telosys.bat +4 -0
- package/src/fam-archetype-app/files/tools/cli/telosys.ico +0 -0
- package/src/fam-archetype-app/files/tools/db/develop/data/.keep +0 -0
- package/src/fam-archetype-app/files/tools/db/production/data/.keep +0 -0
- package/src/fam-archetype-app/files/tools/db/production/migrations/.keep +0 -0
- package/src/fam-archetype-app/files/tools/docs/.keep +0 -0
- package/src/fam-archetype-app/files/tools/test/test-api.rest +80 -0
- package/src/fam-archetype-app/files/tsconfig.app.json +15 -0
- package/src/fam-archetype-app/files/tsconfig.json +42 -0
- package/src/fam-archetype-app/files/tsconfig.spec.json +15 -0
- package/src/fam-archetype-app/files/vercel.json +9 -0
- package/src/fam-archetype-app/index.d.ts +2 -0
- package/src/fam-archetype-app/index.js +18 -0
- package/src/fam-archetype-app/index.js.map +1 -0
- package/src/fam-archetype-app/index_spec.d.ts +1 -0
- package/src/fam-archetype-app/index_spec.js +23 -0
- package/src/fam-archetype-app/index_spec.js.map +1 -0
- package/src/fam-archetype-app/schema.json +21 -0
- package/tsconfig.json +24 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "<%= name %>",
|
|
3
|
+
"version": "19.0.0",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"ng": "ng",
|
|
6
|
+
"start": "ng serve",
|
|
7
|
+
"build": "ng build --base-href /fam-app/",
|
|
8
|
+
"watch": "ng build --watch --configuration dev",
|
|
9
|
+
"format": "prettier --write \"**/*.{js,mjs,ts,mts,d.ts,html}\" --cache",
|
|
10
|
+
"test": "ng test",
|
|
11
|
+
"lint": "eslint \"src/**/*.{ts,html,js}\""
|
|
12
|
+
},
|
|
13
|
+
"private": true,
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@angular/animations": "^19.0.0",
|
|
16
|
+
"@angular/common": "^19.0.0",
|
|
17
|
+
"@angular/compiler": "^19.0.0",
|
|
18
|
+
"@angular/core": "^19.0.0",
|
|
19
|
+
"@angular/forms": "^19.0.0",
|
|
20
|
+
"@angular/platform-browser": "^19.0.0",
|
|
21
|
+
"@angular/platform-browser-dynamic": "^19.0.0",
|
|
22
|
+
"@angular/router": "^19.0.0",
|
|
23
|
+
"@awesome.me/kit-5bd7159fa2": "^1.0.4",
|
|
24
|
+
"@fortawesome/angular-fontawesome": "^1.0.0",
|
|
25
|
+
"@fortawesome/fontawesome-pro": "^6.7.2",
|
|
26
|
+
"@fortawesome/fontawesome-svg-core": "^1.3.0",
|
|
27
|
+
"@fortawesome/free-regular-svg-icons": "^6.7.2",
|
|
28
|
+
"@fortawesome/free-solid-svg-icons": "^6.7.2",
|
|
29
|
+
"@primeng/themes": "^19.0.5",
|
|
30
|
+
"chart.js": "4.4.2",
|
|
31
|
+
"jsona": "^1.12.1",
|
|
32
|
+
"primeclt": "^0.1.5",
|
|
33
|
+
"primeicons": "^7.0.0",
|
|
34
|
+
"primeng": "^19.0.5",
|
|
35
|
+
"rxjs": "~7.8.0",
|
|
36
|
+
"tailwindcss-primeui": "^0.3.2",
|
|
37
|
+
"tslib": "^2.3.0",
|
|
38
|
+
"zone.js": "~0.15.0"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@angular-devkit/build-angular": "^19.0.6",
|
|
42
|
+
"@angular/cli": "^19.0.6",
|
|
43
|
+
"@angular/compiler-cli": "^19.0.0",
|
|
44
|
+
"@types/jasmine": "~5.1.0",
|
|
45
|
+
"autoprefixer": "^10.4.20",
|
|
46
|
+
"eslint": "^9.14.0",
|
|
47
|
+
"eslint-config-prettier": "^9.1.0",
|
|
48
|
+
"eslint-plugin-import": "^2.31.0",
|
|
49
|
+
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
50
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
51
|
+
"jasmine-core": "~5.4.0",
|
|
52
|
+
"karma": "~6.4.0",
|
|
53
|
+
"karma-chrome-launcher": "~3.2.0",
|
|
54
|
+
"karma-coverage": "~2.2.0",
|
|
55
|
+
"karma-jasmine": "~5.1.0",
|
|
56
|
+
"karma-jasmine-html-reporter": "~2.1.0",
|
|
57
|
+
"postcss": "^8.4.49",
|
|
58
|
+
"prettier": "^3.0.0",
|
|
59
|
+
"tailwindcss": "^3.4.17",
|
|
60
|
+
"typescript": "~5.6.2"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -0,0 +1,284 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accept": "Acceptar",
|
|
3
|
+
"reject": "Rebutjar",
|
|
4
|
+
"matchAll": "Coincidir tot",
|
|
5
|
+
"matchAny": "Coincidir amb qualsevol",
|
|
6
|
+
"addRule": "Afegir norma",
|
|
7
|
+
"removeRule": "Eliminar norma",
|
|
8
|
+
"clear": "Netejar",
|
|
9
|
+
"apply": "Aplicar",
|
|
10
|
+
"startsWith": "Comença amb",
|
|
11
|
+
"contains": "Conté",
|
|
12
|
+
"notContains": "No conté",
|
|
13
|
+
"endsWith": "Acaba amb",
|
|
14
|
+
"equals": "Igual a",
|
|
15
|
+
"notEquals": "Diferent de",
|
|
16
|
+
"lt": "Menor que",
|
|
17
|
+
"lte": "Menor o igual que",
|
|
18
|
+
"gt": "Major que",
|
|
19
|
+
"gte": "Major o igual que",
|
|
20
|
+
"is": "Es",
|
|
21
|
+
"isNot": "No es",
|
|
22
|
+
"before": "Abans",
|
|
23
|
+
"after": "Després",
|
|
24
|
+
"dateIs": "La data és",
|
|
25
|
+
"dateIsNot": "La data no és",
|
|
26
|
+
"dateBefore": "La data és anterior a",
|
|
27
|
+
"dateAfter": "La data és posterior a",
|
|
28
|
+
"PROFILE": "Perfil",
|
|
29
|
+
"USER": "Usuari",
|
|
30
|
+
"ORGANIC": "Organic",
|
|
31
|
+
"ORGANIZATION": "Organitzacio",
|
|
32
|
+
"ENVIRONMENT": "Entorn",
|
|
33
|
+
"BUILD": "Build",
|
|
34
|
+
"LOGOUT": "Logout",
|
|
35
|
+
"MAIN_INFO_POPUP_TITLE": "Informació usuari",
|
|
36
|
+
"CLOSE":"Tanca",
|
|
37
|
+
"CLAU":"Clau",
|
|
38
|
+
"VALOR":"Valor",
|
|
39
|
+
"userName":"Usuari",
|
|
40
|
+
"fullName":"Nom complet",
|
|
41
|
+
"organic":"Organic",
|
|
42
|
+
"organizations":"Organització",
|
|
43
|
+
"FAM_AREA_LIST":"Llistat d'àrees",
|
|
44
|
+
"fam_are_nom":"Nom",
|
|
45
|
+
"fam_zona.fam_zona_nom":"Zona",
|
|
46
|
+
"FamArea_EDIT":"Detall de l'àrea",
|
|
47
|
+
"FamArea_EMBEDDED":"Àrees",
|
|
48
|
+
"FAM_ENTITAT_BASE_LIST":"Llistat d'entitats base",
|
|
49
|
+
"FamEntitatBase_EDIT":"Detall de l'entitat base",
|
|
50
|
+
"fam_ubicacio.fam_ubi_nom":"Ubicació",
|
|
51
|
+
"fam_ent_nom_fitxer":"Arxiu",
|
|
52
|
+
"fam_ent_assumpte":"Assumpte",
|
|
53
|
+
"fam_ent_data":"Data",
|
|
54
|
+
"fam_ent_data_FROM":"Data des de",
|
|
55
|
+
"fam_ent_data_TO":"Data fins a",
|
|
56
|
+
"fam_ent_import":"Import",
|
|
57
|
+
"fam_ent_import_MIN":"Import mínim",
|
|
58
|
+
"fam_ent_import_MAX":"Import màxim",
|
|
59
|
+
"fam_ent_activat":"Actiu",
|
|
60
|
+
"fam_ent_fitxer":"Fitxer",
|
|
61
|
+
"fam_ent_observacions":"Observacions",
|
|
62
|
+
"fam_jerarquia.fam_jer_nom":"Jerarquia",
|
|
63
|
+
"fam_ent_fitxer_nom":"Fitxer",
|
|
64
|
+
"fam_ent_fitxer_content_type":"Tipus",
|
|
65
|
+
"fam_ent_fitxer_pes":"Pes",
|
|
66
|
+
"fam_ubicacio.fam_area.fam_are_nom":"Àrea",
|
|
67
|
+
"fam_ubicacio.fam_area.fam_zona.fam_zona_nom":"Zona",
|
|
68
|
+
"fam_area.fam_are_nom":"Àrea",
|
|
69
|
+
"fam_area.fam_zona.fam_zona_nom":"Zona",
|
|
70
|
+
"FAM_ACTIVITAT_LIST":"Llistat d'activitats",
|
|
71
|
+
"FamActivitat_EDIT":"Detall de l'activitat",
|
|
72
|
+
"fam_act_descripcio":"Descripció",
|
|
73
|
+
"FAM_ACTIVITATS_UBICACIO_LIST":"Llistat d'activitats per ubicació",
|
|
74
|
+
"FamActivitatsUbicacio_EDIT":"Detall d'activitats per ubicació",
|
|
75
|
+
"fam_aub_ordre":"Ordre",
|
|
76
|
+
"fam_aub_ordre_MIN":"Ordre mínim",
|
|
77
|
+
"fam_aub_ordre_MAX":"Ordre màxim",
|
|
78
|
+
"fam_activitat.fam_act_descripcio":"Activitat",
|
|
79
|
+
"FAM_ALUMNE_LIST":"Llistat d'alumnes",
|
|
80
|
+
"FamAlumne_EDIT":"Detall de l'alumne",
|
|
81
|
+
"fam_alumne_adreca":"Adreça",
|
|
82
|
+
"fam_alumne_cognoms":"Cognoms",
|
|
83
|
+
"fam_alumne_data_naixement":"Data de naixement",
|
|
84
|
+
"fam_alumne_data_naixement_FROM":"Data de naixement des de",
|
|
85
|
+
"fam_alumne_data_naixement_TO":"Data de naixement fins a",
|
|
86
|
+
"fam_alumne_document":"Document",
|
|
87
|
+
"fam_alumne_edat_MIN":"Edat mínima",
|
|
88
|
+
"fam_alumne_edat_MAX":"Edat màxima",
|
|
89
|
+
"fam_alumne_edat":"Edat",
|
|
90
|
+
"fam_alumne_nom":"Nom",
|
|
91
|
+
"fam_alumne_sexe":"Sexe",
|
|
92
|
+
"fam_alumne_nom_fitxer":"Fitxer",
|
|
93
|
+
"fam_alumne_ct_fitxer":"Tipus",
|
|
94
|
+
"fam_alumne_pes_fitxer":"Pes",
|
|
95
|
+
"FAM_COMANDA_LIST":"Llistat de comandes",
|
|
96
|
+
"FamComanda_EDIT":"Detall de la comanda",
|
|
97
|
+
"fam_com_email_destinatari":"Email destinatari",
|
|
98
|
+
"fam_com_nom_destinatari":"Nom destinatari",
|
|
99
|
+
"fam_com_referencia":"Referència",
|
|
100
|
+
"FAM_CURS_LIST":"Llistat de cursos",
|
|
101
|
+
"FamCurs_EDIT":"Detall del curs",
|
|
102
|
+
"fam_curs_activat":"Activitat",
|
|
103
|
+
"fam_curs_activat_MIN":"Activitat mínim",
|
|
104
|
+
"fam_curs_activat_MAX":"Activitat màxim",
|
|
105
|
+
"fam_curs_codi":"Codi",
|
|
106
|
+
"fam_curs_data_fi":"Data fi",
|
|
107
|
+
"fam_curs_data_fi_FROM":"Data fi des de",
|
|
108
|
+
"fam_curs_data_fi_TO":"Data fi fins a",
|
|
109
|
+
"fam_curs_data_inici":"Data inici",
|
|
110
|
+
"fam_curs_data_inici_FROM":"Data inici des de",
|
|
111
|
+
"fam_curs_data_inici_TO":"Data inici fins a",
|
|
112
|
+
"fam_curs_import":"Import",
|
|
113
|
+
"fam_curs_import_MIN":"Import mínim",
|
|
114
|
+
"fam_curs_import_MAX":"Import màxim",
|
|
115
|
+
"fam_curs_nom":"Nom",
|
|
116
|
+
"fam_curs_observacions":"Observacions",
|
|
117
|
+
"FAM_DOCUMENT_TIPUS_LIST":"Llistat de tipus de documents",
|
|
118
|
+
"FamDocumentTipus_EDIT":"Detall del tipus de document",
|
|
119
|
+
"tipus_nom":"Nom",
|
|
120
|
+
"FAM_DOCUMENT_LIST":"Llistat de documents",
|
|
121
|
+
"FamDocument_EDIT":"Detall del document",
|
|
122
|
+
"doc_alta_data":"Data alta",
|
|
123
|
+
"doc_alta_data_FROM":"Data alta des de",
|
|
124
|
+
"doc_alta_data_TO":"Data alta fins a",
|
|
125
|
+
"doc_alta_usuari":"Usuari alta",
|
|
126
|
+
"doc_baixa_data":"Data baixa",
|
|
127
|
+
"doc_baixa_data_FROM":"Data baixa des de",
|
|
128
|
+
"doc_baixa_data_TO":"Data baixa fins a",
|
|
129
|
+
"doc_baixa_usuari":"Usuari baixa",
|
|
130
|
+
"doc_content_type":"Tipus",
|
|
131
|
+
"doc_nom_arxiu":"Arxiu",
|
|
132
|
+
"doc_mida":"Mida",
|
|
133
|
+
"fam_document_tipus.tipus_nom":"Tipus document",
|
|
134
|
+
"FAM_EXPEDIENT_TIPUS_LIST":"Llistat de tipus d'expedients",
|
|
135
|
+
"FamExpedientTipus_EDIT":"Detall del tipus d'expedient",
|
|
136
|
+
"FAM_EXPEDIENT_ESTAT_LIST":"Llistat d'estats d'expedients",
|
|
137
|
+
"FamExpedientEstat_EDIT":"Detall de l'estat d'expedient",
|
|
138
|
+
"estat_nom":"Nom",
|
|
139
|
+
"FAM_EXPEDIENT_LIST":"Llistat d'expedients",
|
|
140
|
+
"FamExpedient_EDIT":"Detall de l'expedient",
|
|
141
|
+
"exp_alta_data":"Data alta",
|
|
142
|
+
"exp_alta_data_FROM":"Data alta des de",
|
|
143
|
+
"exp_alta_data_TO":"Data alta fins a",
|
|
144
|
+
"exp_alta_usuari":"Usuari alta",
|
|
145
|
+
"exp_baixa_data":"Data baixa",
|
|
146
|
+
"exp_baixa_data_FROM":"Data baixa des de",
|
|
147
|
+
"exp_baixa_data_TO":"Data baixa fins a",
|
|
148
|
+
"exp_baixa_usuari":"Usuari baixa",
|
|
149
|
+
"exp_modif_data":"Data modificació",
|
|
150
|
+
"exp_modif_data_FROM":"Data modificació des de",
|
|
151
|
+
"exp_modif_data_TO":"Data modificació fins a",
|
|
152
|
+
"exp_modif_usuari":"Usuari modificació",
|
|
153
|
+
"exp_gestor_codi_sap":"Codi SAP gestor",
|
|
154
|
+
"exp_num_expedient_sap":"Núm. expedient SAP",
|
|
155
|
+
"exp_titol":"Títol",
|
|
156
|
+
"exp_info_xbmq":"Info XBMQuery",
|
|
157
|
+
"fam_expedient_estat.estat_nom":"Estat",
|
|
158
|
+
"fam_expedient_tipus.tipus_nom":"Tipus",
|
|
159
|
+
"FAM_EXPEDIENT_DOCUMENT_LIST":"Llistat de documents d'expedients",
|
|
160
|
+
"FamExpedientDocument_EDIT":"Detall del document d'expedient",
|
|
161
|
+
"edoc_alta_data":"Data alta",
|
|
162
|
+
"edoc_alta_data_FROM":"Data alta des de",
|
|
163
|
+
"edoc_alta_data_TO":"Data alta fins a",
|
|
164
|
+
"edoc_alta_usuari":"Usuari alta",
|
|
165
|
+
"edoc_baixa_data":"Data baixa",
|
|
166
|
+
"edoc_baixa_data_FROM":"Data baixa des de",
|
|
167
|
+
"edoc_baixa_data_TO":"Data baixa fins a",
|
|
168
|
+
"edoc_baixa_usuari":"Usuari baixa",
|
|
169
|
+
"edoc_visibilitat_externa":"Visibilitat externa",
|
|
170
|
+
"fam_document.doc_nom_arxiu":"Document",
|
|
171
|
+
"fam_expedient.exp_titol":"Expedient",
|
|
172
|
+
"FAM_JERARQUIA_LIST":"Llistat de jerarquies",
|
|
173
|
+
"FamJerarquia_EDIT":"Detall de la jerarquia",
|
|
174
|
+
"fam_jer_nom":"Nom",
|
|
175
|
+
"fam_jer_descripcio":"Descripció",
|
|
176
|
+
"FAM_TIPUS_ARTICLE_LIST":"Llistat de tipus d'articles",
|
|
177
|
+
"FamTipusArticle_EDIT":"Detall del tipus d'article",
|
|
178
|
+
"fam_tip_descripcio":"Descripció",
|
|
179
|
+
"FAM_LINIA_LIST":"Llistat de línies",
|
|
180
|
+
"FamLinia_EDIT":"Detall de la línia",
|
|
181
|
+
"fam_lin_data_entrega":"Data d'entrega",
|
|
182
|
+
"fam_lin_data_entrega_FROM":"Data d'entrega des de",
|
|
183
|
+
"fam_lin_data_entrega_TO":"Data d'entrega fins a",
|
|
184
|
+
"fam_lin_descripcio":"Descripció",
|
|
185
|
+
"fam_lin_preu":"Preu",
|
|
186
|
+
"fam_lin_preu_MIN":"Preu mínim",
|
|
187
|
+
"fam_lin_preu_MAX":"Preu màxim",
|
|
188
|
+
"fam_lin_unitats":"Unitats",
|
|
189
|
+
"fam_lin_unitats_MIN":"Unitats mínimes",
|
|
190
|
+
"fam_lin_unitats_MAX":"Unitats màximes",
|
|
191
|
+
"fam_comanda.fam_com_referencia":"Comanda",
|
|
192
|
+
"fam_tipus_article.fam_tip_descripcio":"Tipus article",
|
|
193
|
+
"FAM_UBICACIO_LIST":"Llistat d'ubicacions",
|
|
194
|
+
"FamUbicacio_EDIT":"Detall de l'ubicació",
|
|
195
|
+
"fam_ubi_nom":"Nom",
|
|
196
|
+
"FAM_ZONA_LIST":"Llistat de zones",
|
|
197
|
+
"FamZona_EDIT":"Detall de la zona",
|
|
198
|
+
"fam_zona_nom":"Nom",
|
|
199
|
+
"FAM_MATRICULA_LIST":"Llistat de matrícules",
|
|
200
|
+
"FamMatricula_EDIT":"Detall de la matrícula",
|
|
201
|
+
"FamMatricula_EMBEDDED":"Matrícules",
|
|
202
|
+
"fam_matricula_codi":"Codi",
|
|
203
|
+
"fam_matricula_data_matricula":"Data matrícula",
|
|
204
|
+
"fam_matricula_data_matricula_FROM":"Data matrícula des de",
|
|
205
|
+
"fam_matricula_data_matricula_TO":"Data matrícula fins a",
|
|
206
|
+
"fam_matricula_fitxer":"Fitxer",
|
|
207
|
+
"fam_matricula_fitxer_nom":"Nom fitxer",
|
|
208
|
+
"fam_matricula_fitxer_content_type":"Tipus",
|
|
209
|
+
"fam_matricula_fitxer_pes":"Pes",
|
|
210
|
+
"fam_matricula_observacions":"Observacions",
|
|
211
|
+
"fam_alumne.fam_alumne_nom":"Alumne",
|
|
212
|
+
"fam_curs.fam_curs_nom":"Curs",
|
|
213
|
+
"version":"Versió",
|
|
214
|
+
"artifact":"Artefacte",
|
|
215
|
+
"group":"Grup",
|
|
216
|
+
"name":"Nom aplicació",
|
|
217
|
+
"profile":"Perfil",
|
|
218
|
+
"gitBranch":"Branca GIT",
|
|
219
|
+
"gitCommitId":"Id commit GIT",
|
|
220
|
+
"gitCommitIdFull":"Id commit GIT complet",
|
|
221
|
+
"gitCommitTime":"Data commit GIT",
|
|
222
|
+
"startedAt":"Arrnacat a",
|
|
223
|
+
"uptimeMs":"Temps d'execució (ms)",
|
|
224
|
+
"uptimeHuman":"Temps d'execució",
|
|
225
|
+
"ENVIRONMENT_INFO_POPUP_TITLE":"Informació de l'entorn",
|
|
226
|
+
"FUNCIONALITAT_LIST":"Llistat de funcionalitats",
|
|
227
|
+
"Funcionalitat_EDIT":"Detall de la funcionalitat",
|
|
228
|
+
"codi_funcionalitat":"Codi",
|
|
229
|
+
"nom_funcionalitat":"Nom",
|
|
230
|
+
"descripcio_funcionalitat":"Descripció",
|
|
231
|
+
"metode_api":"Metode API",
|
|
232
|
+
"usuari_alta":"Usuari alta",
|
|
233
|
+
"data_alta":"Data alta",
|
|
234
|
+
"data_alta_FROM":"Data alta des de",
|
|
235
|
+
"data_alta_TO":"Data alta fins a",
|
|
236
|
+
"usuari_modificacio":"Usuari modifació",
|
|
237
|
+
"data_modificacio":"Data modificació",
|
|
238
|
+
"data_modificacio_FROM":"Data modificació des de",
|
|
239
|
+
"data_modificacio_TO":"Data modificació fins a",
|
|
240
|
+
"FUNCIONALITAT_GRUP_FUNC_LIST":"Llistat Funcionalitat-Grup funcionalitat",
|
|
241
|
+
"FuncionalitatGrupFunc_EDIT":"Detall de Funcionalitat-Grup funcionalitat",
|
|
242
|
+
"grup_funcionalitat.nom_grup_funcionalitat":"Grup funcionalitat",
|
|
243
|
+
"funcionalitat.nom_funcionalitat":"Funcionalitat",
|
|
244
|
+
"GRUP_FUNCIONALITAT_LIST":"Llistat de grups funcionalitat",
|
|
245
|
+
"GrupFuncionalitat_EDIT":"Detall de grup funcionalitat",
|
|
246
|
+
"nom_grup_funcionalitat":"Grup",
|
|
247
|
+
"Funcionalitat_EMBEDDED":"Funcionalitats",
|
|
248
|
+
"VUS_PERFIL_LIST":"Llistat de perfils",
|
|
249
|
+
"VusPerfil_EDIT":"Detall de perfil",
|
|
250
|
+
"nom_perfil":"Perfil",
|
|
251
|
+
"PERFIL_GRUP_FUNCIONALITAT_LIST":"Llistat Perfil-Grup funcionalitat",
|
|
252
|
+
"PerfilGrupFuncionalitat_EDIT":"Detall de Perfil-Grup funcionalitat",
|
|
253
|
+
"vus_perfil.nom_perfil":"Perfil",
|
|
254
|
+
"FuncionalitatGrupFunc_EMBEDDED":"Funcionalitat-Grup funcionalitat",
|
|
255
|
+
"PerfilGrupFuncionalitat_EMBEDDED":"Grups funcionalitats",
|
|
256
|
+
"MANTENIMENTS":"Manteniments",
|
|
257
|
+
"INICI":"Inici",
|
|
258
|
+
"FamActivitat":"Activitats",
|
|
259
|
+
"FamActivitatsUbicacio":"Activitats-Ubicacions",
|
|
260
|
+
"FamAlumne":"Alumnes",
|
|
261
|
+
"FamArea":"Areas",
|
|
262
|
+
"FamComanda":"Comandes",
|
|
263
|
+
"FamCurs":"Cursos",
|
|
264
|
+
"FamDocument":"Documents",
|
|
265
|
+
"FamDocumentTipus":"Tipus Documents",
|
|
266
|
+
"FamEntitatBase":"Entats Base",
|
|
267
|
+
"FamExpedient":"Expedients",
|
|
268
|
+
"FamExpedientDocument":"Expedient-Document",
|
|
269
|
+
"FamExpedientEstat":"Estats Expedient",
|
|
270
|
+
"FamExpedientTipus":"Expediemts Tipus",
|
|
271
|
+
"FamJerarquia":"Jerarquies",
|
|
272
|
+
"FamLinia":"Linies",
|
|
273
|
+
"FamMatricula":"Matricules",
|
|
274
|
+
"FamTipusArticle":"Tipus Articles",
|
|
275
|
+
"FamUbicacio":"Ubicacions",
|
|
276
|
+
"FamZona":"Zones",
|
|
277
|
+
"Funcionalitat":"Funcionalitats",
|
|
278
|
+
"FuncionalitatGrupFunc":"Funcionalitats-Grups Funcionalitats",
|
|
279
|
+
"GrupFuncionalitat":"Grups Funcionalitats",
|
|
280
|
+
"PerfilGrupFuncionalitat":"Perfils-Grups Funcionalitats",
|
|
281
|
+
"VusPerfil":"Perfils VUS",
|
|
282
|
+
"AUTHORIZATION":"Autorització",
|
|
283
|
+
"AUXILIARS":"Mant. Auxiliars"
|
|
284
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accept": "Accept",
|
|
3
|
+
"reject": "Reject",
|
|
4
|
+
"matchAll": "Match all",
|
|
5
|
+
"matchAny": "Match any",
|
|
6
|
+
"addRule": "Add rule",
|
|
7
|
+
"removeRule": "Remove rule",
|
|
8
|
+
"clear": "Clear",
|
|
9
|
+
"apply": "Apply",
|
|
10
|
+
"startsWith": "Starts with",
|
|
11
|
+
"contains": "Contains",
|
|
12
|
+
"notContains": "Does not contain",
|
|
13
|
+
"endsWith": "Ends with",
|
|
14
|
+
"equals": "Equals",
|
|
15
|
+
"notEquals": "Not equals",
|
|
16
|
+
"lt": "Less than",
|
|
17
|
+
"lte": "Less than or equal to",
|
|
18
|
+
"gt": "Greater than",
|
|
19
|
+
"gte": "Greater than or equal to",
|
|
20
|
+
"is": "Is",
|
|
21
|
+
"isNot": "Is not",
|
|
22
|
+
"before": "Before",
|
|
23
|
+
"after": "After",
|
|
24
|
+
"dateIs": "Date is",
|
|
25
|
+
"dateIsNot": "Date is not",
|
|
26
|
+
"dateBefore": "Date is before",
|
|
27
|
+
"dateAfter": "Date is after"
|
|
28
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"accept": "Aceptar",
|
|
3
|
+
"reject": "Rechazar",
|
|
4
|
+
"matchAll": "Coincidir todo",
|
|
5
|
+
"matchAny": "Coincidir con cualquiera",
|
|
6
|
+
"addRule": "Añadir regla",
|
|
7
|
+
"removeRule": "Eliminar regla",
|
|
8
|
+
"clear": "Limpiar",
|
|
9
|
+
"apply": "Aplicar",
|
|
10
|
+
"startsWith": "Empieza por",
|
|
11
|
+
"contains": "Contiene",
|
|
12
|
+
"notContains": "No contiene",
|
|
13
|
+
"endsWith": "Termina por",
|
|
14
|
+
"equals": "Igual a",
|
|
15
|
+
"notEquals": "Distinto de",
|
|
16
|
+
"lt": "Menor que",
|
|
17
|
+
"lte": "Menor o igual que",
|
|
18
|
+
"gt": "Mayor que",
|
|
19
|
+
"gte": "Mayor o igual que",
|
|
20
|
+
"is": "Es",
|
|
21
|
+
"isNot": "No es",
|
|
22
|
+
"before": "Antes",
|
|
23
|
+
"after": "Después",
|
|
24
|
+
"dateIs": "La fecha es",
|
|
25
|
+
"dateIsNot": "La fecha no es",
|
|
26
|
+
"dateBefore": "La fecha es anterior a",
|
|
27
|
+
"dateAfter": "La fecha es posterior a"
|
|
28
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<div class="layout-wrapper" [ngClass]="containerClass">
|
|
2
|
+
<app-topbar (openMainInfoPopup)="openMainInfoPopup($event)"></app-topbar>
|
|
3
|
+
<app-top-menu *ngIf="topMenuService.showTopMenu()"/>
|
|
4
|
+
<div class="layout-main-container" [ngClass]="{'top-menu-active': topMenuService.showTopMenu()}">
|
|
5
|
+
<div class="layout-main-container-inner">
|
|
6
|
+
<app-sidebar></app-sidebar>
|
|
7
|
+
<div class="layout-main">
|
|
8
|
+
<router-outlet></router-outlet>
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
11
|
+
<app-footer></app-footer>
|
|
12
|
+
</div>
|
|
13
|
+
<app-main-info-popup
|
|
14
|
+
*ngIf="showMainInfoPopup"
|
|
15
|
+
[title]="popupTitle"
|
|
16
|
+
[keyValueArray]="popupKeyValueArray"
|
|
17
|
+
(onCancel)="closeMainInfoPopup()">
|
|
18
|
+
</app-main-info-popup>
|
|
19
|
+
</div>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
.layout-main-container {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
min-height: 100vh;
|
|
5
|
+
justify-content: space-between;
|
|
6
|
+
padding: 0rem 1.5rem 0 0rem;
|
|
7
|
+
transition: margin-left 0.2s;
|
|
8
|
+
|
|
9
|
+
.layout-main-container-inner {
|
|
10
|
+
display: flex;
|
|
11
|
+
flex-direction: row;
|
|
12
|
+
width: 100%;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.top-menu-active {
|
|
17
|
+
padding-top: 2.5rem;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.layout-main {
|
|
21
|
+
flex: 1 1 auto;
|
|
22
|
+
padding: 1.5rem 1.5rem;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.layout-wrapper {
|
|
26
|
+
min-height: 100vh;
|
|
27
|
+
}
|
|
28
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<!-- Fondo oscuro -->
|
|
2
|
+
<div class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-1100">
|
|
3
|
+
<!-- Contenedor del popup -->
|
|
4
|
+
<div class="bg-white p-6 rounded-2xl shadow-xl w-full max-w-xl">
|
|
5
|
+
<h2 class="text-primary-500 text-xl font-bold mb-4 text-center">{{ title | primengTranslation }}</h2>
|
|
6
|
+
|
|
7
|
+
<p-table
|
|
8
|
+
[value]="keyValueArray"
|
|
9
|
+
class="border-separate border-spacing-0 w-full">
|
|
10
|
+
<ng-template pTemplate="header">
|
|
11
|
+
<tr class="!bg-white">
|
|
12
|
+
<th class="!bg-white !text-primary-500 !font-semibold !text-left !px-4 !py-2">{{ 'CLAU' | primengTranslation }}</th>
|
|
13
|
+
<th class="!bg-white !text-primary-500 !font-semibold !text-left !px-4 !py-2">{{ 'VALOR' | primengTranslation }}</th>
|
|
14
|
+
</tr>
|
|
15
|
+
</ng-template>
|
|
16
|
+
<ng-template pTemplate="body" let-row let-index="rowIndex">
|
|
17
|
+
<tr class="even:!bg-gray-50">
|
|
18
|
+
<td class="!font-semibold !px-4 !py-2">{{ row.key | primengTranslation}}</td>
|
|
19
|
+
<td class="!px-4 !py-2">{{ row.value | primengTranslation}}</td>
|
|
20
|
+
</tr>
|
|
21
|
+
</ng-template>
|
|
22
|
+
</p-table>
|
|
23
|
+
|
|
24
|
+
<div class="flex justify-around mt-4">
|
|
25
|
+
<button
|
|
26
|
+
class="bg-primary-500 text-white hover:bg-primary-900 border border-primary-500 hover:border-primary-900 rounded-full px-6 py-2 transition"
|
|
27
|
+
(click)="cancel()"
|
|
28
|
+
>
|
|
29
|
+
{{ 'CLOSE' | primengTranslation }}
|
|
30
|
+
</button>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|