Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
57056d4
improved local dev
timea-solid Mar 24, 2026
4f2c7e0
new outine structure, ts ignores
timea-solid Mar 24, 2026
89c9c46
wired in environement in context and added left side menu
timea-solid Mar 31, 2026
d9e8c7e
updated pane-registry
timea-solid Mar 31, 2026
4d9820b
merge main
timea-solid Mar 31, 2026
f8eb415
merge main
timea-solid Mar 31, 2026
14c9481
updated codebase
timea-solid Mar 31, 2026
f4bdc44
fic CI
timea-solid Mar 31, 2026
eeb27e6
fix lint
timea-solid Mar 31, 2026
9471402
register editProfileView only if it exists
Apr 6, 2026
b8d2e96
close to final design and calling components
timea-solid Apr 10, 2026
b70303a
small improvements and comments
timea-solid Apr 10, 2026
554c862
rewired menu, better header event handling
timea-solid Apr 10, 2026
782064c
Merge branch 'milestone2k' into milestone3m
timea-solid Apr 10, 2026
f4f76fd
Make outline manager resilient to missing legacy outline mount
Apr 11, 2026
32035cb
Merge branch 'milestone3m' of https://github.com/solidos/solid-panes …
Apr 11, 2026
b290be5
import solid-ui/components/header
Apr 11, 2026
0cac9df
allow png assets
Apr 11, 2026
aa0dc50
mobile/tablet trial
Apr 12, 2026
e44f462
remove nav bar
Apr 12, 2026
5c7c901
Update README.md
timea-solid Apr 13, 2026
d8e3938
Update README.md
timea-solid Apr 13, 2026
1a83a8d
Update README.md
timea-solid Apr 13, 2026
5202e7e
Update src/mainPage/header.ts
timea-solid Apr 13, 2026
6116cd9
Update src/outline/manager.js
timea-solid Apr 13, 2026
85a552f
building left side menu with getDashboardItems
timea-solid Apr 13, 2026
72c7287
Merge branch 'milestone2k' into milestone3m
timea-solid Apr 13, 2026
dc3de6f
alligned mielstone 2k
timea-solid Apr 13, 2026
f0b2364
improved watch script
timea-solid Apr 16, 2026
3e8d20e
took out tabs, defined default menu items
timea-solid Apr 16, 2026
300c040
improved opening of profile pane
timea-solid Apr 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,13 @@ We have added comments in the code to make it explicit which parts are 100% writ
* Raptor mini: take a look how I wired the environement from mashlib into solid-panes. It is not quite right, can you suggest fixes?

* Raptor mini: Update the code to use the new solid-ui-header component. Keep in mind the log in and sign up are wired in specific ways.

* Auto: chnage the menu to fill up the menu items like in the code: async function getMenuItems (outliner: any) {
Comment thread
timea-solid marked this conversation as resolved.
Outdated
const items = await outliner.getDashboardItems()
return items.map((element) => {
return {
label: element.label,
onclick: () => openDashboardPane(outliner, element.tabName || element.paneName)
}
})
}
Loading