Skip to content

Commit

Permalink
Merge pull request #4332 from GordonSmith/GALLERY
Browse files Browse the repository at this point in the history
chore: Reinstate the old gallery
  • Loading branch information
GordonSmith authored Jan 31, 2025
2 parents a4c4a1d + 6f86027 commit c7ab69d
Show file tree
Hide file tree
Showing 102 changed files with 12,726 additions and 6,155 deletions.
24 changes: 0 additions & 24 deletions demos/gallery/.gitignore

This file was deleted.

96 changes: 78 additions & 18 deletions demos/gallery/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,79 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "index.html",
"request": "launch",
"type": "msedge",
"url": "http://localhost:5173/index.html",
"runtimeArgs": [
"--disable-web-security"
],
"webRoot": "${workspaceFolder}",
"outFiles": [
"${workspaceFolder}/**/*.js",
"!**/node_modules/**"
]
}
]
{
"version": "0.2.0",
"configurations": [
{
"name": "http - gallery",
"type": "msedge",
"request": "launch",
"url": "http://localhost:5500/index.html",
"runtimeArgs": [],
"webRoot": "${workspaceFolder}"
},
{
"name": "gallery",
"type": "msedge",
"request": "launch",
"url": "file:///${workspaceFolder}/gallery.html",
"runtimeArgs": [
"--allow-file-access-from-files",
"--disable-web-security"
],
"webRoot": "${workspaceFolder}"
},
{
"name": "gallery/layout",
"type": "msedge",
"request": "launch",
"url": "file:///${workspaceFolder}/gallery.html?./samples/layout",
"runtimeArgs": [
"--allow-file-access-from-files",
"--disable-web-security"
],
"webRoot": "${workspaceFolder}"
},
{
"name": "galleryItem",
"type": "msedge",
"request": "launch",
"url": "file:///${workspaceFolder}/galleryItem.html?./samples/chart/Heat/Week.js",
"runtimeArgs": [
"--allow-file-access-from-files",
"--disable-web-security"
],
"webRoot": "${workspaceFolder}"
},
{
"name": "playground",
"type": "msedge",
"request": "launch",
"url": "file:///${workspaceFolder}/playground.html?./samples/chart/Heat/Week (StdDev).js",
"runtimeArgs": [
"--allow-file-access-from-files",
"--disable-web-security"
],
"webRoot": "${workspaceFolder}"
},
{
"name": "test",
"type": "msedge",
"request": "launch",
"url": "file:///${workspaceFolder}/test.html",
"runtimeArgs": [
"--allow-file-access-from-files",
"--disable-web-security"
],
"webRoot": "${workspaceFolder}"
},
{
"name": "test-single",
"type": "msedge",
"request": "launch",
"url": "file:///${workspaceFolder}/test.html?./samples/graph2/DataGraph.js",
"runtimeArgs": [
"--allow-file-access-from-files",
"--disable-web-security"
],
"webRoot": "${workspaceFolder}"
}
]
}
70 changes: 35 additions & 35 deletions demos/gallery/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "gen-types-watch",
"type": "npm",
"script": "gen-types-watch",
"problemMatcher": [
"$tsc-watch"
],
"presentation": {
"group": "group-build"
}
},
{
"label": "bundle-watch",
"type": "npm",
"script": "bundle-watch",
"problemMatcher": [],
"presentation": {
"group": "group-build"
}
},
{
"label": "build",
"dependsOn": [
"gen-types-watch",
"bundle-watch",
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
{
"version": "2.0.0",
"tasks": [
{
"label": "gen-types-watch",
"type": "npm",
"script": "gen-types-watch",
"problemMatcher": [
"$tsc-watch"
],
"presentation": {
"group": "group-build"
}
},
{
"label": "bundle-watch",
"type": "npm",
"script": "bundle-watch",
"problemMatcher": [],
"presentation": {
"group": "group-build"
}
},
{
"label": "build",
"dependsOn": [
"gen-types-watch",
"bundle-watch",
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
Loading

0 comments on commit c7ab69d

Please sign in to comment.