feat: add video widget (#287)

* feat: add nestjs replacement, remove nestjs

* feat: add video widget

* feat: add notice about youtube not supported with video.js

* fix: format issue

* fix: format issue
This commit is contained in:
Meier Lukas
2024-04-13 11:44:16 +02:00
committed by GitHub
parent 80d2d485b8
commit 82e9887f36
9 changed files with 355 additions and 3 deletions

View File

@@ -9,6 +9,7 @@ import * as app from "./app";
import * as clock from "./clock";
import type { WidgetComponentProps } from "./definition";
import type { WidgetImportRecord } from "./import";
import * as video from "./video";
import * as weather from "./weather";
export { reduceWidgetOptionsWithDefaultValues } from "./options";
@@ -21,6 +22,7 @@ export const widgetImports = {
clock,
weather,
app,
video,
} satisfies WidgetImportRecord;
export type WidgetImports = typeof widgetImports;