refactor: remove barrel exports from web app (#7577)
* refactor: remove barrel exports from some compoennt modules * refactor: remove barrel exports from issue components * refactor: remove barrel exports from page components * chore: update type improts * refactor: remove barrel exports from cycle components * refactor: remove barrel exports from dropdown components * refactor: remove barrel exports from ce components * refactor: remove barrel exports from some more components * refactor: remove barrel exports from profile and sidebar components * chore: update type imports * refactor: remove barrel exports from store hooks * chore: dynamically load sticky editor * fix: lint * chore: revert sticky dynamic import * refactor: remove barrel exports from ce issue components * refactor: remove barrel exports from ce issue components * refactor: remove barrel exports from ce issue components --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
This commit is contained in:
parent
9cf564caae
commit
3391e8580c
1103 changed files with 3036 additions and 3286 deletions
|
|
@ -19,7 +19,7 @@ import {
|
|||
} from "@/components/gantt-chart/views/helpers";
|
||||
// helpers
|
||||
// store
|
||||
import { RootStore } from "@/plane-web/store/root.store";
|
||||
import type { RootStore } from "@/plane-web/store/root.store";
|
||||
|
||||
// types
|
||||
type BlockData = {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import { RootStore } from "@/plane-web/store/root.store";
|
||||
import { IIssuesTimeLineStore, IssuesTimeLineStore } from "@/store/timeline/issues-timeline.store";
|
||||
import { IModulesTimeLineStore, ModulesTimeLineStore } from "@/store/timeline/modules-timeline.store";
|
||||
import { BaseTimeLineStore, IBaseTimelineStore } from "./base-timeline.store";
|
||||
import type { RootStore } from "@/plane-web/store/root.store";
|
||||
import { type IIssuesTimeLineStore, IssuesTimeLineStore } from "@/store/timeline/issues-timeline.store";
|
||||
import { type IModulesTimeLineStore, ModulesTimeLineStore } from "@/store/timeline/modules-timeline.store";
|
||||
import { BaseTimeLineStore, type IBaseTimelineStore } from "./base-timeline.store";
|
||||
|
||||
export interface ITimelineStore {
|
||||
issuesTimeLineStore: IIssuesTimeLineStore;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue