chrv-components 1.11.88 → 1.11.89
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/index.d.ts
CHANGED
|
@@ -54,7 +54,7 @@ declare class ChrButtonComponent {
|
|
|
54
54
|
readonly target: _angular_core.InputSignal<"_blank" | "_parent" | "_self" | "_top" | undefined>;
|
|
55
55
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
56
56
|
readonly tooltip: _angular_core.InputSignal<string | undefined>;
|
|
57
|
-
readonly tooltipPosition: _angular_core.InputSignal<"
|
|
57
|
+
readonly tooltipPosition: _angular_core.InputSignal<"left" | "right" | "above" | "below" | "before" | "after" | undefined>;
|
|
58
58
|
constructor();
|
|
59
59
|
doClick: () => void;
|
|
60
60
|
getBackgroundColor: (color: Color) => string;
|
|
@@ -168,9 +168,9 @@ interface IComputedColumn {
|
|
|
168
168
|
interface IAction {
|
|
169
169
|
display?: string;
|
|
170
170
|
icon?: string;
|
|
171
|
-
callback: Function;
|
|
171
|
+
callback: ((entry: any, index?: number) => void | any) | Function;
|
|
172
172
|
disabled?: boolean;
|
|
173
|
-
disabledCallback?: Function;
|
|
173
|
+
disabledCallback?: ((entry: any) => boolean) | Function;
|
|
174
174
|
color: Color;
|
|
175
175
|
}
|
|
176
176
|
declare class ChrTableComponent implements OnInit, AfterViewInit {
|
|
@@ -903,6 +903,7 @@ interface IInputSearchFilter {
|
|
|
903
903
|
declare class ChrSearchSelectComponent extends ChrBaseInputComponent implements ControlValueAccessor, OnInit, OnDestroy {
|
|
904
904
|
predicate: boolean;
|
|
905
905
|
filteredModelOptions?: Observable<any>;
|
|
906
|
+
readonly _inputText: _angular_core.WritableSignal<string | null>;
|
|
906
907
|
readonly values: BehaviorSubject<string>;
|
|
907
908
|
readonly autocomplete: _angular_core.Signal<MatAutocomplete>;
|
|
908
909
|
readonly placeholder: _angular_core.InputSignal<string | undefined>;
|
package/package.json
CHANGED
|
Binary file
|