@ethlete/cdk 3.12.0 → 3.13.0

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.
@@ -2,7 +2,7 @@ import { TrackByFunction } from '@angular/core';
2
2
  import { FilterOverlayPageWithLogic } from '../../types';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class FilterOverlayPageOutletComponent {
5
- protected readonly filterOverlayRef: import("../../utils").FilterOverlayRef<Record<string, import("@angular/forms").AbstractControl<any, any>>>;
5
+ protected readonly filterOverlayRef: import("@ethlete/cdk").FilterOverlayRef<Record<string, import("@angular/forms").AbstractControl<any, any>>>;
6
6
  protected readonly trackByRoute: TrackByFunction<FilterOverlayPageWithLogic>;
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterOverlayPageOutletComponent, never>;
8
8
  static ɵcmp: i0.ɵɵComponentDeclaration<FilterOverlayPageOutletComponent, "et-filter-overlay-page-outlet", never, {}, {}, never, never, true, never>;
@@ -2,7 +2,7 @@ import { InjectionToken } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare const FILTER_OVERLAY_LINK_TOKEN: InjectionToken<FilterOverlayLinkDirective>;
4
4
  export declare class FilterOverlayLinkDirective {
5
- protected readonly filterOverlayRef: import("../../utils").FilterOverlayRef<Record<string, import("@angular/forms").AbstractControl<any, any>>>;
5
+ protected readonly filterOverlayRef: import("@ethlete/cdk").FilterOverlayRef<Record<string, import("@angular/forms").AbstractControl<any, any>>>;
6
6
  set _path(value: string | string[]);
7
7
  readonly path: import("@angular/core").WritableSignal<string>;
8
8
  navigate(): void;
@@ -2,7 +2,7 @@ import { InjectionToken } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare const FILTER_OVERLAY_RESET_TOKEN: InjectionToken<FilterOverlayResetDirective>;
4
4
  export declare class FilterOverlayResetDirective {
5
- protected readonly filterOverlayRef: import("../../utils").FilterOverlayRef<Record<string, import("@angular/forms").AbstractControl<any, any>>>;
5
+ protected readonly filterOverlayRef: import("@ethlete/cdk").FilterOverlayRef<Record<string, import("@angular/forms").AbstractControl<any, any>>>;
6
6
  disabled: boolean;
7
7
  reset(): void;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterOverlayResetDirective, never>;
@@ -2,7 +2,7 @@ import { InjectionToken } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare const FILTER_OVERLAY_SUBMIT_TOKEN: InjectionToken<FilterOverlaySubmitDirective>;
4
4
  export declare class FilterOverlaySubmitDirective {
5
- protected readonly filterOverlayRef: import("../../utils").FilterOverlayRef<Record<string, import("@angular/forms").AbstractControl<any, any>>>;
5
+ protected readonly filterOverlayRef: import("@ethlete/cdk").FilterOverlayRef<Record<string, import("@angular/forms").AbstractControl<any, any>>>;
6
6
  disabled: boolean;
7
7
  submit(): void;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterOverlaySubmitDirective, never>;
@@ -1,4 +1,7 @@
1
1
  export * from './components/public-api';
2
+ export * from './constants/public-api';
2
3
  export * from './directives/public-api';
3
4
  export * from './filter-overlay.imports';
4
5
  export * from './services/public-api';
6
+ export * from './types/public-api';
7
+ export * from './utils/public-api';
@@ -70,6 +70,12 @@ export interface OverlayBreakpointConfig {
70
70
  position?: OverlayPosition;
71
71
  /** Determine if and in what direction the overlay should be able to be dragged to dismiss it. */
72
72
  dragToDismiss?: OverlayDragToDismissConfig;
73
+ /**
74
+ * Whether the transform origin should be set using the config's `origin` property value.
75
+ *
76
+ * @default false
77
+ */
78
+ applyTransformOrigin?: boolean;
73
79
  }
74
80
  export interface OverlayBreakpointConfigEntry {
75
81
  /**
@@ -28,6 +28,7 @@ export declare class OverlayPositionBuilder {
28
28
  containerClass: string;
29
29
  positionStrategy: import("@angular/cdk/overlay").GlobalPositionStrategy;
30
30
  documentClass: string;
31
+ applyTransformOrigin: true;
31
32
  };
32
33
  bottomSheet: {
33
34
  width: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethlete/cdk",
3
- "version": "3.12.0",
3
+ "version": "3.13.0",
4
4
  "exports": {
5
5
  ".": {
6
6
  "css": "./src/lib/styles/index.css",