Files
twenty/packages/twenty-ui/src/theme/constants/Animation.ts
martmull ae62789159 Serverless function follow up (#9924)
- remove asynchronous serverless function build
- build serverless function synchronously instead on activate workflow
or execute
- add a loader on workflow code step test tab test button
- add a new `ServerlessFunctionSyncStatus` `BUILDING`
- add a new route to build a serverless function draft version 
- delay artificially execution to avoid UI flashing



https://github.com/user-attachments/assets/8d958d9a-ef41-4261-999e-6ea374191e33
2025-01-31 17:12:42 +01:00

11 lines
181 B
TypeScript

export const ANIMATION = {
duration: {
instant: 0.075,
fast: 0.15,
normal: 0.3,
slow: 1.5,
},
};
export type AnimationDuration = 'instant' | 'fast' | 'normal';