From c3d46d69327ede5623b5b8b0f552bf9ebcd7fb3f Mon Sep 17 00:00:00 2001 From: Urban Suppiger Date: Sun, 29 Sep 2024 12:15:51 +0200 Subject: [PATCH 01/14] render checklists in react pdf --- .../scheduleEntry/contentNode/Checklist.vue | 98 +++++++++++++++++++ .../scheduleEntry/contentNode/ContentNode.vue | 2 + pdf/src/prepareInMainThread.js | 13 ++- 3 files changed, 112 insertions(+), 1 deletion(-) create mode 100644 pdf/src/campPrint/scheduleEntry/contentNode/Checklist.vue diff --git a/pdf/src/campPrint/scheduleEntry/contentNode/Checklist.vue b/pdf/src/campPrint/scheduleEntry/contentNode/Checklist.vue new file mode 100644 index 0000000000..cd7dec4a51 --- /dev/null +++ b/pdf/src/campPrint/scheduleEntry/contentNode/Checklist.vue @@ -0,0 +1,98 @@ + + + + + + +.checklist { + display: flex; + flex-direction: column; + margin-bottom:8pt; +} +.checklist-title{ + font-weight:bold; + margin-bottom:3pt; + margin-top:2pt; +} +.checklist-item { + display: flex; + flex-direction: row; + padding-bottom:5pt; +} +.checklist-item-column { + flex-grow: 1; +} +.checklist-item-column-1 { + flex-basis: 300pt; + padding-right: 2pt; + font-variant-numeric: tabular-nums; +} +.checklist-item-column-2 { + flex-basis: 9700pt; + padding-left: 2pt; +} + diff --git a/pdf/src/campPrint/scheduleEntry/contentNode/ContentNode.vue b/pdf/src/campPrint/scheduleEntry/contentNode/ContentNode.vue index 29d11ccc12..df1d078f29 100644 --- a/pdf/src/campPrint/scheduleEntry/contentNode/ContentNode.vue +++ b/pdf/src/campPrint/scheduleEntry/contentNode/ContentNode.vue @@ -18,6 +18,7 @@ import Notes from './Notes.vue' import SafetyConsiderations from './SafetyConsiderations.vue' import Material from './Material.vue' import Storycontext from './Storycontext.vue' +import Checklist from './Checklist.vue' export default { name: 'ContentNode', @@ -41,6 +42,7 @@ export default { SafetyConsiderations, Material, Storycontext, + Checklist, }[this.contentTypeName] }, }, diff --git a/pdf/src/prepareInMainThread.js b/pdf/src/prepareInMainThread.js index 15d71e252e..17e57a74ec 100644 --- a/pdf/src/prepareInMainThread.js +++ b/pdf/src/prepareInMainThread.js @@ -47,7 +47,11 @@ export async function prepareInMainThread(config) { } const activityData = (config) => { - if (!config.contents.some((c) => ['Program', 'Activity'].includes(c.type))) { + if ( + !config.contents.some((c) => + ['Program', 'Activity', 'ActivityList'].includes(c.type) + ) + ) { return [] } @@ -89,6 +93,13 @@ export async function prepareInMainThread(config) { }), camp.materialLists().$loadItems(), config.apiGet().contentTypes().$loadItems(), + camp.checklists().$loadItems(), + config + .apiGet() + .checklistItems({ + 'checklist.camp': camp._meta.self, + }) + .$loadItems(), ] } From 8e3b8658fad5302a567728c6e37075fc00ad05f0 Mon Sep 17 00:00:00 2001 From: Manuel Meister Date: Sun, 29 Sep 2024 13:19:48 +0200 Subject: [PATCH 02/14] Fix overflow in camp admin checklist --- frontend/src/components/activity/content/Checklist.vue | 6 +++++- frontend/src/components/checklist/SortableChecklist.vue | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/activity/content/Checklist.vue b/frontend/src/components/activity/content/Checklist.vue index 7047c08f75..1ac2d64403 100644 --- a/frontend/src/components/activity/content/Checklist.vue +++ b/frontend/src/components/activity/content/Checklist.vue @@ -42,7 +42,7 @@ > - + {{ parents.map(({ position }) => position + 1 + '.').join('') }}{{ item.position + 1 }}. {{ item.text }} @@ -267,4 +267,8 @@ export default { overflow: hidden; text-overflow: ellipsis; } +.ec-checklist--item-title { + white-space: normal; + line-height: 1.33; +} diff --git a/frontend/src/components/checklist/SortableChecklist.vue b/frontend/src/components/checklist/SortableChecklist.vue index 5af2d61bef..939d48e139 100644 --- a/frontend/src/components/checklist/SortableChecklist.vue +++ b/frontend/src/components/checklist/SortableChecklist.vue @@ -180,11 +180,15 @@ export default { padding-bottom: 6px; display: grid; } +.e-checklist-dragarea--inner { + min-width: 0; +} .e-checklist-dragarea.dragging:deep(.e-checklist-dragarea) { background: rgba(0, 130, 236, 0.15); padding-bottom: 0; } .e-sortable-checklist-item__add { + min-width: 0; padding-top: 2px; padding-bottom: 2px; } From 1c9d86e5c3abc810b7e233c83b5f3b6d21748849 Mon Sep 17 00:00:00 2001 From: Urban Suppiger Date: Sun, 29 Sep 2024 13:28:54 +0200 Subject: [PATCH 03/14] initial draft for activity list in react print --- pdf/src/CampPrint.vue | 2 + .../campPrint/activityList/ActivityList.vue | 30 ++++ .../activityList/ActivityListPeriod.vue | 62 ++++++++ .../ActivityListScheduleEntry.vue | 144 ++++++++++++++++++ 4 files changed, 238 insertions(+) create mode 100644 pdf/src/campPrint/activityList/ActivityList.vue create mode 100644 pdf/src/campPrint/activityList/ActivityListPeriod.vue create mode 100644 pdf/src/campPrint/activityList/ActivityListScheduleEntry.vue diff --git a/pdf/src/CampPrint.vue b/pdf/src/CampPrint.vue index fbca30e02f..7d583a0721 100644 --- a/pdf/src/CampPrint.vue +++ b/pdf/src/CampPrint.vue @@ -27,6 +27,7 @@ import Story from '@/campPrint/summary/Story.vue' import SafetyConsiderations from '@/campPrint/summary/SafetyConsiderations.vue' import Program from '@/campPrint/program/Program.vue' import Activity from '@/campPrint/activity/Activity.vue' +import ActivityList from '@/campPrint/activityList/ActivityList.vue' import { wordHyphenation } from '@react-pdf/textkit' const originalHyphenationCallback = wordHyphenation() @@ -47,6 +48,7 @@ export default { Activity, Story, SafetyConsiderations, + ActivityList, } }, }, diff --git a/pdf/src/campPrint/activityList/ActivityList.vue b/pdf/src/campPrint/activityList/ActivityList.vue new file mode 100644 index 0000000000..db83cde582 --- /dev/null +++ b/pdf/src/campPrint/activityList/ActivityList.vue @@ -0,0 +1,30 @@ + + diff --git a/pdf/src/campPrint/activityList/ActivityListPeriod.vue b/pdf/src/campPrint/activityList/ActivityListPeriod.vue new file mode 100644 index 0000000000..75bd8964bb --- /dev/null +++ b/pdf/src/campPrint/activityList/ActivityListPeriod.vue @@ -0,0 +1,62 @@ + + + +.activity-list-period-title { + font-size: 10pt; + font-weight: bold; + text-align: center; +} + diff --git a/pdf/src/campPrint/activityList/ActivityListScheduleEntry.vue b/pdf/src/campPrint/activityList/ActivityListScheduleEntry.vue new file mode 100644 index 0000000000..26a58713c5 --- /dev/null +++ b/pdf/src/campPrint/activityList/ActivityListScheduleEntry.vue @@ -0,0 +1,144 @@ + + + +.schedule-entry-header-title { + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: baseline; + padding-bottom: 2pt; + border-bottom: 2pt solid #aaaaaa; +} +.schedule-entry-title { + flex-grow: 1; + display: flex; + flex-direction: row; + font-size: 14; + font-weight: semibold; +} +.schedule-entry-category-label { + margin: 4pt 0; + font-size: 12pt; +} +.schedule-entry-number-and-title { + margin: 4pt 4pt; + max-width: 345pt; +} +.schedule-entry-date { + font-size: 11pt; +} +.schedule-entry-header { + display: flex; + flex-direction: row; + justify-content: space-between; + border-bottom: 0.5pt solid black; + font-size: 10pt; + margin-bottom: 10pt; +} +.schedule-entry-header-divider { + border-left: 0.5pt solid black; + margin-left: 3.5pt; + padding-left: 5pt +} +.schedule-entry-header-metadata { + width: 50%; + padding: 2pt 0; +} +.schedule-entry-header-metadata-entry { + flex-direction: row; + align-items: flex-start; + column-gap: 6pt; +} +.schedule-entry-header-metadata-label { + font-weight: semibold; + flex-shrink: 0; + flex-grow: 0; +} + From e1c86e3c73398165b8021f16ad22c1ccaebc79b7 Mon Sep 17 00:00:00 2001 From: Manuel Meister Date: Sun, 29 Sep 2024 13:33:38 +0200 Subject: [PATCH 04/14] Fix overflow in checklist node detailpane --- frontend/src/components/dialog/DialogBottomSheet.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend/src/components/dialog/DialogBottomSheet.vue b/frontend/src/components/dialog/DialogBottomSheet.vue index f021d8d7b1..b4c35eba40 100644 --- a/frontend/src/components/dialog/DialogBottomSheet.vue +++ b/frontend/src/components/dialog/DialogBottomSheet.vue @@ -138,4 +138,12 @@ export default { .error-area:empty { display: none; } +:deep(.ec-dialog-form.v-bottom-sheet.v-dialog) { + overflow-y: auto; +} +.ec-dialog-toolbar { + position: sticky; + z-index: 10; + top: 0; +} From 85d0f462f6e714ec875b218803a3e5bf0eb26d2d Mon Sep 17 00:00:00 2001 From: Pirmin Mattmann Date: Sun, 29 Sep 2024 13:37:08 +0200 Subject: [PATCH 05/14] fix translation-keys --- frontend/src/views/auth/Register.vue | 2 +- frontend/src/views/auth/ResendActivation.vue | 2 +- frontend/src/views/auth/ResetPassword.vue | 2 +- frontend/src/views/auth/ResetPasswordRequest.vue | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/views/auth/Register.vue b/frontend/src/views/auth/Register.vue index f795a61ef5..9c95892f41 100644 --- a/frontend/src/views/auth/Register.vue +++ b/frontend/src/views/auth/Register.vue @@ -2,7 +2,7 @@

{{ $tc('views.auth.register.title') }}

- + - + Date: Sun, 29 Sep 2024 13:45:31 +0200 Subject: [PATCH 06/14] add contentTypeName if instanceName was overridden --- .../campPrint/scheduleEntry/InstanceName.vue | 31 ++++++++++++++----- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/pdf/src/campPrint/scheduleEntry/InstanceName.vue b/pdf/src/campPrint/scheduleEntry/InstanceName.vue index 6b9f32907d..ad10c5026f 100644 --- a/pdf/src/campPrint/scheduleEntry/InstanceName.vue +++ b/pdf/src/campPrint/scheduleEntry/InstanceName.vue @@ -1,5 +1,10 @@ +.content-node-title { + border-bottom: 1.5pt solid black; + margin-bottom: 1pt; + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: baseline; +} .content-node-instance-name { + flex-grow: 1; font-weight: bold; font-size: 11pt; padding-bottom: 3pt; - border-bottom: 1.5pt solid black; - margin-bottom: 1pt; +} +.content-type-name { + font-size:8pt; + font-weight:normal; + color:grey; } From 07bbbfe159ddaa23328363635be0ac8491647291 Mon Sep 17 00:00:00 2001 From: Manuel Meister Date: Sun, 29 Sep 2024 14:02:43 +0200 Subject: [PATCH 07/14] Add a close button to checklist detailpane --- frontend/src/components/activity/content/Checklist.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/components/activity/content/Checklist.vue b/frontend/src/components/activity/content/Checklist.vue index 1ac2d64403..b0a5d54a16 100644 --- a/frontend/src/components/activity/content/Checklist.vue +++ b/frontend/src/components/activity/content/Checklist.vue @@ -5,6 +5,8 @@ v-model="showDialog" icon="mdi-clipboard-list-outline" :title="$tc('components.activity.content.checklist.title')" + :cancel-action="close" + :cancel-visible="false" > @@ -99,13 +80,14 @@ import ContentNodeCard from '@/components/activity/content/layout/ContentNodeCar import { contentNodeMixin } from '@/mixins/contentNodeMixin.js' import DetailPane from '@/components/generic/DetailPane.vue' import ChecklistItem from './checklist/ChecklistItem.vue' +import ChecklistItems from './checklist/ChecklistItems.vue' import { serverErrorToString } from '@/helpers/serverError.js' import { debounce, isEqual, sortBy, uniq } from 'lodash' import { computed } from 'vue' export default { name: 'Checklist', - components: { DetailPane, ContentNodeCard, ChecklistItem }, + components: { ChecklistItems, DetailPane, ContentNodeCard, ChecklistItem }, mixins: [contentNodeMixin], provide() { return { @@ -266,14 +248,4 @@ export default { } - + diff --git a/frontend/src/components/activity/content/checklist/ChecklistItems.vue b/frontend/src/components/activity/content/checklist/ChecklistItems.vue new file mode 100644 index 0000000000..1940d76923 --- /dev/null +++ b/frontend/src/components/activity/content/checklist/ChecklistItems.vue @@ -0,0 +1,55 @@ + + + From 68c7d2335ce11d7f5c3d9c77697f6c5e31a71fe6 Mon Sep 17 00:00:00 2001 From: Urban Suppiger Date: Sun, 29 Sep 2024 14:28:54 +0200 Subject: [PATCH 11/14] fix translation key --- frontend/eslint.config.mjs | 2 +- pdf/eslint.config.mjs | 2 +- print/eslint.config.mjs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/eslint.config.mjs b/frontend/eslint.config.mjs index 800d10a87d..9d959b3c5f 100644 --- a/frontend/eslint.config.mjs +++ b/frontend/eslint.config.mjs @@ -81,7 +81,7 @@ export default [ 'error', { ignoreKeysRegex: - '^(global|entity|contentNode\\.[a-z][a-zA-Z]+|print\\.(global|activity|cover|picasso|program|config|summary|toc))\\..+', + '^(global|entity|contentNode\\.[a-z][a-zA-Z]+|print\\.(global|activity|cover|picasso|program|config|summary|toc|activityList))\\..+', translationKeyPropRegex: '[a-zA-Z0-9]-i18n-key$', }, ], diff --git a/pdf/eslint.config.mjs b/pdf/eslint.config.mjs index 8e152813d3..91fd7649ef 100644 --- a/pdf/eslint.config.mjs +++ b/pdf/eslint.config.mjs @@ -77,7 +77,7 @@ export default [ 'error', { ignoreKeysRegex: - '^(global|entity|contentNode\\.[a-z][a-zA-Z]+|print\\.(global|activity|cover|picasso|program|config|summary|toc))\\..+', + '^(global|entity|contentNode\\.[a-z][a-zA-Z]+|print\\.(global|activity|cover|picasso|program|config|summary|toc|activityList))\\..+', translationKeyPropRegex: '[a-zA-Z0-9]-i18n-key$', }, ], diff --git a/print/eslint.config.mjs b/print/eslint.config.mjs index 1c9ab4141a..377a195b9d 100644 --- a/print/eslint.config.mjs +++ b/print/eslint.config.mjs @@ -55,7 +55,7 @@ export default [ 'error', { ignoreKeysRegex: - '^(global|entity|contentNode\\.[a-z][a-zA-Z]+|print\\.(global|activity|cover|picasso|program|config|summary|toc))\\..+', + '^(global|entity|contentNode\\.[a-z][a-zA-Z]+|print\\.(global|activity|cover|picasso|program|config|summary|toc|activityList))\\..+', translationKeyPropRegex: '[a-zA-Z0-9]-i18n-key$', }, ], From 5b55302ff879ec787b4b0a1422e392baaf2d8496 Mon Sep 17 00:00:00 2001 From: simfeld Date: Sun, 29 Sep 2024 14:45:48 +0200 Subject: [PATCH 12/14] fix: error message when deleting material list --- .../src/components/campAdmin/DialogMaterialListEdit.vue | 9 +++++++++ frontend/src/locales/de.json | 7 ++----- frontend/src/locales/en.json | 7 ++----- frontend/src/locales/fr.json | 7 ++----- frontend/src/locales/it.json | 7 ++----- frontend/src/locales/rm.json | 7 ++----- 6 files changed, 19 insertions(+), 25 deletions(-) diff --git a/frontend/src/components/campAdmin/DialogMaterialListEdit.vue b/frontend/src/components/campAdmin/DialogMaterialListEdit.vue index 7224e43b73..44931e2833 100644 --- a/frontend/src/components/campAdmin/DialogMaterialListEdit.vue +++ b/frontend/src/components/campAdmin/DialogMaterialListEdit.vue @@ -16,6 +16,7 @@ @@ -50,6 +51,14 @@ export default { } }, }, + methods: { + deleteErrorHandler(e) { + if (e?.response?.status === 422 /* Validation Error */) { + return this.$tc('components.campAdmin.dialogMaterialListEdit.deleteError') + } + return null + }, + }, } diff --git a/frontend/src/locales/de.json b/frontend/src/locales/de.json index f44cb6ed6e..3a4a20e714 100644 --- a/frontend/src/locales/de.json +++ b/frontend/src/locales/de.json @@ -93,10 +93,6 @@ "createMaterialList": "Materialliste erstellen", "title": "Materiallisten" }, - "campMaterialListsItem": { - "deleteError": "Materialliste konnte nicht gelöscht werden. Überprüfe vor dem Löschen, dass die Liste leer ist.", - "deleteWarning": "Möchtest du diese Materialliste wirklich löschen?" - }, "campPeriods": { "createPeriod": "Lagerabschnitt erstellen", "title": "Lagerabschnitt | Lagerabschnitte" @@ -135,7 +131,8 @@ "title": "Materialliste erstellen" }, "dialogMaterialListEdit": { - "title": "Materialliste bearbeiten" + "title": "Materialliste bearbeiten", + "deleteError": "Materialliste konnte nicht gelöscht werden. Überprüfe vor dem Löschen, dass die Liste leer ist." }, "dialogPeriodCreate": { "title": "Lagerabschnitt erstellen" diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json index 553d819687..0bafba489c 100644 --- a/frontend/src/locales/en.json +++ b/frontend/src/locales/en.json @@ -93,10 +93,6 @@ "createMaterialList": "Create material list", "title": "Material lists" }, - "campMaterialListsItem": { - "deleteError": "Could not delete the material list. Check if the list is empty before deleting it.", - "deleteWarning": "Do you really want to delete this material list?" - }, "campPeriods": { "createPeriod": "Create period", "title": "Period | Periods" @@ -135,7 +131,8 @@ "title": "Create material list" }, "dialogMaterialListEdit": { - "title": "Edit material list" + "title": "Edit material list", + "deleteError": "Could not delete the material list. Check if the list is empty before deleting it." }, "dialogPeriodCreate": { "title": "Create period" diff --git a/frontend/src/locales/fr.json b/frontend/src/locales/fr.json index e82cb5bf3f..c4474fe01c 100644 --- a/frontend/src/locales/fr.json +++ b/frontend/src/locales/fr.json @@ -89,10 +89,6 @@ "createMaterialList": "Créer une liste de matériel", "title": "Listes de matériel" }, - "campMaterialListsItem": { - "deleteError": "Impossible de supprimer la liste de matériel. Vérifie que la liste soit vide avant de la supprimer.", - "deleteWarning": "Veux-tu vraiment supprimer cette liste de matériel ?" - }, "campPeriods": { "createPeriod": "Créer une période", "title": "Période | Périodes" @@ -124,7 +120,8 @@ "title": "Créer une liste de matériel" }, "dialogMaterialListEdit": { - "title": "Modifier la liste de matériel" + "title": "Modifier la liste de matériel", + "deleteError": "Impossible de supprimer la liste de matériel. Vérifie que la liste soit vide avant de la supprimer." }, "dialogPeriodCreate": { "title": "Créer une période" diff --git a/frontend/src/locales/it.json b/frontend/src/locales/it.json index 96728462e3..a4e750c1a4 100644 --- a/frontend/src/locales/it.json +++ b/frontend/src/locales/it.json @@ -81,10 +81,6 @@ "createMaterialList": "Crea l'elenco dei materiali", "title": "Elenchi di materiali" }, - "campMaterialListsItem": { - "deleteError": "Impossibile eliminare l'elenco dei materiali. Controlla che l'elenco sia vuoto prima di eliminarlo.", - "deleteWarning": "Vuoi davvero cancellare questo elenco di materiali?" - }, "campPeriods": { "createPeriod": "Creare il periodo", "title": "Periodo | Periodi" @@ -116,7 +112,8 @@ "title": "Crea l'elenco dei materiali" }, "dialogMaterialListEdit": { - "title": "Modifica elenco materiali" + "title": "Modifica elenco materiali", + "deleteError": "Impossibile eliminare l'elenco dei materiali. Controlla che l'elenco sia vuoto prima di eliminarlo." }, "dialogPeriodCreate": { "title": "Creare il periodo" diff --git a/frontend/src/locales/rm.json b/frontend/src/locales/rm.json index 44f1b147b5..2ac7d2d19e 100644 --- a/frontend/src/locales/rm.json +++ b/frontend/src/locales/rm.json @@ -74,10 +74,6 @@ "createMaterialList": "Crear ina glista da material", "title": "Glistas da material" }, - "campMaterialListsItem": { - "deleteError": "Impussibel da stizzar la glista da material. Verifitgescha che la glista è vida avant che stizzar.", - "deleteWarning": "Vuls ti propi stizzar questa glista da material?" - }, "campPeriods": { "createPeriod": "Crear ina part dal champ", "title": "Part dal champ | Parts dal champ" @@ -109,7 +105,8 @@ "title": "Crear ina glista da material" }, "dialogMaterialListEdit": { - "title": "Modifitgar la glista da material" + "title": "Modifitgar la glista da material", + "deleteError": "Impussibel da stizzar la glista da material. Verifitgescha che la glista è vida avant che stizzar." }, "dialogPeriodCreate": { "title": "Craer ina part dal champ" From a7057abe89674988a50ac190f15586bed696f21a Mon Sep 17 00:00:00 2001 From: Samuel Imfeld Date: Sun, 29 Sep 2024 14:49:51 +0200 Subject: [PATCH 13/14] Update frontend/src/locales/de.json --- frontend/src/locales/de.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/locales/de.json b/frontend/src/locales/de.json index 3a4a20e714..4d096e9d41 100644 --- a/frontend/src/locales/de.json +++ b/frontend/src/locales/de.json @@ -132,7 +132,7 @@ }, "dialogMaterialListEdit": { "title": "Materialliste bearbeiten", - "deleteError": "Materialliste konnte nicht gelöscht werden. Überprüfe vor dem Löschen, dass die Liste leer ist." + "deleteError": "Materialliste konnte nicht gelöscht werden. Überprüfe vor dem Löschen, dass die Liste leer ist." }, "dialogPeriodCreate": { "title": "Lagerabschnitt erstellen" From e49df4f8dc0bfc72816c141b1d25e9cbfc5b20e7 Mon Sep 17 00:00:00 2001 From: Urban Suppiger Date: Sun, 29 Sep 2024 15:12:36 +0200 Subject: [PATCH 14/14] update snapshots --- .../__snapshots__/program.spec.json.snap | 3272 +++++++++++++---- .../single_activity.spec.json.snap | 157 +- ...ecial_text_with_empty_lists.spec.json.snap | 33 +- 3 files changed, 2668 insertions(+), 794 deletions(-) diff --git a/pdf/src/renderer/__tests__/__snapshots__/program.spec.json.snap b/pdf/src/renderer/__tests__/__snapshots__/program.spec.json.snap index f857c1f78b..b7373ee4df 100644 --- a/pdf/src/renderer/__tests__/__snapshots__/program.spec.json.snap +++ b/pdf/src/renderer/__tests__/__snapshots__/program.spec.json.snap @@ -80,7 +80,7 @@ "props": { "bookmark": "LS 1.1 Stadt Game 🐭", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-4bc1873a73f2", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -354,23 +354,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -1076,23 +1093,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, ], "parent": [Circular], @@ -1132,23 +1166,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -1200,23 +1251,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -1249,23 +1317,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -1412,7 +1497,7 @@ "props": { "bookmark": "LP 1.2 Anreise", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-c3d36cd00544", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -1503,23 +1588,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -2087,23 +2189,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -2217,23 +2336,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -2266,23 +2402,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -2315,23 +2468,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -2478,7 +2648,7 @@ "props": { "bookmark": "LA 1.A Lagerbau", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-c7cdd9cc23bc", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -2569,23 +2739,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -3261,23 +3448,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, ], "parent": [Circular], @@ -3317,23 +3521,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -3366,23 +3587,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -3415,23 +3653,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -3464,23 +3719,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "LA thematic area", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "LA thematic area", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, ], "parent": [Circular], @@ -3613,7 +3885,7 @@ "props": { "bookmark": "ES 1.3 Essen", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-60a0b0635d46", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -3783,7 +4055,7 @@ "props": { "bookmark": "LP 1.4 Takeoff", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-b12d0af13de0", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -3874,23 +4146,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -4386,23 +4675,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -4812,23 +5118,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -4880,23 +5203,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -4948,23 +5288,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -5111,7 +5468,7 @@ "props": { "bookmark": "LP 1.5 Flugzeugabsturz", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-4b4f2d67ee32", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -5202,23 +5559,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -5810,23 +6184,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -6162,23 +6553,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -6230,23 +6638,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -6279,23 +6704,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -6442,7 +6884,7 @@ "props": { "bookmark": "LS 2.1 Morgenturnen", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-47239db6a8e4", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -6533,23 +6975,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -7027,23 +7486,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, ], "parent": [Circular], @@ -7083,23 +7559,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -7132,23 +7625,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -7181,23 +7691,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -7344,7 +7871,7 @@ "props": { "bookmark": "ES 2.2 Essen", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-9377c93f08e1", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -7514,7 +8041,7 @@ "props": { "bookmark": "LP 2.3 Lagerbau", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-79ab44e7d96a", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -7605,23 +8132,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -7865,23 +8409,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, ], "parent": [Circular], @@ -7921,23 +8482,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -7970,23 +8548,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -8019,23 +8614,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -8182,7 +8794,7 @@ "props": { "bookmark": "LS 2.4 Insel erkunden", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-46cad2b11017", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -8273,23 +8885,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -8767,23 +9396,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -9045,23 +9691,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -9113,23 +9776,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -9162,23 +9842,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -9325,7 +10022,7 @@ "props": { "bookmark": "ES 2.5 Essen", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-3935f7974ef8", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -9495,7 +10192,7 @@ "props": { "bookmark": "LS 2.6 Angriff der Aborigines", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-9c5b963da5e1", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -9586,23 +10283,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -10512,23 +11226,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -11086,23 +11817,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -11154,23 +11902,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -11222,23 +11987,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -11385,7 +12167,7 @@ "props": { "bookmark": "LP 2.7 Pfadiversprechen", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-f2923b997126", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -11476,23 +12258,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -12504,23 +13303,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -12930,23 +13746,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -12998,23 +13831,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -13066,23 +13916,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -13229,7 +14096,7 @@ "props": { "bookmark": "ES 2.8 Essen", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-8efed0b671f0", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -13399,7 +14266,7 @@ "props": { "bookmark": "LP 2.9 Essen zurückerobern", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-3da4545af722", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -13490,23 +14357,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -14098,23 +14982,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -14450,23 +15351,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -14518,23 +15436,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -14604,23 +15539,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -14767,7 +15719,7 @@ "props": { "bookmark": "LS 3.1 Morgenturnern", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-2be7a86b82f3", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -14858,23 +15810,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -15352,23 +16321,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, ], "parent": [Circular], @@ -15408,23 +16394,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -15457,23 +16460,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -15506,23 +16526,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -15669,7 +16706,7 @@ "props": { "bookmark": "ES 3.2 Essen", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-3dcbe2a92578", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -15839,7 +16876,7 @@ "props": { "bookmark": "LP 3.3 Atelier", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-69226b3e49d7", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -15930,23 +16967,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -16910,23 +17964,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -17262,23 +18333,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -17330,23 +18418,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -17379,23 +18484,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -17542,7 +18664,7 @@ "props": { "bookmark": "ES 3.4 Essen", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-a3389bd0ea0f", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -17712,7 +18834,7 @@ "props": { "bookmark": "LA 3.A Pfadiversprechen", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-6ee7b9aa5f9b", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -17803,23 +18925,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -18345,23 +19484,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, ], "parent": [Circular], @@ -18401,23 +19557,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -18450,23 +19623,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -18518,23 +19708,61 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Ziele", + }, + ], + "parent": [Circular], + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", + }, + { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Ziele", + "props": { + "class": "content-type-name", + "key": 0, + }, + "style": { + "color": "grey", + "fontSize": "8pt", + "fontWeight": "normal", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -18586,23 +19814,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "LA thematic area", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "LA thematic area", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -18814,7 +20059,7 @@ "props": { "bookmark": "LS 3.5 Abschluss geländegame", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-501abe71a6ab", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -18905,23 +20150,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -19999,23 +21261,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -20203,23 +21482,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -20271,23 +21567,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -20339,23 +21652,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -20502,7 +21832,7 @@ "props": { "bookmark": "LP 3.6 Vorbereitung BiPi Feuer", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-a3d6ebc0b3ee", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -20593,23 +21923,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -21051,23 +22398,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, ], "parent": [Circular], @@ -21107,23 +22471,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -21156,23 +22537,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -21205,23 +22603,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -21368,7 +22783,7 @@ "props": { "bookmark": "ES 3.7 Essen", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-d28860c99b46", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -21538,7 +22953,7 @@ "props": { "bookmark": "LP 3.8 Bi-Pi Feuer", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-6128f7aa752f", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -21629,23 +23044,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -22285,23 +23717,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, ], "parent": [Circular], @@ -22341,23 +23790,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -22390,23 +23856,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -22439,23 +23922,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -22602,7 +24102,7 @@ "props": { "bookmark": "LS 4.1 Morgenturnen", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-c76ea4bae834", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -22693,23 +24193,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -23187,23 +24704,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -23391,23 +24925,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -23440,23 +24991,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -23526,23 +25094,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -23689,7 +25274,7 @@ "props": { "bookmark": "ES 4.2 Essen", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-b7057d701add", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -23859,7 +25444,7 @@ "props": { "bookmark": "LA 4.A Lagerabbau", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-97cf16fb8cae", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -23950,23 +25535,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -24462,23 +26064,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, ], "parent": [Circular], @@ -24518,23 +26137,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -24567,23 +26203,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -24616,23 +26269,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -24665,23 +26335,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "LA thematic area", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "LA thematic area", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -25051,7 +26738,7 @@ "props": { "bookmark": "ES 4.3 Essen", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-9020d417c38f", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -25221,7 +26908,7 @@ "props": { "bookmark": "LP 4.4 Heimreise", "class": "schedule-entry-number-and-title", - "id": "entry-0-16b2fcffdd8e-159f28246128", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -25312,23 +26999,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -25698,23 +27402,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, ], "parent": [Circular], @@ -25754,23 +27475,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -25803,23 +27541,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -25852,23 +27607,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, diff --git a/pdf/src/renderer/__tests__/__snapshots__/single_activity.spec.json.snap b/pdf/src/renderer/__tests__/__snapshots__/single_activity.spec.json.snap index 946783a446..5e78c8e3c6 100644 --- a/pdf/src/renderer/__tests__/__snapshots__/single_activity.spec.json.snap +++ b/pdf/src/renderer/__tests__/__snapshots__/single_activity.spec.json.snap @@ -55,7 +55,7 @@ "props": { "bookmark": "LS 1.1 Stadt Game 🐭", "class": "schedule-entry-number-and-title", - "id": "entry-0-4bc1873a73f2", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -329,23 +329,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Storyboard", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Storyboard", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -1051,23 +1068,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Material", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Material", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, ], "parent": [Circular], @@ -1107,23 +1141,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Story", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Story", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -1175,23 +1226,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Safety considerations", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Safety considerations", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, @@ -1224,23 +1292,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {}, diff --git a/pdf/src/renderer/__tests__/__snapshots__/single_activity_with_special_text_with_empty_lists.spec.json.snap b/pdf/src/renderer/__tests__/__snapshots__/single_activity_with_special_text_with_empty_lists.spec.json.snap index 33e657de2b..ea557a8dbd 100644 --- a/pdf/src/renderer/__tests__/__snapshots__/single_activity_with_special_text_with_empty_lists.spec.json.snap +++ b/pdf/src/renderer/__tests__/__snapshots__/single_activity_with_special_text_with_empty_lists.spec.json.snap @@ -55,7 +55,7 @@ "props": { "bookmark": "LS 2.1 Morgenturnen", "class": "schedule-entry-number-and-title", - "id": "entry-0-51c110ddd923", + "id": "", }, "style": { "margin": "4pt 4pt", @@ -314,23 +314,40 @@ "box": {}, "children": [ { + "box": {}, + "children": [ + { + "parent": [Circular], + "type": "TEXT_INSTANCE", + "value": "Notes", + }, + ], "parent": [Circular], - "type": "TEXT_INSTANCE", - "value": "Notes", + "props": { + "class": "content-node-instance-name", + }, + "style": { + "flexGrow": "1", + "fontSize": "11pt", + "fontWeight": "bold", + "paddingBottom": "3pt", + }, + "type": "TEXT", }, ], "parent": [Circular], "props": { - "class": "content-node-instance-name", + "class": "content-node-title", }, "style": { + "alignItems": "baseline", "borderBottom": "1.5pt solid black", - "fontSize": "11pt", - "fontWeight": "bold", + "display": "flex", + "flexDirection": "row", + "justifyContent": "space-between", "marginBottom": "1pt", - "paddingBottom": "3pt", }, - "type": "TEXT", + "type": "VIEW", }, { "box": {},