@taiga-ui/core 4.38.0 → 4.39.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.
- package/animations/animations.d.ts +74 -2
- package/components/alert/alert.component.d.ts +3 -9
- package/components/calendar/calendar.component.d.ts +1 -0
- package/components/data-list/option/option-content.d.ts +1 -1
- package/components/dialog/dialog.component.d.ts +3 -17
- package/components/error/error.component.d.ts +0 -1
- package/components/expand/expand-content.directive.d.ts +3 -0
- package/components/expand/expand.component.d.ts +3 -0
- package/components/expand/expand.d.ts +3 -0
- package/components/scrollbar/scroll-controls.component.d.ts +0 -1
- package/components/textfield/textfield-auxiliary.d.ts +1 -3
- package/directives/dropdown/dropdown.component.d.ts +2 -2
- package/directives/hint/hint.component.d.ts +2 -9
- package/esm2022/animations/animations.mjs +72 -3
- package/esm2022/components/alert/alert.component.mjs +11 -14
- package/esm2022/components/alert/alerts.component.mjs +4 -4
- package/esm2022/components/calendar/calendar-sheet.component.mjs +3 -3
- package/esm2022/components/calendar/calendar.component.mjs +7 -4
- package/esm2022/components/data-list/data-list.tokens.mjs +3 -2
- package/esm2022/components/dialog/dialog.component.mjs +11 -27
- package/esm2022/components/dialog/dialogs.component.mjs +12 -5
- package/esm2022/components/error/error.component.mjs +6 -10
- package/esm2022/components/expand/expand-content.directive.mjs +4 -1
- package/esm2022/components/expand/expand.component.mjs +4 -1
- package/esm2022/components/expand/expand.mjs +4 -1
- package/esm2022/components/root/root.component.mjs +11 -5
- package/esm2022/components/scrollbar/scroll-controls.component.mjs +5 -7
- package/esm2022/components/textfield/select-like.directive.mjs +3 -3
- package/esm2022/components/textfield/textfield-auxiliary.mjs +1 -6
- package/esm2022/components/textfield/textfield.component.mjs +8 -9
- package/esm2022/directives/dropdown/dropdown.component.mjs +11 -11
- package/esm2022/directives/hint/hint-unstyled.component.mjs +2 -5
- package/esm2022/directives/hint/hint.component.mjs +9 -12
- package/esm2022/directives/hint/hints.component.mjs +6 -6
- package/esm2022/directives/icons/icons.directive.mjs +2 -2
- package/esm2022/tokens/auxiliary.mjs +6 -0
- package/esm2022/tokens/dark-mode.mjs +5 -5
- package/esm2022/tokens/index.mjs +2 -1
- package/fesm2022/taiga-ui-core-animations.mjs +71 -2
- package/fesm2022/taiga-ui-core-animations.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-alert.mjs +13 -16
- package/fesm2022/taiga-ui-core-components-alert.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-calendar.mjs +8 -6
- package/fesm2022/taiga-ui-core-components-calendar.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-data-list.mjs +2 -2
- package/fesm2022/taiga-ui-core-components-data-list.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-dialog.mjs +21 -29
- package/fesm2022/taiga-ui-core-components-dialog.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-error.mjs +5 -9
- package/fesm2022/taiga-ui-core-components-error.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-expand.mjs +9 -0
- package/fesm2022/taiga-ui-core-components-expand.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-root.mjs +10 -4
- package/fesm2022/taiga-ui-core-components-root.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-scrollbar.mjs +4 -6
- package/fesm2022/taiga-ui-core-components-scrollbar.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-textfield.mjs +16 -20
- package/fesm2022/taiga-ui-core-components-textfield.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-directives-dropdown.mjs +11 -11
- package/fesm2022/taiga-ui-core-directives-dropdown.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-directives-hint.mjs +13 -18
- package/fesm2022/taiga-ui-core-directives-hint.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-directives-icons.mjs +2 -2
- package/fesm2022/taiga-ui-core-directives-icons.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-tokens.mjs +11 -6
- package/fesm2022/taiga-ui-core-tokens.mjs.map +1 -1
- package/package.json +3 -3
- package/styles/components/icons.less +2 -2
- package/styles/components/textfield.less +17 -2
- package/styles/mixins/mixins.less +4 -0
- package/styles/mixins/mixins.scss +4 -0
- package/tokens/auxiliary.d.ts +3 -0
- package/tokens/index.d.ts +1 -0
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
3
|
+
*/
|
|
1
4
|
export interface TuiDurationOptions {
|
|
2
5
|
params: {
|
|
3
6
|
duration: number;
|
|
@@ -5,33 +8,102 @@ export interface TuiDurationOptions {
|
|
|
5
8
|
value: string;
|
|
6
9
|
}
|
|
7
10
|
/**
|
|
8
|
-
*
|
|
11
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
9
12
|
*/
|
|
10
13
|
export declare const tuiParentAnimation: import("@angular/animations").AnimationTriggerMetadata;
|
|
11
14
|
/**
|
|
12
|
-
*
|
|
15
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
13
16
|
*/
|
|
14
17
|
export declare const tuiParentStop: import("@angular/animations").AnimationTriggerMetadata;
|
|
18
|
+
/**
|
|
19
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
20
|
+
*/
|
|
15
21
|
export declare const tuiHost: import("@angular/animations").AnimationTriggerMetadata;
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
24
|
+
*/
|
|
16
25
|
export declare const tuiHeightCollapse: import("@angular/animations").AnimationTriggerMetadata;
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
28
|
+
*/
|
|
17
29
|
export declare const tuiHeightCollapseList: import("@angular/animations").AnimationTriggerMetadata;
|
|
30
|
+
/**
|
|
31
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
32
|
+
*/
|
|
18
33
|
export declare const tuiWidthCollapse: import("@angular/animations").AnimationTriggerMetadata;
|
|
34
|
+
/**
|
|
35
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
36
|
+
*/
|
|
19
37
|
export declare const tuiWidthCollapseList: import("@angular/animations").AnimationTriggerMetadata;
|
|
38
|
+
/**
|
|
39
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
40
|
+
*/
|
|
20
41
|
export declare const tuiCrossFade: import("@angular/animations").AnimationTriggerMetadata;
|
|
42
|
+
/**
|
|
43
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
44
|
+
*/
|
|
21
45
|
export declare const tuiFadeIn: import("@angular/animations").AnimationTriggerMetadata;
|
|
46
|
+
/**
|
|
47
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
48
|
+
*/
|
|
22
49
|
export declare const tuiFadeInList: import("@angular/animations").AnimationTriggerMetadata;
|
|
50
|
+
/**
|
|
51
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
52
|
+
*/
|
|
23
53
|
export declare const tuiFadeInTop: import("@angular/animations").AnimationTriggerMetadata;
|
|
54
|
+
/**
|
|
55
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
56
|
+
*/
|
|
24
57
|
export declare const tuiFadeInBottom: import("@angular/animations").AnimationTriggerMetadata;
|
|
58
|
+
/**
|
|
59
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
60
|
+
*/
|
|
25
61
|
export declare const tuiDropdownAnimation: import("@angular/animations").AnimationTriggerMetadata;
|
|
62
|
+
/**
|
|
63
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
64
|
+
*/
|
|
26
65
|
export declare const tuiScaleIn: import("@angular/animations").AnimationTriggerMetadata;
|
|
66
|
+
/**
|
|
67
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
68
|
+
*/
|
|
27
69
|
export declare const tuiPop: import("@angular/animations").AnimationTriggerMetadata;
|
|
70
|
+
/**
|
|
71
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
72
|
+
*/
|
|
28
73
|
export declare const tuiScaleInList: import("@angular/animations").AnimationTriggerMetadata;
|
|
74
|
+
/**
|
|
75
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
76
|
+
*/
|
|
29
77
|
export declare const tuiSlideIn: import("@angular/animations").AnimationTriggerMetadata;
|
|
78
|
+
/**
|
|
79
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
80
|
+
*/
|
|
30
81
|
export declare const tuiSlideInLeft: import("@angular/animations").AnimationTriggerMetadata;
|
|
82
|
+
/**
|
|
83
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
84
|
+
*/
|
|
31
85
|
export declare const tuiSlideInLeftList: import("@angular/animations").AnimationTriggerMetadata;
|
|
86
|
+
/**
|
|
87
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
88
|
+
*/
|
|
32
89
|
export declare const tuiSlideInRight: import("@angular/animations").AnimationTriggerMetadata;
|
|
90
|
+
/**
|
|
91
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
92
|
+
*/
|
|
33
93
|
export declare const tuiSlideInRightList: import("@angular/animations").AnimationTriggerMetadata;
|
|
94
|
+
/**
|
|
95
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
96
|
+
*/
|
|
34
97
|
export declare const tuiSlideInTop: import("@angular/animations").AnimationTriggerMetadata;
|
|
98
|
+
/**
|
|
99
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
100
|
+
*/
|
|
35
101
|
export declare const tuiSlideInTopList: import("@angular/animations").AnimationTriggerMetadata;
|
|
102
|
+
/**
|
|
103
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
104
|
+
*/
|
|
36
105
|
export declare const tuiSlideInBottom: import("@angular/animations").AnimationTriggerMetadata;
|
|
106
|
+
/**
|
|
107
|
+
* @deprecated Angular animations are deprecated, use {@link TuiAnimated} directive and CSS instead
|
|
108
|
+
*/
|
|
37
109
|
export declare const tuiSlideInBottomList: import("@angular/animations").AnimationTriggerMetadata;
|
|
@@ -1,21 +1,15 @@
|
|
|
1
1
|
import type { TuiPopover } from '@taiga-ui/cdk/services';
|
|
2
2
|
import type { TuiAlertOptions } from './alert.interfaces';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@taiga-ui/cdk/directives/animated";
|
|
4
5
|
export declare class TuiAlertComponent<O, I> {
|
|
5
6
|
private readonly el;
|
|
6
7
|
protected readonly icons: import("@taiga-ui/core/tokens").TuiCommonIcons;
|
|
7
|
-
protected readonly options: import("@angular/animations").AnimationOptions;
|
|
8
8
|
protected readonly close: import("@angular/core").Signal<string | undefined>;
|
|
9
9
|
protected readonly position: string;
|
|
10
10
|
protected readonly item: TuiPopover<TuiAlertOptions<I>, O>;
|
|
11
|
-
protected readonly animation: {
|
|
12
|
-
value: string;
|
|
13
|
-
delay?: string | number | undefined;
|
|
14
|
-
params?: {
|
|
15
|
-
[name: string]: any;
|
|
16
|
-
} | undefined;
|
|
17
|
-
};
|
|
18
11
|
protected readonly sub: import("rxjs").Subscription;
|
|
12
|
+
get from(): string;
|
|
19
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<TuiAlertComponent<any, any>, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TuiAlertComponent<any, any>, "tui-alert", never, {}, {}, never, never, true,
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiAlertComponent<any, any>, "tui-alert", never, {}, {}, never, never, true, [{ directive: typeof i1.TuiAnimated; inputs: {}; outputs: {}; }]>;
|
|
21
15
|
}
|
|
@@ -5,6 +5,7 @@ import type { TuiBooleanHandler, TuiMapper } from '@taiga-ui/cdk/types';
|
|
|
5
5
|
import type { TuiMarkerHandler } from './calendar-sheet.component';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class TuiCalendar {
|
|
8
|
+
private readonly cdr;
|
|
8
9
|
private day;
|
|
9
10
|
private view;
|
|
10
11
|
month: TuiMonth;
|
|
@@ -5,7 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
/**
|
|
6
6
|
* Content for tuiOption component
|
|
7
7
|
*/
|
|
8
|
-
export declare const TUI_OPTION_CONTENT: import("@angular/core").InjectionToken<PolymorpheusContent<TuiContext<TemplateRef<Record<string, unknown
|
|
8
|
+
export declare const TUI_OPTION_CONTENT: import("@angular/core").InjectionToken<Type<any> | PolymorpheusContent<TuiContext<TemplateRef<Record<string, unknown>>>>>;
|
|
9
9
|
export declare function tuiAsOptionContent(useValue: PolymorpheusContent<TuiContext<TemplateRef<Record<string, unknown>>>> | Type<any>): Provider;
|
|
10
10
|
export declare class TuiWithOptionContent {
|
|
11
11
|
protected readonly localContent: Type<any> | null;
|
|
@@ -4,32 +4,18 @@ import type { Observable } from 'rxjs';
|
|
|
4
4
|
import { Subject } from 'rxjs';
|
|
5
5
|
import type { TuiDialogOptions, TuiDialogSize } from './dialog.interfaces';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "@taiga-ui/cdk/directives/animated";
|
|
7
8
|
export declare class TuiDialogComponent<O, I> {
|
|
8
|
-
private readonly speed;
|
|
9
|
-
private readonly animation;
|
|
10
|
-
private readonly fullscreenAnimation;
|
|
11
9
|
protected readonly close$: Subject<void>;
|
|
12
10
|
protected readonly context: TuiPopover<TuiDialogOptions<I>, O>;
|
|
13
11
|
protected readonly closeWord$: Observable<string>;
|
|
14
12
|
protected readonly icons: import("@taiga-ui/core/tokens").TuiCommonIcons;
|
|
15
|
-
protected readonly
|
|
16
|
-
readonly value: "";
|
|
17
|
-
readonly params: {
|
|
18
|
-
readonly start: "2.5rem";
|
|
19
|
-
readonly duration: number;
|
|
20
|
-
};
|
|
21
|
-
} | {
|
|
22
|
-
readonly value: "";
|
|
23
|
-
readonly params: {
|
|
24
|
-
readonly start: "100vh";
|
|
25
|
-
readonly duration: number;
|
|
26
|
-
};
|
|
27
|
-
}>;
|
|
13
|
+
protected readonly from: import("@angular/core").Signal<"translateY(100vh)" | "translateY(2.5rem)">;
|
|
28
14
|
protected readonly isMobile: import("@angular/core").Signal<boolean | undefined>;
|
|
29
15
|
constructor();
|
|
30
16
|
protected get size(): TuiDialogSize;
|
|
31
17
|
protected get header(): PolymorpheusContent<TuiPopover<TuiDialogOptions<I>, O>>;
|
|
32
18
|
private close;
|
|
33
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<TuiDialogComponent<any, any>, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TuiDialogComponent<any, any>, "tui-dialog", never, {}, {}, never, never, true,
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiDialogComponent<any, any>, "tui-dialog", never, {}, {}, never, never, true, [{ directive: typeof i1.TuiAnimated; inputs: {}; outputs: {}; }]>;
|
|
35
21
|
}
|
|
@@ -6,7 +6,6 @@ export declare class TuiError {
|
|
|
6
6
|
protected visible: boolean;
|
|
7
7
|
protected readonly default: import("@angular/core").Signal<string | undefined>;
|
|
8
8
|
set errorSetter(error: TuiValidationError | string | null);
|
|
9
|
-
protected onAnimation(visible: boolean): void;
|
|
10
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TuiError, never>;
|
|
11
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<TuiError, "tui-error", never, { "errorSetter": { "alias": "error"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
11
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated use {@link TuiExpand} from @taiga-ui/experimental
|
|
4
|
+
*/
|
|
2
5
|
export declare class TuiExpandContent {
|
|
3
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<TuiExpandContent, never>;
|
|
4
7
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TuiExpandContent, "[tuiExpandContent]", never, {}, {}, never, never, true, never>;
|
|
@@ -6,6 +6,9 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
* Dispatch to finish loading states for {@link TuiExpandComponent}.
|
|
7
7
|
*/
|
|
8
8
|
export declare const TUI_EXPAND_LOADED = "tui-expand-loaded";
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated use {@link TuiExpand} from @taiga-ui/experimental
|
|
11
|
+
*/
|
|
9
12
|
export declare class TuiExpandComponent {
|
|
10
13
|
private readonly contentWrapper?;
|
|
11
14
|
private readonly cdr;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
import { TuiExpandComponent } from './expand.component';
|
|
2
2
|
import { TuiExpandContent } from './expand-content.directive';
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated use {@link TuiExpand} from @taiga-ui/experimental
|
|
5
|
+
*/
|
|
3
6
|
export declare const TuiExpand: readonly [typeof TuiExpandComponent, typeof TuiExpandContent];
|
|
@@ -2,7 +2,6 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class TuiScrollControls {
|
|
3
3
|
private readonly scrollRef;
|
|
4
4
|
protected readonly nativeScrollbar: boolean;
|
|
5
|
-
protected readonly options: import("@angular/animations").AnimationOptions;
|
|
6
5
|
protected readonly refresh$: import("rxjs").Observable<[boolean, boolean] | boolean[]>;
|
|
7
6
|
private get scrollbars();
|
|
8
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<TuiScrollControls, never>;
|
|
@@ -1,4 +1,2 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
export declare const TUI_AUXILIARY: import("@angular/core").InjectionToken<null>;
|
|
3
|
-
export declare function tuiAsAuxiliary(x: Type<unknown>): Provider;
|
|
1
|
+
import type { Signal } from '@angular/core';
|
|
4
2
|
export declare function tuiInjectAuxiliary<T>(predicate: (auxiliary: any, index: number) => boolean): Signal<T | null>;
|
|
@@ -2,6 +2,7 @@ import type { AfterViewInit } from '@angular/core';
|
|
|
2
2
|
import { TuiDropdownDirective } from './dropdown.directive';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
import * as i1 from "@taiga-ui/cdk/directives/active-zone";
|
|
5
|
+
import * as i2 from "@taiga-ui/cdk/directives/animated";
|
|
5
6
|
/**
|
|
6
7
|
* @description:
|
|
7
8
|
* This component is used to show template in a portal
|
|
@@ -13,7 +14,6 @@ export declare class TuiDropdownComponent implements AfterViewInit {
|
|
|
13
14
|
private readonly viewport;
|
|
14
15
|
private readonly vvs;
|
|
15
16
|
private readonly styles$;
|
|
16
|
-
protected readonly animation: import("@angular/animations").AnimationOptions;
|
|
17
17
|
protected readonly options: import("./dropdown-options.directive").TuiDropdownOptions;
|
|
18
18
|
protected readonly directive: TuiDropdownDirective;
|
|
19
19
|
protected readonly context: Record<any, any> | null;
|
|
@@ -26,5 +26,5 @@ export declare class TuiDropdownComponent implements AfterViewInit {
|
|
|
26
26
|
protected readonly close: () => void;
|
|
27
27
|
private getStyles;
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<TuiDropdownComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TuiDropdownComponent, "tui-dropdown", never, {}, {}, never, never, true, [{ directive: typeof i1.TuiActiveZone; inputs: {}; outputs: {}; }]>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiDropdownComponent, "tui-dropdown", never, {}, {}, never, never, true, [{ directive: typeof i1.TuiActiveZone; inputs: {}; outputs: {}; }, { directive: typeof i2.TuiAnimated; inputs: {}; outputs: {}; }]>;
|
|
30
30
|
}
|
|
@@ -4,20 +4,13 @@ import { TuiPositionService } from '@taiga-ui/core/services';
|
|
|
4
4
|
import { TuiHintDirective } from './hint.directive';
|
|
5
5
|
import { TuiHintPointer } from './hint-pointer.directive';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "@taiga-ui/cdk/directives/animated";
|
|
7
8
|
export declare const TUI_HINT_PROVIDERS: (import("@angular/core").FactoryProvider | typeof TuiHoveredService | typeof TuiPositionService)[];
|
|
8
9
|
export declare class TuiHintComponent<C = any> {
|
|
9
10
|
private readonly el;
|
|
10
11
|
private readonly hover;
|
|
11
12
|
private readonly vvs;
|
|
12
13
|
private readonly viewport;
|
|
13
|
-
protected readonly desktop: {
|
|
14
|
-
value: string;
|
|
15
|
-
params: {
|
|
16
|
-
end: number;
|
|
17
|
-
start: number;
|
|
18
|
-
};
|
|
19
|
-
};
|
|
20
|
-
protected readonly options: import("@angular/animations").AnimationOptions;
|
|
21
14
|
protected readonly pointer: TuiHintPointer | null;
|
|
22
15
|
protected readonly accessor: TuiRectAccessor;
|
|
23
16
|
protected readonly hint: TuiHintDirective<C>;
|
|
@@ -29,5 +22,5 @@ export declare class TuiHintComponent<C = any> {
|
|
|
29
22
|
private apply;
|
|
30
23
|
private update;
|
|
31
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<TuiHintComponent<any>, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TuiHintComponent<any>, "tui-hint", never, {}, {}, never, ["*"], true,
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TuiHintComponent<any>, "tui-hint", never, {}, {}, never, ["*"], true, [{ directive: typeof i1.TuiAnimated; inputs: {}; outputs: {}; }]>;
|
|
33
26
|
}
|