chrv-components 1.12.88 → 1.12.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/package.json
CHANGED
|
@@ -53,7 +53,7 @@ declare class ChrButtonLegacyComponent {
|
|
|
53
53
|
readonly textColor: _angular_core.InputSignal<Color | undefined>;
|
|
54
54
|
readonly flat: _angular_core.InputSignal<boolean>;
|
|
55
55
|
readonly predicate: _angular_core.InputSignal<boolean | undefined>;
|
|
56
|
-
readonly type: _angular_core.InputSignal<"
|
|
56
|
+
readonly type: _angular_core.InputSignal<"none" | "small" | "responsive" | "table" | "full" | "fixed">;
|
|
57
57
|
readonly href: _angular_core.InputSignal<string | undefined>;
|
|
58
58
|
readonly target: _angular_core.InputSignal<"_blank" | "_parent" | "_self" | "_top" | undefined>;
|
|
59
59
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -1499,7 +1499,7 @@ declare class ButtonComponent {
|
|
|
1499
1499
|
/**
|
|
1500
1500
|
* The size of the icon.
|
|
1501
1501
|
*/
|
|
1502
|
-
size: _angular_core.InputSignal<"
|
|
1502
|
+
size: _angular_core.InputSignal<"large" | "medium" | "small">;
|
|
1503
1503
|
routerLink: _angular_core.InputSignal<string | any[] | UrlTree | null>;
|
|
1504
1504
|
routerLinkActive: _angular_core.InputSignal<string | string[]>;
|
|
1505
1505
|
getWidth(): string;
|
|
@@ -1515,12 +1515,12 @@ declare class ChrButtonComponent implements OnInit {
|
|
|
1515
1515
|
*/
|
|
1516
1516
|
display: _angular_core.InputSignal<string | undefined>;
|
|
1517
1517
|
variant: _angular_core.InputSignal<"filled" | "outlined" | "ghost">;
|
|
1518
|
-
padding: _angular_core.InputSignal<"
|
|
1518
|
+
padding: _angular_core.InputSignal<"large" | "medium" | "none">;
|
|
1519
1519
|
/**
|
|
1520
1520
|
* Name of the Google Material Symbols icon
|
|
1521
1521
|
*/
|
|
1522
1522
|
icon: _angular_core.InputSignal<string | undefined>;
|
|
1523
|
-
iconSize: _angular_core.InputSignal<"
|
|
1523
|
+
iconSize: _angular_core.InputSignal<"large" | "medium" | "small" | "inherit">;
|
|
1524
1524
|
/**
|
|
1525
1525
|
* Button's color. It will affect both the text and the icon
|
|
1526
1526
|
*/
|
|
@@ -1528,7 +1528,7 @@ declare class ChrButtonComponent implements OnInit {
|
|
|
1528
1528
|
/**
|
|
1529
1529
|
* HTML Button type
|
|
1530
1530
|
*/
|
|
1531
|
-
type: _angular_core.InputSignal<"
|
|
1531
|
+
type: _angular_core.InputSignal<"submit" | "button">;
|
|
1532
1532
|
/**
|
|
1533
1533
|
* Whether or not the button is disabled
|
|
1534
1534
|
*/
|
|
@@ -2151,7 +2151,7 @@ declare class MessageBanner {
|
|
|
2151
2151
|
title: _angular_core.InputSignal<string>;
|
|
2152
2152
|
icon: _angular_core.InputSignal<string | null>;
|
|
2153
2153
|
message: _angular_core.InputSignal<string | undefined>;
|
|
2154
|
-
type: _angular_core.InputSignal<"none" | "error" | "
|
|
2154
|
+
type: _angular_core.InputSignal<"none" | "error" | "warning" | "info">;
|
|
2155
2155
|
close: () => void;
|
|
2156
2156
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MessageBanner, never>;
|
|
2157
2157
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MessageBanner, "chr-message-banner", never, { "closable": { "alias": "closable"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -2261,7 +2261,7 @@ interface IToastComponent {
|
|
|
2261
2261
|
closed: EventEmitter<IClosureData>;
|
|
2262
2262
|
}
|
|
2263
2263
|
declare class ToastComponent implements IToastComponent, OnInit, OnDestroy {
|
|
2264
|
-
type: InputSignal<"error" | "
|
|
2264
|
+
type: InputSignal<"error" | "warning" | "success" | "info">;
|
|
2265
2265
|
title: InputSignal<string | null>;
|
|
2266
2266
|
message: InputSignal<string>;
|
|
2267
2267
|
code: InputSignal<string>;
|
|
Binary file
|