mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
These helpers are often imported by various tests throughout the repository, but the helpers aren't exported/exposed from the public entry-point; even though they confusingly reside in there. This commit fixes this, and moves the helpers into `packages/private/testing`. This is a preparation for the `ts_project` migration where we don't want to leverage deep imports between packages. PR Close #61472
36 lines
1.8 KiB
TypeScript
36 lines
1.8 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
export {createEngine as ɵcreateEngine} from './create_engine';
|
|
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';
|
|
export {AnimationEngine as ɵAnimationEngine} from './render/animation_engine_next';
|
|
export {AnimationRendererFactory as ɵAnimationRendererFactory} from './render/animation_renderer';
|
|
export {
|
|
AnimationRenderer as ɵAnimationRenderer,
|
|
BaseAnimationRenderer as ɵBaseAnimationRenderer,
|
|
} from './render/renderer';
|
|
export {
|
|
containsElement as ɵcontainsElement,
|
|
getParentElement as ɵgetParentElement,
|
|
invokeQuery as ɵinvokeQuery,
|
|
validateStyleProperty as ɵvalidateStyleProperty,
|
|
validateWebAnimatableStyleProperty as ɵvalidateWebAnimatableStyleProperty,
|
|
} from './render/shared';
|
|
export {WebAnimationsDriver as ɵWebAnimationsDriver} from './render/web_animations/web_animations_driver';
|
|
export {WebAnimationsPlayer as ɵWebAnimationsPlayer} from './render/web_animations/web_animations_player';
|
|
export {
|
|
allowPreviousPlayerStylesMerge as ɵallowPreviousPlayerStylesMerge,
|
|
camelCaseToDashCase as ɵcamelCaseToDashCase,
|
|
normalizeKeyframes as ɵnormalizeKeyframes,
|
|
} from './util';
|
|
export {TransitionAnimationPlayer as ɵTransitionAnimationPlayer} from './render/transition_animation_engine';
|
|
export {ENTER_CLASSNAME as ɵENTER_CLASSNAME, LEAVE_CLASSNAME as ɵLEAVE_CLASSNAME} from './util';
|