From d12ead7d3533f378fce220a1b2eb2731103c8d8d Mon Sep 17 00:00:00 2001 From: Jerald-Golden-B Date: Wed, 13 Aug 2025 18:23:40 +0530 Subject: [PATCH] file name capitalized --- .../{AssemblyAction1.tsx => AssemblyAction.tsx} | 2 +- .../actions/{DefaultAction1.tsx => DefaultAction.tsx} | 0 .../actions/{DelayAction1.tsx => DelayAction.tsx} | 0 .../actions/{DespawnAction1.tsx => DespawnAction.tsx} | 0 ...{PickAndPlaceAction1.tsx => PickAndPlaceAction.tsx} | 0 .../{PillarJibAction1.tsx => PillarJibAction.tsx} | 0 .../actions/{ProcessAction1.tsx => ProcessAction.tsx} | 2 +- .../actions/{SpawnAction1.tsx => SpawnAction.tsx} | 0 .../actions/{StorageAction1.tsx => StorageAction.tsx} | 0 .../actions/{SwapAction1.tsx => SwapAction.tsx} | 0 .../actions/{TravelAction1.tsx => TravelAction.tsx} | 0 .../actions/{WorkerAction1.tsx => WorkerAction.tsx} | 0 .../eventProperties/mechanics/conveyorMechanics.tsx | 10 +++++----- .../eventProperties/mechanics/humanMechanics.tsx | 4 ++-- .../eventProperties/mechanics/machineMechanics.tsx | 2 +- .../eventProperties/mechanics/roboticArmMechanics.tsx | 2 +- .../eventProperties/mechanics/storageMechanics.tsx | 2 +- .../eventProperties/mechanics/vehicleMechanics.tsx | 2 +- 18 files changed, 13 insertions(+), 13 deletions(-) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{AssemblyAction1.tsx => AssemblyAction.tsx} (98%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{DefaultAction1.tsx => DefaultAction.tsx} (100%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{DelayAction1.tsx => DelayAction.tsx} (100%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{DespawnAction1.tsx => DespawnAction.tsx} (100%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{PickAndPlaceAction1.tsx => PickAndPlaceAction.tsx} (100%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{PillarJibAction1.tsx => PillarJibAction.tsx} (100%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{ProcessAction1.tsx => ProcessAction.tsx} (96%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{SpawnAction1.tsx => SpawnAction.tsx} (100%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{StorageAction1.tsx => StorageAction.tsx} (100%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{SwapAction1.tsx => SwapAction.tsx} (100%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{TravelAction1.tsx => TravelAction.tsx} (100%) rename app/src/components/layout/sidebarRight/properties/eventProperties/actions/{WorkerAction1.tsx => WorkerAction.tsx} (100%) diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/AssemblyAction1.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/AssemblyAction.tsx similarity index 98% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/AssemblyAction1.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/AssemblyAction.tsx index f141c83..e371f6f 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/AssemblyAction1.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/AssemblyAction.tsx @@ -1,7 +1,7 @@ import React from "react"; import InputRange from "../../../../../ui/inputs/InputRange"; import InputWithDropDown from "../../../../../ui/inputs/InputWithDropDown"; -import SwapAction from "./SwapAction1"; +import SwapAction from "./SwapAction"; interface AssemblyActionProps { processTime: { diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DefaultAction1.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DefaultAction.tsx similarity index 100% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/DefaultAction1.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/DefaultAction.tsx diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DelayAction1.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DelayAction.tsx similarity index 100% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/DelayAction1.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/DelayAction.tsx diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DespawnAction1.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/DespawnAction.tsx similarity index 100% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/DespawnAction1.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/DespawnAction.tsx diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/PickAndPlaceAction1.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/PickAndPlaceAction.tsx similarity index 100% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/PickAndPlaceAction1.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/PickAndPlaceAction.tsx diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/PillarJibAction1.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/PillarJibAction.tsx similarity index 100% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/PillarJibAction1.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/PillarJibAction.tsx diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/ProcessAction1.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/ProcessAction.tsx similarity index 96% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/ProcessAction1.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/ProcessAction.tsx index 5974233..6b1825b 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/ProcessAction1.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/ProcessAction.tsx @@ -1,6 +1,6 @@ import React from "react"; import InputWithDropDown from "../../../../../ui/inputs/InputWithDropDown"; -import SwapAction from "./SwapAction1"; +import SwapAction from "./SwapAction"; interface ProcessActionProps { value: string; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/SpawnAction1.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/SpawnAction.tsx similarity index 100% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/SpawnAction1.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/SpawnAction.tsx diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/StorageAction1.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/StorageAction.tsx similarity index 100% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/StorageAction1.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/StorageAction.tsx diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/SwapAction1.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/SwapAction.tsx similarity index 100% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/SwapAction1.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/SwapAction.tsx diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/TravelAction1.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/TravelAction.tsx similarity index 100% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/TravelAction1.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/TravelAction.tsx diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/actions/WorkerAction1.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/actions/WorkerAction.tsx similarity index 100% rename from app/src/components/layout/sidebarRight/properties/eventProperties/actions/WorkerAction1.tsx rename to app/src/components/layout/sidebarRight/properties/eventProperties/actions/WorkerAction.tsx diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/conveyorMechanics.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/conveyorMechanics.tsx index b3df5d6..990d046 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/conveyorMechanics.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/conveyorMechanics.tsx @@ -1,12 +1,12 @@ import { useEffect, useState } from "react"; import InputWithDropDown from "../../../../../ui/inputs/InputWithDropDown"; -import DelayAction from "../actions/DelayAction1"; +import DelayAction from "../actions/DelayAction"; import RenameInput from "../../../../../ui/inputs/RenameInput"; import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; -import DespawnAction from "../actions/DespawnAction1"; -import SwapAction from "../actions/SwapAction1"; -import SpawnAction from "../actions/SpawnAction1"; -import DefaultAction from "../actions/DefaultAction1"; +import DespawnAction from "../actions/DespawnAction"; +import SwapAction from "../actions/SwapAction"; +import SpawnAction from "../actions/SpawnAction"; +import DefaultAction from "../actions/DefaultAction"; import Trigger from "../trigger/Trigger"; import { useSelectedAction, useSelectedEventData } from "../../../../../../store/simulation/useSimulationStore"; import ActionsList from "../components/ActionsList"; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/humanMechanics.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/humanMechanics.tsx index ebd9d90..4b29f8c 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/humanMechanics.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/humanMechanics.tsx @@ -6,8 +6,8 @@ import RenameInput from "../../../../../ui/inputs/RenameInput"; import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; import Trigger from "../trigger/Trigger"; import ActionsList from "../components/ActionsList"; -import WorkerAction from "../actions/WorkerAction1"; -import AssemblyAction from "../actions/AssemblyAction1"; +import WorkerAction from "../actions/WorkerAction"; +import AssemblyAction from "../actions/AssemblyAction"; import { useSelectedEventData, useSelectedAction } from "../../../../../../store/simulation/useSimulationStore"; import { upsertProductOrEventApi } from "../../../../../../services/simulation/products/UpsertProductOrEventApi"; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/machineMechanics.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/machineMechanics.tsx index fb76932..22b3277 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/machineMechanics.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/machineMechanics.tsx @@ -3,7 +3,7 @@ import RenameInput from "../../../../../ui/inputs/RenameInput"; import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; import Trigger from "../trigger/Trigger"; import { useSelectedAction, useSelectedEventData } from "../../../../../../store/simulation/useSimulationStore"; -import ProcessAction from "../actions/ProcessAction1"; +import ProcessAction from "../actions/ProcessAction"; import ActionsList from "../components/ActionsList"; import { upsertProductOrEventApi } from "../../../../../../services/simulation/products/UpsertProductOrEventApi"; import { useProductContext } from "../../../../../../modules/simulation/products/productContext"; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/roboticArmMechanics.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/roboticArmMechanics.tsx index f72cb36..0c7c6e3 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/roboticArmMechanics.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/roboticArmMechanics.tsx @@ -5,7 +5,7 @@ import RenameInput from "../../../../../ui/inputs/RenameInput"; import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; import Trigger from "../trigger/Trigger"; import { useSelectedEventData, useSelectedAction } from "../../../../../../store/simulation/useSimulationStore"; -import PickAndPlaceAction from "../actions/PickAndPlaceAction1"; +import PickAndPlaceAction from "../actions/PickAndPlaceAction"; import ActionsList from "../components/ActionsList"; import { upsertProductOrEventApi } from "../../../../../../services/simulation/products/UpsertProductOrEventApi"; import { useProductContext } from "../../../../../../modules/simulation/products/productContext"; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/storageMechanics.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/storageMechanics.tsx index 02a0fc6..796dbc5 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/storageMechanics.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/storageMechanics.tsx @@ -2,7 +2,7 @@ import { useEffect, useMemo, useState } from "react"; import RenameInput from "../../../../../ui/inputs/RenameInput"; import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; import Trigger from "../trigger/Trigger"; -import StorageAction from "../actions/StorageAction1"; +import StorageAction from "../actions/StorageAction"; import ActionsList from "../components/ActionsList"; import { upsertProductOrEventApi } from "../../../../../../services/simulation/products/UpsertProductOrEventApi"; import { useSelectedAction, useSelectedEventData } from "../../../../../../store/simulation/useSimulationStore"; diff --git a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/vehicleMechanics.tsx b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/vehicleMechanics.tsx index 4794e9e..fada871 100644 --- a/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/vehicleMechanics.tsx +++ b/app/src/components/layout/sidebarRight/properties/eventProperties/mechanics/vehicleMechanics.tsx @@ -4,7 +4,7 @@ import RenameInput from "../../../../../ui/inputs/RenameInput"; import LabledDropdown from "../../../../../ui/inputs/LabledDropdown"; import Trigger from "../trigger/Trigger"; import { useSelectedAction, useSelectedEventData } from "../../../../../../store/simulation/useSimulationStore"; -import TravelAction from "../actions/TravelAction1"; +import TravelAction from "../actions/TravelAction"; import ActionsList from "../components/ActionsList"; import { upsertProductOrEventApi } from "../../../../../../services/simulation/products/UpsertProductOrEventApi"; import { useProductContext } from "../../../../../../modules/simulation/products/productContext";