feat: add board (#15)
* wip: Add gridstack board * wip: Centralize board pages, Add board settings page * fix: remove cyclic dependency and rename widget-sort to kind * improve: Add header actions as parallel route * feat: add item select modal, add category edit modal, * feat: add edit item modal * feat: add remove item modal * wip: add category actions * feat: add saving of board, wip: add app widget * Merge branch 'main' into add-board * chore: update turbo dependencies * chore: update mantine dependencies * chore: fix typescript errors, lint and format * feat: add confirm modal to category removal, move items of removed category to above wrapper * feat: remove app widget to continue in another branch * feat: add loading spinner until board is initialized * fix: issue with cellheight of gridstack items * feat: add translations for board * fix: issue with translation for settings page * chore: address pull request feedback
This commit is contained in:
13
packages/definitions/src/board.ts
Normal file
13
packages/definitions/src/board.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
export const backgroundImageAttachments = ["fixed", "scroll"] as const;
|
||||
export const backgroundImageRepeats = [
|
||||
"repeat",
|
||||
"repeat-x",
|
||||
"repeat-y",
|
||||
"no-repeat",
|
||||
] as const;
|
||||
export const backgroundImageSizes = ["cover", "contain"] as const;
|
||||
|
||||
export type BackgroundImageAttachment =
|
||||
(typeof backgroundImageAttachments)[number];
|
||||
export type BackgroundImageRepeat = (typeof backgroundImageRepeats)[number];
|
||||
export type BackgroundImageSize = (typeof backgroundImageSizes)[number];
|
||||
@@ -1 +1,4 @@
|
||||
export * from "./board";
|
||||
export * from "./integration";
|
||||
export * from "./section";
|
||||
export * from "./widget";
|
||||
|
||||
2
packages/definitions/src/section.ts
Normal file
2
packages/definitions/src/section.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export const sectionKinds = ["category", "empty", "sidebar"] as const;
|
||||
export type SectionKind = (typeof sectionKinds)[number];
|
||||
2
packages/definitions/src/widget.ts
Normal file
2
packages/definitions/src/widget.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export const widgetKinds = ["clock", "weather"] as const;
|
||||
export type WidgetKind = (typeof widgetKinds)[number];
|
||||
Reference in New Issue
Block a user