Compare commits

...

6 Commits

Author SHA1 Message Date
3dc8131c33 merging
Some checks failed
Format / formatting (push) Successful in 7s
Build / build (push) Successful in 39s
CI / build (push) Failing after 8s
Format / formatting (pull_request) Successful in 6s
2025-04-02 08:44:23 +02:00
259d56271c Merge branch 'openapi_integration' into front_foundation 2025-03-26 12:20:25 +01:00
067eeb9494 docs: added examples and changed some weird character
All checks were successful
CI / build (push) Successful in 11s
2025-02-26 11:31:45 +01:00
b355463dd9 docs: added needed modications and reorganized yaml file
All checks were successful
CI / build (push) Successful in 11s
2025-02-25 22:34:33 +01:00
79e949bdd4 feat: configured gradle file to generate code for api interface from swagger specification
All checks were successful
CI / build (push) Successful in 11s
2025-02-19 01:36:52 +01:00
ef8c8e896d feat: added openapi documentation to the project
All checks were successful
CI / build (push) Successful in 11s
2025-02-12 20:59:13 +01:00
2 changed files with 11 additions and 9 deletions

View File

@ -41,6 +41,7 @@ const props = defineProps<{
const expanded = ref(false);
const currentDescriptions = ref<string[]>([]);
currentDescriptions.value[0] = props.description;
const editedDescriptions = ref<string[]>([]);
const isEditing = ref<boolean[]>([]);
@ -212,6 +213,7 @@ const cancelEdit = (index: number) => {
}
.expanded {
padding-top: 10%;
position: fixed;
top: 0;
left: 0;

View File

@ -47,13 +47,13 @@ const items = ref([
overflow: auto;
}
.Probleme { grid-column: 1 / 3; grid-row: 1 / 5; }
.Segments { grid-column: 9 / 11; grid-row: 1 / 5; }
.Valeur { grid-column: 5 / 7; grid-row: 1 / 5; }
.Solution { grid-column: 3 / 5; grid-row: 1 / 3; }
.Avantage { grid-column: 7 / 9; grid-row: 1 / 3; }
.Canaux { grid-column: 7 / 9; grid-row: 3 / 5; }
.Indicateurs { grid-column: 3 / 5; grid-row: 3 / 5; }
.Couts { grid-column: 1 / 6; grid-row: 5 / 7; }
.Revenus { grid-column: 6 / 11; grid-row: 5 / 7; }
.Probleme { grid-column: 1 / 3; grid-row: 1 / 5; padding-top: 20px;}
.Segments { grid-column: 9 / 11; grid-row: 1 / 5; padding-top: 20px;}
.Valeur { grid-column: 5 / 7; grid-row: 1 / 5; padding-top: 20px;}
.Solution { grid-column: 3 / 5; grid-row: 1 / 3; padding-top: 20px;}
.Avantage { grid-column: 7 / 9; grid-row: 1 / 3; padding-top: 20px;}
.Canaux { grid-column: 7 / 9; grid-row: 3 / 5; padding-top: 20px;}
.Indicateurs { grid-column: 3 / 5; grid-row: 3 / 5; padding-top: 20px;}
.Couts { grid-column: 1 / 6; grid-row: 5 / 7; padding-top: 20px;}
.Revenus { grid-column: 6 / 11; grid-row: 5 / 7; padding-top: 20px;}
</style>