From 2a82ea2f2ba2146f88abbffc1a6ff6af1dcbb0d2 Mon Sep 17 00:00:00 2001 From: Bruno Charest Date: Mon, 27 Oct 2025 16:37:31 -0400 Subject: [PATCH] feat: improve note management UI and accessibility - Replaced fixed positioning with CDK Overlay for "Move to Folder" dialog with improved accessibility and focus management - Added visual accent color support to note header buttons based on note color metadata - Enhanced move dialog with keyboard navigation and Enter key support for quick folder selection - Improved dialog backdrop with themed blur effect and proper z-indexing - Fixed folder icon SVG path in move dialog - Added max height constraint an --- .../move-note-to-folder.component.css | 31 +++++--- .../move-note-to-folder.component.html | 18 +++-- .../move-note-to-folder.component.ts | 78 +++++++++++++++---- .../note-header/note-header.component.html | 4 +- .../note-header/note-header.component.scss | 18 +++++ .../note-header/note-header.component.ts | 54 ++++++++++++- .../tag-manager/tag-manager.component.css | 18 +++++ .../tag-manager/tag-manager.component.html | 7 +- src/styles.css | 10 +++ vault/Allo-3/Nouvelle note 13.md | 23 ++++++ vault/Allo-3/tata.md | 2 +- .../test-add-properties.md.bak} | 36 +++++++++ ...ouvelle note 15.md => Nouvelle note 16.md} | 6 +- ...note 15.md.bak => Nouvelle note 16.md.bak} | 6 +- vault/Test 1 Markdown copy.md | 1 - vault/folder-4/Nouvelle note 10.md | 4 + vault/folder-4/Nouvelle note 13.md | 21 ----- vault/folder-4/test-add-properties.md | 54 +++++++++++++ vault/folder-4/test-add-properties.md.bak | 52 +++++++++++++ .../nouveauDossierRacine/Nouvelle note 10.md | 17 ---- .../Nouvelle note 10.md.bak | 15 ---- .../nouveauDossierRacine/Nouvelle note 11.md | 17 ---- .../Nouvelle note 11.md.bak | 15 ---- .../Nouvelle note 14.md.bak | 15 ---- vault/nouveauDossierRacine/Nouvelle note 3.md | 17 ---- .../Nouvelle note 3.md.bak | 15 ---- vault/nouveauDossierRacine/Nouvelle note 4.md | 17 ---- .../Nouvelle note 4.md.bak | 15 ---- vault/nouveauDossierRacine/Nouvelle note 5.md | 17 ---- .../Nouvelle note 5.md.bak | 15 ---- vault/nouveauDossierRacine/Nouvelle note 6.md | 17 ---- .../Nouvelle note 6.md.bak | 15 ---- vault/nouveauDossierRacine/archived-note.md | 25 ------ 33 files changed, 377 insertions(+), 298 deletions(-) create mode 100644 vault/Allo-3/Nouvelle note 13.md rename vault/{folder-5/test-add-properties.md => Allo-3/test-add-properties.md.bak} (50%) rename vault/{nouveauDossierRacine/Nouvelle note 15.md => Nouvelle note 16.md} (62%) rename vault/{nouveauDossierRacine/Nouvelle note 15.md.bak => Nouvelle note 16.md.bak} (57%) delete mode 100644 vault/folder-4/Nouvelle note 13.md create mode 100644 vault/folder-4/test-add-properties.md create mode 100644 vault/folder-4/test-add-properties.md.bak delete mode 100644 vault/nouveauDossierRacine/Nouvelle note 10.md delete mode 100644 vault/nouveauDossierRacine/Nouvelle note 10.md.bak delete mode 100644 vault/nouveauDossierRacine/Nouvelle note 11.md delete mode 100644 vault/nouveauDossierRacine/Nouvelle note 11.md.bak delete mode 100644 vault/nouveauDossierRacine/Nouvelle note 14.md.bak delete mode 100644 vault/nouveauDossierRacine/Nouvelle note 3.md delete mode 100644 vault/nouveauDossierRacine/Nouvelle note 3.md.bak delete mode 100644 vault/nouveauDossierRacine/Nouvelle note 4.md delete mode 100644 vault/nouveauDossierRacine/Nouvelle note 4.md.bak delete mode 100644 vault/nouveauDossierRacine/Nouvelle note 5.md delete mode 100644 vault/nouveauDossierRacine/Nouvelle note 5.md.bak delete mode 100644 vault/nouveauDossierRacine/Nouvelle note 6.md delete mode 100644 vault/nouveauDossierRacine/Nouvelle note 6.md.bak delete mode 100644 vault/nouveauDossierRacine/archived-note.md diff --git a/src/app/features/note/components/move-note-to-folder/move-note-to-folder.component.css b/src/app/features/note/components/move-note-to-folder/move-note-to-folder.component.css index c3c75ec..e040404 100644 --- a/src/app/features/note/components/move-note-to-folder/move-note-to-folder.component.css +++ b/src/app/features/note/components/move-note-to-folder/move-note-to-folder.component.css @@ -27,22 +27,31 @@ } .move-menu-panel { - /* Solid, non-transparent panel aligned with site menus */ - background: var(--card-bg); - border: 1px solid var(--border); - border-radius: 1rem; - box-shadow: - 0 16px 42px var(--shadow-color), - 0 4px 10px color-mix(in srgb, var(--shadow-color) 55%, transparent); - overflow: hidden; - backdrop-filter: none; - opacity: 1; + /* Ne pas remettre de background ici: on s'appuie sur bg-card du HTML */ + position: relative; /* needed for ::before background layer */ + backdrop-filter: none !important; + opacity: 1 !important; isolation: isolate; + mix-blend-mode: normal !important; + max-height: min(80vh, 560px); + overflow: auto; +} + +/* Solid background layer to guarantee full opacity regardless of ancestors */ +.move-menu-panel::before { + content: ""; + position: absolute; + inset: 0; + background: var(--card); + border-radius: inherit; + z-index: -1; /* sit behind content but inside panel */ + opacity: 1 !important; + pointer-events: none; } .move-menu-header { padding: 1rem 1.1rem 0.7rem; - border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent); + border-bottom: 1px solid color-mix(in srgb, var(--border) 60%); } .move-menu-title { diff --git a/src/app/features/note/components/move-note-to-folder/move-note-to-folder.component.html b/src/app/features/note/components/move-note-to-folder/move-note-to-folder.component.html index ab57ec1..5ca0151 100644 --- a/src/app/features/note/components/move-note-to-folder/move-note-to-folder.component.html +++ b/src/app/features/note/components/move-note-to-folder/move-note-to-folder.component.html @@ -11,10 +11,14 @@ - @if (showMenu()) { -
-
+ +
- } + diff --git a/src/app/features/note/components/move-note-to-folder/move-note-to-folder.component.ts b/src/app/features/note/components/move-note-to-folder/move-note-to-folder.component.ts index 80fe33f..2ddf187 100644 --- a/src/app/features/note/components/move-note-to-folder/move-note-to-folder.component.ts +++ b/src/app/features/note/components/move-note-to-folder/move-note-to-folder.component.ts @@ -7,11 +7,16 @@ import { Input, Output, ViewChild, + TemplateRef, + ViewContainerRef, computed, effect, inject, signal } from '@angular/core'; +import { Overlay, OverlayModule, OverlayRef, ConnectedPosition } from '@angular/cdk/overlay'; +import { TemplatePortal, PortalModule } from '@angular/cdk/portal'; +import { A11yModule } from '@angular/cdk/a11y'; import { splitPathKeepFilename } from '../../../../shared/utils/path'; import { ToastService } from '../../../../shared/toast/toast.service'; import { VaultService } from '../../../../../services/vault.service'; @@ -32,7 +37,7 @@ interface FlattenedFolder { @Component({ selector: 'app-move-note-to-folder', standalone: true, - imports: [CommonModule], + imports: [CommonModule, OverlayModule, PortalModule, A11yModule], templateUrl: './move-note-to-folder.component.html', styleUrls: ['./move-note-to-folder.component.css'] }) @@ -49,6 +54,7 @@ export class MoveNoteToFolderComponent { @ViewChild('searchField') searchField?: ElementRef; @ViewChild('trigger') trigger?: ElementRef; + @ViewChild('panelTpl') panelTpl?: TemplateRef; readonly showMenu = signal(false); readonly searchQuery = signal(''); @@ -95,6 +101,9 @@ export class MoveNoteToFolderComponent { private readonly toast = inject(ToastService); private readonly destroyRef = inject(DestroyRef); private readonly host = inject(ElementRef); + private readonly overlay = inject(Overlay); + private readonly vcr = inject(ViewContainerRef); + private overlayRef?: OverlayRef; private listenersAttached = false; @@ -107,6 +116,15 @@ export class MoveNoteToFolderComponent { { allowSignalWrites: true } ); + this.destroyRef.onDestroy(() => { + this.detachGlobalListeners(); + if (this.overlayRef) { + try { this.overlayRef.detach(); } catch {} + try { this.overlayRef.dispose(); } catch {} + this.overlayRef = undefined; + } + }); + effect( () => { const path = this.currentFolderPath(); @@ -132,7 +150,29 @@ export class MoveNoteToFolderComponent { this.attachGlobalListeners(); queueMicrotask(() => { - this.computeMenuPosition(); + const tpl = this.panelTpl; + if (!tpl) return; + + const positionStrategy = this.overlay + .position() + .global() + .centerHorizontally() + .centerVertically(); + + this.overlayRef = this.overlay.create({ + hasBackdrop: true, + backdropClass: 'ov-blur-backdrop', + positionStrategy, + scrollStrategy: this.overlay.scrollStrategies.reposition() + }); + + this.overlayRef.backdropClick().subscribe(() => this.closeMenu()); + this.overlayRef.keydownEvents().subscribe((e) => { + if (e.key === 'Escape') this.closeMenu(); + }); + + const portal = new TemplatePortal(tpl, this.vcr); + this.overlayRef.attach(portal); setTimeout(() => this.focusSearchField(), 0); }); } @@ -303,6 +343,11 @@ export class MoveNoteToFolderComponent { private closeMenu(): void { this.showMenu.set(false); + if (this.overlayRef) { + try { this.overlayRef.detach(); } catch {} + try { this.overlayRef.dispose(); } catch {} + this.overlayRef = undefined; + } this.detachGlobalListeners(); this.searchQuery.set(''); this.processingPath.set(null); @@ -319,18 +364,8 @@ export class MoveNoteToFolderComponent { } } - private computeMenuPosition(): void { - const t = this.trigger?.nativeElement; - if (!t) return; - const rect = t.getBoundingClientRect(); - // Place menu just under the trigger (fixed panel -> viewport coords) - this.menuTop.set(Math.round(rect.bottom + 8)); - // Align left edge; clamp to viewport - const vw = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0); - const desiredLeft = Math.round(rect.left); - const clampedLeft = Math.min(Math.max(8, desiredLeft), vw - 8 - 320); // ~w-80 - this.menuLeft.set(clampedLeft); - } + private computeMenuPosition(): void {} + private repositionPanel(): void {} private attachGlobalListeners(): void { if (typeof document === 'undefined' || this.listenersAttached) { @@ -354,7 +389,10 @@ export class MoveNoteToFolderComponent { if (!this.showMenu()) { return; } - if (!this.host.nativeElement.contains(event.target as Node)) { + const target = event.target as Node; + const hostContains = this.host.nativeElement.contains(target); + const overlayContains = this.overlayRef?.overlayElement.contains(target) ?? false; + if (!hostContains && !overlayContains) { this.closeMenu(); } }; @@ -365,6 +403,16 @@ export class MoveNoteToFolderComponent { } }; + onSearchEnter(event: KeyboardEvent): void { + event.preventDefault(); + if (this.isSearching() && this.searchResults().length > 0) { + const first = this.searchResults()[0]; + this.onSearchResultSelected(first); + return; + } + this.moveToCurrentFolder(); + } + private normalizeFolderPath(value: string | null | undefined): string { return (value ?? '') .replace(/\\/g, '/') diff --git a/src/app/features/note/components/note-header/note-header.component.html b/src/app/features/note/components/note-header/note-header.component.html index bf27b70..c0f502f 100644 --- a/src/app/features/note/components/note-header/note-header.component.html +++ b/src/app/features/note/components/note-header/note-header.component.html @@ -1,7 +1,7 @@
diff --git a/src/styles.css b/src/styles.css index 56e5190..b2e35fc 100644 --- a/src/styles.css +++ b/src/styles.css @@ -256,6 +256,16 @@ excalidraw-editor .excalidraw .layer-ui__wrapper { opacity: 1; } +/* Themed blurred backdrop for contextual dialogs (Move Note to Folder, etc.) */ +.ov-blur-backdrop { + background-color: color-mix(in oklab, var(--bg-main, #0f172a) 25%, rgba(0,0,0,0.55)); + -webkit-backdrop-filter: blur(8px); + backdrop-filter: blur(8px); + opacity: 1; + transition: opacity 160ms ease; +} +.ov-blur-backdrop.cdk-overlay-backdrop-showing { opacity: 1; } + .md-math-inline { font-family: "Cambria", "Times New Roman", serif; background-color: rgba(148, 163, 184, 0.2); diff --git a/vault/Allo-3/Nouvelle note 13.md b/vault/Allo-3/Nouvelle note 13.md new file mode 100644 index 0000000..7055640 --- /dev/null +++ b/vault/Allo-3/Nouvelle note 13.md @@ -0,0 +1,23 @@ +--- +titre: Nouvelle note 13 +auteur: Bruno Charest +creation_date: 2025-10-26T14:56:06.375Z +modification_date: 2025-10-27T15:43:42-04:00 +catégorie: "" +tags: + - configuration + - tag2 + - bruno + - accueil +aliases: + - "" +status: en-cours +publish: false +favoris: true +template: false +task: false +archive: false +draft: false +private: false +color: "#F59E0B" +--- diff --git a/vault/Allo-3/tata.md b/vault/Allo-3/tata.md index 9676286..839752d 100644 --- a/vault/Allo-3/tata.md +++ b/vault/Allo-3/tata.md @@ -10,7 +10,7 @@ tags: aliases: [] status: en-cours publish: false -favoris: false +favoris: true template: false task: false archive: false diff --git a/vault/folder-5/test-add-properties.md b/vault/Allo-3/test-add-properties.md.bak similarity index 50% rename from vault/folder-5/test-add-properties.md rename to vault/Allo-3/test-add-properties.md.bak index a3bb5a9..7808241 100644 --- a/vault/folder-5/test-add-properties.md +++ b/vault/Allo-3/test-add-properties.md.bak @@ -18,3 +18,39 @@ tags: - accueil - tag3 --- +Allo ceci est un tests +toto + +# Test 1 Markdown + +## Titres + +# Niveau 1 +#tag1 #tag2 #test #test2 + + +# Nouveau-markdown + +## sous-titre +- [ ] allo +- [ ] toto +- [ ] tata + +## sous-titre 2 + +#tag1 #tag2 #tag3 #tag4 + +## sous-titre 3 + +## sous-titre 4 + +## sous-titre 5 +test + +## sous-titre 6 +test + +## sous-titre 7 +test + +## sous-titre 8 \ No newline at end of file diff --git a/vault/nouveauDossierRacine/Nouvelle note 15.md b/vault/Nouvelle note 16.md similarity index 62% rename from vault/nouveauDossierRacine/Nouvelle note 15.md rename to vault/Nouvelle note 16.md index eec202c..09f5207 100644 --- a/vault/nouveauDossierRacine/Nouvelle note 15.md +++ b/vault/Nouvelle note 16.md @@ -1,8 +1,8 @@ --- -titre: Nouvelle note 15 +titre: Nouvelle note 16 auteur: Bruno Charest -creation_date: 2025-10-27T01:39:33.465Z -modification_date: 2025-10-26T21:39:33-04:00 +creation_date: 2025-10-27T18:01:11.627Z +modification_date: 2025-10-27T14:01:12-04:00 catégorie: "" tags: [] aliases: [] diff --git a/vault/nouveauDossierRacine/Nouvelle note 15.md.bak b/vault/Nouvelle note 16.md.bak similarity index 57% rename from vault/nouveauDossierRacine/Nouvelle note 15.md.bak rename to vault/Nouvelle note 16.md.bak index 71896ad..4e4bdc5 100644 --- a/vault/nouveauDossierRacine/Nouvelle note 15.md.bak +++ b/vault/Nouvelle note 16.md.bak @@ -1,8 +1,8 @@ --- -titre: "Nouvelle note 15" +titre: "Nouvelle note 16" auteur: "Bruno Charest" -creation_date: "2025-10-27T01:39:33.465Z" -modification_date: "2025-10-27T01:39:33.465Z" +creation_date: "2025-10-27T18:01:11.627Z" +modification_date: "2025-10-27T18:01:11.627Z" status: "en-cours" publish: false favoris: false diff --git a/vault/Test 1 Markdown copy.md b/vault/Test 1 Markdown copy.md index ab1b6d1..3d6fd7d 100644 --- a/vault/Test 1 Markdown copy.md +++ b/vault/Test 1 Markdown copy.md @@ -13,7 +13,6 @@ draft: true private: true toto: "tata" readOnly: false -color: "#A855F7" --- Allo ceci est un tests toto diff --git a/vault/folder-4/Nouvelle note 10.md b/vault/folder-4/Nouvelle note 10.md index 55b7394..7c10dac 100644 --- a/vault/folder-4/Nouvelle note 10.md +++ b/vault/folder-4/Nouvelle note 10.md @@ -13,6 +13,10 @@ archive: true draft: true private: true color: "#EF4444" +tags: + - configuration + - tag4 + - test --- # TEST diff --git a/vault/folder-4/Nouvelle note 13.md b/vault/folder-4/Nouvelle note 13.md deleted file mode 100644 index dd106b4..0000000 --- a/vault/folder-4/Nouvelle note 13.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -titre: "Nouvelle note 13" -auteur: "Bruno Charest" -creation_date: "2025-10-26T14:56:06.375Z" -modification_date: "2025-10-26T10:56:06-04:00" -aliases: [""] -status: "en-cours" -publish: false -favoris: false -template: false -task: false -archive: false -draft: false -private: false -color: "#F59E0B" -tags: - - configuration - - tag2 - - bruno - - accueil ---- diff --git a/vault/folder-4/test-add-properties.md b/vault/folder-4/test-add-properties.md new file mode 100644 index 0000000..fb43782 --- /dev/null +++ b/vault/folder-4/test-add-properties.md @@ -0,0 +1,54 @@ +--- +titre: test-add-properties +auteur: Bruno Charest +creation_date: 2025-10-23T13:11:50-04:00 +modification_date: 2025-10-27T16:20:34-04:00 +catégorie: "" +tags: + - tagtag +aliases: [] +status: en-cours +publish: false +favoris: true +template: false +task: true +archive: false +draft: false +private: true +--- +Allo ceci est un tests +toto + +# Test 1 Markdown + +## Titres + +# Niveau 1 +#tag1 #tag2 #test #test2 + + +# Nouveau-markdown + +## sous-titre +- [ ] allo +- [ ] toto +- [ ] tata + +## sous-titre 2 + +#tag1 #tag2 #tag3 #tag4 + +## sous-titre 3 + +## sous-titre 4 + +## sous-titre 5 +test + +## sous-titre 6 +test + +## sous-titre 7 +test + +## sous-titre 8 \ No newline at end of file diff --git a/vault/folder-4/test-add-properties.md.bak b/vault/folder-4/test-add-properties.md.bak new file mode 100644 index 0000000..af54341 --- /dev/null +++ b/vault/folder-4/test-add-properties.md.bak @@ -0,0 +1,52 @@ +--- +titre: "test-add-properties" +auteur: "Bruno Charest" +creation_date: "2025-10-23T13:11:50-04:00" +modification_date: "2025-10-27T15:13:08-04:00" +status: "en-cours" +publish: false +favoris: true +template: false +task: true +archive: false +draft: false +private: true +tags: + - tagtag +--- +Allo ceci est un tests +toto + +# Test 1 Markdown + +## Titres + +# Niveau 1 +#tag1 #tag2 #test #test2 + + +# Nouveau-markdown + +## sous-titre +- [ ] allo +- [ ] toto +- [ ] tata + +## sous-titre 2 + +#tag1 #tag2 #tag3 #tag4 + +## sous-titre 3 + +## sous-titre 4 + +## sous-titre 5 +test + +## sous-titre 6 +test + +## sous-titre 7 +test + +## sous-titre 8 \ No newline at end of file diff --git a/vault/nouveauDossierRacine/Nouvelle note 10.md b/vault/nouveauDossierRacine/Nouvelle note 10.md deleted file mode 100644 index ca7941d..0000000 --- a/vault/nouveauDossierRacine/Nouvelle note 10.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -titre: Nouvelle note 10 -auteur: Bruno Charest -creation_date: 2025-10-27T01:39:29.029Z -modification_date: 2025-10-26T21:39:29-04:00 -catégorie: "" -tags: [] -aliases: [] -status: en-cours -publish: false -favoris: false -template: false -task: false -archive: false -draft: false -private: false ---- diff --git a/vault/nouveauDossierRacine/Nouvelle note 10.md.bak b/vault/nouveauDossierRacine/Nouvelle note 10.md.bak deleted file mode 100644 index 08c11d5..0000000 --- a/vault/nouveauDossierRacine/Nouvelle note 10.md.bak +++ /dev/null @@ -1,15 +0,0 @@ ---- -titre: "Nouvelle note 10" -auteur: "Bruno Charest" -creation_date: "2025-10-27T01:39:29.029Z" -modification_date: "2025-10-27T01:39:29.029Z" -status: "en-cours" -publish: false -favoris: false -template: false -task: false -archive: false -draft: false -private: false ---- - diff --git a/vault/nouveauDossierRacine/Nouvelle note 11.md b/vault/nouveauDossierRacine/Nouvelle note 11.md deleted file mode 100644 index 95cb948..0000000 --- a/vault/nouveauDossierRacine/Nouvelle note 11.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -titre: Nouvelle note 11 -auteur: Bruno Charest -creation_date: 2025-10-27T01:39:30.678Z -modification_date: 2025-10-26T21:39:31-04:00 -catégorie: "" -tags: [] -aliases: [] -status: en-cours -publish: false -favoris: false -template: false -task: false -archive: false -draft: false -private: false ---- diff --git a/vault/nouveauDossierRacine/Nouvelle note 11.md.bak b/vault/nouveauDossierRacine/Nouvelle note 11.md.bak deleted file mode 100644 index 8d64803..0000000 --- a/vault/nouveauDossierRacine/Nouvelle note 11.md.bak +++ /dev/null @@ -1,15 +0,0 @@ ---- -titre: "Nouvelle note 11" -auteur: "Bruno Charest" -creation_date: "2025-10-27T01:39:30.678Z" -modification_date: "2025-10-27T01:39:30.678Z" -status: "en-cours" -publish: false -favoris: false -template: false -task: false -archive: false -draft: false -private: false ---- - diff --git a/vault/nouveauDossierRacine/Nouvelle note 14.md.bak b/vault/nouveauDossierRacine/Nouvelle note 14.md.bak deleted file mode 100644 index 82ee615..0000000 --- a/vault/nouveauDossierRacine/Nouvelle note 14.md.bak +++ /dev/null @@ -1,15 +0,0 @@ ---- -titre: "Nouvelle note 14" -auteur: "Bruno Charest" -creation_date: "2025-10-27T01:39:31.961Z" -modification_date: "2025-10-27T01:39:31.961Z" -status: "en-cours" -publish: false -favoris: false -template: false -task: false -archive: false -draft: false -private: false ---- - diff --git a/vault/nouveauDossierRacine/Nouvelle note 3.md b/vault/nouveauDossierRacine/Nouvelle note 3.md deleted file mode 100644 index 0da2472..0000000 --- a/vault/nouveauDossierRacine/Nouvelle note 3.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -titre: Nouvelle note 3 -auteur: Bruno Charest -creation_date: 2025-10-26T02:24:37.457Z -modification_date: 2025-10-25T22:24:37-04:00 -catégorie: "" -tags: [] -aliases: [] -status: en-cours -publish: false -favoris: false -template: false -task: false -archive: false -draft: false -private: false ---- diff --git a/vault/nouveauDossierRacine/Nouvelle note 3.md.bak b/vault/nouveauDossierRacine/Nouvelle note 3.md.bak deleted file mode 100644 index bd7f4d7..0000000 --- a/vault/nouveauDossierRacine/Nouvelle note 3.md.bak +++ /dev/null @@ -1,15 +0,0 @@ ---- -titre: "Nouvelle note 3" -auteur: "Bruno Charest" -creation_date: "2025-10-26T02:24:37.457Z" -modification_date: "2025-10-26T02:24:37.457Z" -status: "en-cours" -publish: false -favoris: false -template: false -task: false -archive: false -draft: false -private: false ---- - diff --git a/vault/nouveauDossierRacine/Nouvelle note 4.md b/vault/nouveauDossierRacine/Nouvelle note 4.md deleted file mode 100644 index 2e29c2b..0000000 --- a/vault/nouveauDossierRacine/Nouvelle note 4.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -titre: Nouvelle note 4 -auteur: Bruno Charest -creation_date: 2025-10-25T02:07:16.534Z -modification_date: 2025-10-24T22:07:16-04:00 -catégorie: "" -tags: [] -aliases: [] -status: en-cours -publish: false -favoris: false -template: false -task: false -archive: false -draft: false -private: false ---- diff --git a/vault/nouveauDossierRacine/Nouvelle note 4.md.bak b/vault/nouveauDossierRacine/Nouvelle note 4.md.bak deleted file mode 100644 index 62904f9..0000000 --- a/vault/nouveauDossierRacine/Nouvelle note 4.md.bak +++ /dev/null @@ -1,15 +0,0 @@ ---- -titre: "Nouvelle note 4" -auteur: "Bruno Charest" -creation_date: "2025-10-25T02:07:16.534Z" -modification_date: "2025-10-25T02:07:16.534Z" -status: "en-cours" -publish: false -favoris: false -template: false -task: false -archive: false -draft: false -private: false ---- - diff --git a/vault/nouveauDossierRacine/Nouvelle note 5.md b/vault/nouveauDossierRacine/Nouvelle note 5.md deleted file mode 100644 index 4af8c49..0000000 --- a/vault/nouveauDossierRacine/Nouvelle note 5.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -titre: Nouvelle note 5 -auteur: Bruno Charest -creation_date: 2025-10-26T02:40:02.515Z -modification_date: 2025-10-25T22:40:02-04:00 -catégorie: "" -tags: [] -aliases: [] -status: en-cours -publish: false -favoris: false -template: false -task: false -archive: false -draft: false -private: false ---- diff --git a/vault/nouveauDossierRacine/Nouvelle note 5.md.bak b/vault/nouveauDossierRacine/Nouvelle note 5.md.bak deleted file mode 100644 index 49697bf..0000000 --- a/vault/nouveauDossierRacine/Nouvelle note 5.md.bak +++ /dev/null @@ -1,15 +0,0 @@ ---- -titre: "Nouvelle note 5" -auteur: "Bruno Charest" -creation_date: "2025-10-26T02:40:02.515Z" -modification_date: "2025-10-26T02:40:02.515Z" -status: "en-cours" -publish: false -favoris: false -template: false -task: false -archive: false -draft: false -private: false ---- - diff --git a/vault/nouveauDossierRacine/Nouvelle note 6.md b/vault/nouveauDossierRacine/Nouvelle note 6.md deleted file mode 100644 index 5cfcf20..0000000 --- a/vault/nouveauDossierRacine/Nouvelle note 6.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -titre: Nouvelle note 6 -auteur: Bruno Charest -creation_date: 2025-10-26T02:41:08.391Z -modification_date: 2025-10-25T22:41:08-04:00 -catégorie: "" -tags: [] -aliases: [] -status: en-cours -publish: false -favoris: false -template: false -task: false -archive: false -draft: false -private: false ---- diff --git a/vault/nouveauDossierRacine/Nouvelle note 6.md.bak b/vault/nouveauDossierRacine/Nouvelle note 6.md.bak deleted file mode 100644 index 6917f2f..0000000 --- a/vault/nouveauDossierRacine/Nouvelle note 6.md.bak +++ /dev/null @@ -1,15 +0,0 @@ ---- -titre: "Nouvelle note 6" -auteur: "Bruno Charest" -creation_date: "2025-10-26T02:41:08.391Z" -modification_date: "2025-10-26T02:41:08.391Z" -status: "en-cours" -publish: false -favoris: false -template: false -task: false -archive: false -draft: false -private: false ---- - diff --git a/vault/nouveauDossierRacine/archived-note.md b/vault/nouveauDossierRacine/archived-note.md deleted file mode 100644 index e317d3a..0000000 --- a/vault/nouveauDossierRacine/archived-note.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -titre: archived-note -auteur: Bruno Charest -creation_date: 2025-10-19T11:13:12-04:00 -modification_date: 2025-10-19T12:09:46-04:00 -catégorie: "" -tags: - - bruno - - configuration -aliases: [] -status: en-cours -publish: true -favoris: true -template: true -task: true -archive: true -draft: true -private: true ---- -# Archived Note - -#bruno - - -This note was archived and moved to trash.