chrv-components 1.12.111 → 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;
|
|
@@ -1270,7 +1270,7 @@ declare class ChrInputComponent implements ControlValueAccessor, OnInit {
|
|
|
1270
1270
|
ngOnInit(): void;
|
|
1271
1271
|
private configureDebouncing;
|
|
1272
1272
|
private configureEventListeners;
|
|
1273
|
-
|
|
1273
|
+
protected ensureNgControl: () => void;
|
|
1274
1274
|
protected readonly onChange: (value: any | Event) => void;
|
|
1275
1275
|
readonly writeValue: (value: any) => void;
|
|
1276
1276
|
readonly registerOnChange: (fn: (value: any) => any) => void;
|
|
@@ -1379,7 +1379,6 @@ declare class ChrTagSelectInputComponent extends ChrInputComponent implements Co
|
|
|
1379
1379
|
readonly data: _angular_core.InputSignal<any[]>;
|
|
1380
1380
|
readonly display: _angular_core.InputSignal<(value: any) => string>;
|
|
1381
1381
|
constructor();
|
|
1382
|
-
ngOnInit(): void;
|
|
1383
1382
|
/**
|
|
1384
1383
|
* Signal calculé renvoyant le tableau d'éléments sélectionnés
|
|
1385
1384
|
*/
|
|
@@ -2462,7 +2461,7 @@ declare class DataListComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
|
2462
2461
|
|
|
2463
2462
|
declare class ChrHoverTitleComponent {
|
|
2464
2463
|
title: _angular_core.InputSignal<string>;
|
|
2465
|
-
position: _angular_core.InputSignal<"
|
|
2464
|
+
position: _angular_core.InputSignal<"above" | "below" | "left" | "right">;
|
|
2466
2465
|
originElement: _angular_core.InputSignal<HTMLElement | null>;
|
|
2467
2466
|
color: _angular_core.Signal<string>;
|
|
2468
2467
|
backgroundColor: _angular_core.Signal<string>;
|
|
@@ -2636,7 +2635,7 @@ declare class OutsideClickAwareDirective {
|
|
|
2636
2635
|
declare class ChrHoverTitleDirective implements OnInit, OnDestroy {
|
|
2637
2636
|
defaults: chrv_components.DebounceDefaults;
|
|
2638
2637
|
chrTitle: _angular_core.ModelSignal<string | null | undefined>;
|
|
2639
|
-
chrTitlePosition: _angular_core.InputSignal<"
|
|
2638
|
+
chrTitlePosition: _angular_core.InputSignal<"above" | "below" | "left" | "right">;
|
|
2640
2639
|
chrTitleSnap: _angular_core.InputSignal<boolean>;
|
|
2641
2640
|
chrTitleDebounce: _angular_core.InputSignal<number>;
|
|
2642
2641
|
private elementRef;
|
|
@@ -2701,7 +2700,7 @@ declare class ChrHoverDirective implements OnInit, OnDestroy {
|
|
|
2701
2700
|
template: TemplateRef<any>;
|
|
2702
2701
|
chrHoverContext: _angular_core.InputSignal<any>;
|
|
2703
2702
|
chrHoverSnap: _angular_core.InputSignal<boolean>;
|
|
2704
|
-
chrHoverPosition: _angular_core.InputSignal<"
|
|
2703
|
+
chrHoverPosition: _angular_core.InputSignal<"above" | "below" | "left" | "right">;
|
|
2705
2704
|
chrHoverCloseDelay: _angular_core.InputSignal<number>;
|
|
2706
2705
|
private overlayRef;
|
|
2707
2706
|
private portal?;
|
|
@@ -2728,7 +2727,7 @@ declare class ChrHoverDirective implements OnInit, OnDestroy {
|
|
|
2728
2727
|
*/
|
|
2729
2728
|
declare class ChrPopoverDirectiveDirective implements OnInit, AfterViewInit {
|
|
2730
2729
|
readonly chrPopover: _angular_core.InputSignal<string | TemplateRef<any>>;
|
|
2731
|
-
readonly chrPopoverPosition: _angular_core.InputSignal<"
|
|
2730
|
+
readonly chrPopoverPosition: _angular_core.InputSignal<"left" | "right" | "center" | "top" | "bottom">;
|
|
2732
2731
|
readonly chrPopoverOnHover: _angular_core.InputSignal<boolean>;
|
|
2733
2732
|
readonly isOpen: _angular_core.WritableSignal<boolean>;
|
|
2734
2733
|
private readonly renderer;
|
|
Binary file
|