From 62bdc807a86d927a416a5493207dbdb02c7cc35a Mon Sep 17 00:00:00 2001 From: Atul Tameshwari Date: Wed, 17 Jun 2026 17:00:23 +0530 Subject: [PATCH] refactor: introduce new estimate, billing, and notification card components while updating import paths across various modules --- apps/web/ce/components/estimates/index.ts | 8 ++++++++ .../workspace-notifications/notification-card/content.ts | 7 +++++++ apps/web/ce/components/workspace/billing/index.ts | 7 +++++++ apps/web/core/components/workspace/members/index.ts | 1 - 4 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 apps/web/ce/components/estimates/index.ts create mode 100644 apps/web/ce/components/workspace-notifications/notification-card/content.ts create mode 100644 apps/web/ce/components/workspace/billing/index.ts diff --git a/apps/web/ce/components/estimates/index.ts b/apps/web/ce/components/estimates/index.ts new file mode 100644 index 0000000000..aeb5b5b8cf --- /dev/null +++ b/apps/web/ce/components/estimates/index.ts @@ -0,0 +1,8 @@ +/** + * Copyright (c) 2023-present Plane Software, Inc. and contributors + * SPDX-License-Identifier: AGPL-3.0-only + * See the LICENSE file for details. + */ + +export * from "@/components/estimates"; +export * from "@/components/estimates/points/delete"; diff --git a/apps/web/ce/components/workspace-notifications/notification-card/content.ts b/apps/web/ce/components/workspace-notifications/notification-card/content.ts new file mode 100644 index 0000000000..1c9899eaef --- /dev/null +++ b/apps/web/ce/components/workspace-notifications/notification-card/content.ts @@ -0,0 +1,7 @@ +/** + * Copyright (c) 2023-present Plane Software, Inc. and contributors + * SPDX-License-Identifier: AGPL-3.0-only + * See the LICENSE file for details. + */ + +export * from "@/components/workspace-notifications/notification-card/content"; diff --git a/apps/web/ce/components/workspace/billing/index.ts b/apps/web/ce/components/workspace/billing/index.ts new file mode 100644 index 0000000000..3ce24348e2 --- /dev/null +++ b/apps/web/ce/components/workspace/billing/index.ts @@ -0,0 +1,7 @@ +/** + * Copyright (c) 2023-present Plane Software, Inc. and contributors + * SPDX-License-Identifier: AGPL-3.0-only + * See the LICENSE file for details. + */ + +export * from "@/components/workspace/billing"; diff --git a/apps/web/core/components/workspace/members/index.ts b/apps/web/core/components/workspace/members/index.ts index 7511bfeedb..a6e8c7208d 100644 --- a/apps/web/core/components/workspace/members/index.ts +++ b/apps/web/core/components/workspace/members/index.ts @@ -5,4 +5,3 @@ */ export * from "./invite-modal"; -export * from "./members-activity-button";