From 996f2b11ff4dc98d579a7c7a0ff7ab6fa8577916 Mon Sep 17 00:00:00 2001 From: larryranches Date: Thu, 14 Mar 2019 00:01:52 -0700 Subject: [PATCH] Add enabled property to OptionsAnimationSeparateType (#4832) --- lib/src/interfaces/Options.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/src/interfaces/Options.ts b/lib/src/interfaces/Options.ts index 331bcb14d36..fd8d4c48a2f 100644 --- a/lib/src/interfaces/Options.ts +++ b/lib/src/interfaces/Options.ts @@ -762,6 +762,11 @@ export interface OptionsAnimationSeparate { ``` */ waitForRender?: boolean; + /** + * Enable or disable the animation + * @default true + */ + enabled?: boolean; /** * Configure animations for the top bar */