@indigina/ui-kit 1.1.277 → 1.1.278
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
|
@@ -4333,6 +4333,7 @@ interface KitCardDetailsState {
|
|
|
4333
4333
|
take?: number;
|
|
4334
4334
|
activeId?: string;
|
|
4335
4335
|
search?: string;
|
|
4336
|
+
filters?: KitCompositeFilterDescriptor;
|
|
4336
4337
|
}
|
|
4337
4338
|
interface KitCardDataModel {
|
|
4338
4339
|
id: string | number;
|
|
@@ -4362,8 +4363,10 @@ declare class KitCardDetailsComponent<T extends KitCardDataModel> implements OnI
|
|
|
4362
4363
|
readonly cardData: WritableSignal<T[]>;
|
|
4363
4364
|
readonly total: WritableSignal<number>;
|
|
4364
4365
|
readonly dataState: WritableSignal<KitCardDetailsState>;
|
|
4366
|
+
readonly newCreatedCards: WritableSignal<T[]>;
|
|
4365
4367
|
private shouldAppendFetchedData;
|
|
4366
4368
|
ngOnInit(): void;
|
|
4369
|
+
get skipNewCreatedCardFilter(): KitCompositeFilterDescriptor;
|
|
4367
4370
|
loadMoreData(): void;
|
|
4368
4371
|
onCardClick(id: string | number): void;
|
|
4369
4372
|
appendCards(cards: T[]): void;
|