@indigina/ui-kit 1.1.542 → 1.1.544
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
|
@@ -3051,32 +3051,22 @@ declare class KitCardComponent {
|
|
|
3051
3051
|
/**
|
|
3052
3052
|
* Defines card data
|
|
3053
3053
|
*/
|
|
3054
|
-
data: KitCard | null
|
|
3054
|
+
readonly data: InputSignal<KitCard | null>;
|
|
3055
3055
|
/**
|
|
3056
3056
|
* Defines card color theme
|
|
3057
3057
|
*/
|
|
3058
|
-
theme: KitCardTheme
|
|
3059
|
-
/**
|
|
3060
|
-
* Defines whether the items list will be expanded
|
|
3061
|
-
*/
|
|
3062
|
-
itemsExpanded: boolean;
|
|
3063
|
-
hideToggle: boolean;
|
|
3058
|
+
readonly theme: InputSignal<KitCardTheme>;
|
|
3064
3059
|
/**
|
|
3065
3060
|
* An action which is emitted when action button clicked
|
|
3066
3061
|
*/
|
|
3067
|
-
buttonClicked:
|
|
3068
|
-
/**
|
|
3069
|
-
* An action which is emitted when toggle button clicked
|
|
3070
|
-
*/
|
|
3071
|
-
toggleClicked: EventEmitter<boolean>;
|
|
3062
|
+
readonly buttonClicked: OutputEmitterRef<void>;
|
|
3072
3063
|
readonly KitSvgIcon: typeof KitSvgIcon;
|
|
3073
3064
|
readonly KitButtonType: typeof KitButtonType;
|
|
3074
3065
|
readonly KitButtonKind: typeof KitButtonKind;
|
|
3075
3066
|
readonly KitTooltipPosition: typeof KitTooltipPosition;
|
|
3076
|
-
toggleList(): void;
|
|
3077
3067
|
openItemLink(item: KitCardItem): void;
|
|
3078
3068
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitCardComponent, never>;
|
|
3079
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitCardComponent, "kit-card", never, { "data": { "alias": "data"; "required": false;
|
|
3069
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitCardComponent, "kit-card", never, { "data": { "alias": "data"; "required": false; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; }, { "buttonClicked": "buttonClicked"; }, never, never, true, never>;
|
|
3080
3070
|
}
|
|
3081
3071
|
|
|
3082
3072
|
declare enum KitStatusLabelColor {
|