From c524438b70510af0a27fe4e53c1970b8a42f0705 Mon Sep 17 00:00:00 2001 From: mertdeg2 Date: Mon, 20 Mar 2017 15:56:13 -0700 Subject: [PATCH] chore: export ripple timing constants (#3650) Exports RIPPLE_FADE_IN_DURATION and RIPPLE_FADE_OUT_DURATION so that they can be used by users with `fakeAsync` in unit tests --- src/lib/core/ripple/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/core/ripple/index.ts b/src/lib/core/ripple/index.ts index 7058ac5784e8..21b95a95734d 100644 --- a/src/lib/core/ripple/index.ts +++ b/src/lib/core/ripple/index.ts @@ -6,7 +6,7 @@ import {SCROLL_DISPATCHER_PROVIDER} from '../overlay/scroll/scroll-dispatcher'; export {MdRipple, RippleGlobalOptions, MD_RIPPLE_GLOBAL_OPTIONS} from './ripple'; export {RippleRef, RippleState} from './ripple-ref'; -export {RippleConfig} from './ripple-renderer'; +export {RippleConfig, RIPPLE_FADE_IN_DURATION, RIPPLE_FADE_OUT_DURATION} from './ripple-renderer'; @NgModule({ imports: [CompatibilityModule],