Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
09f2453
major refactor
SharonStrats Mar 11, 2026
2ef69e0
change json main and types
SharonStrats Mar 11, 2026
1397d47
resolved linting errors
SharonStrats Mar 11, 2026
5916056
one place had dist
SharonStrats Mar 11, 2026
ca44eac
added sideeffects css
SharonStrats Mar 11, 2026
7a6faa5
change to meeting-pane.js
SharonStrats Mar 11, 2026
0b8c362
needed types in files
SharonStrats Mar 11, 2026
ac42269
needed to export from index
SharonStrats Mar 11, 2026
27f7178
changed button style
SharonStrats Mar 11, 2026
2b6928a
changed button size
SharonStrats Mar 11, 2026
8867dae
applied copilot suggestions
SharonStrats Mar 11, 2026
3f9bfbd
changed back style build
SharonStrats Mar 11, 2026
c67ca2d
updated package json to match profile
SharonStrats Mar 11, 2026
5e1e673
change yellow class to highlighted
SharonStrats Mar 12, 2026
406776b
gen ai message
SharonStrats Mar 16, 2026
d7e4d52
gen ai msg in code
SharonStrats Mar 16, 2026
24273e3
style vars
SharonStrats Mar 16, 2026
f25246b
fix lint errors
SharonStrats Mar 16, 2026
50e5ad1
remove dup build
SharonStrats Mar 16, 2026
a9f467a
Merge branch 'main' into refactor/styles-separateCSS
SharonStrats Mar 16, 2026
8ef6c82
revert back to meetingPane
SharonStrats Mar 16, 2026
6fb7f24
add copy plugins
SharonStrats Mar 19, 2026
3bcf6f1
Merge branch 'main' into refactor/styles-separateCSS
SharonStrats Mar 19, 2026
ec438c5
wrong filename in dev index
SharonStrats Mar 19, 2026
7fc1292
merge main
SharonStrats Mar 24, 2026
2048a1b
fixed complain background color
SharonStrats Mar 24, 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
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@ yarn-debug.log*
yarn-error.log*

# Webpack
dist

# Babel
lib
dist

# Runtime data
pids
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# meeting-pane

Bring together schedule, people, materials, discussion around a meeting.

## Genertive 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:
* I have these classes meetingToolIcon, meetingToolIcon-visible, meetingToolIconAddButton, meetingToolIcon-disabled, meetingToolIcon-yellow. I want to toggle the visibility of the icons by adding or removing the class meetingToolIcon-visible. Write a function that takes a boolean showIcons and toggles the class on all the icons in iconArray accordingly.
* the icons are way too big and they are lined up vertically
instead of horizontally. Can you fix that?
* also icon sizing - the icons should be about an inch big

15 changes: 14 additions & 1 deletion declarations.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
declare module '*.ttl' {
const content: string;
export default content;
}
}

export interface PaneDefinition {
icon: string
name: string
audience: unknown[]
label: (subject: unknown, context: unknown) => string | null
render: (subject: unknown, context: { dom: Document }) => HTMLElement
mintClass?: unknown
mintNew?: (context: unknown, options: unknown) => Promise<unknown>
}

declare const meetingPane: PaneDefinition
export default meetingPane
Loading
Loading