chrv-components 1.12.146 → 1.12.147
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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -58,7 +58,7 @@ declare class ChrButtonLegacyComponent {
|
|
|
58
58
|
readonly target: _angular_core.InputSignal<"_blank" | "_parent" | "_self" | "_top" | undefined>;
|
|
59
59
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
60
60
|
readonly tooltip: _angular_core.InputSignal<string | undefined>;
|
|
61
|
-
readonly tooltipPosition: _angular_core.InputSignal<"
|
|
61
|
+
readonly tooltipPosition: _angular_core.InputSignal<"above" | "below" | "left" | "right" | undefined>;
|
|
62
62
|
constructor();
|
|
63
63
|
doClick: () => void;
|
|
64
64
|
getBackgroundColor: (color: Color) => string;
|
|
@@ -1258,10 +1258,10 @@ declare class ChrInputComponent implements ControlValueAccessor, OnInit {
|
|
|
1258
1258
|
/**
|
|
1259
1259
|
* Position of the tooltip relative to the input
|
|
1260
1260
|
*/
|
|
1261
|
-
readonly tooltipPosition: _angular_core.InputSignal<"
|
|
1261
|
+
readonly tooltipPosition: _angular_core.InputSignal<"left" | "right" | "top" | "bottom">;
|
|
1262
1262
|
constructor();
|
|
1263
1263
|
readonly required: _angular_core.Signal<boolean>;
|
|
1264
|
-
readonly state: _angular_core.WritableSignal<"VALID" | "INVALID" | "
|
|
1264
|
+
readonly state: _angular_core.WritableSignal<"VALID" | "INVALID" | "PENDING" | "DISABLED" | "WARNING" | "IDLE">;
|
|
1265
1265
|
readonly valid: _angular_core.Signal<void>;
|
|
1266
1266
|
private readonly _elementRef;
|
|
1267
1267
|
private readonly _element;
|
|
@@ -2475,7 +2475,7 @@ declare class DataListComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
2475
2475
|
|
|
2476
2476
|
declare class ChrHoverTitleComponent {
|
|
2477
2477
|
title: _angular_core.InputSignal<string>;
|
|
2478
|
-
position: _angular_core.InputSignal<"
|
|
2478
|
+
position: _angular_core.InputSignal<"above" | "below" | "left" | "right">;
|
|
2479
2479
|
originElement: _angular_core.InputSignal<HTMLElement | null>;
|
|
2480
2480
|
color: _angular_core.Signal<string>;
|
|
2481
2481
|
backgroundColor: _angular_core.Signal<string>;
|
|
@@ -2649,7 +2649,7 @@ declare class OutsideClickAwareDirective {
|
|
|
2649
2649
|
declare class ChrHoverTitleDirective implements OnInit, OnDestroy {
|
|
2650
2650
|
defaults: chrv_components.DebounceDefaults;
|
|
2651
2651
|
chrTitle: _angular_core.ModelSignal<string | null | undefined>;
|
|
2652
|
-
chrTitlePosition: _angular_core.InputSignal<"
|
|
2652
|
+
chrTitlePosition: _angular_core.InputSignal<"above" | "below" | "left" | "right">;
|
|
2653
2653
|
chrTitleSnap: _angular_core.InputSignal<boolean>;
|
|
2654
2654
|
chrTitleDebounce: _angular_core.InputSignal<number>;
|
|
2655
2655
|
private elementRef;
|
|
@@ -2714,7 +2714,7 @@ declare class ChrHoverDirective implements OnInit, OnDestroy {
|
|
|
2714
2714
|
template: TemplateRef<any>;
|
|
2715
2715
|
chrHoverContext: _angular_core.InputSignal<any>;
|
|
2716
2716
|
chrHoverSnap: _angular_core.InputSignal<boolean>;
|
|
2717
|
-
chrHoverPosition: _angular_core.InputSignal<"
|
|
2717
|
+
chrHoverPosition: _angular_core.InputSignal<"above" | "below" | "left" | "right">;
|
|
2718
2718
|
chrHoverCloseDelay: _angular_core.InputSignal<number>;
|
|
2719
2719
|
private overlayRef;
|
|
2720
2720
|
private portal?;
|
|
@@ -2741,7 +2741,7 @@ declare class ChrHoverDirective implements OnInit, OnDestroy {
|
|
|
2741
2741
|
*/
|
|
2742
2742
|
declare class ChrPopoverDirective implements OnInit, AfterViewInit {
|
|
2743
2743
|
readonly chrPopover: _angular_core.InputSignal<string | TemplateRef<any>>;
|
|
2744
|
-
readonly chrPopoverPosition: _angular_core.InputSignal<"
|
|
2744
|
+
readonly chrPopoverPosition: _angular_core.InputSignal<"left" | "right" | "center" | "top" | "bottom">;
|
|
2745
2745
|
readonly chrPopoverData: _angular_core.InputSignal<any>;
|
|
2746
2746
|
readonly chrPopoverOnHover: _angular_core.InputSignal<boolean>;
|
|
2747
2747
|
readonly isOpen: _angular_core.WritableSignal<boolean>;
|
|
Binary file
|