|
@ -2,7 +2,7 @@ |
|
|
import type { ProjectResult } from "../models/project"; |
|
|
import type { ProjectResult } from "../models/project"; |
|
|
import type { TaskResult } from "../models/task"; |
|
|
import type { TaskResult } from "../models/task"; |
|
|
import type { ModalData } from "../stores/modal"; |
|
|
import type { ModalData } from "../stores/modal"; |
|
|
import IS_MOBILE from "../utils/phone-check"; |
|
|
|
|
|
|
|
|
import IS_MOBILE from "../utils/phone-check"; |
|
|
import Option from "./Option.svelte"; |
|
|
import Option from "./Option.svelte"; |
|
|
import OptionRow from "./OptionRow.svelte"; |
|
|
import OptionRow from "./OptionRow.svelte"; |
|
|
import ParentEntry from "./ParentEntry.svelte"; |
|
|
import ParentEntry from "./ParentEntry.svelte"; |
|
@ -16,6 +16,7 @@ import IS_MOBILE from "../utils/phone-check"; |
|
|
export let linkProject: boolean = false; |
|
|
export let linkProject: boolean = false; |
|
|
export let hideIcon: boolean = false; |
|
|
export let hideIcon: boolean = false; |
|
|
export let isFake: boolean = false; |
|
|
export let isFake: boolean = false; |
|
|
|
|
|
export let removeHook: boolean = false; |
|
|
|
|
|
|
|
|
let mdAddTask: ModalData; |
|
|
let mdAddTask: ModalData; |
|
|
let mdProjectEdit: ModalData; |
|
|
let mdProjectEdit: ModalData; |
|
@ -56,6 +57,7 @@ import IS_MOBILE from "../utils/phone-check"; |
|
|
hideProgress={hideProgress} |
|
|
hideProgress={hideProgress} |
|
|
hideIcon={hideIcon} |
|
|
hideIcon={hideIcon} |
|
|
showTimeProgress={!hideProgress} |
|
|
showTimeProgress={!hideProgress} |
|
|
|
|
|
removeHook={removeHook} |
|
|
annotations={isFake ? ["list"] : []} |
|
|
annotations={isFake ? ["list"] : []} |
|
|
> |
|
|
> |
|
|
{#if showAllOptions} |
|
|
{#if showAllOptions} |
|
|