mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-14 17:13:54 -07:00
feat: additional cookbook features (tags, tools, and public) (#1116)
* migration: add public, tags, and tools * generate frontend types * add help icon * start replacement for tool-tag-category selector * add help icon utility * use generator types * add support for cookbook features * add UI elements for cookbook features * fix tests * fix type error
This commit is contained in:
parent
1092e0ce7c
commit
cfaac2e060
23 changed files with 374 additions and 97 deletions
|
@ -5,6 +5,7 @@ export interface Icon {
|
|||
// General
|
||||
chart: string;
|
||||
wrench: string;
|
||||
help: string;
|
||||
bowlMixOutline: string;
|
||||
foods: string;
|
||||
units: string;
|
||||
|
|
|
@ -107,6 +107,7 @@ import {
|
|||
mdiBowlMixOutline,
|
||||
mdiWrench,
|
||||
mdiChartLine,
|
||||
mdiHelpCircleOutline,
|
||||
} from "@mdi/js";
|
||||
|
||||
export const icons = {
|
||||
|
@ -118,6 +119,7 @@ export const icons = {
|
|||
|
||||
// General
|
||||
bowlMixOutline: mdiBowlMixOutline,
|
||||
help: mdiHelpCircleOutline,
|
||||
foods: mdiFoodApple,
|
||||
units: mdiBeakerOutline,
|
||||
alert: mdiAlert,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue