chrv-components 1.11.15 → 1.11.16
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
|
@@ -47,12 +47,12 @@ declare class ChrButtonComponent {
|
|
|
47
47
|
readonly textColor: _angular_core.InputSignal<Color | undefined>;
|
|
48
48
|
readonly flat: _angular_core.InputSignal<boolean>;
|
|
49
49
|
readonly predicate: _angular_core.InputSignal<boolean | undefined>;
|
|
50
|
-
readonly type: _angular_core.InputSignal<"none" | "
|
|
50
|
+
readonly type: _angular_core.InputSignal<"none" | "responsive" | "table" | "full" | "fixed" | "small">;
|
|
51
51
|
readonly href: _angular_core.InputSignal<string | undefined>;
|
|
52
52
|
readonly target: _angular_core.InputSignal<"_blank" | "_parent" | "_self" | "_top" | undefined>;
|
|
53
53
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
54
54
|
readonly tooltip: _angular_core.InputSignal<string | undefined>;
|
|
55
|
-
readonly tooltipPosition: _angular_core.InputSignal<"
|
|
55
|
+
readonly tooltipPosition: _angular_core.InputSignal<"above" | "below" | "left" | "right" | "before" | "after" | undefined>;
|
|
56
56
|
constructor();
|
|
57
57
|
doClick: () => void;
|
|
58
58
|
getBackgroundColor: (color: Color) => string;
|
|
@@ -1329,7 +1329,7 @@ interface ModalOptions {
|
|
|
1329
1329
|
data?: any;
|
|
1330
1330
|
}
|
|
1331
1331
|
declare const CHR_MODAL_DATA: InjectionToken<any>;
|
|
1332
|
-
declare const CHR_MODAL_REF: InjectionToken<ModalRef<any
|
|
1332
|
+
declare const CHR_MODAL_REF: InjectionToken<ModalRef<any> | null>;
|
|
1333
1333
|
interface ModalData {
|
|
1334
1334
|
[key: string]: any;
|
|
1335
1335
|
}
|