fix: file upload

enhancement: widget styling
This commit is contained in:
paul
2024-09-24 14:33:02 +05:30
parent be17b93b02
commit 22e0a0543d
13 changed files with 205 additions and 91 deletions

View File

@@ -9,33 +9,50 @@ import VideoPlayer from "./plugins/videoPlayer"
import MapView from "./plugins/mapview"
import PandasTable from "./plugins/pandasTable"
// TODO: add license for 3rd party plugins
const TkinterPluginWidgets = [
{
name: "Analog TimePicker",
img: ClockImage,
link: "https://github.com",
widgetClass: AnalogTimePicker
link: "https://github.com/PaulleDemon/tkTimePicker",
widgetClass: AnalogTimePicker,
license: {
name: "MIT",
url: ""
}
},
{
name: "Video Player",
img: VideoImage,
link: "https://github.com/PaulleDemon/tkVideoPlayer",
widgetClass: VideoPlayer
link: "https://github.com/PaulleDemon/tkVideoPlayer",
widgetClass: VideoPlayer,
license: {
name: "MIT",
url: ""
}
},
{
name: "Map viewer",
img: MapImage,
link: "https://github.com/TomSchimansky/TkinterMapView",
widgetClass: MapView
link: "https://github.com/TomSchimansky/TkinterMapView",
widgetClass: MapView,
license: {
name: "MIT",
url: ""
}
},
{
name: "Pandas Table",
img: DataTableImage,
link: "https://github.com/dmnfarrell/pandastable",
widgetClass: PandasTable
link: "https://github.com/dmnfarrell/pandastable",
widgetClass: PandasTable,
license: {
name: "GPL v3",
url: "https://github.com/dmnfarrell/pandastable/blob/master/LICENSE"
}
},
]