Phase 1 MVP - Complete implementation

- Login with JWT and refresh token rotation
- Dashboard with projects cards
- ProjectView with TreeView navigation
- DocumentView with markdown editor and auto-save
- Tag management (create, assign, remove)
- Dark mode CSS variables
- Security fixes applied (logout to backend, createDocument endpoint)
This commit is contained in:
Motoko
2026-03-30 15:17:29 +00:00
commit c9cb07dbfc
1341 changed files with 1084068 additions and 0 deletions

1
node_modules/vue/compiler-sfc/index.browser.js generated vendored Normal file
View File

@@ -0,0 +1 @@
module.exports = require('@vue/compiler-sfc')

1
node_modules/vue/compiler-sfc/index.browser.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export * from '@vue/compiler-sfc'

1
node_modules/vue/compiler-sfc/index.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
export * from '@vue/compiler-sfc'

1
node_modules/vue/compiler-sfc/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export * from '@vue/compiler-sfc'

3
node_modules/vue/compiler-sfc/index.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
module.exports = require('@vue/compiler-sfc')
require('./register-ts.js')

3
node_modules/vue/compiler-sfc/index.mjs generated vendored Normal file
View File

@@ -0,0 +1,3 @@
export * from '@vue/compiler-sfc'
import './register-ts.js'

4
node_modules/vue/compiler-sfc/package.json generated vendored Normal file
View File

@@ -0,0 +1,4 @@
{
"main": "index.js",
"module": "index.mjs"
}

3
node_modules/vue/compiler-sfc/register-ts.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
if (typeof require !== 'undefined') {
require('@vue/compiler-sfc').registerTS(() => require('typescript'))
}