2017-03-01 01:49:37 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
2020-05-19 19:08:49 +00:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2017-03-01 01:49:37 +00:00
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
2024-09-20 15:23:15 +00:00
|
|
|
* found in the LICENSE file at https://angular.dev/license
|
2017-03-01 01:49:37 +00:00
|
|
|
*/
|
2023-08-31 19:06:40 +00:00
|
|
|
export {createEngine as ɵcreateEngine} from './create_engine';
|
2017-03-01 01:49:37 +00:00
|
|
|
export {Animation as ɵAnimation} from './dsl/animation';
|
|
|
|
|
export {
|
|
|
|
|
AnimationStyleNormalizer as ɵAnimationStyleNormalizer,
|
|
|
|
|
NoopAnimationStyleNormalizer as ɵNoopAnimationStyleNormalizer,
|
|
|
|
|
} from './dsl/style_normalization/animation_style_normalizer';
|
|
|
|
|
export {WebAnimationsStyleNormalizer as ɵWebAnimationsStyleNormalizer} from './dsl/style_normalization/web_animations_style_normalizer';
|
2017-05-02 22:45:48 +00:00
|
|
|
export {AnimationEngine as ɵAnimationEngine} from './render/animation_engine_next';
|
2023-08-31 19:06:40 +00:00
|
|
|
export {AnimationRendererFactory as ɵAnimationRendererFactory} from './render/animation_renderer';
|
|
|
|
|
export {
|
|
|
|
|
AnimationRenderer as ɵAnimationRenderer,
|
|
|
|
|
BaseAnimationRenderer as ɵBaseAnimationRenderer,
|
|
|
|
|
} from './render/renderer';
|
2023-08-25 12:17:30 +00:00
|
|
|
export {
|
|
|
|
|
containsElement as ɵcontainsElement,
|
|
|
|
|
getParentElement as ɵgetParentElement,
|
|
|
|
|
invokeQuery as ɵinvokeQuery,
|
|
|
|
|
validateStyleProperty as ɵvalidateStyleProperty,
|
|
|
|
|
validateWebAnimatableStyleProperty as ɵvalidateWebAnimatableStyleProperty,
|
|
|
|
|
} from './render/shared';
|
2022-01-31 03:50:11 +00:00
|
|
|
export {WebAnimationsDriver as ɵWebAnimationsDriver} from './render/web_animations/web_animations_driver';
|
2017-03-28 23:07:49 +00:00
|
|
|
export {WebAnimationsPlayer as ɵWebAnimationsPlayer} from './render/web_animations/web_animations_player';
|
2023-08-25 12:17:30 +00:00
|
|
|
export {
|
|
|
|
|
allowPreviousPlayerStylesMerge as ɵallowPreviousPlayerStylesMerge,
|
|
|
|
|
camelCaseToDashCase as ɵcamelCaseToDashCase,
|
|
|
|
|
normalizeKeyframes as ɵnormalizeKeyframes,
|
|
|
|
|
} from './util';
|
2025-05-19 10:54:54 +00:00
|
|
|
export {TransitionAnimationPlayer as ɵTransitionAnimationPlayer} from './render/transition_animation_engine';
|
|
|
|
|
export {ENTER_CLASSNAME as ɵENTER_CLASSNAME, LEAVE_CLASSNAME as ɵLEAVE_CLASSNAME} from './util';
|