@indigina/ui-kit 1.1.440 → 1.1.442
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 +1871 -1179
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-ui-kit.d.ts +215 -115
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InputSignal, EventEmitter, OnInit, Predicate, ModelSignal, TemplateRef, OutputEmitterRef, Signal, OnDestroy, WritableSignal, OnChanges, ElementRef, ViewContainerRef, ModuleWithProviders, SimpleChanges, AfterContentInit, QueryList, AfterViewInit, PipeTransform, InjectionToken
|
|
2
|
+
import { InputSignal, EventEmitter, OnInit, Predicate, ModelSignal, TemplateRef, OutputEmitterRef, Signal, OnDestroy, WritableSignal, OnChanges, ElementRef, ViewContainerRef, ModuleWithProviders, SimpleChanges, AfterContentInit, QueryList, AfterViewInit, DestroyRef, PipeTransform, InjectionToken } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor, ValidatorFn, FormControl, AbstractControl, UntypedFormGroup } from '@angular/forms';
|
|
4
|
-
import { TextBoxComponent, NumericTextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
4
|
+
import { InputType, TextBoxComponent, NumericTextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
5
5
|
import { PopupSettings, DropDownListComponent, ItemDisabledFn, ComboBoxComponent, MultiSelectComponent } from '@progress/kendo-angular-dropdowns';
|
|
6
6
|
import { DateTimePickerComponent, DateRangePopupComponent, DateInputComponent, SelectionRange, DatePickerComponent } from '@progress/kendo-angular-dateinputs';
|
|
7
7
|
import * as i1 from '@progress/kendo-angular-tooltip';
|
|
@@ -461,6 +461,7 @@ declare class KitTextboxComponent implements ControlValueAccessor {
|
|
|
461
461
|
readonly showStateIcon: InputSignal<boolean>;
|
|
462
462
|
readonly readonly: InputSignal<boolean>;
|
|
463
463
|
readonly customStateIcon: InputSignal<KitSvgIcon | undefined>;
|
|
464
|
+
readonly type: InputSignal<InputType>;
|
|
464
465
|
/**
|
|
465
466
|
* An action which is emitted when input field lost focus
|
|
466
467
|
*/
|
|
@@ -497,7 +498,7 @@ declare class KitTextboxComponent implements ControlValueAccessor {
|
|
|
497
498
|
*/
|
|
498
499
|
onInputChange(value: string): void;
|
|
499
500
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitTextboxComponent, never>;
|
|
500
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitTextboxComponent, "kit-textbox", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "labelTooltip": { "alias": "labelTooltip"; "required": false; "isSignal": true; }; "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; "messageText": { "alias": "messageText"; "required": false; "isSignal": true; }; "messageTemplate": { "alias": "messageTemplate"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "clearButton": { "alias": "clearButton"; "required": false; "isSignal": true; }; "showStateIcon": { "alias": "showStateIcon"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "customStateIcon": { "alias": "customStateIcon"; "required": false; "isSignal": true; }; }, { "defaultValue": "defaultValueChange"; "disabled": "disabledChange"; "blured": "blured"; "focused": "focused"; "changed": "changed"; }, never, never, true, never>;
|
|
501
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitTextboxComponent, "kit-textbox", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "labelTooltip": { "alias": "labelTooltip"; "required": false; "isSignal": true; }; "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; "messageText": { "alias": "messageText"; "required": false; "isSignal": true; }; "messageTemplate": { "alias": "messageTemplate"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "clearButton": { "alias": "clearButton"; "required": false; "isSignal": true; }; "showStateIcon": { "alias": "showStateIcon"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "customStateIcon": { "alias": "customStateIcon"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, { "defaultValue": "defaultValueChange"; "disabled": "disabledChange"; "blured": "blured"; "focused": "focused"; "changed": "changed"; }, never, never, true, never>;
|
|
501
502
|
}
|
|
502
503
|
|
|
503
504
|
declare class KitTextboxActionsComponent implements ControlValueAccessor, OnInit, OnDestroy {
|
|
@@ -3234,7 +3235,6 @@ declare class KitScrollNavigationSectionComponent implements OnChanges {
|
|
|
3234
3235
|
badgeCount?: number;
|
|
3235
3236
|
propertyChanged?: EventEmitter<void>;
|
|
3236
3237
|
sectionTemplate: TemplateRef<HTMLElement> | null;
|
|
3237
|
-
sectionContent: ElementRef | null;
|
|
3238
3238
|
ngOnChanges(): void;
|
|
3239
3239
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitScrollNavigationSectionComponent, never>;
|
|
3240
3240
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitScrollNavigationSectionComponent, "kit-scroll-navigation-section", never, { "title": { "alias": "title"; "required": false; }; "id": { "alias": "id"; "required": false; }; "buttonState": { "alias": "buttonState"; "required": false; }; "buttonIcon": { "alias": "buttonIcon"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "badgeCount": { "alias": "badgeCount"; "required": false; }; }, { "propertyChanged": "propertyChanged"; }, never, ["*"], true, never>;
|
|
@@ -3242,9 +3242,11 @@ declare class KitScrollNavigationSectionComponent implements OnChanges {
|
|
|
3242
3242
|
|
|
3243
3243
|
declare class KitScrollNavigationComponent implements AfterViewInit, OnInit {
|
|
3244
3244
|
private readonly activatedRoute;
|
|
3245
|
+
private readonly destroyRef;
|
|
3245
3246
|
readonly isNavigationBtnDisabled: InputSignal<boolean>;
|
|
3246
3247
|
readonly dropdownDefaultText: InputSignal<string>;
|
|
3247
3248
|
sections: QueryList<KitScrollNavigationSectionComponent> | null;
|
|
3249
|
+
sectionContentRefs: QueryList<ElementRef>;
|
|
3248
3250
|
content: ElementRef | null;
|
|
3249
3251
|
collapsedList: KitCollapsedListComponent<KitCollapsedListItem> | null;
|
|
3250
3252
|
readonly kitButtonType: typeof KitButtonType;
|
|
@@ -3712,6 +3714,21 @@ declare class KitSortableComponent<T> {
|
|
|
3712
3714
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitSortableComponent<any>, "kit-sortable", never, { "items": { "alias": "items"; "required": false; }; "columnCount": { "alias": "columnCount"; "required": false; }; "itemClass": { "alias": "itemClass"; "required": false; }; "activeItemClass": { "alias": "activeItemClass"; "required": false; }; "zone": { "alias": "zone"; "required": false; }; "emptyItemClass": { "alias": "emptyItemClass"; "required": false; }; }, { "dragEnd": "dragEnd"; }, ["itemTemplate"], never, true, never>;
|
|
3713
3715
|
}
|
|
3714
3716
|
|
|
3717
|
+
interface KitCardDetailsState {
|
|
3718
|
+
skip?: number;
|
|
3719
|
+
take?: number;
|
|
3720
|
+
activeId?: string;
|
|
3721
|
+
search?: string;
|
|
3722
|
+
filters?: KitCompositeFilterDescriptor;
|
|
3723
|
+
}
|
|
3724
|
+
interface KitCardDataModel {
|
|
3725
|
+
id: string | number;
|
|
3726
|
+
}
|
|
3727
|
+
interface KitCardDetailsSkeletonConfig {
|
|
3728
|
+
itemHeight: string | number;
|
|
3729
|
+
itemsCount: number;
|
|
3730
|
+
}
|
|
3731
|
+
|
|
3715
3732
|
type KitGridColumnType = 'date' | 'number' | 'boolean' | 'string' | 'dateTime' | 'dateLocal' | 'dateTimeLocal' | 'dateZone' | 'dateTimeZone' | 'time';
|
|
3716
3733
|
interface KitGridColumnConfig {
|
|
3717
3734
|
field: string;
|
|
@@ -3737,6 +3754,198 @@ interface KitGridDataState {
|
|
|
3737
3754
|
archive?: boolean;
|
|
3738
3755
|
}
|
|
3739
3756
|
|
|
3757
|
+
type KitGridColumns = Record<string, KitGridColumn>;
|
|
3758
|
+
interface KitGridColumn {
|
|
3759
|
+
name: string;
|
|
3760
|
+
type: 'number' | 'string' | 'date' | 'boolean';
|
|
3761
|
+
}
|
|
3762
|
+
interface KitGridDataResult<T> {
|
|
3763
|
+
results: KitDataResult<T>;
|
|
3764
|
+
loading: boolean;
|
|
3765
|
+
}
|
|
3766
|
+
interface KitFetchGridDataOptions<E> {
|
|
3767
|
+
store: Store;
|
|
3768
|
+
destroyRef: DestroyRef;
|
|
3769
|
+
isLoading: WritableSignal<boolean>;
|
|
3770
|
+
fetchAction(state: KitDataState): {};
|
|
3771
|
+
fetchFromIndexAction(state: KitDataState & {
|
|
3772
|
+
searchTerm?: string;
|
|
3773
|
+
}): {};
|
|
3774
|
+
hasArchiveToggle?: boolean;
|
|
3775
|
+
error?(error: E): void;
|
|
3776
|
+
}
|
|
3777
|
+
interface KitFetchExportGridData<T> {
|
|
3778
|
+
fetchAction(skip: number, take: number, sort?: string, filter?: string): Observable<T>;
|
|
3779
|
+
fetchIndexAction(skip: number, take: number, sort?: string, filter?: string, searchTerm?: string): Observable<T>;
|
|
3780
|
+
sort: KitSortDescriptor[];
|
|
3781
|
+
filter: KitFilterItem[];
|
|
3782
|
+
total: number;
|
|
3783
|
+
search?: string;
|
|
3784
|
+
columns?: KitGridColumnConfig[];
|
|
3785
|
+
hasArchiveToggle?: boolean;
|
|
3786
|
+
archiveModeEnabled?: boolean;
|
|
3787
|
+
}
|
|
3788
|
+
|
|
3789
|
+
declare class KitCardDetailsComponent<T extends KitCardDataModel> implements OnInit {
|
|
3790
|
+
private readonly router;
|
|
3791
|
+
private readonly activatedRoute;
|
|
3792
|
+
private readonly host;
|
|
3793
|
+
private readonly destroyRef;
|
|
3794
|
+
readonly cardData$: InputSignal<Observable<KitGridDataResult<T>>>;
|
|
3795
|
+
readonly pageSize: InputSignal<number>;
|
|
3796
|
+
readonly title: InputSignal<string>;
|
|
3797
|
+
readonly kitCardSkeletonConfig: InputSignal<KitCardDetailsSkeletonConfig>;
|
|
3798
|
+
readonly dataStateChanged: OutputEmitterRef<KitCardDetailsState>;
|
|
3799
|
+
readonly cardClicked: OutputEmitterRef<{
|
|
3800
|
+
id: string;
|
|
3801
|
+
} & T>;
|
|
3802
|
+
readonly kitTextboxComponent: Signal<KitTextboxComponent>;
|
|
3803
|
+
readonly cardElement: Signal<HTMLDivElement | undefined>;
|
|
3804
|
+
readonly headerActions: Signal<HTMLDivElement | undefined>;
|
|
3805
|
+
readonly details: Signal<HTMLDivElement | undefined>;
|
|
3806
|
+
readonly kitSvgIcon: typeof KitSvgIcon;
|
|
3807
|
+
readonly kitButtonType: typeof KitButtonType;
|
|
3808
|
+
readonly kitButtonKind: typeof KitButtonKind;
|
|
3809
|
+
readonly kitButtonIconPosition: typeof KitButtonIconPosition;
|
|
3810
|
+
readonly kitTextboxSize: typeof KitTextboxSize;
|
|
3811
|
+
readonly isLoading: WritableSignal<boolean>;
|
|
3812
|
+
readonly cardData: WritableSignal<T[]>;
|
|
3813
|
+
readonly total: WritableSignal<number>;
|
|
3814
|
+
readonly dataState: WritableSignal<KitCardDetailsState>;
|
|
3815
|
+
readonly newCreatedCards: WritableSignal<T[]>;
|
|
3816
|
+
readonly skipNewCreatedCardFilter: Signal<KitCompositeFilterDescriptor>;
|
|
3817
|
+
private shouldAppendFetchedData;
|
|
3818
|
+
showDetails: boolean;
|
|
3819
|
+
ngOnInit(): void;
|
|
3820
|
+
loadMoreData(): void;
|
|
3821
|
+
onCardClick(card: T): void;
|
|
3822
|
+
appendCard(card: T, navigateToCard?: boolean): void;
|
|
3823
|
+
deleteCard(cardId: string | number): void;
|
|
3824
|
+
updateSpecificCardData(cardData: T): void;
|
|
3825
|
+
scrollToCardById(id: string): void;
|
|
3826
|
+
private initSearchSubscription;
|
|
3827
|
+
private initStateFromUrl;
|
|
3828
|
+
private initCardDataSubscription;
|
|
3829
|
+
private updateData;
|
|
3830
|
+
private normalizeCardId;
|
|
3831
|
+
private removeFromNewCreatedCards;
|
|
3832
|
+
private getStateFromUrl;
|
|
3833
|
+
private setQueryParamsToUrl;
|
|
3834
|
+
private navigateToCard;
|
|
3835
|
+
private selectNewLoadedCard;
|
|
3836
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitCardDetailsComponent<any>, never>;
|
|
3837
|
+
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; }; "kitCardSkeletonConfig": { "alias": "kitCardSkeletonConfig"; "required": false; "isSignal": true; }; }, { "dataStateChanged": "dataStateChanged"; "cardClicked": "cardClicked"; }, ["cardElement", "headerActions", "details"], never, true, never>;
|
|
3838
|
+
}
|
|
3839
|
+
|
|
3840
|
+
interface KitUserSettingsDetails {
|
|
3841
|
+
id: number;
|
|
3842
|
+
email: string;
|
|
3843
|
+
firstName: string;
|
|
3844
|
+
lastName: string;
|
|
3845
|
+
mfaEnabled: boolean;
|
|
3846
|
+
userName: string;
|
|
3847
|
+
password?: string;
|
|
3848
|
+
forcePasswordResetOnNextLogin?: boolean;
|
|
3849
|
+
}
|
|
3850
|
+
|
|
3851
|
+
declare class KitUsersSettingsComponent {
|
|
3852
|
+
private readonly destroyRef;
|
|
3853
|
+
private readonly store;
|
|
3854
|
+
private readonly kitDialogService;
|
|
3855
|
+
private readonly translateService;
|
|
3856
|
+
private readonly viewContainerRef;
|
|
3857
|
+
readonly cardDetailsComponent: Signal<KitCardDetailsComponent<KitCardDataModel>>;
|
|
3858
|
+
readonly deleteDialogActionsTemplate: Signal<TemplateRef<unknown>>;
|
|
3859
|
+
readonly title: InputSignal<string>;
|
|
3860
|
+
private readonly currentUserId;
|
|
3861
|
+
readonly isCreatingNewUser: WritableSignal<boolean>;
|
|
3862
|
+
readonly pendingDeleteUser: WritableSignal<KitUserSettingsDetails | null>;
|
|
3863
|
+
readonly cardData$: Observable<KitGridDataResult<KitUserSettingsDetails>>;
|
|
3864
|
+
readonly pageSize: number;
|
|
3865
|
+
readonly kitSvgIcon: typeof KitSvgIcon;
|
|
3866
|
+
readonly kitButtonIconPosition: typeof KitButtonIconPosition;
|
|
3867
|
+
readonly kitButtonKind: typeof KitButtonKind;
|
|
3868
|
+
readonly kitButtonType: typeof KitButtonType;
|
|
3869
|
+
readonly kitSvgIconType: typeof KitSvgIconType;
|
|
3870
|
+
onDataStateChanged({ skip, take, search, filters }: KitCardDetailsState): void;
|
|
3871
|
+
onCardSelected(card: KitUserSettingsDetails): void;
|
|
3872
|
+
isDeleteDisabled(userId: number): boolean;
|
|
3873
|
+
getUserDisplayName(user: KitUserSettingsDetails): string;
|
|
3874
|
+
onDeleteUser(user: KitUserSettingsDetails): void;
|
|
3875
|
+
closeDeleteDialog(): void;
|
|
3876
|
+
confirmDeleteUser(): void;
|
|
3877
|
+
private buildFilter;
|
|
3878
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitUsersSettingsComponent, never>;
|
|
3879
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitUsersSettingsComponent, "kit-users-settings", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3880
|
+
}
|
|
3881
|
+
|
|
3882
|
+
interface KitApiResponseState<T> {
|
|
3883
|
+
loading: boolean;
|
|
3884
|
+
data: T;
|
|
3885
|
+
total?: number;
|
|
3886
|
+
}
|
|
3887
|
+
|
|
3888
|
+
interface KitUsersSettingsStateModel {
|
|
3889
|
+
users: KitApiResponseState<KitUserSettingsDetails[]>;
|
|
3890
|
+
userDetails: KitApiResponseState<KitUserSettingsDetails | null>;
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3893
|
+
declare abstract class KitAbstractPayloadAction<T> {
|
|
3894
|
+
readonly payload: T;
|
|
3895
|
+
constructor(payload: T);
|
|
3896
|
+
}
|
|
3897
|
+
|
|
3898
|
+
declare class KitFetchUsersSettings extends KitAbstractPayloadAction<KitDataState> {
|
|
3899
|
+
static readonly type: string;
|
|
3900
|
+
}
|
|
3901
|
+
declare class KitFetchUsersSettingsDetails extends KitAbstractPayloadAction<number> {
|
|
3902
|
+
static readonly type: string;
|
|
3903
|
+
}
|
|
3904
|
+
declare class KitUpdateUsersSettingsDetails extends KitAbstractPayloadAction<KitUserSettingsDetails> {
|
|
3905
|
+
static readonly type: string;
|
|
3906
|
+
}
|
|
3907
|
+
declare class KitCreateUsersSettingsUser extends KitAbstractPayloadAction<Omit<KitUserSettingsDetails, 'id'>> {
|
|
3908
|
+
static readonly type: string;
|
|
3909
|
+
}
|
|
3910
|
+
declare class KitDeleteUsersSettingsUser extends KitAbstractPayloadAction<number> {
|
|
3911
|
+
static readonly type: string;
|
|
3912
|
+
}
|
|
3913
|
+
|
|
3914
|
+
declare const KIT_USERS_SETTINGS_STATE_TOKEN: StateToken<KitUsersSettingsStateModel>;
|
|
3915
|
+
declare class KitUsersSettingsState {
|
|
3916
|
+
private readonly kitUsersSettingsService;
|
|
3917
|
+
fetchUsers(ctx: StateContext<KitUsersSettingsStateModel>, action: KitFetchUsersSettings): Observable<KitDataResult<KitUserSettingsDetails>>;
|
|
3918
|
+
fetchUserDetails(ctx: StateContext<KitUsersSettingsStateModel>, action: KitFetchUsersSettingsDetails): Observable<KitUserSettingsDetails>;
|
|
3919
|
+
updateUserDetails(ctx: StateContext<KitUsersSettingsStateModel>, action: KitUpdateUsersSettingsDetails): Observable<KitUserSettingsDetails>;
|
|
3920
|
+
createUser(ctx: StateContext<KitUsersSettingsStateModel>, action: KitCreateUsersSettingsUser): Observable<KitUserSettingsDetails>;
|
|
3921
|
+
deleteUser(ctx: StateContext<KitUsersSettingsStateModel>, action: KitDeleteUsersSettingsUser): Observable<null>;
|
|
3922
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitUsersSettingsState, never>;
|
|
3923
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<KitUsersSettingsState>;
|
|
3924
|
+
}
|
|
3925
|
+
|
|
3926
|
+
declare class KitUsersSettingsService {
|
|
3927
|
+
private readonly httpClient;
|
|
3928
|
+
private readonly baseUrl;
|
|
3929
|
+
fetchUsers(state: KitDataState): Observable<KitDataResult<KitUserSettingsDetails>>;
|
|
3930
|
+
fetchUserDetails(id: number): Observable<KitUserSettingsDetails>;
|
|
3931
|
+
updateUserDetails(payload: KitUserSettingsDetails): Observable<KitUserSettingsDetails>;
|
|
3932
|
+
createUser(payload: Omit<KitUserSettingsDetails, 'id'>): Observable<KitUserSettingsDetails>;
|
|
3933
|
+
deleteUser(id: number): Observable<null>;
|
|
3934
|
+
private getRequestParams;
|
|
3935
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitUsersSettingsService, never>;
|
|
3936
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<KitUsersSettingsService>;
|
|
3937
|
+
}
|
|
3938
|
+
|
|
3939
|
+
declare enum KitUsersSettingsDetailsField {
|
|
3940
|
+
USER_NAME = "userName",
|
|
3941
|
+
FIRST_NAME = "firstName",
|
|
3942
|
+
LAST_NAME = "lastName",
|
|
3943
|
+
EMAIL = "email",
|
|
3944
|
+
PASSWORD = "password",
|
|
3945
|
+
MFA = "mfaEnabled",
|
|
3946
|
+
FORCE_PASSWORD = "forcePassword"
|
|
3947
|
+
}
|
|
3948
|
+
|
|
3740
3949
|
declare const kitDataStateToODataString: (state: KitDataState, utcDates?: boolean, columns?: KitGridColumnConfig[]) => string;
|
|
3741
3950
|
declare const isKitFilterDescriptor: (filter: KitCompositeFilterDescriptor | KitFilterDescriptor) => filter is KitFilterDescriptor;
|
|
3742
3951
|
declare const kitFilterBy: <T>(data: T[], filter: KitCompositeFilterDescriptor | KitFilterDescriptor) => T[];
|
|
@@ -3796,11 +4005,6 @@ declare class KitTranslateService {
|
|
|
3796
4005
|
|
|
3797
4006
|
declare const kitTranslations: Record<string, TranslationObject>;
|
|
3798
4007
|
|
|
3799
|
-
declare abstract class KitAbstractPayloadAction<T> {
|
|
3800
|
-
readonly payload: T;
|
|
3801
|
-
constructor(payload: T);
|
|
3802
|
-
}
|
|
3803
|
-
|
|
3804
4008
|
declare class SetGridSkip extends KitAbstractPayloadAction<number> {
|
|
3805
4009
|
static readonly type: string;
|
|
3806
4010
|
}
|
|
@@ -3849,38 +4053,6 @@ declare class KitGridState {
|
|
|
3849
4053
|
static ɵprov: i0.ɵɵInjectableDeclaration<KitGridState>;
|
|
3850
4054
|
}
|
|
3851
4055
|
|
|
3852
|
-
type KitGridColumns = Record<string, KitGridColumn>;
|
|
3853
|
-
interface KitGridColumn {
|
|
3854
|
-
name: string;
|
|
3855
|
-
type: 'number' | 'string' | 'date' | 'boolean';
|
|
3856
|
-
}
|
|
3857
|
-
interface KitGridDataResult<T> {
|
|
3858
|
-
results: KitDataResult<T>;
|
|
3859
|
-
loading: boolean;
|
|
3860
|
-
}
|
|
3861
|
-
interface KitFetchGridDataOptions<E> {
|
|
3862
|
-
store: Store;
|
|
3863
|
-
destroyRef: DestroyRef;
|
|
3864
|
-
isLoading: WritableSignal<boolean>;
|
|
3865
|
-
fetchAction(state: KitDataState): {};
|
|
3866
|
-
fetchFromIndexAction(state: KitDataState & {
|
|
3867
|
-
searchTerm?: string;
|
|
3868
|
-
}): {};
|
|
3869
|
-
hasArchiveToggle?: boolean;
|
|
3870
|
-
error?(error: E): void;
|
|
3871
|
-
}
|
|
3872
|
-
interface KitFetchExportGridData<T> {
|
|
3873
|
-
fetchAction(skip: number, take: number, sort?: string, filter?: string): Observable<T>;
|
|
3874
|
-
fetchIndexAction(skip: number, take: number, sort?: string, filter?: string, searchTerm?: string): Observable<T>;
|
|
3875
|
-
sort: KitSortDescriptor[];
|
|
3876
|
-
filter: KitFilterItem[];
|
|
3877
|
-
total: number;
|
|
3878
|
-
search?: string;
|
|
3879
|
-
columns?: KitGridColumnConfig[];
|
|
3880
|
-
hasArchiveToggle?: boolean;
|
|
3881
|
-
archiveModeEnabled?: boolean;
|
|
3882
|
-
}
|
|
3883
|
-
|
|
3884
4056
|
declare const kitBuildGridColumn: (field: string, title: string, type: KitGridColumnType, sortable?: boolean, hidden?: boolean, width?: number, filterType?: KitFilterType, excelFormat?: string, apiField?: string, hiddenInGrid?: boolean, customFieldHandler?: (value: KitCompositeFilterDescriptor | KitFilterDescriptor) => string, customRangeHandler?: () => [Date, Date]) => KitGridColumnConfig;
|
|
3885
4057
|
declare const kitBuildGridDataResults: <T>(data: T[], loading: boolean, total?: number) => KitGridDataResult<T>;
|
|
3886
4058
|
declare const kitBuildSortString: (sort?: KitSortDescriptor[], columns?: KitGridColumnConfig[]) => string | undefined;
|
|
@@ -3931,12 +4103,6 @@ declare class KitGridUrlStateService {
|
|
|
3931
4103
|
setGridStateToUrl(state: KitGridDataState, defaultColumns?: KitGridViewColumn[]): void;
|
|
3932
4104
|
}
|
|
3933
4105
|
|
|
3934
|
-
interface KitApiResponseState<T> {
|
|
3935
|
-
loading: boolean;
|
|
3936
|
-
data: T;
|
|
3937
|
-
total?: number;
|
|
3938
|
-
}
|
|
3939
|
-
|
|
3940
4106
|
interface KitGridViewListItem extends KitCollapsedListItem, KitGridView {
|
|
3941
4107
|
}
|
|
3942
4108
|
|
|
@@ -4761,72 +4927,6 @@ declare class KitUserIdentitiesInterceptor<T> implements HttpInterceptor {
|
|
|
4761
4927
|
intercept(req: HttpRequest<T>, next: HttpHandler): Observable<HttpEvent<T>>;
|
|
4762
4928
|
}
|
|
4763
4929
|
|
|
4764
|
-
interface KitCardDetailsState {
|
|
4765
|
-
skip?: number;
|
|
4766
|
-
take?: number;
|
|
4767
|
-
activeId?: string;
|
|
4768
|
-
search?: string;
|
|
4769
|
-
filters?: KitCompositeFilterDescriptor;
|
|
4770
|
-
}
|
|
4771
|
-
interface KitCardDataModel {
|
|
4772
|
-
id: string | number;
|
|
4773
|
-
}
|
|
4774
|
-
interface KitCardDetailsSkeletonConfig {
|
|
4775
|
-
itemHeight: string | number;
|
|
4776
|
-
itemsCount: number;
|
|
4777
|
-
}
|
|
4778
|
-
|
|
4779
|
-
declare class KitCardDetailsComponent<T extends KitCardDataModel> implements OnInit {
|
|
4780
|
-
private readonly router;
|
|
4781
|
-
private readonly activatedRoute;
|
|
4782
|
-
private readonly host;
|
|
4783
|
-
private readonly destroyRef;
|
|
4784
|
-
readonly cardData$: InputSignal<Observable<KitGridDataResult<T>>>;
|
|
4785
|
-
readonly pageSize: InputSignal<number>;
|
|
4786
|
-
readonly title: InputSignal<string>;
|
|
4787
|
-
readonly kitCardSkeletonConfig: InputSignal<KitCardDetailsSkeletonConfig>;
|
|
4788
|
-
readonly dataStateChanged: OutputEmitterRef<KitCardDetailsState>;
|
|
4789
|
-
readonly cardClicked: OutputEmitterRef<{
|
|
4790
|
-
id: string;
|
|
4791
|
-
} & T>;
|
|
4792
|
-
readonly kitTextboxComponent: Signal<KitTextboxComponent>;
|
|
4793
|
-
readonly cardElement: Signal<HTMLDivElement | undefined>;
|
|
4794
|
-
readonly headerActions: Signal<HTMLDivElement | undefined>;
|
|
4795
|
-
readonly details: Signal<HTMLDivElement | undefined>;
|
|
4796
|
-
readonly kitSvgIcon: typeof KitSvgIcon;
|
|
4797
|
-
readonly kitButtonType: typeof KitButtonType;
|
|
4798
|
-
readonly kitButtonKind: typeof KitButtonKind;
|
|
4799
|
-
readonly kitButtonIconPosition: typeof KitButtonIconPosition;
|
|
4800
|
-
readonly kitTextboxSize: typeof KitTextboxSize;
|
|
4801
|
-
readonly isLoading: WritableSignal<boolean>;
|
|
4802
|
-
readonly cardData: WritableSignal<T[]>;
|
|
4803
|
-
readonly total: WritableSignal<number>;
|
|
4804
|
-
readonly dataState: WritableSignal<KitCardDetailsState>;
|
|
4805
|
-
readonly newCreatedCards: WritableSignal<T[]>;
|
|
4806
|
-
readonly skipNewCreatedCardFilter: Signal<KitCompositeFilterDescriptor>;
|
|
4807
|
-
private shouldAppendFetchedData;
|
|
4808
|
-
showDetails: boolean;
|
|
4809
|
-
ngOnInit(): void;
|
|
4810
|
-
loadMoreData(): void;
|
|
4811
|
-
onCardClick(card: T): void;
|
|
4812
|
-
appendCard(card: T, navigateToCard?: boolean): void;
|
|
4813
|
-
deleteCard(cardId: string | number): void;
|
|
4814
|
-
updateSpecificCardData(cardData: T): void;
|
|
4815
|
-
scrollToCardById(id: string): void;
|
|
4816
|
-
private initSearchSubscription;
|
|
4817
|
-
private initStateFromUrl;
|
|
4818
|
-
private initCardDataSubscription;
|
|
4819
|
-
private updateData;
|
|
4820
|
-
private normalizeCardId;
|
|
4821
|
-
private removeFromNewCreatedCards;
|
|
4822
|
-
private getStateFromUrl;
|
|
4823
|
-
private setQueryParamsToUrl;
|
|
4824
|
-
private navigateToCard;
|
|
4825
|
-
private selectNewLoadedCard;
|
|
4826
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KitCardDetailsComponent<any>, never>;
|
|
4827
|
-
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; }; "kitCardSkeletonConfig": { "alias": "kitCardSkeletonConfig"; "required": false; "isSignal": true; }; }, { "dataStateChanged": "dataStateChanged"; "cardClicked": "cardClicked"; }, ["cardElement", "headerActions", "details"], never, true, never>;
|
|
4828
|
-
}
|
|
4829
|
-
|
|
4830
4930
|
declare class KitListComponent<T> {
|
|
4831
4931
|
readonly items: InputSignal<T[]>;
|
|
4832
4932
|
readonly itemClicked: OutputEmitterRef<T>;
|
|
@@ -5096,5 +5196,5 @@ declare class KitBackButtonComponent {
|
|
|
5096
5196
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitBackButtonComponent, "kit-back-button", never, { "backUrl": { "alias": "backUrl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5097
5197
|
}
|
|
5098
5198
|
|
|
5099
|
-
export { AbstractKitCtaPanelConfirmationComponent, AddGridFilter, FetchApiTokens, FetchUser, FetchUserIdentities, FetchUserPermissions, FetchUserSettings, HighlightPipe, KIT_API_TOKENS_STATE_TOKEN, KIT_BASE_PATH, KIT_DATETIME_FORMAT_LONG, KIT_DATE_FORMAT, KIT_DATE_FORMAT_SHORT, KIT_GRID_CELL_DATE_FORMAT_CONFIG, KIT_GRID_COLUMN_WIDTH, KIT_GRID_PAGE_SIZE, KIT_GRID_STATE_TOKEN, KIT_TIME_FORMAT_SHORT, KIT_USER_APPLICATIONS_PATH, KIT_USER_IDENTITIES_STATE_TOKEN, KIT_USER_PATH, KIT_USER_PERMISSIONS_PATH, KIT_USER_PERMISSIONS_STATE_TOKEN, KIT_USER_STATE_TOKEN, KitAbstractIdPayloadAction, KitAbstractPayloadAction, KitAccountService, KitApiTokenMaintenanceListComponent, KitApiTokenMaintenanceListState, KitApiTokensPermissionCategories, KitAutocompleteComponent, KitAutocompleteDirective, KitAvatarComponent, KitAvatarSize, KitBackButtonComponent, KitBadgeDirective, KitBadgeTheme, KitBreadcrumbsComponent, KitBreadcrumbsService, KitButtonComponent, KitButtonIconPosition, KitButtonKind, KitButtonState, KitButtonType, KitCardComponent, KitCardDetailsComponent, KitCardTheme, KitCheckboxComponent, KitCheckboxState, KitClipboardService, KitCollapsedListComponent, KitCollapsedListDropdownAlign, KitCopyTextComponent, KitCtaPanelAbstractConfirmationComponent, KitCtaPanelActionComponent, KitCtaPanelConfirmationComponent, KitCtaPanelItemComponent, KitCtaPanelItemType, KitDataFieldComponent, KitDataFieldState, KitDateRangeSingleInput, KitDatepickerComponent, KitDatepickerSize, KitDaterangeComponent, KitDaterangeType, KitDatetimepickerComponent, KitDeferredFailedRequestService, KitDialogActionsComponent, KitDialogComponent, KitDialogService, KitDialogTitlebarComponent, KitDialogType, KitDrawerComponent, KitDrawerContentTemplateDirective, KitDrawerFooterTemplateDirective, KitDrawerMode, KitDropdownComponent, KitDropdownItemTemplateDirective, KitDropdownSize, KitEmptySectionComponent, KitEntityGridComponent, KitEntitySectionComponent, KitEntitySectionContainerComponent, KitEntitySectionEditableActionsTemplateDirective, KitEntitySectionEditableComponent, KitEntitySectionEditableEditTemplateDirective, KitEntitySectionEditableMode, KitEntitySectionEditableViewTemplateDirective, KitEntityTitleComponent, KitExcelExportService, KitFileCardComponent, KitFileCardMessagesComponent, KitFileUploadComponent, KitFilterCheckboxComponent, KitFilterDateRange, KitFilterLogic, KitFilterOperator, KitFilterType, KitForbiddenComponent, KitFormErrors, KitFormFieldComponent, KitFormLabelComponent, KitFormMessageComponent, KitGlobalSearchComponent, KitGridArchiveToggle, KitGridCellComponent, KitGridCellService, KitGridCellTemplateDirective, KitGridColumnComponent, KitGridColumnManagerComponent, KitGridComponent, KitGridDetailTemplateDirective, KitGridDetailsButtonComponent, KitGridExportComponent, KitGridFiltersComponent, KitGridLiveUpdatesControlComponent, KitGridSearchComponent, KitGridSortSettingsMode, KitGridState, KitGridUrlStateService, KitGridViewType, KitGridViewsComponent, KitGridViewsState, KitListComponent, KitLoaderComponent, KitLocationStepperComponent, KitLocationStepperIconTheme, KitLocationStepperTheme, KitMobileHeaderComponent, KitMobileMenuComponent, KitMobileMenuState, KitMultiselectComponent, KitMultiselectGroupTagTemplateDirective, KitMultiselectItemsDirection, KitMultiselectSize, KitNavigationMenuComponent, KitNavigationMenuService, KitNavigationMenuSubmenuComponent, KitNavigationTabsComponent, KitNavigationTabsType, KitNotFoundComponent, KitNoteComponent, KitNotificationComponent, KitNotificationService, KitNotificationType, KitNumericTextboxComponent, KitNumericTextboxSize, KitNumericTextboxState, KitOptionToggleComponent, KitPageLayoutComponent, KitPermissionDirective, KitPillComponent, KitPillTheme, KitPillType, KitPopoverAnchorDirective, KitPopoverComponent, KitPopoverPosition, KitPopoverShowOption, KitPopupAlignHorizontal, KitPopupAlignVertical, KitPopupComponent, KitPopupPositionMode, KitProfileMenuComponent, KitQueryParamsName, KitQueryParamsService, KitRadioButtonComponent, KitRadioButtonType, KitRoutePathComponent, KitSchedulerAgendaTimeTemplateDirective, KitSchedulerComponent, KitSchedulerCustomViewTemplateDirective, KitSchedulerMonthEventTemplateDirective, KitSchedulerMonthHeaderCellTemplateDirective, KitSchedulerToolbarTemplateDirective, KitSchedulerWeekEventTemplateDirective, KitScrollNavigationComponent, KitScrollNavigationSectionComponent, KitSearchBarComponent, KitSidebarComponent, KitSkeletonAnimation, KitSkeletonComponent, KitSkeletonGridComponent, KitSkeletonSectionComponent, KitSkeletonShape, KitSortDirection, KitSortableComponent, KitSplitContainerComponent, KitStatusLabelColor, KitStatusLabelComponent, KitStatusLabelSize, KitSvgIcon, KitSvgIconComponent, KitSvgIconType, KitSvgSpriteComponent, KitSwitchComponent, KitSwitchMode, KitSwitchState, KitTabComponent, KitTabContentDirective, KitTabsComponent, KitTabsSize, KitTabsType, KitTextLabelComponent, KitTextLabelState, KitTextareaAutoresizeDirective, KitTextareaComponent, KitTextareaState, KitTextboxActionsComponent, KitTextboxComponent, KitTextboxSize, KitTextboxState, KitThemeService, KitThemes, KitTileLayoutComponent, KitTileLayoutItemComponent, KitTimelineCardComponent, KitTimelineComponent, KitTimelineTheme, KitTimelineType, KitTimepickerComponent, KitTitleTemplateDirective, KitToastrModule, KitToastrPosition, KitToastrService, KitToastrType, KitToggleComponent, KitToggleSize, KitTooltipDirective, KitTooltipPosition, KitTopBarComponent, KitTrackingCardComponent, KitTrackingTimelineComponent, KitTranslateLoader, KitTranslateService, KitTruncateTextComponent, KitUnitsTextboxComponent, KitUnitsTextboxDropdownPosition, KitUnitsTextboxType, KitUserApplicationsState, KitUserIdentitiesInterceptor, KitUserIdentitiesSelector, KitUserIdentitiesState, KitUserPermissionsState, KitUserSettingsComponent, KitUserSettingsKeys, KitUserSettingsState, KitUserState, KitUserType, RemoveGridFilter, SetGridColumns, SetGridFilters, SetGridSearch, SetGridSkip, SetGridSort, SetGridTake, SetUserIdentity, UpdateGridFilter, buildRandomUUID, changeFilterField, createDataFetcherFactory, findMatches, isKitFilterDescriptor, kitApiResponseDefaultEntities, kitApiTokenMaintenanceConfig, kitApiTokenMaintenanceRoutes, kitBuildFilterBooleanOptions, kitBuildFilterListOptions, kitBuildFilters, kitBuildGridColumn, kitBuildGridDataResults, kitBuildHttpParams, kitBuildOdataFilter, kitBuildSortString, kitDataStateToODataString, kitEncodeViewNameToUrl, kitFetchExportGridData, kitFetchGridData, kitFilterBy, kitFormatStringForSearch, kitGetPermissionTypesByCategory, kitHasPermission, kitNormalizeDateToUtc, kitShouldResetGridState, kitTranslations, kitUserPermissionsGuard, kitWhitespaceValidator, mapGlobalSearchResult, trimTrailingSlash };
|
|
5100
|
-
export type { GlobalSearchFilter, GlobalSearchLineItem, GlobalSearchPrompt, GlobalSearchResult, GlobalSearchRouteConfig, GlobalSearchSelectedFilter, KitApiResponseState, KitApiTokenMaintenanceConfig, KitAutocompleteItem, KitBreadcrumbsItem, KitCard, KitCardDetailsSkeletonConfig, KitCardDetailsState, KitCardItem, KitCardLink, KitCollapsedListItem, KitCompositeFilterDescriptor, KitCtaPanelConfirmation, KitCtaPanelConfirmationValue, KitCtaPanelCopyItem, KitCtaPanelItem, KitCurrentUser, KitDataResult, KitDataState, KitDaterangeValue, KitDropdownItem, KitFetchExportGridData, KitFetchGridDataOptions, KitFileUploadFile, KitFileUploadFileRestrictions, KitFileUploadFileRestrictionsMessages, KitFilterDescriptor, KitFilterItem, KitFilterListConfig, KitFilterListOption, KitFilterValue, KitFormLabelPopoverConfig, KitGridCellClickEvent, KitGridCellTranslationMap, KitGridColumn, KitGridColumnConfig, KitGridColumns, KitGridDataResult, KitGridDataState, KitGridDataStateChangeEvent, KitGridDetailCollapseEvent, KitGridDetailExpandEvent, KitGridPageChangeEvent, KitGridRowClassArgs, KitGridSortSettings, KitGridView, KitGridViewColumn, KitKendoDrawPdf, KitLocationStepperItem, KitLocationStepperItemDate, KitMainMenuItem, KitMobileMenuItem, KitMultiselectItem, KitNavigationMenuAppItem, KitNavigationMenuItem, KitNavigationTabsItem, KitNavigationTabsItemLink, KitOptionToggleOption, KitPDFOptions, KitPermission, KitPopupAlign, KitProfileMenuItem, KitQueryParams, KitRadioButton, KitResetState, KitScheduleDateChangeEvent, KitScheduleEventClickEvent, KitScheduleNavigateEvent, KitScheduleSlotClickEvent, KitSchedulerAgendaViewSettings, KitSchedulerEvent, KitSchedulerViewModes, KitSchedulerViewModesSettings, KitSortDescriptor, KitSwitchItem, KitSwitchItemSelection, KitTabsSelectEvent, KitTileLayoutColumnsConfig, KitTimelineItem, KitTimelineItemDate, KitToastrConfig, KitTrackingCardTabs, KitTrackingTimelineItem, KitUser, KitUserCapabilities, KitUserIdentities, KitUserIdentity, KitUserMenuItem, KitUserPermissions, KitUserSettings };
|
|
5199
|
+
export { AbstractKitCtaPanelConfirmationComponent, AddGridFilter, FetchApiTokens, FetchUser, FetchUserIdentities, FetchUserPermissions, FetchUserSettings, HighlightPipe, KIT_API_TOKENS_STATE_TOKEN, KIT_BASE_PATH, KIT_DATETIME_FORMAT_LONG, KIT_DATE_FORMAT, KIT_DATE_FORMAT_SHORT, KIT_GRID_CELL_DATE_FORMAT_CONFIG, KIT_GRID_COLUMN_WIDTH, KIT_GRID_PAGE_SIZE, KIT_GRID_STATE_TOKEN, KIT_TIME_FORMAT_SHORT, KIT_USERS_SETTINGS_STATE_TOKEN, KIT_USER_APPLICATIONS_PATH, KIT_USER_IDENTITIES_STATE_TOKEN, KIT_USER_PATH, KIT_USER_PERMISSIONS_PATH, KIT_USER_PERMISSIONS_STATE_TOKEN, KIT_USER_STATE_TOKEN, KitAbstractIdPayloadAction, KitAbstractPayloadAction, KitAccountService, KitApiTokenMaintenanceListComponent, KitApiTokenMaintenanceListState, KitApiTokensPermissionCategories, KitAutocompleteComponent, KitAutocompleteDirective, KitAvatarComponent, KitAvatarSize, KitBackButtonComponent, KitBadgeDirective, KitBadgeTheme, KitBreadcrumbsComponent, KitBreadcrumbsService, KitButtonComponent, KitButtonIconPosition, KitButtonKind, KitButtonState, KitButtonType, KitCardComponent, KitCardDetailsComponent, KitCardTheme, KitCheckboxComponent, KitCheckboxState, KitClipboardService, KitCollapsedListComponent, KitCollapsedListDropdownAlign, KitCopyTextComponent, KitCtaPanelAbstractConfirmationComponent, KitCtaPanelActionComponent, KitCtaPanelConfirmationComponent, KitCtaPanelItemComponent, KitCtaPanelItemType, KitDataFieldComponent, KitDataFieldState, KitDateRangeSingleInput, KitDatepickerComponent, KitDatepickerSize, KitDaterangeComponent, KitDaterangeType, KitDatetimepickerComponent, KitDeferredFailedRequestService, KitDialogActionsComponent, KitDialogComponent, KitDialogService, KitDialogTitlebarComponent, KitDialogType, KitDrawerComponent, KitDrawerContentTemplateDirective, KitDrawerFooterTemplateDirective, KitDrawerMode, KitDropdownComponent, KitDropdownItemTemplateDirective, KitDropdownSize, KitEmptySectionComponent, KitEntityGridComponent, KitEntitySectionComponent, KitEntitySectionContainerComponent, KitEntitySectionEditableActionsTemplateDirective, KitEntitySectionEditableComponent, KitEntitySectionEditableEditTemplateDirective, KitEntitySectionEditableMode, KitEntitySectionEditableViewTemplateDirective, KitEntityTitleComponent, KitExcelExportService, KitFileCardComponent, KitFileCardMessagesComponent, KitFileUploadComponent, KitFilterCheckboxComponent, KitFilterDateRange, KitFilterLogic, KitFilterOperator, KitFilterType, KitForbiddenComponent, KitFormErrors, KitFormFieldComponent, KitFormLabelComponent, KitFormMessageComponent, KitGlobalSearchComponent, KitGridArchiveToggle, KitGridCellComponent, KitGridCellService, KitGridCellTemplateDirective, KitGridColumnComponent, KitGridColumnManagerComponent, KitGridComponent, KitGridDetailTemplateDirective, KitGridDetailsButtonComponent, KitGridExportComponent, KitGridFiltersComponent, KitGridLiveUpdatesControlComponent, KitGridSearchComponent, KitGridSortSettingsMode, KitGridState, KitGridUrlStateService, KitGridViewType, KitGridViewsComponent, KitGridViewsState, KitListComponent, KitLoaderComponent, KitLocationStepperComponent, KitLocationStepperIconTheme, KitLocationStepperTheme, KitMobileHeaderComponent, KitMobileMenuComponent, KitMobileMenuState, KitMultiselectComponent, KitMultiselectGroupTagTemplateDirective, KitMultiselectItemsDirection, KitMultiselectSize, KitNavigationMenuComponent, KitNavigationMenuService, KitNavigationMenuSubmenuComponent, KitNavigationTabsComponent, KitNavigationTabsType, KitNotFoundComponent, KitNoteComponent, KitNotificationComponent, KitNotificationService, KitNotificationType, KitNumericTextboxComponent, KitNumericTextboxSize, KitNumericTextboxState, KitOptionToggleComponent, KitPageLayoutComponent, KitPermissionDirective, KitPillComponent, KitPillTheme, KitPillType, KitPopoverAnchorDirective, KitPopoverComponent, KitPopoverPosition, KitPopoverShowOption, KitPopupAlignHorizontal, KitPopupAlignVertical, KitPopupComponent, KitPopupPositionMode, KitProfileMenuComponent, KitQueryParamsName, KitQueryParamsService, KitRadioButtonComponent, KitRadioButtonType, KitRoutePathComponent, KitSchedulerAgendaTimeTemplateDirective, KitSchedulerComponent, KitSchedulerCustomViewTemplateDirective, KitSchedulerMonthEventTemplateDirective, KitSchedulerMonthHeaderCellTemplateDirective, KitSchedulerToolbarTemplateDirective, KitSchedulerWeekEventTemplateDirective, KitScrollNavigationComponent, KitScrollNavigationSectionComponent, KitSearchBarComponent, KitSidebarComponent, KitSkeletonAnimation, KitSkeletonComponent, KitSkeletonGridComponent, KitSkeletonSectionComponent, KitSkeletonShape, KitSortDirection, KitSortableComponent, KitSplitContainerComponent, KitStatusLabelColor, KitStatusLabelComponent, KitStatusLabelSize, KitSvgIcon, KitSvgIconComponent, KitSvgIconType, KitSvgSpriteComponent, KitSwitchComponent, KitSwitchMode, KitSwitchState, KitTabComponent, KitTabContentDirective, KitTabsComponent, KitTabsSize, KitTabsType, KitTextLabelComponent, KitTextLabelState, KitTextareaAutoresizeDirective, KitTextareaComponent, KitTextareaState, KitTextboxActionsComponent, KitTextboxComponent, KitTextboxSize, KitTextboxState, KitThemeService, KitThemes, KitTileLayoutComponent, KitTileLayoutItemComponent, KitTimelineCardComponent, KitTimelineComponent, KitTimelineTheme, KitTimelineType, KitTimepickerComponent, KitTitleTemplateDirective, KitToastrModule, KitToastrPosition, KitToastrService, KitToastrType, KitToggleComponent, KitToggleSize, KitTooltipDirective, KitTooltipPosition, KitTopBarComponent, KitTrackingCardComponent, KitTrackingTimelineComponent, KitTranslateLoader, KitTranslateService, KitTruncateTextComponent, KitUnitsTextboxComponent, KitUnitsTextboxDropdownPosition, KitUnitsTextboxType, KitUserApplicationsState, KitUserIdentitiesInterceptor, KitUserIdentitiesSelector, KitUserIdentitiesState, KitUserPermissionsState, KitUserSettingsComponent, KitUserSettingsKeys, KitUserSettingsState, KitUserState, KitUserType, KitUsersSettingsComponent, KitUsersSettingsDetailsField, KitUsersSettingsService, KitUsersSettingsState, RemoveGridFilter, SetGridColumns, SetGridFilters, SetGridSearch, SetGridSkip, SetGridSort, SetGridTake, SetUserIdentity, UpdateGridFilter, buildRandomUUID, changeFilterField, createDataFetcherFactory, findMatches, isKitFilterDescriptor, kitApiResponseDefaultEntities, kitApiTokenMaintenanceConfig, kitApiTokenMaintenanceRoutes, kitBuildFilterBooleanOptions, kitBuildFilterListOptions, kitBuildFilters, kitBuildGridColumn, kitBuildGridDataResults, kitBuildHttpParams, kitBuildOdataFilter, kitBuildSortString, kitDataStateToODataString, kitEncodeViewNameToUrl, kitFetchExportGridData, kitFetchGridData, kitFilterBy, kitFormatStringForSearch, kitGetPermissionTypesByCategory, kitHasPermission, kitNormalizeDateToUtc, kitShouldResetGridState, kitTranslations, kitUserPermissionsGuard, kitWhitespaceValidator, mapGlobalSearchResult, trimTrailingSlash };
|
|
5200
|
+
export type { GlobalSearchFilter, GlobalSearchLineItem, GlobalSearchPrompt, GlobalSearchResult, GlobalSearchRouteConfig, GlobalSearchSelectedFilter, KitApiResponseState, KitApiTokenMaintenanceConfig, KitAutocompleteItem, KitBreadcrumbsItem, KitCard, KitCardDetailsSkeletonConfig, KitCardDetailsState, KitCardItem, KitCardLink, KitCollapsedListItem, KitCompositeFilterDescriptor, KitCtaPanelConfirmation, KitCtaPanelConfirmationValue, KitCtaPanelCopyItem, KitCtaPanelItem, KitCurrentUser, KitDataResult, KitDataState, KitDaterangeValue, KitDropdownItem, KitFetchExportGridData, KitFetchGridDataOptions, KitFileUploadFile, KitFileUploadFileRestrictions, KitFileUploadFileRestrictionsMessages, KitFilterDescriptor, KitFilterItem, KitFilterListConfig, KitFilterListOption, KitFilterValue, KitFormLabelPopoverConfig, KitGridCellClickEvent, KitGridCellTranslationMap, KitGridColumn, KitGridColumnConfig, KitGridColumns, KitGridDataResult, KitGridDataState, KitGridDataStateChangeEvent, KitGridDetailCollapseEvent, KitGridDetailExpandEvent, KitGridPageChangeEvent, KitGridRowClassArgs, KitGridSortSettings, KitGridView, KitGridViewColumn, KitKendoDrawPdf, KitLocationStepperItem, KitLocationStepperItemDate, KitMainMenuItem, KitMobileMenuItem, KitMultiselectItem, KitNavigationMenuAppItem, KitNavigationMenuItem, KitNavigationTabsItem, KitNavigationTabsItemLink, KitOptionToggleOption, KitPDFOptions, KitPermission, KitPopupAlign, KitProfileMenuItem, KitQueryParams, KitRadioButton, KitResetState, KitScheduleDateChangeEvent, KitScheduleEventClickEvent, KitScheduleNavigateEvent, KitScheduleSlotClickEvent, KitSchedulerAgendaViewSettings, KitSchedulerEvent, KitSchedulerViewModes, KitSchedulerViewModesSettings, KitSortDescriptor, KitSwitchItem, KitSwitchItemSelection, KitTabsSelectEvent, KitTileLayoutColumnsConfig, KitTimelineItem, KitTimelineItemDate, KitToastrConfig, KitTrackingCardTabs, KitTrackingTimelineItem, KitUser, KitUserCapabilities, KitUserIdentities, KitUserIdentity, KitUserMenuItem, KitUserPermissions, KitUserSettings, KitUserSettingsDetails };
|