diff --git a/deployment/environments/group_vars/all/vitamui_vars.yml b/deployment/environments/group_vars/all/vitamui_vars.yml index 67a7d8372cb81071dd56ce6668b9b0c80a295a4a..fdaa707cc750ae13d7ff18c01a8be963bb649737 100755 --- a/deployment/environments/group_vars/all/vitamui_vars.yml +++ b/deployment/environments/group_vars/all/vitamui_vars.yml @@ -205,3 +205,4 @@ vitamui_platform_informations: theme_colors: vitamui_primary: "#ff4a54" vitamui_secondary: "#241f63" + platform_name: VITAM-UI diff --git a/deployment/roles/vitamui/templates/ui-identity-admin/application.yml.j2 b/deployment/roles/vitamui/templates/ui-identity-admin/application.yml.j2 index 71a85f27dabdb73bda6ed06025782648a6756c50..57e3374e6eafe33374d69ab016754150a878cb06 100644 --- a/deployment/roles/vitamui/templates/ui-identity-admin/application.yml.j2 +++ b/deployment/roles/vitamui/templates/ui-identity-admin/application.yml.j2 @@ -47,6 +47,7 @@ server-identity: ui-identity: + platform-name: "{{ vitamui_platform_informations.platform_name }}" iam-external-client: server-host: {{ vitamui.iam_external.host }} server-port: {{ vitamui.iam_external.port_service }} diff --git a/deployment/roles/vitamui/templates/ui-identity/application.yml.j2 b/deployment/roles/vitamui/templates/ui-identity/application.yml.j2 index aba55342916a96cc768e9da2c810e3ae1918ddc2..56d07855478df753e7807f014a2981b48e34afdb 100644 --- a/deployment/roles/vitamui/templates/ui-identity/application.yml.j2 +++ b/deployment/roles/vitamui/templates/ui-identity/application.yml.j2 @@ -44,6 +44,7 @@ server-identity: ui-identity: + platform-name: "{{ vitamui_platform_informations.platform_name }}" iam-external-client: server-host: {{ vitamui.iam_external.host }} server-port: {{ vitamui.iam_external.port_service }} diff --git a/deployment/roles/vitamui/templates/ui-portal/application.yml.j2 b/deployment/roles/vitamui/templates/ui-portal/application.yml.j2 index 2aa1929987b5e6454c3ad2134c136b788967d8be..210f6b9904dbf51c9820f7fc2a00a7e6f0ea598b 100644 --- a/deployment/roles/vitamui/templates/ui-portal/application.yml.j2 +++ b/deployment/roles/vitamui/templates/ui-portal/application.yml.j2 @@ -40,6 +40,7 @@ server-identity: ui-portal: + platform-name: "{{ vitamui_platform_informations.platform_name }}" iam-external-client: server-host: {{ vitamui.iam_external.host }} server-port: {{ vitamui.iam_external.port_service }} diff --git a/integration-tests/src/test/resources/application-dev.yml b/integration-tests/src/test/resources/application-dev.yml index eb9ad9de9d4d6e0d4d36222d5d42328dcd2201ea..96de3da16df34d2fb0c2ae738597e9b7cd0d1e58 100644 --- a/integration-tests/src/test/resources/application-dev.yml +++ b/integration-tests/src/test/resources/application-dev.yml @@ -74,3 +74,4 @@ vitamui_platform_informations: first_customer_tenant: 9 system_archive_tenant_identifier: 9 client1_tenant_identifier: 102 + platform_name: VITAM-UI diff --git a/integration-tests/src/test/resources/application-integration.yml b/integration-tests/src/test/resources/application-integration.yml index 7f21e0b869ee6e7a44523d7956e11c5ff2257246..a29e6719dd91a3427f74da91dd077b969e01c57d 100644 --- a/integration-tests/src/test/resources/application-integration.yml +++ b/integration-tests/src/test/resources/application-integration.yml @@ -74,4 +74,5 @@ vitamui_platform_informations: first_customer_tenant: 9 system_archive_tenant_identifier: 9 client1_tenant_identifier: 102 + platform_name: VITAM-UI diff --git a/tools/docker/mongo/mongo_vars_dev.yml b/tools/docker/mongo/mongo_vars_dev.yml index 4382d7eeb4cdda87726c6de17e3e689c599c0e5f..c759b002a59e131d748bcc0adb710078a9f4d38a 100644 --- a/tools/docker/mongo/mongo_vars_dev.yml +++ b/tools/docker/mongo/mongo_vars_dev.yml @@ -76,6 +76,7 @@ vitamui_platform_informations: proof_tenant: 3 cas_tenant: -1 first_customer_tenant: 9 + platform_name: VITAM-UI # ---------------------------------------------------------------------------------------------------------------------- # cas services cert value override diff --git a/ui/ui-commons/src/main/java/fr/gouv/vitamui/ui/commons/config/UIPropertiesImpl.java b/ui/ui-commons/src/main/java/fr/gouv/vitamui/ui/commons/config/UIPropertiesImpl.java index ecf6f60e0b0482183b1abc95b5f7b68ad8ed9f4a..91664e9b9581f9f2522ee20844c2967b7b24f840 100644 --- a/ui/ui-commons/src/main/java/fr/gouv/vitamui/ui/commons/config/UIPropertiesImpl.java +++ b/ui/ui-commons/src/main/java/fr/gouv/vitamui/ui/commons/config/UIPropertiesImpl.java @@ -70,4 +70,6 @@ public class UIPropertiesImpl implements UIProperties { private Map<String, String> themeColors; private String assets; + + private String platformName; } diff --git a/ui/ui-commons/src/main/java/fr/gouv/vitamui/ui/commons/property/UIProperties.java b/ui/ui-commons/src/main/java/fr/gouv/vitamui/ui/commons/property/UIProperties.java index 7191b8ef939b8c37d2a57b5b8cad7a907f2a31b9..d42eaac0458434eb98b964fd32f6dedb9c8e2a0f 100644 --- a/ui/ui-commons/src/main/java/fr/gouv/vitamui/ui/commons/property/UIProperties.java +++ b/ui/ui-commons/src/main/java/fr/gouv/vitamui/ui/commons/property/UIProperties.java @@ -56,4 +56,6 @@ public interface UIProperties { public String getAssets(); + public String getPlatformName(); + } diff --git a/ui/ui-commons/src/main/java/fr/gouv/vitamui/ui/commons/service/ApplicationService.java b/ui/ui-commons/src/main/java/fr/gouv/vitamui/ui/commons/service/ApplicationService.java index 709886271cc81d31bc2833784097e871cebb5807..1c5ac37bcc5d26e5288cf0da802d5b49f36a70b6 100644 --- a/ui/ui-commons/src/main/java/fr/gouv/vitamui/ui/commons/service/ApplicationService.java +++ b/ui/ui-commons/src/main/java/fr/gouv/vitamui/ui/commons/service/ApplicationService.java @@ -97,6 +97,8 @@ public class ApplicationService extends AbstractCrudService<ApplicationDto> { @Value("${ui.redirect-url}") @NotNull private String uiRedirectUrl; + + private static String PLATFORM_NAME = "PLATFORM_NAME"; public ApplicationService(final UIProperties properties, final CasLogoutUrl casLogoutUrl, final IamExternalRestClientFactory factory) { this.properties = properties; @@ -128,6 +130,11 @@ public class ApplicationService extends AbstractCrudService<ApplicationDto> { configurationData.put(CommonConstants.UI_URL, uiUrl); configurationData.put(CommonConstants.LOGOUT_REDIRECT_UI_URL, casLogoutUrl.getValueWithRedirection(uiRedirectUrl)); configurationData.put(CommonConstants.THEME_COLORS, properties.getThemeColors()); + if(properties.getPlatformName() != null) { + configurationData.put(PLATFORM_NAME, properties.getPlatformName()); + } else { + configurationData.put(PLATFORM_NAME, "VITAM-UI"); + } String vitamLogoPath = properties.getThemeLogo(); diff --git a/ui/ui-frontend-common/angular.json b/ui/ui-frontend-common/angular.json index 189b8594594b0d7c0a046ebb567a9957ca45e0f0..e128090d1ea4c9e7ef8e9a9bb38cf7f51d84793a 100644 --- a/ui/ui-frontend-common/angular.json +++ b/ui/ui-frontend-common/angular.json @@ -15,8 +15,11 @@ "prefix": "vitamui-common", "architect": { "build": { - "builder": "@angular-devkit/build-angular:browser", + "builder": "@angular-builders/custom-webpack:browser", "options": { + "customWebpackConfig": { + "path": "./extra-webpack.config.js" + }, "outputPath": "dist/ui-frontend-common", "index": "src/index.html", "main": "src/main.ts", @@ -60,7 +63,7 @@ } }, "serve": { - "builder": "@angular-devkit/build-angular:dev-server", + "builder": "@angular-builders/custom-webpack:dev-server", "options": { "browserTarget": "ui-frontend-common:build", "host": "dev.vitamui.com", diff --git a/ui/ui-frontend-common/extra-webpack.config.js b/ui/ui-frontend-common/extra-webpack.config.js new file mode 100644 index 0000000000000000000000000000000000000000..2bd76bd8effca33f26befe646be1dc96c45900df --- /dev/null +++ b/ui/ui-frontend-common/extra-webpack.config.js @@ -0,0 +1,34 @@ +const svgToMiniDataURI = require('mini-svg-data-uri'); + +module.exports = { + module: { + rules: [ + { + test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/, + loader: 'file-loader' + }, + { + test: /\.(png|jpg|gif)$/i, + use: [ + { + loader: 'url-loader', + options: { + limit: false, + }, + }, + ], + }, + { + test: /\.svg$/i, + use: [ + { + loader: 'url-loader', + options: { + generator: (content) => svgToMiniDataURI(content.toString()), + }, + }, + ], + }, + ], + }, + }; \ No newline at end of file diff --git a/ui/ui-frontend-common/package-lock.json b/ui/ui-frontend-common/package-lock.json index 0bf0e9e572082d9819e07e0573715abc032c62b8..856756f974835e9c7dcd335f6e1b5cb0d7fa2158 100644 --- a/ui/ui-frontend-common/package-lock.json +++ b/ui/ui-frontend-common/package-lock.json @@ -4,6 +4,60 @@ "lockfileVersion": 1, "requires": true, "dependencies": { + "@angular-builders/custom-webpack": { + "version": "8.4.1", + "resolved": "https://nexus.teamdlab.com/repository/npm/@angular-builders/custom-webpack/-/custom-webpack-8.4.1.tgz", + "integrity": "sha512-FbBt4mFbAxETdYLb6tTX869pIpm8nMiCpT34jROejuqLtsljymdqXhSCEWogWlel8ULAYus6BNdzZyRLyAkfqQ==", + "dev": true, + "requires": { + "lodash": "^4.17.10", + "ts-node": "^8.5.2", + "webpack-merge": "^4.2.1" + }, + "dependencies": { + "diff": { + "version": "4.0.2", + "resolved": "https://nexus.teamdlab.com/repository/npm/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://nexus.teamdlab.com/repository/npm/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://nexus.teamdlab.com/repository/npm/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "ts-node": { + "version": "8.10.2", + "resolved": "https://nexus.teamdlab.com/repository/npm/ts-node/-/ts-node-8.10.2.tgz", + "integrity": "sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA==", + "dev": true, + "requires": { + "arg": "^4.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "source-map-support": "^0.5.17", + "yn": "3.1.1" + } + }, + "yn": { + "version": "3.1.1", + "resolved": "https://nexus.teamdlab.com/repository/npm/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true + } + } + }, "@angular-devkit/architect": { "version": "0.803.26", "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.803.26.tgz", @@ -157,6 +211,16 @@ "integrity": "sha512-4paDGScNgZP2IXXilaffL9X7968RuvwlkK3xWtZRVqgd8SYNiVKRJvkFd1aqqEuPfN7E68ZHEp9hDj6lHj4Hyw==", "dev": true }, + "file-loader": { + "version": "4.2.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/file-loader/-/file-loader-4.2.0.tgz", + "integrity": "sha512-+xZnaK5R8kBJrHK0/6HRlrKNamvVS5rjyuju+rnyxRGuwUJwpAMsVzUl5dz6rK8brkzjV6JpcFNjp6NqV0g1OQ==", + "dev": true, + "requires": { + "loader-utils": "^1.2.3", + "schema-utils": "^2.0.0" + } + }, "glob": { "version": "7.1.4", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", @@ -246,6 +310,37 @@ "integrity": "sha1-1HLbIo6zMcJQaw6MFVJK25OdEsE=", "dev": true }, + "schema-utils": { + "version": "2.7.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "dependencies": { + "ajv": { + "version": "6.12.2", + "resolved": "https://nexus.teamdlab.com/repository/npm/ajv/-/ajv-6.12.2.tgz", + "integrity": "sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "fast-deep-equal": { + "version": "3.1.1", + "resolved": "https://nexus.teamdlab.com/repository/npm/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", + "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==", + "dev": true + } + } + }, "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", @@ -1906,6 +2001,16 @@ "integrity": "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==", "dev": true }, + "@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "resolved": "https://nexus.teamdlab.com/repository/npm/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", + "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", + "dev": true, + "requires": { + "call-me-maybe": "^1.0.1", + "glob-to-regexp": "^0.3.0" + } + }, "@ngtools/webpack": { "version": "8.3.26", "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-8.3.26.tgz", @@ -1930,6 +2035,12 @@ } } }, + "@nodelib/fs.stat": { + "version": "1.1.3", + "resolved": "https://nexus.teamdlab.com/repository/npm/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", + "dev": true + }, "@schematics/angular": { "version": "8.3.26", "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-8.3.26.tgz", @@ -2111,6 +2222,12 @@ "@types/jasmine": "*" } }, + "@types/json-schema": { + "version": "7.0.4", + "resolved": "https://nexus.teamdlab.com/repository/npm/@types/json-schema/-/json-schema-7.0.4.tgz", + "integrity": "sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA==", + "dev": true + }, "@types/lodash": { "version": "4.14.152", "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.152.tgz", @@ -2605,6 +2722,12 @@ "readable-stream": "^2.0.6" } }, + "arg": { + "version": "4.1.3", + "resolved": "https://nexus.teamdlab.com/repository/npm/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, "argparse": { "version": "1.0.10", "resolved": "https://nexus.teamdlab.com/repository/npm/argparse/-/argparse-1.0.10.tgz", @@ -3526,6 +3649,12 @@ } } }, + "call-me-maybe": { + "version": "1.0.1", + "resolved": "https://nexus.teamdlab.com/repository/npm/call-me-maybe/-/call-me-maybe-1.0.1.tgz", + "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=", + "dev": true + }, "caller-callsite": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", @@ -5458,6 +5587,20 @@ "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", "dev": true }, + "fast-glob": { + "version": "2.2.7", + "resolved": "https://nexus.teamdlab.com/repository/npm/fast-glob/-/fast-glob-2.2.7.tgz", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", + "dev": true, + "requires": { + "@mrmlnc/readdir-enhanced": "^2.2.1", + "@nodelib/fs.stat": "^1.1.2", + "glob-parent": "^3.1.0", + "is-glob": "^4.0.0", + "merge2": "^1.2.3", + "micromatch": "^3.1.10" + } + }, "fast-json-stable-stringify": { "version": "2.0.0", "resolved": "https://nexus.teamdlab.com/repository/npm/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", @@ -5495,13 +5638,13 @@ } }, "file-loader": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-4.2.0.tgz", - "integrity": "sha512-+xZnaK5R8kBJrHK0/6HRlrKNamvVS5rjyuju+rnyxRGuwUJwpAMsVzUl5dz6rK8brkzjV6JpcFNjp6NqV0g1OQ==", + "version": "6.0.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/file-loader/-/file-loader-6.0.0.tgz", + "integrity": "sha512-/aMOAYEFXDdjG0wytpTL5YQLfZnnTmLNjn+AIrJ/6HVnTfDqLsVKUUwkDf4I4kgex36BvjuXEn/TX9B/1ESyqQ==", "dev": true, "requires": { - "loader-utils": "^1.2.3", - "schema-utils": "^2.0.0" + "loader-utils": "^2.0.0", + "schema-utils": "^2.6.5" }, "dependencies": { "ajv": { @@ -5516,24 +5659,57 @@ "uri-js": "^4.2.2" } }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, "fast-deep-equal": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==", "dev": true }, + "json5": { + "version": "2.1.3", + "resolved": "https://nexus.teamdlab.com/repository/npm/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "loader-utils": { + "version": "2.0.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, "schema-utils": { - "version": "2.6.6", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.6.tgz", - "integrity": "sha512-wHutF/WPSbIi9x6ctjGGk2Hvl0VOz5l3EKEuKbjPlB30mKZUzb9A5k9yEXRX3pwyqVLPvpfZZEllaFq/M718hA==", + "version": "2.7.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", "dev": true, "requires": { - "ajv": "^6.12.0", + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", "ajv-keywords": "^3.4.1" } } } }, + "file-type": { + "version": "10.11.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/file-type/-/file-type-10.11.0.tgz", + "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", + "dev": true + }, "file-uri-to-path": { "version": "1.0.0", "resolved": "https://nexus.dev.programmevitam.fr/repository/npm-group/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", @@ -5973,6 +6149,12 @@ } } }, + "glob-to-regexp": { + "version": "0.3.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", + "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=", + "dev": true + }, "global-dirs": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", @@ -6452,6 +6634,81 @@ "dev": true, "optional": true }, + "imagemin": { + "version": "6.1.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/imagemin/-/imagemin-6.1.0.tgz", + "integrity": "sha512-8ryJBL1CN5uSHpiBMX0rJw79C9F9aJqMnjGnrd/1CafegpNuA81RBAAru/jQQEOWlOJJlpRnlcVFF6wq+Ist0A==", + "dev": true, + "requires": { + "file-type": "^10.7.0", + "globby": "^8.0.1", + "make-dir": "^1.0.0", + "p-pipe": "^1.1.0", + "pify": "^4.0.1", + "replace-ext": "^1.0.0" + }, + "dependencies": { + "dir-glob": { + "version": "2.0.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/dir-glob/-/dir-glob-2.0.0.tgz", + "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==", + "dev": true, + "requires": { + "arrify": "^1.0.1", + "path-type": "^3.0.0" + } + }, + "globby": { + "version": "8.0.2", + "resolved": "https://nexus.teamdlab.com/repository/npm/globby/-/globby-8.0.2.tgz", + "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "dir-glob": "2.0.0", + "fast-glob": "^2.0.2", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, + "make-dir": { + "version": "1.3.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "requires": { + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + } + } + }, + "img-loader": { + "version": "3.0.1", + "resolved": "https://nexus.teamdlab.com/repository/npm/img-loader/-/img-loader-3.0.1.tgz", + "integrity": "sha512-0jDJqexgzOuq3zlXwFTBKJlMcaP1uXyl5t4Qu6b1IgXb3IwBDjPfVylBC8vHFIIESDw/S+5QkBbtBrt4T8wESA==", + "dev": true, + "requires": { + "loader-utils": "^1.1.0" + } + }, "immediate": { "version": "3.0.6", "resolved": "https://nexus.teamdlab.com/repository/npm/immediate/-/immediate-3.0.6.tgz", @@ -8307,6 +8564,12 @@ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true }, + "merge2": { + "version": "1.4.1", + "resolved": "https://nexus.teamdlab.com/repository/npm/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, "methods": { "version": "1.1.2", "resolved": "https://nexus.teamdlab.com/repository/npm/methods/-/methods-1.1.2.tgz", @@ -8397,6 +8660,12 @@ "webpack-sources": "^1.1.0" } }, + "mini-svg-data-uri": { + "version": "1.2.3", + "resolved": "https://nexus.teamdlab.com/repository/npm/mini-svg-data-uri/-/mini-svg-data-uri-1.2.3.tgz", + "integrity": "sha512-zd6KCAyXgmq6FV1mR10oKXYtvmA9vRoB6xPSTUJTbFApCtkefDnYueVR1gkof3KcdLZo1Y8mjF2DFmQMIxsHNQ==", + "dev": true + }, "minimalistic-assert": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", @@ -9338,6 +9607,12 @@ "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", "dev": true }, + "p-pipe": { + "version": "1.2.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/p-pipe/-/p-pipe-1.2.0.tgz", + "integrity": "sha1-SxoROZoRUgpneQ7loMHViB1r7+k=", + "dev": true + }, "p-retry": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", @@ -10835,6 +11110,12 @@ "is-finite": "^1.0.0" } }, + "replace-ext": { + "version": "1.0.1", + "resolved": "https://nexus.teamdlab.com/repository/npm/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true + }, "request": { "version": "2.88.0", "resolved": "https://nexus.teamdlab.com/repository/npm/request/-/request-2.88.0.tgz", @@ -13105,6 +13386,89 @@ } } }, + "url-loader": { + "version": "4.1.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/url-loader/-/url-loader-4.1.0.tgz", + "integrity": "sha512-IzgAAIC8wRrg6NYkFIJY09vtktQcsvU8V6HhtQj9PTefbYImzLB1hufqo4m+RyM5N3mLx5BqJKccgxJS+W3kqw==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.26", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "ajv": { + "version": "6.12.2", + "resolved": "https://nexus.teamdlab.com/repository/npm/ajv/-/ajv-6.12.2.tgz", + "integrity": "sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "fast-deep-equal": { + "version": "3.1.1", + "resolved": "https://nexus.teamdlab.com/repository/npm/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", + "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==", + "dev": true + }, + "json5": { + "version": "2.1.3", + "resolved": "https://nexus.teamdlab.com/repository/npm/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "loader-utils": { + "version": "2.0.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "mime-db": { + "version": "1.44.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/mime-db/-/mime-db-1.44.0.tgz", + "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==", + "dev": true + }, + "mime-types": { + "version": "2.1.27", + "resolved": "https://nexus.teamdlab.com/repository/npm/mime-types/-/mime-types-2.1.27.tgz", + "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", + "dev": true, + "requires": { + "mime-db": "1.44.0" + } + }, + "schema-utils": { + "version": "2.7.0", + "resolved": "https://nexus.teamdlab.com/repository/npm/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + } + } + } + }, "url-parse": { "version": "1.4.7", "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz", diff --git a/ui/ui-frontend-common/package.json b/ui/ui-frontend-common/package.json index 53332a0aff714cfbab4c0165d50f47a2e9cf4a2e..b0679e8136fc2adce4b76003b532d04c59d0f78b 100644 --- a/ui/ui-frontend-common/package.json +++ b/ui/ui-frontend-common/package.json @@ -1,6 +1,6 @@ { "name": "ui-frontend-common", - "version": "1.0.2", + "version": "1.0.3", "main": "src/index.ts", "pki": { "path": "../../dev-deployment/environments/certs/server/hosts/localhost", @@ -65,6 +65,7 @@ "zone.js": "~0.9.1" }, "devDependencies": { + "@angular-builders/custom-webpack": "^8.4.1", "@angular-devkit/build-angular": "^0.803.26", "@angular-devkit/build-ng-packagr": "^0.803.26", "@angular/cli": "^8.3.26", @@ -77,6 +78,9 @@ "@types/underscore": "^1.10.0", "codelyzer": "^5.2.2", "cp-cli": "^2.0.0", + "file-loader": "^6.0.0", + "imagemin": "^6.1.0", + "img-loader": "^3.0.1", "jasmine-core": "^3.5.0", "jasmine-spec-reporter": "~4.2.1", "karma": "^5.0.9", @@ -84,6 +88,7 @@ "karma-coverage-istanbul-reporter": "~2.1.1", "karma-jasmine": "^2.0.1", "karma-jasmine-html-reporter": "^1.5.4", + "mini-svg-data-uri": "^1.2.3", "ng-packagr": "^5.7.1", "ngx-i18nsupport": "^0.17.1", "node-sass": "^4.14.1", @@ -93,6 +98,7 @@ "tsickle": "~0.37.0", "tslint": "~5.11.0", "typescript": "~3.5.3", + "url-loader": "^4.1.0", "utf-8-validate": "^5.0.2", "webpack-bundle-analyzer": "^3.8.0" }, diff --git a/ui/ui-frontend-common/src/app/app.component.ts b/ui/ui-frontend-common/src/app/app.component.ts index 956f888401c466085c781092af2a4a5943f3e707..b80ac501181e8d1cb274c50b2005b0ca4833180f 100644 --- a/ui/ui-frontend-common/src/app/app.component.ts +++ b/ui/ui-frontend-common/src/app/app.component.ts @@ -37,8 +37,10 @@ import { Component } from '@angular/core'; import { MatDialog } from '@angular/material/dialog'; +import { Title } from '@angular/platform-browser'; import { AuthService } from './modules/auth.service'; import { ErrorDialogComponent } from './modules/error-dialog/error-dialog.component'; +import { StartupService } from './modules/startup.service'; @Component({ selector: 'vitamui-common-root', @@ -48,8 +50,9 @@ import { ErrorDialogComponent } from './modules/error-dialog/error-dialog.compon export class AppComponent { title = 'app'; - constructor(public authService: AuthService, private matDialog: MatDialog) { - + constructor(public authService: AuthService, private matDialog: MatDialog, titleService: Title, startupService: StartupService + ) { + titleService.setTitle(startupService.getPlatformName()); } openErrorModal() { diff --git a/ui/ui-frontend-common/src/app/modules/models/app.configuration.interface.ts b/ui/ui-frontend-common/src/app/modules/models/app.configuration.interface.ts index ff869aa6abc28d5475fd7e73fe969d7d670d885a..abe4e0464bdd46607e51d13739c02b87aca0d4c2 100644 --- a/ui/ui-frontend-common/src/app/modules/models/app.configuration.interface.ts +++ b/ui/ui-frontend-common/src/app/modules/models/app.configuration.interface.ts @@ -45,5 +45,6 @@ export interface AppConfiguration { APP_LOGO: string; LOGO: string; [key: string]: string; + PLATFORM_NAME: string; } diff --git a/ui/ui-frontend-common/src/app/modules/startup.service.ts b/ui/ui-frontend-common/src/app/modules/startup.service.ts index 1c105d8fd48da73c858bd2a5bdc9b4c2303f9f00..5ec3d27c116d64e92918ea61722ecde577a2584c 100644 --- a/ui/ui-frontend-common/src/app/modules/startup.service.ts +++ b/ui/ui-frontend-common/src/app/modules/startup.service.ts @@ -237,4 +237,12 @@ export class StartupService { setTimeout(() => this.location.href = url ? url : this.getPortalUrl(), WARNING_DURATION); } + getPlatformName(): string { + if (this.configurationLoaded()) { + return this.configurationData.PLATFORM_NAME; + } + + return null; + } + } diff --git a/ui/ui-frontend-common/src/assets/logo.png b/ui/ui-frontend-common/src/assets/logo.png index 5fccc526e489c1e1b41fa6a4a6c5eb24a8012435..d1c46c709a98c3d0aa252b07713dc3a5cef24286 100644 Binary files a/ui/ui-frontend-common/src/assets/logo.png and b/ui/ui-frontend-common/src/assets/logo.png differ diff --git a/ui/ui-frontend-common/src/index.html b/ui/ui-frontend-common/src/index.html index 6ffbdc4592a99cc45c603a0827e9c5a335c066c2..e79b9682a9977ca6e092d31653770b1827014a42 100644 --- a/ui/ui-frontend-common/src/index.html +++ b/ui/ui-frontend-common/src/index.html @@ -9,10 +9,9 @@ <link rel="icon" type="image/x-icon" href="favicon.ico"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="dns-prefetch" href="https://fonts.googleapis.com"> - <link rel="preload" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" as="font" type="font/woff2" crossorigin> - <link rel="preload" href="fonts/vitamui-icon.woff&display=swap" as="font" type="font/woff2" crossorigin> - - + <link rel="preconnect" href="https://fonts.gstatic.com"> + <link rel="dns-prefetch" href="https://fonts.gstatic.com"> + <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet"> </head> <body> <vitamui-common-root> diff --git a/ui/ui-frontend/angular.json b/ui/ui-frontend/angular.json index 06de42a29fe90bf11bb738d73ffe9c30a310e910..7fd6d1462f45913d64e3fa6dd6dc61ef35dc424f 100644 --- a/ui/ui-frontend/angular.json +++ b/ui/ui-frontend/angular.json @@ -21,7 +21,7 @@ "projects/identity/src/favicon.ico", { "glob": "**/*", - "input": "projects/commons/src/assets/", + "input": "node_modules/ui-frontend-common/assets", "output": "/assets" } ], @@ -138,7 +138,7 @@ "projects/portal/src/favicon.ico", { "glob": "**/*", - "input": "projects/commons/src/assets/", + "input": "node_modules/ui-frontend-common/assets", "output": "/assets" } ], diff --git a/ui/ui-frontend/package-lock.json b/ui/ui-frontend/package-lock.json index 809511e201f672336907269cb15cf183162a1d17..912017b59e1b1fd6f17c744dbd3b2027d86e7227 100644 --- a/ui/ui-frontend/package-lock.json +++ b/ui/ui-frontend/package-lock.json @@ -11680,7 +11680,7 @@ "dev": true }, "ui-frontend-common": { - "version": "file:../ui-frontend-common/ui-frontend-common-1.0.2.tgz", + "version": "file:../ui-frontend-common/ui-frontend-common-1.0.3.tgz", "requires": { "@angular/animations": "8.2.14", "@angular/cdk": "^8.2.3", diff --git a/ui/ui-frontend/package.json b/ui/ui-frontend/package.json index 356181940923f468fbea7b416a4133ff132d834f..899650cdf55204b0cfa2ffd722cb2f0962293a4a 100644 --- a/ui/ui-frontend/package.json +++ b/ui/ui-frontend/package.json @@ -68,7 +68,7 @@ "popper.js": "^1.16.1", "rxjs": "^6.5.5", "tslib": "^1.13.0", - "ui-frontend-common": "file:../ui-frontend-common/ui-frontend-common-1.0.2.tgz", + "ui-frontend-common": "file:../ui-frontend-common/ui-frontend-common-1.0.3.tgz", "underscore": "^1.10.2", "utf-8-validate": "^5.0.2", "web-animations-js": "^2.3.2", diff --git a/ui/ui-frontend/projects/identity/src/app/app.component.ts b/ui/ui-frontend/projects/identity/src/app/app.component.ts index e9f70027b1e53707b7322b59b4648eaae719b2b3..20747b2174587ae5e9f1a6e3192726ec9ef14a0b 100644 --- a/ui/ui-frontend/projects/identity/src/app/app.component.ts +++ b/ui/ui-frontend/projects/identity/src/app/app.component.ts @@ -35,6 +35,8 @@ * knowledge of the CeCILL-C license and that you accept its terms. */ import { Component, OnInit } from '@angular/core'; +import { Title } from '@angular/platform-browser'; +import { StartupService } from 'ui-frontend-common'; @Component({ selector: 'app-root', @@ -46,7 +48,9 @@ export class AppComponent implements OnInit { title = 'Identity App'; subrogating = false; - constructor() {} + constructor(titleService: Title, startupService: StartupService) { + titleService.setTitle(startupService.getPlatformName()); + } ngOnInit() { } diff --git a/ui/ui-frontend/projects/identity/src/app/customer/customer.component.html b/ui/ui-frontend/projects/identity/src/app/customer/customer.component.html index c02945c9e08afd5385ae0a7f982e5d95f63d6a76..3b892bab71751db605058db81f6e1de41362fe77 100644 --- a/ui/ui-frontend/projects/identity/src/app/customer/customer.component.html +++ b/ui/ui-frontend/projects/identity/src/app/customer/customer.component.html @@ -14,7 +14,7 @@ <vitamui-common-navbar [appId]="appId" [hideTenantMenu]="true" [hideCustomerMenu]="true"></vitamui-common-navbar> <h2 i18n="Search a customer, owner or tenant@@CustomerSearchHeader"> - <img src="assets/fingerprint.svg">Rechercher <strong>un Client, un Propriétaire</strong> + <img src="assets/bg-fingerprint.svg">Rechercher <strong>un Client, un Propriétaire</strong> </h2> <div class="controls"> diff --git a/ui/ui-frontend/projects/identity/src/app/group/group.component.html b/ui/ui-frontend/projects/identity/src/app/group/group.component.html index df19be1f2d9bbb1a3added99d81baca5d7b4b8a0..de546e0f8fd5926a575fbc2c89f4d2fb838f9708 100644 --- a/ui/ui-frontend/projects/identity/src/app/group/group.component.html +++ b/ui/ui-frontend/projects/identity/src/app/group/group.component.html @@ -12,7 +12,7 @@ <div class="vitamui-container"> <vitamui-common-navbar [appId]="appId" [hideTenantMenu]="true" [hideCustomerMenu]="true"></vitamui-common-navbar> <h2 i18n="Search for Group of profiles@@profileGroupSearchTitle"> - <img src="assets/fingerprint.svg">Rechercher <strong>un Groupe de profils</strong> + <img src="assets/bg-fingerprint.svg">Rechercher <strong>un Groupe de profils</strong> </h2> <div class="controls"> diff --git a/ui/ui-frontend/projects/identity/src/app/hierarchy/hierarchy.component.html b/ui/ui-frontend/projects/identity/src/app/hierarchy/hierarchy.component.html index aef09e39f9e1591e463574aefb9c289d301a6ca2..b4768ed2819ff230ceb3b298b78563c7b9459f93 100644 --- a/ui/ui-frontend/projects/identity/src/app/hierarchy/hierarchy.component.html +++ b/ui/ui-frontend/projects/identity/src/app/hierarchy/hierarchy.component.html @@ -12,7 +12,7 @@ <div class="vitamui-container"> <vitamui-common-navbar [appId]="appId" [hideCustomerMenu]="true" (tenantSelect)="changeTenant($event)"></vitamui-common-navbar> <h2 i18n="Search for an admin profile@@profileSearchTitle"> - <img src="assets/fingerprint.svg">Paramétrer les <strong>Profils de droits d'accès</strong> + <img src="assets/bg-fingerprint.svg">Paramétrer les <strong>Profils de droits d'accès</strong> </h2> <div class="controls"> diff --git a/ui/ui-frontend/projects/identity/src/app/profile/profile.component.html b/ui/ui-frontend/projects/identity/src/app/profile/profile.component.html index ec1e7381f90b6ee3655a4031fa43c5200de0c0f7..064721f9342aa16bd3cf9ed0fe646dfe2920e647 100644 --- a/ui/ui-frontend/projects/identity/src/app/profile/profile.component.html +++ b/ui/ui-frontend/projects/identity/src/app/profile/profile.component.html @@ -12,7 +12,7 @@ <div class="vitamui-container"> <vitamui-common-navbar [appId]="appId" [hideTenantMenu]="true" [hideCustomerMenu]="true"></vitamui-common-navbar> <h2 i18n="Search for an admin profile@@profileSearchTitle"> - <img src="assets/fingerprint.svg">Rechercher <strong>un Profil Administrateur</strong> + <img src="assets/bg-fingerprint.svg">Rechercher <strong>un Profil Administrateur</strong> </h2> <div class="controls"> diff --git a/ui/ui-frontend/projects/identity/src/app/subrogation/subrogate-user/subrogate-user.component.html b/ui/ui-frontend/projects/identity/src/app/subrogation/subrogate-user/subrogate-user.component.html index 82eb70d908bd2dadb8ba16ba9e120c4d7776a1b6..40cfe7fe32ceeaabcbf354f47ee326bedd3cb582 100644 --- a/ui/ui-frontend/projects/identity/src/app/subrogation/subrogate-user/subrogate-user.component.html +++ b/ui/ui-frontend/projects/identity/src/app/subrogation/subrogate-user/subrogate-user.component.html @@ -3,7 +3,7 @@ <div class="vitamui-container"> <vitamui-common-navbar [appId]="appId" [hideTenantMenu]="true" [customers]="customers" (customerSelect)="changeCustomer($event)"></vitamui-common-navbar> <h2 i18n="Search for subrogate user@@SubrogationUserSearchTitle"> - <img src="assets/fingerprint.svg">Rechercher <strong>un Utilisateur permanent</strong> à subroger + <img src="assets/bg-fingerprint.svg">Rechercher <strong>un Utilisateur permanent</strong> à subroger </h2> <div class="controls"> diff --git a/ui/ui-frontend/projects/identity/src/app/user/user.component.html b/ui/ui-frontend/projects/identity/src/app/user/user.component.html index a9a194cc9eb8e9adc0b8731fe09dd37e1e742545..efb0a6a93a083a4c759f0055220d5685879fa28c 100644 --- a/ui/ui-frontend/projects/identity/src/app/user/user.component.html +++ b/ui/ui-frontend/projects/identity/src/app/user/user.component.html @@ -12,7 +12,7 @@ <div class="vitamui-container"> <vitamui-common-navbar [appId]="appId" [hideTenantMenu]="true" [hideCustomerMenu]="true"></vitamui-common-navbar> <h2 i18n="Search a user@@UserSearchHeader"> - <img src="assets/fingerprint.svg">Rechercher <strong>un utilisateur</strong> + <img src="assets/bg-fingerprint.svg">Rechercher <strong>un utilisateur</strong> </h2> <div class="controls"> diff --git a/ui/ui-frontend/projects/identity/src/assets/account-header-bg.jpg b/ui/ui-frontend/projects/identity/src/assets/account-header-bg.jpg deleted file mode 100644 index b05b7df58d080c7a37f8fb66cb9a1a9064a0eb84..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/identity/src/assets/account-header-bg.jpg and /dev/null differ diff --git a/ui/ui-frontend/projects/identity/src/assets/avatar.svg b/ui/ui-frontend/projects/identity/src/assets/avatar.svg deleted file mode 100644 index d00b09087fc218fafc6d299340eff82b19586f23..0000000000000000000000000000000000000000 --- a/ui/ui-frontend/projects/identity/src/assets/avatar.svg +++ /dev/null @@ -1,9 +0,0 @@ -<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"> -<rect width="40" height="40" rx="20" fill="white"/> -<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40"> -<rect width="40" height="40" rx="20" fill="white"/> -</mask> -<g mask="url(#mask0)"> -<path fill-rule="evenodd" clip-rule="evenodd" d="M20.5 26C23.525 26 26 23.3 26 20C26 16.7 23.525 14 20.5 14C17.475 14 15 16.7 15 20C15 23.3 17.475 26 20.5 26ZM20.5 29C16.6188 29 9 31.3833 9 36.3333V40H32V36.3333C32 31.3833 24.3813 29 20.5 29Z" fill="#485053"/> -</g> -</svg> diff --git a/ui/ui-frontend/projects/identity/src/assets/background.jpg b/ui/ui-frontend/projects/identity/src/assets/background.jpg deleted file mode 100644 index 33929ba5ad417f91f5d5461ac8775efd23192bde..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/identity/src/assets/background.jpg and /dev/null differ diff --git a/ui/ui-frontend/projects/identity/src/assets/bg-customer-select.svg b/ui/ui-frontend/projects/identity/src/assets/bg-customer-select.svg deleted file mode 100644 index 8f8f36fcebc97bbabc68a6ced356fde9430daba1..0000000000000000000000000000000000000000 --- a/ui/ui-frontend/projects/identity/src/assets/bg-customer-select.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg width="360" height="553" viewBox="0 0 360 553" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path fill-rule="evenodd" clip-rule="evenodd" d="M264 6C262.404 6.12308 261.347 6.51698 260.762 6.98474L19.0292 183.45C16.9158 184.927 15.9715 187.93 16.691 190.54C17.4104 193.15 19.7711 195.144 22.2667 195.07H62.5556V434.558H22.2667C19.254 434.558 16.5111 437.562 16.5111 440.86V484.977H10.7556C7.74287 484.977 5 487.98 5 491.279V541.698C5 544.997 7.74287 548 10.7556 548H517.244C520.257 548 523 544.997 523 541.698V491.279C523 487.98 520.257 484.977 517.244 484.977H511.489V440.86C511.489 437.562 508.746 434.558 505.733 434.558H465.444V195.07H505.733C508.229 195.144 510.59 193.15 511.309 190.54C512.028 187.93 511.084 184.927 508.971 183.45L267.238 6.98474C265.956 6 265.034 6.02464 264 6ZM264.001 19.7852L486.85 182.461H41.1514L264.001 19.7852ZM263.999 81.6304C248.172 81.6304 235.222 95.8106 235.222 113.142C235.222 130.473 248.172 144.654 263.999 144.654C279.827 144.654 292.777 130.473 292.777 113.142C292.777 95.8106 279.827 81.6304 263.999 81.6304ZM264 94.2339C273.6 94.2339 281.267 102.629 281.267 113.141C281.267 123.653 273.6 132.048 264 132.048C254.4 132.048 246.733 123.653 246.733 113.141C246.733 102.629 254.4 94.2339 264 94.2339ZM74.0674 195.071H108.601V434.559H74.0674V195.071ZM120.112 195.071H177.668V434.559H120.112V195.071ZM189.177 195.071H223.71V434.559H189.177V195.071ZM235.222 195.071H292.777V434.559H235.222V195.071ZM304.289 195.071H338.822V434.559H304.289V195.071ZM350.334 195.071H407.89V434.559H350.334V195.071ZM419.399 195.071H453.932V434.559H419.399V195.071ZM28.0225 447.163H499.978V484.977H28.0225V447.163ZM16.5112 497.582H511.489V535.395H16.5112V497.582Z" fill="#EFF0F2"/> -<path d="M264 6L264.119 1.00142L263.867 0.995412L263.616 1.0148L264 6ZM260.762 6.98474L263.711 11.0232L263.8 10.9579L263.887 10.8887L260.762 6.98474ZM19.0292 183.45L21.8936 187.548L21.9357 187.519L21.9772 187.488L19.0292 183.45ZM22.2667 195.07V190.07H22.1927L22.1187 190.072L22.2667 195.07ZM62.5556 195.07H67.5556V190.07H62.5556V195.07ZM62.5556 434.558V439.558H67.5556V434.558H62.5556ZM16.5111 484.977V489.977H21.5111V484.977H16.5111ZM511.489 484.977H506.489V489.977H511.489V484.977ZM465.444 434.558H460.444V439.558H465.444V434.558ZM465.444 195.07V190.07H460.444V195.07H465.444ZM505.733 195.07L505.881 190.072L505.807 190.07H505.733V195.07ZM508.971 183.45L506.023 187.488L506.064 187.519L506.106 187.548L508.971 183.45ZM267.238 6.98474L264.191 10.9494L264.24 10.9869L264.289 11.0232L267.238 6.98474ZM264.001 19.7852L266.949 15.7467L264.001 13.5947L261.053 15.7467L264.001 19.7852ZM486.85 182.461V187.461H502.18L489.798 178.422L486.85 182.461ZM41.1514 182.461L38.2034 178.422L25.8216 187.461H41.1514V182.461ZM74.0674 195.071V190.071H69.0674V195.071H74.0674ZM108.601 195.071H113.601V190.071H108.601V195.071ZM108.601 434.559V439.559H113.601V434.559H108.601ZM74.0674 434.559H69.0674V439.559H74.0674V434.559ZM120.112 195.071V190.071H115.112V195.071H120.112ZM177.668 195.071H182.668V190.071H177.668V195.071ZM177.668 434.559V439.559H182.668V434.559H177.668ZM120.112 434.559H115.112V439.559H120.112V434.559ZM189.177 195.071V190.071H184.177V195.071H189.177ZM223.71 195.071H228.71V190.071H223.71V195.071ZM223.71 434.559V439.559H228.71V434.559H223.71ZM189.177 434.559H184.177V439.559H189.177V434.559ZM235.222 195.071V190.071H230.222V195.071H235.222ZM292.777 195.071H297.777V190.071H292.777V195.071ZM292.777 434.559V439.559H297.777V434.559H292.777ZM235.222 434.559H230.222V439.559H235.222V434.559ZM304.289 195.071V190.071H299.289V195.071H304.289ZM338.822 195.071H343.822V190.071H338.822V195.071ZM338.822 434.559V439.559H343.822V434.559H338.822ZM304.289 434.559H299.289V439.559H304.289V434.559ZM350.334 195.071V190.071H345.334V195.071H350.334ZM407.89 195.071H412.89V190.071H407.89V195.071ZM407.89 434.559V439.559H412.89V434.559H407.89ZM350.334 434.559H345.334V439.559H350.334V434.559ZM419.399 195.071V190.071H414.399V195.071H419.399ZM453.932 195.071H458.932V190.071H453.932V195.071ZM453.932 434.559V439.559H458.932V434.559H453.932ZM419.399 434.559H414.399V439.559H419.399V434.559ZM28.0225 447.163V442.163H23.0225V447.163H28.0225ZM499.978 447.163H504.978V442.163H499.978V447.163ZM499.978 484.977V489.977H504.978V484.977H499.978ZM28.0225 484.977H23.0225V489.977H28.0225V484.977ZM16.5112 497.582V492.582H11.5112V497.582H16.5112ZM511.489 497.582H516.489V492.582H511.489V497.582ZM511.489 535.395V540.395H516.489V535.395H511.489ZM16.5112 535.395H11.5112V540.395H16.5112V535.395ZM263.616 1.0148C261.52 1.17639 259.325 1.73158 257.638 3.08082L263.887 10.8887C263.73 11.0142 263.609 11.0815 263.553 11.1097C263.496 11.1387 263.483 11.1388 263.53 11.1238C263.63 11.0919 263.899 11.0226 264.384 10.9852L263.616 1.0148ZM257.814 2.9463L16.0811 179.411L21.9772 187.488L263.711 11.0232L257.814 2.9463ZM16.1648 179.352C12.1106 182.185 10.6585 187.472 11.8708 191.869L21.5111 189.211C21.4256 188.901 21.4286 188.498 21.5526 188.117C21.6775 187.733 21.8531 187.576 21.8936 187.548L16.1648 179.352ZM11.8708 191.869C13.082 196.262 17.1901 200.222 22.4146 200.068L22.1187 190.072C22.2669 190.068 22.2017 190.124 21.9879 189.949C21.7746 189.773 21.5908 189.5 21.5111 189.211L11.8708 191.869ZM22.2667 200.07H62.5556V190.07H22.2667V200.07ZM57.5556 195.07V434.558H67.5556V195.07H57.5556ZM62.5556 429.558H22.2667V439.558H62.5556V429.558ZM22.2667 429.558C19.0794 429.558 16.3729 431.123 14.5671 433.1C12.7492 435.091 11.5111 437.842 11.5111 440.86H21.5111C21.5111 440.58 21.6445 440.18 21.9512 439.844C22.2699 439.495 22.4412 439.558 22.2667 439.558V429.558ZM11.5111 440.86V484.977H21.5111V440.86H11.5111ZM16.5111 479.977H10.7556V489.977H16.5111V479.977ZM10.7556 479.977C7.5683 479.977 4.86181 481.542 3.05596 483.519C1.23809 485.51 0 488.26 0 491.279H10C10 490.999 10.1333 490.598 10.4401 490.263C10.7588 489.914 10.9301 489.977 10.7556 489.977V479.977ZM0 491.279V541.698H10V491.279H0ZM0 541.698C0 544.717 1.23809 547.467 3.05596 549.458C4.86181 551.435 7.5683 553 10.7556 553V543C10.9301 543 10.7588 543.063 10.4401 542.714C10.1333 542.378 10 541.978 10 541.698H0ZM10.7556 553H517.244V543H10.7556V553ZM517.244 553C520.432 553 523.138 551.435 524.944 549.458C526.762 547.467 528 544.717 528 541.698H518C518 541.978 517.867 542.378 517.56 542.714C517.241 543.063 517.07 543 517.244 543V553ZM528 541.698V491.279H518V541.698H528ZM528 491.279C528 488.26 526.762 485.51 524.944 483.519C523.138 481.542 520.432 479.977 517.244 479.977V489.977C517.07 489.977 517.241 489.914 517.56 490.263C517.867 490.598 518 490.999 518 491.279H528ZM517.244 479.977H511.489V489.977H517.244V479.977ZM516.489 484.977V440.86H506.489V484.977H516.489ZM516.489 440.86C516.489 437.842 515.251 435.091 513.433 433.1C511.627 431.123 508.921 429.558 505.733 429.558V439.558C505.559 439.558 505.73 439.495 506.049 439.844C506.356 440.18 506.489 440.58 506.489 440.86H516.489ZM505.733 429.558H465.444V439.558H505.733V429.558ZM470.444 434.558V195.07H460.444V434.558H470.444ZM465.444 200.07H505.733V190.07H465.444V200.07ZM505.585 200.068C510.81 200.222 514.918 196.262 516.129 191.869L506.489 189.211C506.409 189.5 506.225 189.773 506.012 189.949C505.798 190.124 505.733 190.068 505.881 190.072L505.585 200.068ZM516.129 191.869C517.341 187.472 515.889 182.185 511.835 179.352L506.106 187.548C506.147 187.576 506.322 187.733 506.447 188.117C506.571 188.498 506.574 188.901 506.489 189.211L516.129 191.869ZM511.919 179.411L270.186 2.9463L264.289 11.0232L506.023 187.488L511.919 179.411ZM270.284 3.02004C269.124 2.12854 267.926 1.55493 266.651 1.26045C265.525 1.00065 264.457 1.00948 264.119 1.00142L263.881 10.9986C263.951 11.0003 264.026 11.0018 264.082 11.0031C264.143 11.0044 264.194 11.0056 264.241 11.007C264.336 11.0097 264.394 11.0124 264.434 11.015C264.509 11.0199 264.48 11.0222 264.401 11.0042C264.363 10.9952 264.319 10.983 264.274 10.9672C264.229 10.9515 264.191 10.9354 264.162 10.9214C264.102 10.8926 264.11 10.8875 264.191 10.9494L270.284 3.02004ZM261.053 23.8236L483.902 186.499L489.798 178.422L266.949 15.7467L261.053 23.8236ZM486.85 177.461H41.1514V187.461H486.85V177.461ZM44.0994 186.499L266.949 23.8236L261.053 15.7467L38.2034 178.422L44.0994 186.499ZM263.999 76.6304C244.993 76.6304 230.222 93.4859 230.222 113.142H240.222C240.222 98.1353 251.351 86.6304 263.999 86.6304V76.6304ZM230.222 113.142C230.222 132.798 244.993 149.654 263.999 149.654V139.654C251.351 139.654 240.222 128.149 240.222 113.142H230.222ZM263.999 149.654C283.006 149.654 297.777 132.798 297.777 113.142H287.777C287.777 128.149 276.648 139.654 263.999 139.654V149.654ZM297.777 113.142C297.777 93.4859 283.006 76.6304 263.999 76.6304V86.6304C276.648 86.6304 287.777 98.1353 287.777 113.142H297.777ZM264 99.2339C270.422 99.2339 276.267 104.953 276.267 113.141H286.267C286.267 100.304 276.779 89.2339 264 89.2339V99.2339ZM276.267 113.141C276.267 121.328 270.422 127.048 264 127.048V137.048C276.779 137.048 286.267 125.978 286.267 113.141H276.267ZM264 127.048C257.579 127.048 251.733 121.328 251.733 113.141H241.733C241.733 125.978 251.221 137.048 264 137.048V127.048ZM251.733 113.141C251.733 104.953 257.579 99.2339 264 99.2339V89.2339C251.221 89.2339 241.733 100.304 241.733 113.141H251.733ZM74.0674 200.071H108.601V190.071H74.0674V200.071ZM103.601 195.071V434.559H113.601V195.071H103.601ZM108.601 429.559H74.0674V439.559H108.601V429.559ZM79.0674 434.559V195.071H69.0674V434.559H79.0674ZM120.112 200.071H177.668V190.071H120.112V200.071ZM172.668 195.071V434.559H182.668V195.071H172.668ZM177.668 429.559H120.112V439.559H177.668V429.559ZM125.112 434.559V195.071H115.112V434.559H125.112ZM189.177 200.071H223.71V190.071H189.177V200.071ZM218.71 195.071V434.559H228.71V195.071H218.71ZM223.71 429.559H189.177V439.559H223.71V429.559ZM194.177 434.559V195.071H184.177V434.559H194.177ZM235.222 200.071H292.777V190.071H235.222V200.071ZM287.777 195.071V434.559H297.777V195.071H287.777ZM292.777 429.559H235.222V439.559H292.777V429.559ZM240.222 434.559V195.071H230.222V434.559H240.222ZM304.289 200.071H338.822V190.071H304.289V200.071ZM333.822 195.071V434.559H343.822V195.071H333.822ZM338.822 429.559H304.289V439.559H338.822V429.559ZM309.289 434.559V195.071H299.289V434.559H309.289ZM350.334 200.071H407.89V190.071H350.334V200.071ZM402.89 195.071V434.559H412.89V195.071H402.89ZM407.89 429.559H350.334V439.559H407.89V429.559ZM355.334 434.559V195.071H345.334V434.559H355.334ZM419.399 200.071H453.932V190.071H419.399V200.071ZM448.932 195.071V434.559H458.932V195.071H448.932ZM453.932 429.559H419.399V439.559H453.932V429.559ZM424.399 434.559V195.071H414.399V434.559H424.399ZM28.0225 452.163H499.978V442.163H28.0225V452.163ZM494.978 447.163V484.977H504.978V447.163H494.978ZM499.978 479.977H28.0225V489.977H499.978V479.977ZM33.0225 484.977V447.163H23.0225V484.977H33.0225ZM16.5112 502.582H511.489V492.582H16.5112V502.582ZM506.489 497.582V535.395H516.489V497.582H506.489ZM511.489 530.395H16.5112V540.395H511.489V530.395ZM21.5112 535.395V497.582H11.5112V535.395H21.5112Z" fill="#EFF0F2"/> -</svg> diff --git a/ui/ui-frontend/projects/identity/src/assets/bg-fingerprint.svg b/ui/ui-frontend/projects/identity/src/assets/bg-fingerprint.svg deleted file mode 100644 index e31017d8b9732084b32a74b87e2d0dc122a750fe..0000000000000000000000000000000000000000 --- a/ui/ui-frontend/projects/identity/src/assets/bg-fingerprint.svg +++ /dev/null @@ -1,30 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="61" height="62" viewBox="0 0 61 62"> - <style> - path { - fill: #e1e1e1; - } - </style> - <defs> - <path id="a" d="M.025.036h23.94V23.6H.026z"/> - <path id="c" d="M0 .017h38.95v46.915H0z"/> - </defs> - <g fill="none" fill-rule="evenodd" opacity=".3"> - <path fill="#485053" d="M44.094 58.437a30.308 30.308 0 0 0 1.66-4.749c.403-1.575 1.202-3.044 2.194-4.037l.1-.094c.613-.595 1.336-1.027 2.04-1.219a43.87 43.87 0 0 0 8.217-3.207 1.18 1.18 0 0 1 .88-.081c.294.088.536.282.68.547.238.436.156.964-.204 1.313-.082.08-.175.146-.277.198a46.028 46.028 0 0 1-8.604 3.365l-.106.036c-.28.097-.425.162-.686.37l-.424.369c-.555.538-1.302 1.814-1.569 2.972a32.569 32.569 0 0 1-1.782 5.104 1.13 1.13 0 0 1-.634.597c-.286.11-.6.105-.883-.014a1.107 1.107 0 0 1-.602-1.47z"/> - <g transform="translate(37 38)"> - <mask id="b" fill="#fff"> - <use xlink:href="#a"/> - </mask> - <path fill="#485053" d="M3.17 14.755c.657-2.607 1.958-4.982 3.665-6.688 1.34-1.323 2.82-2.206 4.45-2.672A36.889 36.889 0 0 0 22.172.24c.25-.173.554-.24.854-.186a1.135 1.135 0 0 1 .452 2.05A39.143 39.143 0 0 1 11.918 7.58c-1.294.376-2.387 1.033-3.44 2.068l-.448.405c-1.191 1.4-2.153 3.27-2.644 5.253a28.126 28.126 0 0 1-3.244 7.747 1.147 1.147 0 0 1-1.567.385 1.136 1.136 0 0 1-.397-1.542 25.84 25.84 0 0 0 2.993-7.14z" mask="url(#b)"/> - </g> - <path fill="#485053" d="M50.051 54.579l.023-.07a4.597 4.597 0 0 1 .335-.765 1.04 1.04 0 0 1 .603-.493 32.3 32.3 0 0 0 .552-.177l.068-.022c.269-.088.552-.064.8.07.25.132.433.358.518.635.12.39.021.81-.258 1.098a1.026 1.026 0 0 1-.4.257l-.207.074-.094.203c-.226.485-.77.725-1.267.558-.55-.185-.851-.799-.673-1.368zM31.01 59.01a1.13 1.13 0 0 1 .226-.838 20.406 20.406 0 0 0 3.641-7.533c.903-3.603 2.66-6.793 5.083-9.225 1.944-1.95 4.207-3.305 6.73-4.032a30.99 30.99 0 0 0 11.45-6.115c.233-.196.526-.289.828-.263.301.027.574.169.768.401a1.144 1.144 0 0 1-.14 1.602 33.232 33.232 0 0 1-12.278 6.557c-2.152.622-4.088 1.784-5.757 3.456-2.109 2.114-3.7 5.013-4.487 8.172a22.641 22.641 0 0 1-4.045 8.368 1.132 1.132 0 0 1-2.02-.55zM36.49 39.117c.143.002.295.002.462 0 .017 0 .027.005.036.016a.05.05 0 0 1 .012.028 17.656 17.656 0 0 0-2.31 2.813c-.006.01-.02.033-.056.024-.028-.006-.03-.021-.032-.035a17.642 17.642 0 0 0-.583-2.45.396.396 0 0 1 .062-.361.373.373 0 0 1 .338-.15c.688.068 1.385.107 2.07.115zM54.667 24.018c-2.183 2.276-4.728 4.038-7.564 5.237A21.98 21.98 0 0 1 38.5 31a21.98 21.98 0 0 1-8.604-1.745c-2.836-1.2-5.38-2.961-7.564-5.237a1.22 1.22 0 0 1 .001-1.672 1.102 1.102 0 0 1 1.603 0c3.89 4.054 9.063 6.287 14.565 6.29 5.503-.003 10.675-2.236 14.563-6.29a1.103 1.103 0 0 1 1.605 0c.43.449.442 1.172.035 1.635l-.036.037z"/> - <path fill="#485053" d="M48.278 33.16a29.162 29.162 0 0 1-10.566 1.838c-7.47-.084-14.495-2.952-19.782-8.075a6.274 6.274 0 0 1-.002-9.052c2.574-2.495 6.763-2.495 9.337 0 2.877 2.782 6.705 4.319 10.78 4.329 4.076-.01 7.902-1.548 10.779-4.33a1.15 1.15 0 0 1 .806-.324c.305 0 .59.116.806.325.433.42.444 1.096.033 1.53-3.342 3.24-7.74 5.007-12.423 5.01-4.686-.004-9.087-1.771-12.392-4.977-1.687-1.628-4.429-1.628-6.113 0a4.115 4.115 0 0 0 0 5.925c4.863 4.713 11.326 7.352 18.198 7.429a26.83 26.83 0 0 0 9.719-1.69 26.101 26.101 0 0 0 8.618-5.294 1.168 1.168 0 0 1 1.613.04c.422.43.414 1.122-.02 1.542a28.419 28.419 0 0 1-9.391 5.774z"/> - <g> - <mask id="d" fill="#fff"> - <use xlink:href="#c"/> - </mask> - <path fill="#485053" d="M14.096 1.684A22.438 22.438 0 0 1 22.613.017 22.474 22.474 0 0 1 38.62 6.686c.213.213.33.496.33.799 0 .302-.116.586-.328.8-.438.442-1.15.442-1.588 0C29.081.279 16.15.278 8.206 8.283c-3.846 3.875-5.963 9.034-5.965 14.53.003 5.497 2.12 10.656 5.962 14.527L15.807 45a1.139 1.139 0 0 1 0 1.6 1.118 1.118 0 0 1-1.588 0L6.615 38.94c-8.82-8.892-8.82-23.361 0-32.254a22.44 22.44 0 0 1 7.481-5z" mask="url(#d)"/> - </g> - <path fill="#485053" d="M16.943 30.799l6.787 6.842a12.002 12.002 0 0 1 3.498 8.503c-.002 3.225-1.243 6.252-3.495 8.521a1.125 1.125 0 0 1-1.598.003 1.148 1.148 0 0 1 0-1.61 9.8 9.8 0 0 0 2.836-6.912 9.778 9.778 0 0 0-2.837-6.896l-7.645-7.707c-4.652-4.694-4.652-12.332 0-17.026 4.656-4.689 12.232-4.69 16.887 0a9.627 9.627 0 0 0 13.697.001 1.124 1.124 0 0 1 1.597 0c.44.444.44 1.166 0 1.61a11.831 11.831 0 0 1-8.45 3.525 11.818 11.818 0 0 1-8.44-3.527 9.593 9.593 0 0 0-6.848-2.853 9.593 9.593 0 0 0-6.848 2.853 9.749 9.749 0 0 0-2.83 6.903 9.744 9.744 0 0 0 2.832 6.904l.857.866z"/> - <path fill="#485053" d="M19.126 46.946a4.342 4.342 0 0 0-1.27-3.06l-7.6-7.645-.13-.13c-6.835-6.88-6.835-18.074 0-24.953 6.84-6.876 17.968-6.877 24.807-.003a4.295 4.295 0 0 0 3.043 1.278 4.286 4.286 0 0 0 3.075-1.274 1.138 1.138 0 0 1 1.615 0 1.154 1.154 0 0 1 0 1.623 6.562 6.562 0 0 1-4.688 1.947 6.528 6.528 0 0 1-4.659-1.95A15.12 15.12 0 0 0 22.53 8.292a15.133 15.133 0 0 0-10.79 4.488c-2.876 2.894-4.46 6.748-4.461 10.853.002 4.106 1.587 7.961 4.461 10.854l7.73 7.775a6.606 6.606 0 0 1 1.94 4.682 6.643 6.643 0 0 1-1.931 4.714l-.006.007a1.137 1.137 0 0 1-1.614 0 1.153 1.153 0 0 1 0-1.624l.4-.403-.026-.026c.582-.759.889-1.67.893-2.666M26.32 57.046l.39-.408-.008-.007a15.319 15.319 0 0 0 2.817-4.548 15.162 15.162 0 0 0 1.064-5.536v-.091a15.145 15.145 0 0 0-1.635-6.78 1.118 1.118 0 0 1-.057-.89c.105-.295.322-.532.612-.668.599-.282 1.324-.042 1.616.536A17.403 17.403 0 0 1 33 46.437l-.003.017.003.068.001.021c-.012 4.497-1.752 8.787-4.903 12.08a1.238 1.238 0 0 1-1.707.069 1.13 1.13 0 0 1-.07-1.645"/> - </g> -</svg> diff --git a/ui/ui-frontend/projects/identity/src/assets/bg-tenant-select.svg b/ui/ui-frontend/projects/identity/src/assets/bg-tenant-select.svg deleted file mode 100644 index f3b367524feaa8cc9105d3b771923e0da83e43a8..0000000000000000000000000000000000000000 --- a/ui/ui-frontend/projects/identity/src/assets/bg-tenant-select.svg +++ /dev/null @@ -1,3 +0,0 @@ -<svg width="454" height="583" viewBox="0 0 454 583" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path fill-rule="evenodd" clip-rule="evenodd" d="M59.6977 0C26.8741 0 0 26.6467 0 59.1925V457.397C0 489.943 26.8741 516.589 59.6977 516.589H66.7946V569.573C66.7425 573.117 68.1253 576.532 70.6301 579.068C73.161 581.577 76.579 583 80.1537 583C83.7284 583 87.1464 581.577 89.6773 579.068C92.1821 576.532 93.5649 573.117 93.5127 569.573V516.589H427.486V569.573C427.434 573.117 428.817 576.532 431.321 579.068C433.852 581.577 437.27 583 440.845 583C444.42 583 447.838 581.577 450.368 579.068C452.873 576.532 454.256 573.117 454.204 569.573V516.589H461.301C494.124 516.589 520.999 489.943 520.999 457.397V249.673C521.051 246.128 519.668 242.713 517.163 240.178C514.632 237.669 511.214 236.246 507.639 236.246C504.065 236.246 500.647 237.669 498.116 240.178C495.611 242.713 494.228 246.128 494.28 249.673V457.397C494.28 475.739 479.799 490.098 461.301 490.098H59.698C41.1992 490.098 26.7181 475.739 26.7181 457.397V59.1925C26.7181 40.8503 41.1992 26.4918 59.698 26.4918H461.301C479.799 26.4918 494.28 40.8503 494.28 59.1925C494.228 62.7369 495.611 66.1519 498.116 68.6872C500.647 71.1967 504.065 72.6196 507.639 72.6196C511.214 72.6196 514.632 71.1967 517.163 68.6872C519.668 66.1519 521.051 62.7369 520.999 59.1925C520.999 26.6467 494.124 0 461.301 0H59.6977ZM260.495 112.589C179.506 112.589 113.547 177.991 113.547 258.294C113.547 338.597 179.506 403.999 260.495 403.999C336.995 403.999 400.062 345.686 406.815 271.54H454.198C457.772 271.591 461.217 270.22 463.774 267.737C466.304 265.227 467.739 261.838 467.739 258.294C467.739 254.749 466.304 251.36 463.774 248.851C461.217 246.367 457.772 244.996 454.198 245.048H406.815C400.057 170.904 336.995 112.589 260.495 112.589V112.589ZM260.495 139.081C322.515 139.081 373.264 185.339 379.89 245.048H360.687C360.269 245.022 359.852 245.022 359.434 245.048C355.886 245.204 352.547 246.756 350.172 249.369C347.772 251.956 346.545 255.397 346.702 258.915C346.858 262.433 348.424 265.745 351.059 268.099C353.668 270.479 357.139 271.695 360.687 271.54H379.89C373.263 331.25 322.515 377.507 260.495 377.507C193.935 377.507 140.265 324.29 140.265 258.294C140.265 192.298 193.935 139.081 260.495 139.081L260.495 139.081Z" fill="#EFF0F2"/> -</svg> diff --git a/ui/ui-frontend/projects/identity/src/assets/check.svg b/ui/ui-frontend/projects/identity/src/assets/check.svg deleted file mode 100644 index eb3fc3b7674b1ca71b0e60d49a5502ed46b79630..0000000000000000000000000000000000000000 --- a/ui/ui-frontend/projects/identity/src/assets/check.svg +++ /dev/null @@ -1,3 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="100" height="68" viewBox="0 0 100 68"> - <path fill="#2FBDA7" fill-rule="evenodd" d="M95.65.021c-.883.098-1.71.49-2.342 1.113L34.086 58.001 6.549 33.976a3.947 3.947 0 0 0-5.58.381 3.961 3.961 0 0 0 .4 5.594l30.25 26.374a3.94 3.94 0 0 0 5.302-.124l61.811-59.34a3.952 3.952 0 0 0 .915-4.532A3.94 3.94 0 0 0 95.65.02z"/> -</svg> diff --git a/ui/ui-frontend/projects/identity/src/assets/fingerprint.svg b/ui/ui-frontend/projects/identity/src/assets/fingerprint.svg deleted file mode 100644 index 5de3cd49af9d506c0791413ec490e5d586dc175b..0000000000000000000000000000000000000000 --- a/ui/ui-frontend/projects/identity/src/assets/fingerprint.svg +++ /dev/null @@ -1,25 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="61" height="62" viewBox="0 0 61 62"> - <defs> - <path id="a" d="M.025.036h23.94V23.6H.026z"/> - <path id="c" d="M0 .017h38.95v46.915H0z"/> - </defs> - <g fill="none" fill-rule="evenodd" opacity=".3"> - <path fill="#485053" d="M44.094 58.437a30.308 30.308 0 0 0 1.66-4.749c.403-1.575 1.202-3.044 2.194-4.037l.1-.094c.613-.595 1.336-1.027 2.04-1.219a43.87 43.87 0 0 0 8.217-3.207 1.18 1.18 0 0 1 .88-.081c.294.088.536.282.68.547.238.436.156.964-.204 1.313-.082.08-.175.146-.277.198a46.028 46.028 0 0 1-8.604 3.365l-.106.036c-.28.097-.425.162-.686.37l-.424.369c-.555.538-1.302 1.814-1.569 2.972a32.569 32.569 0 0 1-1.782 5.104 1.13 1.13 0 0 1-.634.597c-.286.11-.6.105-.883-.014a1.107 1.107 0 0 1-.602-1.47z"/> - <g transform="translate(37 38)"> - <mask id="b" fill="#fff"> - <use xlink:href="#a"/> - </mask> - <path fill="#485053" d="M3.17 14.755c.657-2.607 1.958-4.982 3.665-6.688 1.34-1.323 2.82-2.206 4.45-2.672A36.889 36.889 0 0 0 22.172.24c.25-.173.554-.24.854-.186a1.135 1.135 0 0 1 .452 2.05A39.143 39.143 0 0 1 11.918 7.58c-1.294.376-2.387 1.033-3.44 2.068l-.448.405c-1.191 1.4-2.153 3.27-2.644 5.253a28.126 28.126 0 0 1-3.244 7.747 1.147 1.147 0 0 1-1.567.385 1.136 1.136 0 0 1-.397-1.542 25.84 25.84 0 0 0 2.993-7.14z" mask="url(#b)"/> - </g> - <path fill="#485053" d="M50.051 54.579l.023-.07a4.597 4.597 0 0 1 .335-.765 1.04 1.04 0 0 1 .603-.493 32.3 32.3 0 0 0 .552-.177l.068-.022c.269-.088.552-.064.8.07.25.132.433.358.518.635.12.39.021.81-.258 1.098a1.026 1.026 0 0 1-.4.257l-.207.074-.094.203c-.226.485-.77.725-1.267.558-.55-.185-.851-.799-.673-1.368zM31.01 59.01a1.13 1.13 0 0 1 .226-.838 20.406 20.406 0 0 0 3.641-7.533c.903-3.603 2.66-6.793 5.083-9.225 1.944-1.95 4.207-3.305 6.73-4.032a30.99 30.99 0 0 0 11.45-6.115c.233-.196.526-.289.828-.263.301.027.574.169.768.401a1.144 1.144 0 0 1-.14 1.602 33.232 33.232 0 0 1-12.278 6.557c-2.152.622-4.088 1.784-5.757 3.456-2.109 2.114-3.7 5.013-4.487 8.172a22.641 22.641 0 0 1-4.045 8.368 1.132 1.132 0 0 1-2.02-.55zM36.49 39.117c.143.002.295.002.462 0 .017 0 .027.005.036.016a.05.05 0 0 1 .012.028 17.656 17.656 0 0 0-2.31 2.813c-.006.01-.02.033-.056.024-.028-.006-.03-.021-.032-.035a17.642 17.642 0 0 0-.583-2.45.396.396 0 0 1 .062-.361.373.373 0 0 1 .338-.15c.688.068 1.385.107 2.07.115zM54.667 24.018c-2.183 2.276-4.728 4.038-7.564 5.237A21.98 21.98 0 0 1 38.5 31a21.98 21.98 0 0 1-8.604-1.745c-2.836-1.2-5.38-2.961-7.564-5.237a1.22 1.22 0 0 1 .001-1.672 1.102 1.102 0 0 1 1.603 0c3.89 4.054 9.063 6.287 14.565 6.29 5.503-.003 10.675-2.236 14.563-6.29a1.103 1.103 0 0 1 1.605 0c.43.449.442 1.172.035 1.635l-.036.037z"/> - <path fill="#485053" d="M48.278 33.16a29.162 29.162 0 0 1-10.566 1.838c-7.47-.084-14.495-2.952-19.782-8.075a6.274 6.274 0 0 1-.002-9.052c2.574-2.495 6.763-2.495 9.337 0 2.877 2.782 6.705 4.319 10.78 4.329 4.076-.01 7.902-1.548 10.779-4.33a1.15 1.15 0 0 1 .806-.324c.305 0 .59.116.806.325.433.42.444 1.096.033 1.53-3.342 3.24-7.74 5.007-12.423 5.01-4.686-.004-9.087-1.771-12.392-4.977-1.687-1.628-4.429-1.628-6.113 0a4.115 4.115 0 0 0 0 5.925c4.863 4.713 11.326 7.352 18.198 7.429a26.83 26.83 0 0 0 9.719-1.69 26.101 26.101 0 0 0 8.618-5.294 1.168 1.168 0 0 1 1.613.04c.422.43.414 1.122-.02 1.542a28.419 28.419 0 0 1-9.391 5.774z"/> - <g> - <mask id="d" fill="#fff"> - <use xlink:href="#c"/> - </mask> - <path fill="#485053" d="M14.096 1.684A22.438 22.438 0 0 1 22.613.017 22.474 22.474 0 0 1 38.62 6.686c.213.213.33.496.33.799 0 .302-.116.586-.328.8-.438.442-1.15.442-1.588 0C29.081.279 16.15.278 8.206 8.283c-3.846 3.875-5.963 9.034-5.965 14.53.003 5.497 2.12 10.656 5.962 14.527L15.807 45a1.139 1.139 0 0 1 0 1.6 1.118 1.118 0 0 1-1.588 0L6.615 38.94c-8.82-8.892-8.82-23.361 0-32.254a22.44 22.44 0 0 1 7.481-5z" mask="url(#d)"/> - </g> - <path fill="#485053" d="M16.943 30.799l6.787 6.842a12.002 12.002 0 0 1 3.498 8.503c-.002 3.225-1.243 6.252-3.495 8.521a1.125 1.125 0 0 1-1.598.003 1.148 1.148 0 0 1 0-1.61 9.8 9.8 0 0 0 2.836-6.912 9.778 9.778 0 0 0-2.837-6.896l-7.645-7.707c-4.652-4.694-4.652-12.332 0-17.026 4.656-4.689 12.232-4.69 16.887 0a9.627 9.627 0 0 0 13.697.001 1.124 1.124 0 0 1 1.597 0c.44.444.44 1.166 0 1.61a11.831 11.831 0 0 1-8.45 3.525 11.818 11.818 0 0 1-8.44-3.527 9.593 9.593 0 0 0-6.848-2.853 9.593 9.593 0 0 0-6.848 2.853 9.749 9.749 0 0 0-2.83 6.903 9.744 9.744 0 0 0 2.832 6.904l.857.866z"/> - <path fill="#485053" d="M19.126 46.946a4.342 4.342 0 0 0-1.27-3.06l-7.6-7.645-.13-.13c-6.835-6.88-6.835-18.074 0-24.953 6.84-6.876 17.968-6.877 24.807-.003a4.295 4.295 0 0 0 3.043 1.278 4.286 4.286 0 0 0 3.075-1.274 1.138 1.138 0 0 1 1.615 0 1.154 1.154 0 0 1 0 1.623 6.562 6.562 0 0 1-4.688 1.947 6.528 6.528 0 0 1-4.659-1.95A15.12 15.12 0 0 0 22.53 8.292a15.133 15.133 0 0 0-10.79 4.488c-2.876 2.894-4.46 6.748-4.461 10.853.002 4.106 1.587 7.961 4.461 10.854l7.73 7.775a6.606 6.606 0 0 1 1.94 4.682 6.643 6.643 0 0 1-1.931 4.714l-.006.007a1.137 1.137 0 0 1-1.614 0 1.153 1.153 0 0 1 0-1.624l.4-.403-.026-.026c.582-.759.889-1.67.893-2.666M26.32 57.046l.39-.408-.008-.007a15.319 15.319 0 0 0 2.817-4.548 15.162 15.162 0 0 0 1.064-5.536v-.091a15.145 15.145 0 0 0-1.635-6.78 1.118 1.118 0 0 1-.057-.89c.105-.295.322-.532.612-.668.599-.282 1.324-.042 1.616.536A17.403 17.403 0 0 1 33 46.437l-.003.017.003.068.001.021c-.012 4.497-1.752 8.787-4.903 12.08a1.238 1.238 0 0 1-1.707.069 1.13 1.13 0 0 1-.07-1.645"/> - </g> -</svg> diff --git a/ui/ui-frontend/projects/identity/src/assets/logo.png b/ui/ui-frontend/projects/identity/src/assets/logo.png deleted file mode 100644 index 5fccc526e489c1e1b41fa6a4a6c5eb24a8012435..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/identity/src/assets/logo.png and /dev/null differ diff --git a/ui/ui-frontend/projects/identity/src/assets/my-account.svg b/ui/ui-frontend/projects/identity/src/assets/my-account.svg deleted file mode 100644 index 8d6e4b8d1541f9cf3721abe889471d76892d955c..0000000000000000000000000000000000000000 --- a/ui/ui-frontend/projects/identity/src/assets/my-account.svg +++ /dev/null @@ -1,9 +0,0 @@ -<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"> -<rect width="40" height="40" rx="20" fill="white"/> -<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="40" height="40"> -<rect width="40" height="40" rx="20" fill="white"/> -</mask> -<g mask="url(#mask0)"> -<path fill-rule="evenodd" clip-rule="evenodd" d="M20.5 26C23.525 26 26 23.3 26 20C26 16.7 23.525 14 20.5 14C17.475 14 15 16.7 15 20C15 23.3 17.475 26 20.5 26ZM20.5 29C16.6188 29 9 31.3833 9 36.3333V40H32V36.3333C32 31.3833 24.3813 29 20.5 29Z" fill="#B7B7B7"/> -</g> -</svg> diff --git a/ui/ui-frontend/projects/identity/src/assets/navbar-logo-vitamui.png b/ui/ui-frontend/projects/identity/src/assets/navbar-logo-vitamui.png deleted file mode 100644 index d1c46c709a98c3d0aa252b07713dc3a5cef24286..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/identity/src/assets/navbar-logo-vitamui.png and /dev/null differ diff --git a/ui/ui-frontend/projects/identity/src/assets/portal-header-bg.jpg b/ui/ui-frontend/projects/identity/src/assets/portal-header-bg.jpg deleted file mode 100644 index 55fb1796b88b841883519aa2be07d2b7a7229c4c..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/identity/src/assets/portal-header-bg.jpg and /dev/null differ diff --git a/ui/ui-frontend/projects/identity/src/assets/test_logo.png b/ui/ui-frontend/projects/identity/src/assets/test_logo.png deleted file mode 100644 index d09df3639f59db3f38cf512c952ac74886be8812..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/identity/src/assets/test_logo.png and /dev/null differ diff --git a/ui/ui-frontend/projects/identity/src/assets/vitam-logo.png b/ui/ui-frontend/projects/identity/src/assets/vitam-logo.png deleted file mode 100644 index 6ab2874ba89e9ce4cf9a5b6bfcc901c442bf693b..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/identity/src/assets/vitam-logo.png and /dev/null differ diff --git a/ui/ui-frontend/projects/identity/src/assets/vitamui-logo-large.png b/ui/ui-frontend/projects/identity/src/assets/vitamui-logo-large.png deleted file mode 100644 index ae1e31c5eacc2de20bf59e557d09c109d7eab4ff..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/identity/src/assets/vitamui-logo-large.png and /dev/null differ diff --git a/ui/ui-frontend/projects/identity/src/assets/vitamui-logo-navbar.png b/ui/ui-frontend/projects/identity/src/assets/vitamui-logo-navbar.png deleted file mode 100644 index ae1e31c5eacc2de20bf59e557d09c109d7eab4ff..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/identity/src/assets/vitamui-logo-navbar.png and /dev/null differ diff --git a/ui/ui-frontend/projects/identity/src/assets/vitamui-logo.png b/ui/ui-frontend/projects/identity/src/assets/vitamui-logo.png deleted file mode 100644 index 5fccc526e489c1e1b41fa6a4a6c5eb24a8012435..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/identity/src/assets/vitamui-logo.png and /dev/null differ diff --git a/ui/ui-frontend/projects/portal/src/app/portal/portal.component.ts b/ui/ui-frontend/projects/portal/src/app/portal/portal.component.ts index d513c7244182039e20c9f69e7749d646804f51bc..4bc424f957c23145942220fc540275fd151a06db 100644 --- a/ui/ui-frontend/projects/portal/src/app/portal/portal.component.ts +++ b/ui/ui-frontend/projects/portal/src/app/portal/portal.component.ts @@ -37,7 +37,7 @@ import { Component, OnInit } from '@angular/core'; import { Title } from '@angular/platform-browser'; -import { Application, ApplicationService, AuthService, User } from 'ui-frontend-common'; +import { Application, ApplicationService, AuthService, StartupService, User } from 'ui-frontend-common'; @Component({ selector: 'app-portal', @@ -51,8 +51,10 @@ export class PortalComponent implements OnInit { applications: Application[] = []; - constructor(titleService: Title, public authService: AuthService, private applicationService: ApplicationService) { - titleService.setTitle('Vitam-UI'); + constructor(titleService: Title, public authService: AuthService, + private applicationService: ApplicationService, startupService: StartupService + ) { + titleService.setTitle(startupService.getPlatformName()); if (this.authService.user) { this.currentUser = this.authService.user; } diff --git a/ui/ui-frontend/projects/portal/src/assets/account-header-bg.jpg b/ui/ui-frontend/projects/portal/src/assets/account-header-bg.jpg deleted file mode 100644 index b05b7df58d080c7a37f8fb66cb9a1a9064a0eb84..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/portal/src/assets/account-header-bg.jpg and /dev/null differ diff --git a/ui/ui-frontend/projects/portal/src/assets/background.jpg b/ui/ui-frontend/projects/portal/src/assets/background.jpg deleted file mode 100644 index 33929ba5ad417f91f5d5461ac8775efd23192bde..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/portal/src/assets/background.jpg and /dev/null differ diff --git a/ui/ui-frontend/projects/portal/src/assets/bg-customer-select.svg b/ui/ui-frontend/projects/portal/src/assets/bg-customer-select.svg deleted file mode 100644 index 8f8f36fcebc97bbabc68a6ced356fde9430daba1..0000000000000000000000000000000000000000 --- a/ui/ui-frontend/projects/portal/src/assets/bg-customer-select.svg +++ /dev/null @@ -1,4 +0,0 @@ -<svg width="360" height="553" viewBox="0 0 360 553" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path fill-rule="evenodd" clip-rule="evenodd" d="M264 6C262.404 6.12308 261.347 6.51698 260.762 6.98474L19.0292 183.45C16.9158 184.927 15.9715 187.93 16.691 190.54C17.4104 193.15 19.7711 195.144 22.2667 195.07H62.5556V434.558H22.2667C19.254 434.558 16.5111 437.562 16.5111 440.86V484.977H10.7556C7.74287 484.977 5 487.98 5 491.279V541.698C5 544.997 7.74287 548 10.7556 548H517.244C520.257 548 523 544.997 523 541.698V491.279C523 487.98 520.257 484.977 517.244 484.977H511.489V440.86C511.489 437.562 508.746 434.558 505.733 434.558H465.444V195.07H505.733C508.229 195.144 510.59 193.15 511.309 190.54C512.028 187.93 511.084 184.927 508.971 183.45L267.238 6.98474C265.956 6 265.034 6.02464 264 6ZM264.001 19.7852L486.85 182.461H41.1514L264.001 19.7852ZM263.999 81.6304C248.172 81.6304 235.222 95.8106 235.222 113.142C235.222 130.473 248.172 144.654 263.999 144.654C279.827 144.654 292.777 130.473 292.777 113.142C292.777 95.8106 279.827 81.6304 263.999 81.6304ZM264 94.2339C273.6 94.2339 281.267 102.629 281.267 113.141C281.267 123.653 273.6 132.048 264 132.048C254.4 132.048 246.733 123.653 246.733 113.141C246.733 102.629 254.4 94.2339 264 94.2339ZM74.0674 195.071H108.601V434.559H74.0674V195.071ZM120.112 195.071H177.668V434.559H120.112V195.071ZM189.177 195.071H223.71V434.559H189.177V195.071ZM235.222 195.071H292.777V434.559H235.222V195.071ZM304.289 195.071H338.822V434.559H304.289V195.071ZM350.334 195.071H407.89V434.559H350.334V195.071ZM419.399 195.071H453.932V434.559H419.399V195.071ZM28.0225 447.163H499.978V484.977H28.0225V447.163ZM16.5112 497.582H511.489V535.395H16.5112V497.582Z" fill="#EFF0F2"/> -<path d="M264 6L264.119 1.00142L263.867 0.995412L263.616 1.0148L264 6ZM260.762 6.98474L263.711 11.0232L263.8 10.9579L263.887 10.8887L260.762 6.98474ZM19.0292 183.45L21.8936 187.548L21.9357 187.519L21.9772 187.488L19.0292 183.45ZM22.2667 195.07V190.07H22.1927L22.1187 190.072L22.2667 195.07ZM62.5556 195.07H67.5556V190.07H62.5556V195.07ZM62.5556 434.558V439.558H67.5556V434.558H62.5556ZM16.5111 484.977V489.977H21.5111V484.977H16.5111ZM511.489 484.977H506.489V489.977H511.489V484.977ZM465.444 434.558H460.444V439.558H465.444V434.558ZM465.444 195.07V190.07H460.444V195.07H465.444ZM505.733 195.07L505.881 190.072L505.807 190.07H505.733V195.07ZM508.971 183.45L506.023 187.488L506.064 187.519L506.106 187.548L508.971 183.45ZM267.238 6.98474L264.191 10.9494L264.24 10.9869L264.289 11.0232L267.238 6.98474ZM264.001 19.7852L266.949 15.7467L264.001 13.5947L261.053 15.7467L264.001 19.7852ZM486.85 182.461V187.461H502.18L489.798 178.422L486.85 182.461ZM41.1514 182.461L38.2034 178.422L25.8216 187.461H41.1514V182.461ZM74.0674 195.071V190.071H69.0674V195.071H74.0674ZM108.601 195.071H113.601V190.071H108.601V195.071ZM108.601 434.559V439.559H113.601V434.559H108.601ZM74.0674 434.559H69.0674V439.559H74.0674V434.559ZM120.112 195.071V190.071H115.112V195.071H120.112ZM177.668 195.071H182.668V190.071H177.668V195.071ZM177.668 434.559V439.559H182.668V434.559H177.668ZM120.112 434.559H115.112V439.559H120.112V434.559ZM189.177 195.071V190.071H184.177V195.071H189.177ZM223.71 195.071H228.71V190.071H223.71V195.071ZM223.71 434.559V439.559H228.71V434.559H223.71ZM189.177 434.559H184.177V439.559H189.177V434.559ZM235.222 195.071V190.071H230.222V195.071H235.222ZM292.777 195.071H297.777V190.071H292.777V195.071ZM292.777 434.559V439.559H297.777V434.559H292.777ZM235.222 434.559H230.222V439.559H235.222V434.559ZM304.289 195.071V190.071H299.289V195.071H304.289ZM338.822 195.071H343.822V190.071H338.822V195.071ZM338.822 434.559V439.559H343.822V434.559H338.822ZM304.289 434.559H299.289V439.559H304.289V434.559ZM350.334 195.071V190.071H345.334V195.071H350.334ZM407.89 195.071H412.89V190.071H407.89V195.071ZM407.89 434.559V439.559H412.89V434.559H407.89ZM350.334 434.559H345.334V439.559H350.334V434.559ZM419.399 195.071V190.071H414.399V195.071H419.399ZM453.932 195.071H458.932V190.071H453.932V195.071ZM453.932 434.559V439.559H458.932V434.559H453.932ZM419.399 434.559H414.399V439.559H419.399V434.559ZM28.0225 447.163V442.163H23.0225V447.163H28.0225ZM499.978 447.163H504.978V442.163H499.978V447.163ZM499.978 484.977V489.977H504.978V484.977H499.978ZM28.0225 484.977H23.0225V489.977H28.0225V484.977ZM16.5112 497.582V492.582H11.5112V497.582H16.5112ZM511.489 497.582H516.489V492.582H511.489V497.582ZM511.489 535.395V540.395H516.489V535.395H511.489ZM16.5112 535.395H11.5112V540.395H16.5112V535.395ZM263.616 1.0148C261.52 1.17639 259.325 1.73158 257.638 3.08082L263.887 10.8887C263.73 11.0142 263.609 11.0815 263.553 11.1097C263.496 11.1387 263.483 11.1388 263.53 11.1238C263.63 11.0919 263.899 11.0226 264.384 10.9852L263.616 1.0148ZM257.814 2.9463L16.0811 179.411L21.9772 187.488L263.711 11.0232L257.814 2.9463ZM16.1648 179.352C12.1106 182.185 10.6585 187.472 11.8708 191.869L21.5111 189.211C21.4256 188.901 21.4286 188.498 21.5526 188.117C21.6775 187.733 21.8531 187.576 21.8936 187.548L16.1648 179.352ZM11.8708 191.869C13.082 196.262 17.1901 200.222 22.4146 200.068L22.1187 190.072C22.2669 190.068 22.2017 190.124 21.9879 189.949C21.7746 189.773 21.5908 189.5 21.5111 189.211L11.8708 191.869ZM22.2667 200.07H62.5556V190.07H22.2667V200.07ZM57.5556 195.07V434.558H67.5556V195.07H57.5556ZM62.5556 429.558H22.2667V439.558H62.5556V429.558ZM22.2667 429.558C19.0794 429.558 16.3729 431.123 14.5671 433.1C12.7492 435.091 11.5111 437.842 11.5111 440.86H21.5111C21.5111 440.58 21.6445 440.18 21.9512 439.844C22.2699 439.495 22.4412 439.558 22.2667 439.558V429.558ZM11.5111 440.86V484.977H21.5111V440.86H11.5111ZM16.5111 479.977H10.7556V489.977H16.5111V479.977ZM10.7556 479.977C7.5683 479.977 4.86181 481.542 3.05596 483.519C1.23809 485.51 0 488.26 0 491.279H10C10 490.999 10.1333 490.598 10.4401 490.263C10.7588 489.914 10.9301 489.977 10.7556 489.977V479.977ZM0 491.279V541.698H10V491.279H0ZM0 541.698C0 544.717 1.23809 547.467 3.05596 549.458C4.86181 551.435 7.5683 553 10.7556 553V543C10.9301 543 10.7588 543.063 10.4401 542.714C10.1333 542.378 10 541.978 10 541.698H0ZM10.7556 553H517.244V543H10.7556V553ZM517.244 553C520.432 553 523.138 551.435 524.944 549.458C526.762 547.467 528 544.717 528 541.698H518C518 541.978 517.867 542.378 517.56 542.714C517.241 543.063 517.07 543 517.244 543V553ZM528 541.698V491.279H518V541.698H528ZM528 491.279C528 488.26 526.762 485.51 524.944 483.519C523.138 481.542 520.432 479.977 517.244 479.977V489.977C517.07 489.977 517.241 489.914 517.56 490.263C517.867 490.598 518 490.999 518 491.279H528ZM517.244 479.977H511.489V489.977H517.244V479.977ZM516.489 484.977V440.86H506.489V484.977H516.489ZM516.489 440.86C516.489 437.842 515.251 435.091 513.433 433.1C511.627 431.123 508.921 429.558 505.733 429.558V439.558C505.559 439.558 505.73 439.495 506.049 439.844C506.356 440.18 506.489 440.58 506.489 440.86H516.489ZM505.733 429.558H465.444V439.558H505.733V429.558ZM470.444 434.558V195.07H460.444V434.558H470.444ZM465.444 200.07H505.733V190.07H465.444V200.07ZM505.585 200.068C510.81 200.222 514.918 196.262 516.129 191.869L506.489 189.211C506.409 189.5 506.225 189.773 506.012 189.949C505.798 190.124 505.733 190.068 505.881 190.072L505.585 200.068ZM516.129 191.869C517.341 187.472 515.889 182.185 511.835 179.352L506.106 187.548C506.147 187.576 506.322 187.733 506.447 188.117C506.571 188.498 506.574 188.901 506.489 189.211L516.129 191.869ZM511.919 179.411L270.186 2.9463L264.289 11.0232L506.023 187.488L511.919 179.411ZM270.284 3.02004C269.124 2.12854 267.926 1.55493 266.651 1.26045C265.525 1.00065 264.457 1.00948 264.119 1.00142L263.881 10.9986C263.951 11.0003 264.026 11.0018 264.082 11.0031C264.143 11.0044 264.194 11.0056 264.241 11.007C264.336 11.0097 264.394 11.0124 264.434 11.015C264.509 11.0199 264.48 11.0222 264.401 11.0042C264.363 10.9952 264.319 10.983 264.274 10.9672C264.229 10.9515 264.191 10.9354 264.162 10.9214C264.102 10.8926 264.11 10.8875 264.191 10.9494L270.284 3.02004ZM261.053 23.8236L483.902 186.499L489.798 178.422L266.949 15.7467L261.053 23.8236ZM486.85 177.461H41.1514V187.461H486.85V177.461ZM44.0994 186.499L266.949 23.8236L261.053 15.7467L38.2034 178.422L44.0994 186.499ZM263.999 76.6304C244.993 76.6304 230.222 93.4859 230.222 113.142H240.222C240.222 98.1353 251.351 86.6304 263.999 86.6304V76.6304ZM230.222 113.142C230.222 132.798 244.993 149.654 263.999 149.654V139.654C251.351 139.654 240.222 128.149 240.222 113.142H230.222ZM263.999 149.654C283.006 149.654 297.777 132.798 297.777 113.142H287.777C287.777 128.149 276.648 139.654 263.999 139.654V149.654ZM297.777 113.142C297.777 93.4859 283.006 76.6304 263.999 76.6304V86.6304C276.648 86.6304 287.777 98.1353 287.777 113.142H297.777ZM264 99.2339C270.422 99.2339 276.267 104.953 276.267 113.141H286.267C286.267 100.304 276.779 89.2339 264 89.2339V99.2339ZM276.267 113.141C276.267 121.328 270.422 127.048 264 127.048V137.048C276.779 137.048 286.267 125.978 286.267 113.141H276.267ZM264 127.048C257.579 127.048 251.733 121.328 251.733 113.141H241.733C241.733 125.978 251.221 137.048 264 137.048V127.048ZM251.733 113.141C251.733 104.953 257.579 99.2339 264 99.2339V89.2339C251.221 89.2339 241.733 100.304 241.733 113.141H251.733ZM74.0674 200.071H108.601V190.071H74.0674V200.071ZM103.601 195.071V434.559H113.601V195.071H103.601ZM108.601 429.559H74.0674V439.559H108.601V429.559ZM79.0674 434.559V195.071H69.0674V434.559H79.0674ZM120.112 200.071H177.668V190.071H120.112V200.071ZM172.668 195.071V434.559H182.668V195.071H172.668ZM177.668 429.559H120.112V439.559H177.668V429.559ZM125.112 434.559V195.071H115.112V434.559H125.112ZM189.177 200.071H223.71V190.071H189.177V200.071ZM218.71 195.071V434.559H228.71V195.071H218.71ZM223.71 429.559H189.177V439.559H223.71V429.559ZM194.177 434.559V195.071H184.177V434.559H194.177ZM235.222 200.071H292.777V190.071H235.222V200.071ZM287.777 195.071V434.559H297.777V195.071H287.777ZM292.777 429.559H235.222V439.559H292.777V429.559ZM240.222 434.559V195.071H230.222V434.559H240.222ZM304.289 200.071H338.822V190.071H304.289V200.071ZM333.822 195.071V434.559H343.822V195.071H333.822ZM338.822 429.559H304.289V439.559H338.822V429.559ZM309.289 434.559V195.071H299.289V434.559H309.289ZM350.334 200.071H407.89V190.071H350.334V200.071ZM402.89 195.071V434.559H412.89V195.071H402.89ZM407.89 429.559H350.334V439.559H407.89V429.559ZM355.334 434.559V195.071H345.334V434.559H355.334ZM419.399 200.071H453.932V190.071H419.399V200.071ZM448.932 195.071V434.559H458.932V195.071H448.932ZM453.932 429.559H419.399V439.559H453.932V429.559ZM424.399 434.559V195.071H414.399V434.559H424.399ZM28.0225 452.163H499.978V442.163H28.0225V452.163ZM494.978 447.163V484.977H504.978V447.163H494.978ZM499.978 479.977H28.0225V489.977H499.978V479.977ZM33.0225 484.977V447.163H23.0225V484.977H33.0225ZM16.5112 502.582H511.489V492.582H16.5112V502.582ZM506.489 497.582V535.395H516.489V497.582H506.489ZM511.489 530.395H16.5112V540.395H511.489V530.395ZM21.5112 535.395V497.582H11.5112V535.395H21.5112Z" fill="#EFF0F2"/> -</svg> diff --git a/ui/ui-frontend/projects/portal/src/assets/bg-fingerprint.svg b/ui/ui-frontend/projects/portal/src/assets/bg-fingerprint.svg deleted file mode 100644 index e31017d8b9732084b32a74b87e2d0dc122a750fe..0000000000000000000000000000000000000000 --- a/ui/ui-frontend/projects/portal/src/assets/bg-fingerprint.svg +++ /dev/null @@ -1,30 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="61" height="62" viewBox="0 0 61 62"> - <style> - path { - fill: #e1e1e1; - } - </style> - <defs> - <path id="a" d="M.025.036h23.94V23.6H.026z"/> - <path id="c" d="M0 .017h38.95v46.915H0z"/> - </defs> - <g fill="none" fill-rule="evenodd" opacity=".3"> - <path fill="#485053" d="M44.094 58.437a30.308 30.308 0 0 0 1.66-4.749c.403-1.575 1.202-3.044 2.194-4.037l.1-.094c.613-.595 1.336-1.027 2.04-1.219a43.87 43.87 0 0 0 8.217-3.207 1.18 1.18 0 0 1 .88-.081c.294.088.536.282.68.547.238.436.156.964-.204 1.313-.082.08-.175.146-.277.198a46.028 46.028 0 0 1-8.604 3.365l-.106.036c-.28.097-.425.162-.686.37l-.424.369c-.555.538-1.302 1.814-1.569 2.972a32.569 32.569 0 0 1-1.782 5.104 1.13 1.13 0 0 1-.634.597c-.286.11-.6.105-.883-.014a1.107 1.107 0 0 1-.602-1.47z"/> - <g transform="translate(37 38)"> - <mask id="b" fill="#fff"> - <use xlink:href="#a"/> - </mask> - <path fill="#485053" d="M3.17 14.755c.657-2.607 1.958-4.982 3.665-6.688 1.34-1.323 2.82-2.206 4.45-2.672A36.889 36.889 0 0 0 22.172.24c.25-.173.554-.24.854-.186a1.135 1.135 0 0 1 .452 2.05A39.143 39.143 0 0 1 11.918 7.58c-1.294.376-2.387 1.033-3.44 2.068l-.448.405c-1.191 1.4-2.153 3.27-2.644 5.253a28.126 28.126 0 0 1-3.244 7.747 1.147 1.147 0 0 1-1.567.385 1.136 1.136 0 0 1-.397-1.542 25.84 25.84 0 0 0 2.993-7.14z" mask="url(#b)"/> - </g> - <path fill="#485053" d="M50.051 54.579l.023-.07a4.597 4.597 0 0 1 .335-.765 1.04 1.04 0 0 1 .603-.493 32.3 32.3 0 0 0 .552-.177l.068-.022c.269-.088.552-.064.8.07.25.132.433.358.518.635.12.39.021.81-.258 1.098a1.026 1.026 0 0 1-.4.257l-.207.074-.094.203c-.226.485-.77.725-1.267.558-.55-.185-.851-.799-.673-1.368zM31.01 59.01a1.13 1.13 0 0 1 .226-.838 20.406 20.406 0 0 0 3.641-7.533c.903-3.603 2.66-6.793 5.083-9.225 1.944-1.95 4.207-3.305 6.73-4.032a30.99 30.99 0 0 0 11.45-6.115c.233-.196.526-.289.828-.263.301.027.574.169.768.401a1.144 1.144 0 0 1-.14 1.602 33.232 33.232 0 0 1-12.278 6.557c-2.152.622-4.088 1.784-5.757 3.456-2.109 2.114-3.7 5.013-4.487 8.172a22.641 22.641 0 0 1-4.045 8.368 1.132 1.132 0 0 1-2.02-.55zM36.49 39.117c.143.002.295.002.462 0 .017 0 .027.005.036.016a.05.05 0 0 1 .012.028 17.656 17.656 0 0 0-2.31 2.813c-.006.01-.02.033-.056.024-.028-.006-.03-.021-.032-.035a17.642 17.642 0 0 0-.583-2.45.396.396 0 0 1 .062-.361.373.373 0 0 1 .338-.15c.688.068 1.385.107 2.07.115zM54.667 24.018c-2.183 2.276-4.728 4.038-7.564 5.237A21.98 21.98 0 0 1 38.5 31a21.98 21.98 0 0 1-8.604-1.745c-2.836-1.2-5.38-2.961-7.564-5.237a1.22 1.22 0 0 1 .001-1.672 1.102 1.102 0 0 1 1.603 0c3.89 4.054 9.063 6.287 14.565 6.29 5.503-.003 10.675-2.236 14.563-6.29a1.103 1.103 0 0 1 1.605 0c.43.449.442 1.172.035 1.635l-.036.037z"/> - <path fill="#485053" d="M48.278 33.16a29.162 29.162 0 0 1-10.566 1.838c-7.47-.084-14.495-2.952-19.782-8.075a6.274 6.274 0 0 1-.002-9.052c2.574-2.495 6.763-2.495 9.337 0 2.877 2.782 6.705 4.319 10.78 4.329 4.076-.01 7.902-1.548 10.779-4.33a1.15 1.15 0 0 1 .806-.324c.305 0 .59.116.806.325.433.42.444 1.096.033 1.53-3.342 3.24-7.74 5.007-12.423 5.01-4.686-.004-9.087-1.771-12.392-4.977-1.687-1.628-4.429-1.628-6.113 0a4.115 4.115 0 0 0 0 5.925c4.863 4.713 11.326 7.352 18.198 7.429a26.83 26.83 0 0 0 9.719-1.69 26.101 26.101 0 0 0 8.618-5.294 1.168 1.168 0 0 1 1.613.04c.422.43.414 1.122-.02 1.542a28.419 28.419 0 0 1-9.391 5.774z"/> - <g> - <mask id="d" fill="#fff"> - <use xlink:href="#c"/> - </mask> - <path fill="#485053" d="M14.096 1.684A22.438 22.438 0 0 1 22.613.017 22.474 22.474 0 0 1 38.62 6.686c.213.213.33.496.33.799 0 .302-.116.586-.328.8-.438.442-1.15.442-1.588 0C29.081.279 16.15.278 8.206 8.283c-3.846 3.875-5.963 9.034-5.965 14.53.003 5.497 2.12 10.656 5.962 14.527L15.807 45a1.139 1.139 0 0 1 0 1.6 1.118 1.118 0 0 1-1.588 0L6.615 38.94c-8.82-8.892-8.82-23.361 0-32.254a22.44 22.44 0 0 1 7.481-5z" mask="url(#d)"/> - </g> - <path fill="#485053" d="M16.943 30.799l6.787 6.842a12.002 12.002 0 0 1 3.498 8.503c-.002 3.225-1.243 6.252-3.495 8.521a1.125 1.125 0 0 1-1.598.003 1.148 1.148 0 0 1 0-1.61 9.8 9.8 0 0 0 2.836-6.912 9.778 9.778 0 0 0-2.837-6.896l-7.645-7.707c-4.652-4.694-4.652-12.332 0-17.026 4.656-4.689 12.232-4.69 16.887 0a9.627 9.627 0 0 0 13.697.001 1.124 1.124 0 0 1 1.597 0c.44.444.44 1.166 0 1.61a11.831 11.831 0 0 1-8.45 3.525 11.818 11.818 0 0 1-8.44-3.527 9.593 9.593 0 0 0-6.848-2.853 9.593 9.593 0 0 0-6.848 2.853 9.749 9.749 0 0 0-2.83 6.903 9.744 9.744 0 0 0 2.832 6.904l.857.866z"/> - <path fill="#485053" d="M19.126 46.946a4.342 4.342 0 0 0-1.27-3.06l-7.6-7.645-.13-.13c-6.835-6.88-6.835-18.074 0-24.953 6.84-6.876 17.968-6.877 24.807-.003a4.295 4.295 0 0 0 3.043 1.278 4.286 4.286 0 0 0 3.075-1.274 1.138 1.138 0 0 1 1.615 0 1.154 1.154 0 0 1 0 1.623 6.562 6.562 0 0 1-4.688 1.947 6.528 6.528 0 0 1-4.659-1.95A15.12 15.12 0 0 0 22.53 8.292a15.133 15.133 0 0 0-10.79 4.488c-2.876 2.894-4.46 6.748-4.461 10.853.002 4.106 1.587 7.961 4.461 10.854l7.73 7.775a6.606 6.606 0 0 1 1.94 4.682 6.643 6.643 0 0 1-1.931 4.714l-.006.007a1.137 1.137 0 0 1-1.614 0 1.153 1.153 0 0 1 0-1.624l.4-.403-.026-.026c.582-.759.889-1.67.893-2.666M26.32 57.046l.39-.408-.008-.007a15.319 15.319 0 0 0 2.817-4.548 15.162 15.162 0 0 0 1.064-5.536v-.091a15.145 15.145 0 0 0-1.635-6.78 1.118 1.118 0 0 1-.057-.89c.105-.295.322-.532.612-.668.599-.282 1.324-.042 1.616.536A17.403 17.403 0 0 1 33 46.437l-.003.017.003.068.001.021c-.012 4.497-1.752 8.787-4.903 12.08a1.238 1.238 0 0 1-1.707.069 1.13 1.13 0 0 1-.07-1.645"/> - </g> -</svg> diff --git a/ui/ui-frontend/projects/portal/src/assets/bg-tenant-select.svg b/ui/ui-frontend/projects/portal/src/assets/bg-tenant-select.svg deleted file mode 100644 index f3b367524feaa8cc9105d3b771923e0da83e43a8..0000000000000000000000000000000000000000 --- a/ui/ui-frontend/projects/portal/src/assets/bg-tenant-select.svg +++ /dev/null @@ -1,3 +0,0 @@ -<svg width="454" height="583" viewBox="0 0 454 583" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path fill-rule="evenodd" clip-rule="evenodd" d="M59.6977 0C26.8741 0 0 26.6467 0 59.1925V457.397C0 489.943 26.8741 516.589 59.6977 516.589H66.7946V569.573C66.7425 573.117 68.1253 576.532 70.6301 579.068C73.161 581.577 76.579 583 80.1537 583C83.7284 583 87.1464 581.577 89.6773 579.068C92.1821 576.532 93.5649 573.117 93.5127 569.573V516.589H427.486V569.573C427.434 573.117 428.817 576.532 431.321 579.068C433.852 581.577 437.27 583 440.845 583C444.42 583 447.838 581.577 450.368 579.068C452.873 576.532 454.256 573.117 454.204 569.573V516.589H461.301C494.124 516.589 520.999 489.943 520.999 457.397V249.673C521.051 246.128 519.668 242.713 517.163 240.178C514.632 237.669 511.214 236.246 507.639 236.246C504.065 236.246 500.647 237.669 498.116 240.178C495.611 242.713 494.228 246.128 494.28 249.673V457.397C494.28 475.739 479.799 490.098 461.301 490.098H59.698C41.1992 490.098 26.7181 475.739 26.7181 457.397V59.1925C26.7181 40.8503 41.1992 26.4918 59.698 26.4918H461.301C479.799 26.4918 494.28 40.8503 494.28 59.1925C494.228 62.7369 495.611 66.1519 498.116 68.6872C500.647 71.1967 504.065 72.6196 507.639 72.6196C511.214 72.6196 514.632 71.1967 517.163 68.6872C519.668 66.1519 521.051 62.7369 520.999 59.1925C520.999 26.6467 494.124 0 461.301 0H59.6977ZM260.495 112.589C179.506 112.589 113.547 177.991 113.547 258.294C113.547 338.597 179.506 403.999 260.495 403.999C336.995 403.999 400.062 345.686 406.815 271.54H454.198C457.772 271.591 461.217 270.22 463.774 267.737C466.304 265.227 467.739 261.838 467.739 258.294C467.739 254.749 466.304 251.36 463.774 248.851C461.217 246.367 457.772 244.996 454.198 245.048H406.815C400.057 170.904 336.995 112.589 260.495 112.589V112.589ZM260.495 139.081C322.515 139.081 373.264 185.339 379.89 245.048H360.687C360.269 245.022 359.852 245.022 359.434 245.048C355.886 245.204 352.547 246.756 350.172 249.369C347.772 251.956 346.545 255.397 346.702 258.915C346.858 262.433 348.424 265.745 351.059 268.099C353.668 270.479 357.139 271.695 360.687 271.54H379.89C373.263 331.25 322.515 377.507 260.495 377.507C193.935 377.507 140.265 324.29 140.265 258.294C140.265 192.298 193.935 139.081 260.495 139.081L260.495 139.081Z" fill="#EFF0F2"/> -</svg> diff --git a/ui/ui-frontend/projects/portal/src/assets/fingerprint.svg b/ui/ui-frontend/projects/portal/src/assets/fingerprint.svg deleted file mode 100644 index 5de3cd49af9d506c0791413ec490e5d586dc175b..0000000000000000000000000000000000000000 --- a/ui/ui-frontend/projects/portal/src/assets/fingerprint.svg +++ /dev/null @@ -1,25 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="61" height="62" viewBox="0 0 61 62"> - <defs> - <path id="a" d="M.025.036h23.94V23.6H.026z"/> - <path id="c" d="M0 .017h38.95v46.915H0z"/> - </defs> - <g fill="none" fill-rule="evenodd" opacity=".3"> - <path fill="#485053" d="M44.094 58.437a30.308 30.308 0 0 0 1.66-4.749c.403-1.575 1.202-3.044 2.194-4.037l.1-.094c.613-.595 1.336-1.027 2.04-1.219a43.87 43.87 0 0 0 8.217-3.207 1.18 1.18 0 0 1 .88-.081c.294.088.536.282.68.547.238.436.156.964-.204 1.313-.082.08-.175.146-.277.198a46.028 46.028 0 0 1-8.604 3.365l-.106.036c-.28.097-.425.162-.686.37l-.424.369c-.555.538-1.302 1.814-1.569 2.972a32.569 32.569 0 0 1-1.782 5.104 1.13 1.13 0 0 1-.634.597c-.286.11-.6.105-.883-.014a1.107 1.107 0 0 1-.602-1.47z"/> - <g transform="translate(37 38)"> - <mask id="b" fill="#fff"> - <use xlink:href="#a"/> - </mask> - <path fill="#485053" d="M3.17 14.755c.657-2.607 1.958-4.982 3.665-6.688 1.34-1.323 2.82-2.206 4.45-2.672A36.889 36.889 0 0 0 22.172.24c.25-.173.554-.24.854-.186a1.135 1.135 0 0 1 .452 2.05A39.143 39.143 0 0 1 11.918 7.58c-1.294.376-2.387 1.033-3.44 2.068l-.448.405c-1.191 1.4-2.153 3.27-2.644 5.253a28.126 28.126 0 0 1-3.244 7.747 1.147 1.147 0 0 1-1.567.385 1.136 1.136 0 0 1-.397-1.542 25.84 25.84 0 0 0 2.993-7.14z" mask="url(#b)"/> - </g> - <path fill="#485053" d="M50.051 54.579l.023-.07a4.597 4.597 0 0 1 .335-.765 1.04 1.04 0 0 1 .603-.493 32.3 32.3 0 0 0 .552-.177l.068-.022c.269-.088.552-.064.8.07.25.132.433.358.518.635.12.39.021.81-.258 1.098a1.026 1.026 0 0 1-.4.257l-.207.074-.094.203c-.226.485-.77.725-1.267.558-.55-.185-.851-.799-.673-1.368zM31.01 59.01a1.13 1.13 0 0 1 .226-.838 20.406 20.406 0 0 0 3.641-7.533c.903-3.603 2.66-6.793 5.083-9.225 1.944-1.95 4.207-3.305 6.73-4.032a30.99 30.99 0 0 0 11.45-6.115c.233-.196.526-.289.828-.263.301.027.574.169.768.401a1.144 1.144 0 0 1-.14 1.602 33.232 33.232 0 0 1-12.278 6.557c-2.152.622-4.088 1.784-5.757 3.456-2.109 2.114-3.7 5.013-4.487 8.172a22.641 22.641 0 0 1-4.045 8.368 1.132 1.132 0 0 1-2.02-.55zM36.49 39.117c.143.002.295.002.462 0 .017 0 .027.005.036.016a.05.05 0 0 1 .012.028 17.656 17.656 0 0 0-2.31 2.813c-.006.01-.02.033-.056.024-.028-.006-.03-.021-.032-.035a17.642 17.642 0 0 0-.583-2.45.396.396 0 0 1 .062-.361.373.373 0 0 1 .338-.15c.688.068 1.385.107 2.07.115zM54.667 24.018c-2.183 2.276-4.728 4.038-7.564 5.237A21.98 21.98 0 0 1 38.5 31a21.98 21.98 0 0 1-8.604-1.745c-2.836-1.2-5.38-2.961-7.564-5.237a1.22 1.22 0 0 1 .001-1.672 1.102 1.102 0 0 1 1.603 0c3.89 4.054 9.063 6.287 14.565 6.29 5.503-.003 10.675-2.236 14.563-6.29a1.103 1.103 0 0 1 1.605 0c.43.449.442 1.172.035 1.635l-.036.037z"/> - <path fill="#485053" d="M48.278 33.16a29.162 29.162 0 0 1-10.566 1.838c-7.47-.084-14.495-2.952-19.782-8.075a6.274 6.274 0 0 1-.002-9.052c2.574-2.495 6.763-2.495 9.337 0 2.877 2.782 6.705 4.319 10.78 4.329 4.076-.01 7.902-1.548 10.779-4.33a1.15 1.15 0 0 1 .806-.324c.305 0 .59.116.806.325.433.42.444 1.096.033 1.53-3.342 3.24-7.74 5.007-12.423 5.01-4.686-.004-9.087-1.771-12.392-4.977-1.687-1.628-4.429-1.628-6.113 0a4.115 4.115 0 0 0 0 5.925c4.863 4.713 11.326 7.352 18.198 7.429a26.83 26.83 0 0 0 9.719-1.69 26.101 26.101 0 0 0 8.618-5.294 1.168 1.168 0 0 1 1.613.04c.422.43.414 1.122-.02 1.542a28.419 28.419 0 0 1-9.391 5.774z"/> - <g> - <mask id="d" fill="#fff"> - <use xlink:href="#c"/> - </mask> - <path fill="#485053" d="M14.096 1.684A22.438 22.438 0 0 1 22.613.017 22.474 22.474 0 0 1 38.62 6.686c.213.213.33.496.33.799 0 .302-.116.586-.328.8-.438.442-1.15.442-1.588 0C29.081.279 16.15.278 8.206 8.283c-3.846 3.875-5.963 9.034-5.965 14.53.003 5.497 2.12 10.656 5.962 14.527L15.807 45a1.139 1.139 0 0 1 0 1.6 1.118 1.118 0 0 1-1.588 0L6.615 38.94c-8.82-8.892-8.82-23.361 0-32.254a22.44 22.44 0 0 1 7.481-5z" mask="url(#d)"/> - </g> - <path fill="#485053" d="M16.943 30.799l6.787 6.842a12.002 12.002 0 0 1 3.498 8.503c-.002 3.225-1.243 6.252-3.495 8.521a1.125 1.125 0 0 1-1.598.003 1.148 1.148 0 0 1 0-1.61 9.8 9.8 0 0 0 2.836-6.912 9.778 9.778 0 0 0-2.837-6.896l-7.645-7.707c-4.652-4.694-4.652-12.332 0-17.026 4.656-4.689 12.232-4.69 16.887 0a9.627 9.627 0 0 0 13.697.001 1.124 1.124 0 0 1 1.597 0c.44.444.44 1.166 0 1.61a11.831 11.831 0 0 1-8.45 3.525 11.818 11.818 0 0 1-8.44-3.527 9.593 9.593 0 0 0-6.848-2.853 9.593 9.593 0 0 0-6.848 2.853 9.749 9.749 0 0 0-2.83 6.903 9.744 9.744 0 0 0 2.832 6.904l.857.866z"/> - <path fill="#485053" d="M19.126 46.946a4.342 4.342 0 0 0-1.27-3.06l-7.6-7.645-.13-.13c-6.835-6.88-6.835-18.074 0-24.953 6.84-6.876 17.968-6.877 24.807-.003a4.295 4.295 0 0 0 3.043 1.278 4.286 4.286 0 0 0 3.075-1.274 1.138 1.138 0 0 1 1.615 0 1.154 1.154 0 0 1 0 1.623 6.562 6.562 0 0 1-4.688 1.947 6.528 6.528 0 0 1-4.659-1.95A15.12 15.12 0 0 0 22.53 8.292a15.133 15.133 0 0 0-10.79 4.488c-2.876 2.894-4.46 6.748-4.461 10.853.002 4.106 1.587 7.961 4.461 10.854l7.73 7.775a6.606 6.606 0 0 1 1.94 4.682 6.643 6.643 0 0 1-1.931 4.714l-.006.007a1.137 1.137 0 0 1-1.614 0 1.153 1.153 0 0 1 0-1.624l.4-.403-.026-.026c.582-.759.889-1.67.893-2.666M26.32 57.046l.39-.408-.008-.007a15.319 15.319 0 0 0 2.817-4.548 15.162 15.162 0 0 0 1.064-5.536v-.091a15.145 15.145 0 0 0-1.635-6.78 1.118 1.118 0 0 1-.057-.89c.105-.295.322-.532.612-.668.599-.282 1.324-.042 1.616.536A17.403 17.403 0 0 1 33 46.437l-.003.017.003.068.001.021c-.012 4.497-1.752 8.787-4.903 12.08a1.238 1.238 0 0 1-1.707.069 1.13 1.13 0 0 1-.07-1.645"/> - </g> -</svg> diff --git a/ui/ui-frontend/projects/portal/src/assets/logo.png b/ui/ui-frontend/projects/portal/src/assets/logo.png deleted file mode 100644 index 5fccc526e489c1e1b41fa6a4a6c5eb24a8012435..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/portal/src/assets/logo.png and /dev/null differ diff --git a/ui/ui-frontend/projects/portal/src/assets/navbar-logo-vitamui.png b/ui/ui-frontend/projects/portal/src/assets/navbar-logo-vitamui.png deleted file mode 100644 index ab01fe80be993279bfc655be676b39f0e9a1a4ba..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/portal/src/assets/navbar-logo-vitamui.png and /dev/null differ diff --git a/ui/ui-frontend/projects/portal/src/assets/test_logo.png b/ui/ui-frontend/projects/portal/src/assets/test_logo.png deleted file mode 100644 index d09df3639f59db3f38cf512c952ac74886be8812..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/portal/src/assets/test_logo.png and /dev/null differ diff --git a/ui/ui-frontend/projects/portal/src/assets/vitam-logo.png b/ui/ui-frontend/projects/portal/src/assets/vitam-logo.png deleted file mode 100644 index 6ab2874ba89e9ce4cf9a5b6bfcc901c442bf693b..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/portal/src/assets/vitam-logo.png and /dev/null differ diff --git a/ui/ui-frontend/projects/portal/src/assets/vitamui-logo-large.png b/ui/ui-frontend/projects/portal/src/assets/vitamui-logo-large.png deleted file mode 100644 index ae1e31c5eacc2de20bf59e557d09c109d7eab4ff..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/portal/src/assets/vitamui-logo-large.png and /dev/null differ diff --git a/ui/ui-frontend/projects/portal/src/assets/vitamui-logo-navbar.png b/ui/ui-frontend/projects/portal/src/assets/vitamui-logo-navbar.png deleted file mode 100644 index ae1e31c5eacc2de20bf59e557d09c109d7eab4ff..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/portal/src/assets/vitamui-logo-navbar.png and /dev/null differ diff --git a/ui/ui-frontend/projects/portal/src/assets/vitamui-logo.png b/ui/ui-frontend/projects/portal/src/assets/vitamui-logo.png deleted file mode 100644 index 5fccc526e489c1e1b41fa6a4a6c5eb24a8012435..0000000000000000000000000000000000000000 Binary files a/ui/ui-frontend/projects/portal/src/assets/vitamui-logo.png and /dev/null differ diff --git a/ui/ui-identity/src/main/config/logo.png b/ui/ui-identity/src/main/config/logo.png index 5fccc526e489c1e1b41fa6a4a6c5eb24a8012435..d1c46c709a98c3d0aa252b07713dc3a5cef24286 100644 Binary files a/ui/ui-identity/src/main/config/logo.png and b/ui/ui-identity/src/main/config/logo.png differ diff --git a/ui/ui-identity/src/main/config/ui-identity-application-dev.yml b/ui/ui-identity/src/main/config/ui-identity-application-dev.yml index 955841f3de12aba9001d0432e2c5208a0136f854..a2cb7ab07e5d1645f3ff8428e7c47b26fe5c30a8 100644 --- a/ui/ui-identity/src/main/config/ui-identity-application-dev.yml +++ b/ui/ui-identity/src/main/config/ui-identity-application-dev.yml @@ -11,6 +11,7 @@ spring: ui-identity: #theme-logo: /path/to/logo.png + platform-name: VITAM-UI theme-colors: vitamui-primary: "#ff4a54" vitamui-secondary: "#241f63" diff --git a/ui/ui-identity/src/main/config/ui-identity-application-recette.yml b/ui/ui-identity/src/main/config/ui-identity-application-recette.yml index 99c76e193bea97a18df89f0af072d66cdf75587a..98fe3b099b8f6378213fd0939516a7789139a0bd 100644 --- a/ui/ui-identity/src/main/config/ui-identity-application-recette.yml +++ b/ui/ui-identity/src/main/config/ui-identity-application-recette.yml @@ -11,6 +11,7 @@ spring: ui-identity: #theme-logo: /path/to/logo.png + platform-name: VITAM-UI theme-colors: vitamui-primary: "#ff4a54" vitamui-secondary: "#241f63" diff --git a/ui/ui-portal/src/main/config/logo.png b/ui/ui-portal/src/main/config/logo.png index 5fccc526e489c1e1b41fa6a4a6c5eb24a8012435..d1c46c709a98c3d0aa252b07713dc3a5cef24286 100644 Binary files a/ui/ui-portal/src/main/config/logo.png and b/ui/ui-portal/src/main/config/logo.png differ diff --git a/ui/ui-portal/src/main/config/ui-portal-application-dev.yml b/ui/ui-portal/src/main/config/ui-portal-application-dev.yml index 84858774c504994100f5dcf6c329aac313e2ba55..7d9c181c6b055a5d9944eac7ca952f4b8c71b430 100644 --- a/ui/ui-portal/src/main/config/ui-portal-application-dev.yml +++ b/ui/ui-portal/src/main/config/ui-portal-application-dev.yml @@ -28,6 +28,7 @@ ui-prefix : ${ui-portal.prefix} ui-portal: #theme-logo: /path/to/logo.png + platform-name: VITAM-UI theme-colors: vitamui-primary: "#ff4a54" vitamui-secondary: "#241f63" diff --git a/ui/ui-portal/src/main/config/ui-portal-application-recette.yml b/ui/ui-portal/src/main/config/ui-portal-application-recette.yml index f0abacc1512ec08a149ca6d0ffd580fcbfebe71e..24a4b90c87674ff3bb7210ab1a2ed56c45a37139 100644 --- a/ui/ui-portal/src/main/config/ui-portal-application-recette.yml +++ b/ui/ui-portal/src/main/config/ui-portal-application-recette.yml @@ -26,6 +26,7 @@ management: ui-portal: #theme-logo: /path/to/logo.png + platform-name: VITAM-UI theme-colors: vitamui-primary: "#ff4a54" vitamui-secondary: "#241f63"