Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Presentation mode for notebooks #100

Open
wants to merge 33 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
0de1486
Update .gitignore
EslamAsHhraf May 21, 2024
29618d8
add edit celll present type
EslamAsHhraf May 21, 2024
4a052ab
handel slides && sunslides in markdwon cells
EslamAsHhraf May 31, 2024
1b7c8ae
Update angular.json
EslamAsHhraf Jun 10, 2024
67d56dd
Merge branch 'master' of https://github.com/EslamAsHhraf/Polypheny-UI
EslamAsHhraf Jun 10, 2024
d67d367
Merge branch 'master' into presentation-mode-for-notebooks
EslamAsHhraf Jun 10, 2024
e3cd37e
Merge branch master
EslamAsHhraf Jun 10, 2024
889e3a5
handle fragments slides
EslamAsHhraf Jun 10, 2024
50ec7a7
add code slides to presention
EslamAsHhraf Jun 18, 2024
7f49fdb
handle poly code in presention
EslamAsHhraf Jun 18, 2024
926ea50
delete console
EslamAsHhraf Jun 18, 2024
8447f9c
solve text-transform uppercase in reveal js
EslamAsHhraf Jun 18, 2024
dc75119
Merge branch 'various-fixes' into presentation-mode-for-notebooks
EslamAsHhraf Jun 23, 2024
43f679b
add output of code && add raw cell for presentaion
EslamAsHhraf Jun 23, 2024
6734b06
add scroll for big content
EslamAsHhraf Jun 23, 2024
8798a65
refactor files
EslamAsHhraf Jun 23, 2024
c9de1b3
add flag to show output in notebooks
EslamAsHhraf Jun 23, 2024
d0e2adc
allow user to customise them & color of presentation
EslamAsHhraf Jun 29, 2024
b1fc735
handle no-kernal error
EslamAsHhraf Jul 1, 2024
ac85a4c
give limit to graph
EslamAsHhraf Jul 7, 2024
4f1e701
Update presentation-cells.component.scss
EslamAsHhraf Jul 17, 2024
77bb943
Merge branch 'various-fixes' into presentation-mode-for-notebooks
EslamAsHhraf Jul 17, 2024
0823556
add image & video in presenttation
EslamAsHhraf Jul 19, 2024
750e352
add video & images to fragments
EslamAsHhraf Jul 19, 2024
888e81f
add doc
EslamAsHhraf Jul 20, 2024
ed8337a
edit presentation doc
EslamAsHhraf Jul 20, 2024
562b479
enable to add images inside text
EslamAsHhraf Jul 27, 2024
ae0c137
clean code
EslamAsHhraf Jul 27, 2024
ea226f9
solve image dimtions bug
EslamAsHhraf Jul 29, 2024
46fe462
Merge branch 'polypheny:master' into master
EslamAsHhraf Jul 29, 2024
eb010b8
Merge branch 'master' into presentation-mode-for-notebooks
EslamAsHhraf Jul 29, 2024
582ea29
solve height code bug
EslamAsHhraf Jul 29, 2024
5f4e089
edit doc of presentation
EslamAsHhraf Jul 29, 2024
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,4 @@ Thumbs.db
/cypress/screenshots/

/uiLicenseReport.json
.angular/
5 changes: 4 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@
"node_modules/plyr/dist/plyr.css",
"node_modules/@ali-hm/angular-tree-component/css/angular-tree-component.css",
"node_modules/katex/dist/katex.min.css",
"node_modules/prismjs/themes/prism-okaidia.css"
"node_modules/prismjs/themes/prism-okaidia.css",
"node_modules/reveal.js/dist/reveal.css",
"node_modules/reveal.js/dist/theme/black.css",
"node_modules/prismjs/themes/prism.css"
],
"stylePreprocessorOptions": {
"includePaths": [
Expand Down
7,273 changes: 3,230 additions & 4,043 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,12 @@
"mutationobserver-shim": "^0.3.7",
"ng2-charts": "^5.0.3",
"ngx-bootstrap": "^12.0.0",
"ngx-colors": "^3.6.0",
"ngx-json-viewer": "^3.2.1",
"ngx-markdown": "^17.1.1",
"ngx-plyr": "^4.0.1",
"prismjs": "1.29.0",
"reveal.js": "^4.3.0",
"rxjs": "^7.8.1",
"rxjs-compat": "^6.5.5",
"sass": "^1.26.3",
Expand Down
Loading