first draft

This commit is contained in:
2026-06-09 17:36:46 +02:00
parent 6c385aebe4
commit 9df03fba90
46 changed files with 29915 additions and 498 deletions

19
.vscode/launch.json vendored
View File

@@ -1,20 +1,23 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ng serve",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
"name": "Debug (standalone client)",
"url": "http://localhost:4201/",
"webRoot": "${workspaceFolder}",
"sourceMaps": true,
"skipFiles": ["<node_internals>/**", "**/node_modules/**"]
},
{
"name": "ng test",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: test",
"url": "http://localhost:9876/debug.html"
"name": "Debug (plugin loaded inside Phoenix)",
"url": "https://localhost:4200/admin/customElements",
"webRoot": "${workspaceFolder}",
"sourceMaps": true,
"skipFiles": ["<node_internals>/**", "**/node_modules/**"]
}
]
}
}

27
.vscode/sessions.json vendored Normal file
View File

@@ -0,0 +1,27 @@
{
"$schema": "https://cdn.statically.io/gh/nguyenngoclongdev/cdn/main/schema/v11/terminal-keeper.json",
"theme": "tribe",
"active": "default",
"activateOnStartup": false,
"keepExistingTerminals": true,
"sessions": {
"default": [
[
{
"name": "plugin",
"commands": [
"clear && yarn plugin"
],
"autoExecuteCommands": true
},
{
"name": "client",
"commands": [
"clear && yarn client"
],
"autoExecuteCommands": true
}
]
]
}
}

10
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,10 @@
{
"cSpell.words": [
"BASEMODEL",
"emptymessage",
"iconfield",
"inputicon",
"inputtext",
"selectbutton"
]
}