ngx-tethys 19.0.2 → 19.0.4
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 +19 -0
- package/color-picker/color-picker.component.d.ts +2 -1
- package/date-picker/picker.component.d.ts +2 -2
- package/fesm2022/ngx-tethys-color-picker.mjs.map +1 -1
- package/fesm2022/ngx-tethys-date-picker.mjs.map +1 -1
- package/fesm2022/ngx-tethys-i18n.mjs +17 -5
- package/fesm2022/ngx-tethys-i18n.mjs.map +1 -1
- package/fesm2022/ngx-tethys-popover.mjs.map +1 -1
- package/fesm2022/ngx-tethys-select.mjs.map +1 -1
- package/fesm2022/ngx-tethys-time-picker.mjs.map +1 -1
- package/fesm2022/ngx-tethys-tree-select.mjs.map +1 -1
- package/fesm2022/ngx-tethys-util.mjs +4 -2
- package/fesm2022/ngx-tethys-util.mjs.map +1 -1
- package/fesm2022/ngx-tethys.mjs +1 -1
- package/fesm2022/ngx-tethys.mjs.map +1 -1
- package/i18n/locale.d.ts +7 -1
- package/package.json +1 -1
- package/popover/popover.config.d.ts +2 -2
- package/schematics/version.d.ts +1 -1
- package/schematics/version.js +1 -1
- package/select/select.config.d.ts +2 -2
- package/time-picker/time-picker.component.d.ts +2 -2
- package/tree-select/tree-select.component.d.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
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.4](https://github.com/atinc/ngx-tethys/compare/19.0.3...19.0.4) (2025-04-14)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **overlay:** define the ConnectionPositionPair type to resolve error ([#3336](https://github.com/atinc/ngx-tethys/issues/3336)) ([9d62b7e](https://github.com/atinc/ngx-tethys/commit/9d62b7eb686fb773cfed684b64a10be5c216005f))
|
|
11
|
+
* **util:** handle i18n and tinyDate set default locale ([#3331](https://github.com/atinc/ngx-tethys/issues/3331)) ([6bc3c58](https://github.com/atinc/ngx-tethys/commit/6bc3c583fe2793fd880507087f87e9597b0ce803))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [19.0.3](https://github.com/atinc/ngx-tethys/compare/19.0.2...19.0.3) (2025-04-10)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* 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))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
5
24
|
## [19.0.2](https://github.com/atinc/ngx-tethys/compare/19.0.1...19.0.2) (2025-04-08)
|
|
6
25
|
|
|
7
26
|
### Features
|
|
@@ -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():
|
|
86
|
+
togglePanel(): OverlayRef;
|
|
86
87
|
show(delay?: number): void;
|
|
87
88
|
hide(delay?: number): void;
|
|
88
89
|
writeValue(value: string): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ThyPlacement } from 'ngx-tethys/core';
|
|
2
2
|
import { TinyDate } from 'ngx-tethys/util';
|
|
3
|
-
import { CdkConnectedOverlay, CdkOverlayOrigin, ConnectedOverlayPositionChange } from '@angular/cdk/overlay';
|
|
3
|
+
import { CdkConnectedOverlay, CdkOverlayOrigin, ConnectedOverlayPositionChange, ConnectionPositionPair } from '@angular/cdk/overlay';
|
|
4
4
|
import { AfterViewInit, ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
5
5
|
import { CompatibleValue, RangePartType } from './inner-types';
|
|
6
6
|
import { ThyDateGranularity } from './standard-types';
|
|
@@ -48,7 +48,7 @@ export declare class ThyPicker implements OnChanges, AfterViewInit {
|
|
|
48
48
|
prefixCls: string;
|
|
49
49
|
isShowDatePopup: boolean;
|
|
50
50
|
overlayOpen: boolean;
|
|
51
|
-
overlayPositions:
|
|
51
|
+
overlayPositions: ConnectionPositionPair[];
|
|
52
52
|
get realOpenState(): boolean;
|
|
53
53
|
get readonlyState(): boolean;
|
|
54
54
|
ngOnChanges(changes: SimpleChanges): void;
|