chrv-components 1.12.112 → 1.12.113
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/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;
|
|
@@ -1252,10 +1252,10 @@ declare class ChrInputComponent implements ControlValueAccessor, OnInit {
|
|
|
1252
1252
|
/**
|
|
1253
1253
|
* Position of the tooltip relative to the input
|
|
1254
1254
|
*/
|
|
1255
|
-
readonly tooltipPosition: _angular_core.InputSignal<"
|
|
1255
|
+
readonly tooltipPosition: _angular_core.InputSignal<"left" | "right" | "top" | "bottom">;
|
|
1256
1256
|
constructor();
|
|
1257
1257
|
readonly required: _angular_core.Signal<boolean>;
|
|
1258
|
-
readonly state: _angular_core.WritableSignal<"VALID" | "INVALID" | "
|
|
1258
|
+
readonly state: _angular_core.WritableSignal<"VALID" | "INVALID" | "PENDING" | "DISABLED" | "WARNING" | "IDLE">;
|
|
1259
1259
|
readonly valid: _angular_core.Signal<void>;
|
|
1260
1260
|
private readonly _elementRef;
|
|
1261
1261
|
private readonly _element;
|
|
@@ -2461,7 +2461,7 @@ declare class DataListComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
2461
2461
|
|
|
2462
2462
|
declare class ChrHoverTitleComponent {
|
|
2463
2463
|
title: _angular_core.InputSignal<string>;
|
|
2464
|
-
position: _angular_core.InputSignal<"
|
|
2464
|
+
position: _angular_core.InputSignal<"above" | "below" | "left" | "right">;
|
|
2465
2465
|
originElement: _angular_core.InputSignal<HTMLElement | null>;
|
|
2466
2466
|
color: _angular_core.Signal<string>;
|
|
2467
2467
|
backgroundColor: _angular_core.Signal<string>;
|
|
@@ -2635,7 +2635,7 @@ declare class OutsideClickAwareDirective {
|
|
|
2635
2635
|
declare class ChrHoverTitleDirective implements OnInit, OnDestroy {
|
|
2636
2636
|
defaults: chrv_components.DebounceDefaults;
|
|
2637
2637
|
chrTitle: _angular_core.ModelSignal<string | null | undefined>;
|
|
2638
|
-
chrTitlePosition: _angular_core.InputSignal<"
|
|
2638
|
+
chrTitlePosition: _angular_core.InputSignal<"above" | "below" | "left" | "right">;
|
|
2639
2639
|
chrTitleSnap: _angular_core.InputSignal<boolean>;
|
|
2640
2640
|
chrTitleDebounce: _angular_core.InputSignal<number>;
|
|
2641
2641
|
private elementRef;
|
|
@@ -2700,7 +2700,7 @@ declare class ChrHoverDirective implements OnInit, OnDestroy {
|
|
|
2700
2700
|
template: TemplateRef<any>;
|
|
2701
2701
|
chrHoverContext: _angular_core.InputSignal<any>;
|
|
2702
2702
|
chrHoverSnap: _angular_core.InputSignal<boolean>;
|
|
2703
|
-
chrHoverPosition: _angular_core.InputSignal<"
|
|
2703
|
+
chrHoverPosition: _angular_core.InputSignal<"above" | "below" | "left" | "right">;
|
|
2704
2704
|
chrHoverCloseDelay: _angular_core.InputSignal<number>;
|
|
2705
2705
|
private overlayRef;
|
|
2706
2706
|
private portal?;
|
|
@@ -2727,7 +2727,7 @@ declare class ChrHoverDirective implements OnInit, OnDestroy {
|
|
|
2727
2727
|
*/
|
|
2728
2728
|
declare class ChrPopoverDirectiveDirective implements OnInit, AfterViewInit {
|
|
2729
2729
|
readonly chrPopover: _angular_core.InputSignal<string | TemplateRef<any>>;
|
|
2730
|
-
readonly chrPopoverPosition: _angular_core.InputSignal<"
|
|
2730
|
+
readonly chrPopoverPosition: _angular_core.InputSignal<"left" | "right" | "center" | "top" | "bottom">;
|
|
2731
2731
|
readonly chrPopoverOnHover: _angular_core.InputSignal<boolean>;
|
|
2732
2732
|
readonly isOpen: _angular_core.WritableSignal<boolean>;
|
|
2733
2733
|
private readonly renderer;
|
|
Binary file
|