Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
cfc4240
created dataContentPane css
SharonStrats Mar 12, 2026
45dc0a5
change style to styles like other repos
SharonStrats Mar 12, 2026
65505cb
completed dataContentPane style move
SharonStrats Mar 12, 2026
93923fb
humanReadablePane sytles
SharonStrats Mar 12, 2026
c7f07e5
moved padPane styles
SharonStrats Mar 13, 2026
d2e9717
moved internalPane styles
SharonStrats Mar 13, 2026
ee1898f
resolved issue with schedulepane not displaying
SharonStrats Mar 13, 2026
2648647
linting errors
SharonStrats Mar 13, 2026
09d84c9
dev loader
SharonStrats Mar 13, 2026
80a2082
moved SchedulePane styles
SharonStrats Mar 13, 2026
db66386
moved imagePane styles
SharonStrats Mar 13, 2026
b95a32f
moved formPane styles
SharonStrats Mar 13, 2026
25a3134
imagePane lint errors
SharonStrats Mar 13, 2026
a43959e
dev loader
SharonStrats Mar 15, 2026
686c778
schedpane styles vars
SharonStrats Mar 16, 2026
81a6788
data content pane style vars
SharonStrats Mar 16, 2026
b989b6e
humanreadable style vars
SharonStrats Mar 16, 2026
6c3a752
internalPane use icon var
SharonStrats Mar 16, 2026
4b92880
light and dark assignment - data content pane
SharonStrats Mar 19, 2026
3c6dd49
Potential fix for pull request finding
SharonStrats Mar 19, 2026
3ee7d27
Potential fix for pull request finding
SharonStrats Mar 19, 2026
b5dbbc2
merge main
SharonStrats Mar 19, 2026
9f49cc6
fixed npm 11 error
SharonStrats Mar 19, 2026
3659ea1
lint fix
SharonStrats Mar 19, 2026
0a556db
manager test no more inline styles
SharonStrats Mar 19, 2026
3ed4ce0
merge with profileEditA11y
SharonStrats Mar 25, 2026
ef5e6f7
remove class internalPane
SharonStrats Mar 25, 2026
5df1d0d
fix tr not connected to table humanPane
SharonStrats Mar 25, 2026
40bc677
fixed imagePane tr
SharonStrats Mar 25, 2026
a11c3fb
revert back dev loader
SharonStrats Mar 25, 2026
0ce7491
Update src/styles/schedulePane.css
SharonStrats Mar 25, 2026
fbe104c
Update README.md
SharonStrats Mar 25, 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
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,10 @@ contacts (A VCARD Address Book, Group, Individual, Organization) can be handled
pane. Any other pane which wants to deal with contacts can just use the pane within its own user interface.

![Mapping many classes on the L to panes on the R](https://solidos.github.io/solid-panes/doc/images/panes-for-classes.svg)

## Generative AI usage
The SolidOS team is using GitHub Copilot integrated in Visual Studio Code.
We have added comments in the code to make it explicit which parts are 100% written by AI.
Example:
* Some code was generated by the GPT-5.3-Codex model in GitHub Copilot based on the following prompt:
* This is the comment I got from copilot, but suggested fix remove the dark class as well The nested table shading logic checks UI.utils.ancestor(newTable, 'TABLE') immediately after creating newTable, but at that moment newTable typically has no parent in the DOM yet. This makes parentTable null and will always apply dataContentPaneNestedLight, preventing the intended alternating light/dark nested backgrounds. Consider assigning the class after appending newTable into its parent table, or pass the parent table (or current nesting depth) into objectTree() so the decision can be made reliably. can you help me fix this without removing the dark altering
1 change: 1 addition & 0 deletions dev/loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ async function renderPane (uri: string) {
await new Promise((resolve, reject) => {
store.fetcher.load(doc).then(resolve, reject)
})

const context = {
// see https://github.com/solidos/solid-panes/blob/005f90295d83e499fd626bd84aeb3df10135d5c1/src/index.ts#L30-L34
dom: document,
Expand Down
Loading