@indigina/ui-kit 1.1.330 → 1.1.331
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/fesm2022/indigina-ui-kit.mjs +61 -64
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/index.d.ts +10 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4469,10 +4469,11 @@ declare class KitCardDetailsComponent<T extends KitCardDataModel> implements OnI
|
|
|
4469
4469
|
readonly dataStateChanged: OutputEmitterRef<KitCardDetailsState>;
|
|
4470
4470
|
readonly cardClicked: OutputEmitterRef<{
|
|
4471
4471
|
id: string;
|
|
4472
|
-
}>;
|
|
4472
|
+
} & T>;
|
|
4473
4473
|
readonly kitTextboxComponent: Signal<KitTextboxComponent>;
|
|
4474
4474
|
readonly cardElement: Signal<HTMLDivElement | undefined>;
|
|
4475
4475
|
readonly headerActions: Signal<HTMLDivElement | undefined>;
|
|
4476
|
+
readonly details: Signal<HTMLDivElement | undefined>;
|
|
4476
4477
|
readonly kitSvgIcon: typeof KitSvgIcon;
|
|
4477
4478
|
readonly kitButtonType: typeof KitButtonType;
|
|
4478
4479
|
readonly kitButtonKind: typeof KitButtonKind;
|
|
@@ -4483,12 +4484,12 @@ declare class KitCardDetailsComponent<T extends KitCardDataModel> implements OnI
|
|
|
4483
4484
|
readonly total: WritableSignal<number>;
|
|
4484
4485
|
readonly dataState: WritableSignal<KitCardDetailsState>;
|
|
4485
4486
|
readonly newCreatedCards: WritableSignal<T[]>;
|
|
4487
|
+
readonly skipNewCreatedCardFilter: Signal<KitCompositeFilterDescriptor>;
|
|
4486
4488
|
private shouldAppendFetchedData;
|
|
4487
4489
|
ngOnInit(): void;
|
|
4488
|
-
get skipNewCreatedCardFilter(): KitCompositeFilterDescriptor;
|
|
4489
4490
|
loadMoreData(): void;
|
|
4490
|
-
onCardClick(
|
|
4491
|
-
|
|
4491
|
+
onCardClick(card: T): void;
|
|
4492
|
+
appendCard(card: T, navigateToCard?: boolean): void;
|
|
4492
4493
|
deleteCard(cardId: string | number): void;
|
|
4493
4494
|
updateSpecificCardData(cardData: T): void;
|
|
4494
4495
|
scrollToCardById(id: string): void;
|
|
@@ -4496,10 +4497,13 @@ declare class KitCardDetailsComponent<T extends KitCardDataModel> implements OnI
|
|
|
4496
4497
|
private initStateFromUrl;
|
|
4497
4498
|
private initCardDataSubscription;
|
|
4498
4499
|
private updateData;
|
|
4500
|
+
private normalizeCardId;
|
|
4501
|
+
private removeFromNewCreatedCards;
|
|
4499
4502
|
private getStateFromUrl;
|
|
4500
|
-
private
|
|
4503
|
+
private setQueryParamsToUrl;
|
|
4504
|
+
private navigateToCard;
|
|
4501
4505
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitCardDetailsComponent<any>, never>;
|
|
4502
|
-
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; }; }, { "dataStateChanged": "dataStateChanged"; "cardClicked": "cardClicked"; }, ["cardElement", "headerActions"
|
|
4506
|
+
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; }; }, { "dataStateChanged": "dataStateChanged"; "cardClicked": "cardClicked"; }, ["cardElement", "headerActions", "details"], never, true, never>;
|
|
4503
4507
|
}
|
|
4504
4508
|
|
|
4505
4509
|
declare class KitListComponent<T> {
|