@indigina/ui-kit 1.1.444 → 1.1.445
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
|
@@ -3822,15 +3822,15 @@ declare class KitCardDetailsComponent<T extends KitCardDataModel> implements OnI
|
|
|
3822
3822
|
readonly cardData$: InputSignal<Observable<KitGridDataResult<T>>>;
|
|
3823
3823
|
readonly pageSize: InputSignal<number>;
|
|
3824
3824
|
readonly title: InputSignal<string>;
|
|
3825
|
-
readonly
|
|
3825
|
+
readonly cardSkeletonConfig: InputSignal<KitCardDetailsSkeletonConfig>;
|
|
3826
3826
|
readonly dataStateChanged: OutputEmitterRef<KitCardDetailsState>;
|
|
3827
3827
|
readonly cardClicked: OutputEmitterRef<{
|
|
3828
3828
|
id: string;
|
|
3829
3829
|
} & T>;
|
|
3830
3830
|
readonly kitTextboxComponent: Signal<KitTextboxComponent>;
|
|
3831
|
-
readonly cardElement: Signal<
|
|
3832
|
-
readonly headerActions: Signal<
|
|
3833
|
-
readonly details: Signal<
|
|
3831
|
+
readonly cardElement: Signal<TemplateRef<unknown> | undefined>;
|
|
3832
|
+
readonly headerActions: Signal<TemplateRef<unknown> | undefined>;
|
|
3833
|
+
readonly details: Signal<TemplateRef<unknown> | undefined>;
|
|
3834
3834
|
readonly kitSvgIcon: typeof KitSvgIcon;
|
|
3835
3835
|
readonly kitButtonType: typeof KitButtonType;
|
|
3836
3836
|
readonly kitButtonKind: typeof KitButtonKind;
|
|
@@ -3862,7 +3862,7 @@ declare class KitCardDetailsComponent<T extends KitCardDataModel> implements OnI
|
|
|
3862
3862
|
private navigateToCard;
|
|
3863
3863
|
private selectNewLoadedCard;
|
|
3864
3864
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitCardDetailsComponent<any>, never>;
|
|
3865
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitCardDetailsComponent<any>, "kit-card-details", never, { "cardData$": { "alias": "cardData$"; "required": true; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "
|
|
3865
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitCardDetailsComponent<any>, "kit-card-details", never, { "cardData$": { "alias": "cardData$"; "required": true; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "cardSkeletonConfig": { "alias": "cardSkeletonConfig"; "required": false; "isSignal": true; }; }, { "dataStateChanged": "dataStateChanged"; "cardClicked": "cardClicked"; }, ["cardElement", "headerActions", "details"], never, true, never>;
|
|
3866
3866
|
}
|
|
3867
3867
|
|
|
3868
3868
|
interface KitUserSettingsDetails {
|
|
@@ -5136,6 +5136,7 @@ declare class KitApiTokenMaintenanceListComponent implements OnDestroy {
|
|
|
5136
5136
|
readonly kitButtonType: typeof KitButtonType;
|
|
5137
5137
|
readonly kitButtonKind: typeof KitButtonKind;
|
|
5138
5138
|
readonly kitButtonIconPosition: typeof KitButtonIconPosition;
|
|
5139
|
+
readonly cardDetailsSkeletonConfig: KitCardDetailsSkeletonConfig;
|
|
5139
5140
|
ngOnDestroy(): void;
|
|
5140
5141
|
onDataStateChanged({ skip, take, search, filters }: KitCardDetailsState): void;
|
|
5141
5142
|
exportExcel(): void;
|