chore: sync changes

Signed-off-by: mertmit <mertmit99@gmail.com>
This commit is contained in:
mertmit
2025-08-21 12:54:10 +03:00
parent 80e553b3c2
commit 36299e0d39
58 changed files with 885 additions and 240 deletions

View File

@@ -1,7 +1,5 @@
export const useScriptExecutor = createSharedComposable(() => {
const eventBus = useEventBus<SmartsheetScriptActions>(Symbol('SmartSheetActions'))
const libCode = ref<string>('')
const libCode = ref('')
const isRunning = ref(false)
const isFinished = ref(false)
@@ -9,10 +7,12 @@ export const useScriptExecutor = createSharedComposable(() => {
const fieldIDRowMapping = computed(() => new Map<string, string>())
const runScript = async (_args, _args_2?, _args_3?) => {}
const runScript = async (..._args: any) => {}
const stopExecution = (_args?: string) => {}
const eventBus = useEventBus<SmartsheetScriptActions>(EventBusEnum.SmartsheetScript)
return {
runScript,
stopExecution,
@@ -22,5 +22,6 @@ export const useScriptExecutor = createSharedComposable(() => {
activeExecutions,
libCode,
fieldIDRowMapping,
eventBus,
}
})