ngx-tethys 19.0.1 → 19.0.3

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/CHANGELOG.md CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [19.0.3](https://github.com/atinc/ngx-tethys/compare/19.0.2...19.0.3) (2025-04-10)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * specify the Overlay type returned by the function TINFR-1816 ([#3333](https://github.com/atinc/ngx-tethys/issues/3333)) ([ce1626f](https://github.com/atinc/ngx-tethys/commit/ce1626fdefb0e8b46ac64528e3b9da56219b04f3))
11
+
12
+
13
+
14
+ ## [19.0.2](https://github.com/atinc/ngx-tethys/compare/19.0.1...19.0.2) (2025-04-08)
15
+
16
+ ### Features
17
+ * **i18n:** adjust en-us translation TINFR-1802 (#3327)
18
+
19
+
20
+
5
21
  ## [19.0.1](https://github.com/atinc/ngx-tethys/compare/19.0.0...19.0.1) (2025-03-27)
6
22
  build: change angular version to ^19.0.0 in peerDependencies
7
23
 
@@ -65,6 +81,12 @@ build: change angular version to ^19.0.0 in peerDependencies
65
81
  * upgrade ng to 19.2.x #TINFR-1676 ([675f754](https://github.com/atinc/ngx-tethys/commit/675f7547f389e9f8e5f605be3905f3de9c199844)), closes [#TINFR-1676](https://github.com/atinc/ngx-tethys/issues/TINFR-1676)
66
82
 
67
83
 
84
+ ## [18.2.10](https://github.com/atinc/ngx-tethys/compare/18.2.9...18.2.10) (2025-04-08)
85
+
86
+ ### Features
87
+ * **i18n:** adjust en-us translation TINFR-1802 (#3326)
88
+
89
+
68
90
 
69
91
  ## [18.2.9](https://github.com/atinc/ngx-tethys/compare/18.2.8...18.2.9) (2025-03-25)
70
92
 
@@ -4,6 +4,7 @@ import { ElementRef, EventEmitter, NgZone, OnDestroy, OnInit } from '@angular/co
4
4
  import { ThyOverlayDirectiveBase, ThyPlacement, ThyOverlayTrigger } from 'ngx-tethys/core';
5
5
  import { ThyPopoverRef } from 'ngx-tethys/popover';
6
6
  import { ThyColorPickerPanel } from './color-picker-panel.component';
7
+ import { OverlayRef } from '@angular/cdk/overlay';
7
8
  import * as i0 from "@angular/core";
8
9
  export declare class OverlayBase extends ThyOverlayDirectiveBase {
9
10
  protected zone: NgZone;
@@ -82,7 +83,7 @@ export declare class ThyColorPickerDirective extends _BaseMixin implements OnIni
82
83
  get backgroundColor(): string;
83
84
  constructor();
84
85
  ngOnInit(): void;
85
- togglePanel(): import("@angular/cdk/overlay-module.d-2b07cfa6").O;
86
+ togglePanel(): OverlayRef;
86
87
  show(delay?: number): void;
87
88
  hide(delay?: number): void;
88
89
  writeValue(value: string): void;