@fundamental-ngx/cdk 0.58.0-rc.69 → 0.58.0-rc.70

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fundamental-ngx/cdk",
3
- "version": "0.58.0-rc.69",
3
+ "version": "0.58.0-rc.70",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "description": "Fundamental Library for Angular - CDK",
6
6
  "license": "Apache-2.0",
package/utils/index.d.ts CHANGED
@@ -9,7 +9,7 @@ import { MutationObserverFactory } from '@angular/cdk/observers';
9
9
  import { ComponentType, CdkPortalOutlet, ComponentPortal, TemplatePortal, BasePortalOutlet } from '@angular/cdk/portal';
10
10
  import { DomSanitizer, SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
11
11
  import { Options, FocusTrap } from 'focus-trap';
12
- import { AnimationTriggerMetadata } from '@angular/animations';
12
+ import { AnimationTriggerMetadata, AnimationEvent } from '@angular/animations';
13
13
  import { ConnectedPosition, ScrollStrategy, OverlayRef, Overlay, ComponentType as ComponentType$1, OverlayContainer } from '@angular/cdk/overlay';
14
14
 
15
15
  interface HasElementRef<ElementType extends Element = HTMLElement> {
@@ -551,7 +551,7 @@ declare class DndListDirective<T> implements AfterContentInit, OnDestroy {
551
551
  /** @hidden */
552
552
  dndItems: QueryList<DndItem<T>>;
553
553
  /** @hidden */
554
- private readonly _initialClass;
554
+ protected readonly _initialClass = "fd-dnd-list";
555
555
  /** @hidden */
556
556
  private _elementsCoordinates;
557
557
  /** @hidden */
@@ -3163,12 +3163,12 @@ declare abstract class BaseToastAnimatedContainerComponent<P extends BaseAnimate
3163
3163
  * @hidden
3164
3164
  * The state of the Message Toast animations.
3165
3165
  */
3166
- private get _animationState();
3166
+ protected get _animationState(): string;
3167
3167
  /**
3168
3168
  * @hidden
3169
3169
  * Whether the animations should be disabled.
3170
3170
  */
3171
- private _animationsDisabled;
3171
+ protected _animationsDisabled: boolean;
3172
3172
  /** @hidden */
3173
3173
  protected _ngZone: NgZone;
3174
3174
  /** @hidden */
@@ -3179,7 +3179,7 @@ declare abstract class BaseToastAnimatedContainerComponent<P extends BaseAnimate
3179
3179
  * @hidden
3180
3180
  * Handle end of animations, updating the state of the Message Toast.
3181
3181
  */
3182
- private _onAnimationEnd;
3182
+ protected _onAnimationEnd(event: AnimationEvent): void;
3183
3183
  /** Begin animation of Message Toast entrance into view. */
3184
3184
  enter(): void;
3185
3185
  /** Begin animation of Message Toast removal. */