@indigina/ui-kit 1.1.299 → 1.1.301
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 +72 -12
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/index.d.ts +26 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3248,6 +3248,7 @@ declare class KitSearchBarComponent {
|
|
|
3248
3248
|
searchButtonLabel: string;
|
|
3249
3249
|
closeButtonLabel: string;
|
|
3250
3250
|
readonly searchString: InputSignal<string | undefined>;
|
|
3251
|
+
readonly disabled: InputSignal<boolean>;
|
|
3251
3252
|
changed: EventEmitter<string>;
|
|
3252
3253
|
searchButtonClick: EventEmitter<void>;
|
|
3253
3254
|
closeButtonClick: EventEmitter<void>;
|
|
@@ -3265,7 +3266,7 @@ declare class KitSearchBarComponent {
|
|
|
3265
3266
|
clearSearch(): void;
|
|
3266
3267
|
onCloseButtonClick(): void;
|
|
3267
3268
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitSearchBarComponent, never>;
|
|
3268
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitSearchBarComponent, "kit-search-bar", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "searchButtonLabel": { "alias": "searchButtonLabel"; "required": false; }; "closeButtonLabel": { "alias": "closeButtonLabel"; "required": false; }; "searchString": { "alias": "searchString"; "required": false; "isSignal": true; }; }, { "changed": "changed"; "searchButtonClick": "searchButtonClick"; "closeButtonClick": "closeButtonClick"; }, never, never, true, never>;
|
|
3269
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitSearchBarComponent, "kit-search-bar", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "searchButtonLabel": { "alias": "searchButtonLabel"; "required": false; }; "closeButtonLabel": { "alias": "closeButtonLabel"; "required": false; }; "searchString": { "alias": "searchString"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "changed": "changed"; "searchButtonClick": "searchButtonClick"; "closeButtonClick": "closeButtonClick"; }, never, never, true, never>;
|
|
3269
3270
|
}
|
|
3270
3271
|
|
|
3271
3272
|
type KitUserPermissions = Record<string, string[]>;
|
|
@@ -3955,6 +3956,7 @@ declare class KitGridCellService {
|
|
|
3955
3956
|
declare class KitGridSearchComponent implements AfterViewInit {
|
|
3956
3957
|
private readonly store;
|
|
3957
3958
|
private readonly kitGridUrlStateService;
|
|
3959
|
+
readonly disabled: InputSignal<boolean>;
|
|
3958
3960
|
readonly kitSearchBarComponent: Signal<KitSearchBarComponent>;
|
|
3959
3961
|
readonly toggleSearch: OutputEmitterRef<boolean>;
|
|
3960
3962
|
readonly gridState$: Observable<KitGridDataState>;
|
|
@@ -3962,7 +3964,7 @@ declare class KitGridSearchComponent implements AfterViewInit {
|
|
|
3962
3964
|
closeButtonClick(): void;
|
|
3963
3965
|
closeSearch(): void;
|
|
3964
3966
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitGridSearchComponent, never>;
|
|
3965
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitGridSearchComponent, "kit-grid-search", never, {}, { "toggleSearch": "toggleSearch"; }, never, never, true, never>;
|
|
3967
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitGridSearchComponent, "kit-grid-search", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "toggleSearch": "toggleSearch"; }, never, never, true, never>;
|
|
3966
3968
|
}
|
|
3967
3969
|
|
|
3968
3970
|
declare class KitGridColumnManagerComponent {
|
|
@@ -4028,8 +4030,11 @@ declare class KitEntityGridComponent<T> {
|
|
|
4028
4030
|
readonly pagerInfoText: InputSignal<string>;
|
|
4029
4031
|
readonly showBreadcrumbs: InputSignal<boolean>;
|
|
4030
4032
|
readonly pageSizes: InputSignal<boolean | number[] | undefined>;
|
|
4031
|
-
readonly gridViewChanged: OutputEmitterRef<void>;
|
|
4032
4033
|
readonly rowClassFn: InputSignal<((context: KitGridRowClassArgs) => Record<string, boolean>) | undefined>;
|
|
4034
|
+
readonly showArchiveToggle: InputSignal<boolean>;
|
|
4035
|
+
readonly gridViewChanged: OutputEmitterRef<void>;
|
|
4036
|
+
readonly archiveModeChanged: OutputEmitterRef<boolean>;
|
|
4037
|
+
readonly search: Signal<KitGridSearchComponent | undefined>;
|
|
4033
4038
|
readonly kitTooltipPosition: typeof KitTooltipPosition;
|
|
4034
4039
|
readonly searchIsOpen: WritableSignal<boolean>;
|
|
4035
4040
|
readonly kitGridComponent: Signal<KitGridComponent<T> | undefined>;
|
|
@@ -4049,14 +4054,17 @@ declare class KitEntityGridComponent<T> {
|
|
|
4049
4054
|
readonly kitButtonIconPosition: typeof KitButtonIconPosition;
|
|
4050
4055
|
readonly kitBadgeTheme: typeof KitBadgeTheme;
|
|
4051
4056
|
readonly gridState: Signal<KitGridDataState>;
|
|
4052
|
-
isExporting: WritableSignal<boolean>;
|
|
4057
|
+
readonly isExporting: WritableSignal<boolean>;
|
|
4058
|
+
readonly archiveModeEnabled: WritableSignal<boolean>;
|
|
4053
4059
|
constructor();
|
|
4054
4060
|
onPageSizeChanged(event: KitGridPageChangeEvent): void;
|
|
4055
4061
|
onFiltersToggle(): void;
|
|
4056
4062
|
onGridViewChange(): void;
|
|
4057
4063
|
onDataStateChange(event: KitGridDataStateChangeEvent): void;
|
|
4064
|
+
onArchiveToggle(value: boolean): void;
|
|
4065
|
+
isSearchDisabled(): boolean;
|
|
4058
4066
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitEntityGridComponent<any>, never>;
|
|
4059
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitEntityGridComponent<any>, "kit-entity-grid", never, { "gridData": { "alias": "gridData"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "gridColumns": { "alias": "gridColumns"; "required": true; "isSignal": true; }; "defaultViewName": { "alias": "defaultViewName"; "required": true; "isSignal": true; }; "viewGroup": { "alias": "viewGroup"; "required": true; "isSignal": true; }; "viewGroupConfig": { "alias": "viewGroupConfig"; "required": true; "isSignal": true; }; "pdfOptions": { "alias": "pdfOptions"; "required": true; "isSignal": true; }; "getExportedData": { "alias": "getExportedData"; "required": true; "isSignal": true; }; "defaultSorting": { "alias": "defaultSorting"; "required": false; "isSignal": true; }; "filterExcludedColumns": { "alias": "filterExcludedColumns"; "required": false; "isSignal": true; }; "systemViews": { "alias": "systemViews"; "required": false; "isSignal": true; }; "translationMap": { "alias": "translationMap"; "required": false; "isSignal": true; }; "isDetailTemplateVisible": { "alias": "isDetailTemplateVisible"; "required": false; "isSignal": true; }; "detailTemplateExpandDisableIf": { "alias": "detailTemplateExpandDisableIf"; "required": false; "isSignal": true; }; "gridHasData": { "alias": "gridHasData"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "pagerInfoText": { "alias": "pagerInfoText"; "required": false; "isSignal": true; }; "showBreadcrumbs": { "alias": "showBreadcrumbs"; "required": false; "isSignal": true; }; "pageSizes": { "alias": "pageSizes"; "required": false; "isSignal": true; }; "rowClassFn": { "alias": "rowClassFn"; "required": false; "isSignal": true; }; }, { "gridViewChanged": "gridViewChanged"; }, ["columns", "gridDetailTemplate"], ["[filters]", "[post-header-content]", "[actions]"], true, never>;
|
|
4067
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitEntityGridComponent<any>, "kit-entity-grid", never, { "gridData": { "alias": "gridData"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "gridColumns": { "alias": "gridColumns"; "required": true; "isSignal": true; }; "defaultViewName": { "alias": "defaultViewName"; "required": true; "isSignal": true; }; "viewGroup": { "alias": "viewGroup"; "required": true; "isSignal": true; }; "viewGroupConfig": { "alias": "viewGroupConfig"; "required": true; "isSignal": true; }; "pdfOptions": { "alias": "pdfOptions"; "required": true; "isSignal": true; }; "getExportedData": { "alias": "getExportedData"; "required": true; "isSignal": true; }; "defaultSorting": { "alias": "defaultSorting"; "required": false; "isSignal": true; }; "filterExcludedColumns": { "alias": "filterExcludedColumns"; "required": false; "isSignal": true; }; "systemViews": { "alias": "systemViews"; "required": false; "isSignal": true; }; "translationMap": { "alias": "translationMap"; "required": false; "isSignal": true; }; "isDetailTemplateVisible": { "alias": "isDetailTemplateVisible"; "required": false; "isSignal": true; }; "detailTemplateExpandDisableIf": { "alias": "detailTemplateExpandDisableIf"; "required": false; "isSignal": true; }; "gridHasData": { "alias": "gridHasData"; "required": false; "isSignal": true; }; "isLoading": { "alias": "isLoading"; "required": false; "isSignal": true; }; "pagerInfoText": { "alias": "pagerInfoText"; "required": false; "isSignal": true; }; "showBreadcrumbs": { "alias": "showBreadcrumbs"; "required": false; "isSignal": true; }; "pageSizes": { "alias": "pageSizes"; "required": false; "isSignal": true; }; "rowClassFn": { "alias": "rowClassFn"; "required": false; "isSignal": true; }; "showArchiveToggle": { "alias": "showArchiveToggle"; "required": false; "isSignal": true; }; }, { "gridViewChanged": "gridViewChanged"; "archiveModeChanged": "archiveModeChanged"; }, ["columns", "gridDetailTemplate"], ["[actions]", "[filters]", "[post-header-content]", "[actions]"], true, never>;
|
|
4060
4068
|
}
|
|
4061
4069
|
|
|
4062
4070
|
declare class KitSidebarComponent implements OnInit {
|
|
@@ -4249,6 +4257,7 @@ interface KitMobileMenuItem {
|
|
|
4249
4257
|
links: {
|
|
4250
4258
|
title: string;
|
|
4251
4259
|
commands: string[];
|
|
4260
|
+
permissions?: KitPermission;
|
|
4252
4261
|
extras?: NavigationExtras;
|
|
4253
4262
|
}[];
|
|
4254
4263
|
}
|
|
@@ -4262,7 +4271,9 @@ declare class KitMobileMenuComponent {
|
|
|
4262
4271
|
readonly navListFooter: Signal<HTMLDivElement | undefined>;
|
|
4263
4272
|
readonly kitSvgIcon: typeof KitSvgIcon;
|
|
4264
4273
|
readonly selectedItem: () => KitMobileMenuItem | null;
|
|
4274
|
+
readonly displayedItems: Observable<KitMobileMenuItem[]>;
|
|
4265
4275
|
setSelectedItem(item: KitMobileMenuItem | null): void;
|
|
4276
|
+
private filterMenuItemsByPermissions;
|
|
4266
4277
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitMobileMenuComponent, never>;
|
|
4267
4278
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitMobileMenuComponent, "kit-mobile-menu", never, { "kitMobileMenuItems": { "alias": "kitMobileMenuItems"; "required": true; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; }, {}, ["categoryItem", "linkItem", "navListFooter"], never, true, never>;
|
|
4268
4279
|
}
|
|
@@ -4531,5 +4542,14 @@ declare class KitGridLiveUpdatesControlComponent<T> implements OnInit, OnDestroy
|
|
|
4531
4542
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitGridLiveUpdatesControlComponent<any>, "kit-grid-live-updates-control", never, { "source": { "alias": "source"; "required": true; "isSignal": true; }; "action": { "alias": "action"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4532
4543
|
}
|
|
4533
4544
|
|
|
4534
|
-
|
|
4545
|
+
declare class KitGridArchiveToggle {
|
|
4546
|
+
readonly valueChange: OutputEmitterRef<boolean>;
|
|
4547
|
+
readonly kitToggleSize: typeof KitToggleSize;
|
|
4548
|
+
readonly kitTooltipPosition: typeof KitTooltipPosition;
|
|
4549
|
+
onChange(value: boolean): void;
|
|
4550
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitGridArchiveToggle, never>;
|
|
4551
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitGridArchiveToggle, "kit-grid-archive-toggle", never, {}, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
4552
|
+
}
|
|
4553
|
+
|
|
4554
|
+
export { AbstractKitCtaPanelConfirmationComponent, AddGridFilter, FetchUser, FetchUserIdentities, FetchUserPermissions, FetchUserSettings, HighlightPipe, KIT_BASE_PATH, KIT_DATETIME_FORMAT_LONG, KIT_DATE_FORMAT, KIT_GRID_CELL_DATE_FORMAT_CONFIG, KIT_GRID_COLUMN_WIDTH, KIT_GRID_PAGE_SIZE, KIT_GRID_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, KitAutocompleteComponent, KitAutocompleteDirective, KitAvatarComponent, KitAvatarSize, KitBadgeDirective, KitBadgeTheme, KitBreadcrumbsComponent, KitBreadcrumbsService, KitButtonComponent, KitButtonIconPosition, KitButtonKind, KitButtonState, KitButtonType, KitCardComponent, KitCardDetailsComponent, KitCardTheme, KitCheckboxComponent, KitCheckboxState, KitCollapsedListComponent, KitCollapsedListDropdownAlign, KitCopyTextComponent, KitCtaPanelAbstractConfirmationComponent, KitCtaPanelActionComponent, KitCtaPanelConfirmationComponent, KitCtaPanelItemComponent, KitCtaPanelItemType, KitDataFieldComponent, KitDataFieldState, KitDatepickerComponent, KitDatepickerSize, KitDaterangeComponent, KitDaterangeType, KitDatetimepickerComponent, KitDialogActionsComponent, KitDialogComponent, KitDialogService, KitDialogTitlebarComponent, KitDialogType, KitDropdownComponent, KitDropdownItemTemplateDirective, KitDropdownSize, KitEmptySectionComponent, KitEntityGridComponent, KitEntitySectionComponent, KitEntitySectionContainerComponent, KitEntityTitleComponent, KitFileCardComponent, KitFileCardMessagesComponent, KitFileUploadComponent, KitFilterCheckboxComponent, KitFilterLogic, KitFilterOperator, KitFilterType, KitForbiddenComponent, KitGlobalSearchComponent, KitGridArchiveToggle, KitGridCellComponent, KitGridCellService, KitGridCellTemplateDirective, KitGridColumnComponent, KitGridColumnManagerComponent, KitGridComponent, KitGridDetailTemplateDirective, KitGridDetailsButtonComponent, KitGridExportComponent, KitGridFiltersComponent, KitGridLiveUpdatesControlComponent, KitGridSearchComponent, KitGridSortSettingsMode, KitGridState, KitGridUrlStateService, KitGridViewType, KitGridViewsComponent, KitGridViewsState, KitInputLabelComponent, KitInputMessageComponent, KitListComponent, KitLoaderComponent, KitLocationStepperComponent, KitMobileHeaderComponent, KitMobileMenuComponent, KitMobileMenuState, KitMultiselectComponent, KitNavigationMenuComponent, KitNavigationMenuService, KitNavigationMenuSubmenuComponent, KitNavigationTabsComponent, KitNavigationTabsType, KitNotFoundComponent, KitNoteComponent, KitNotificationComponent, KitNotificationService, KitNotificationType, KitNumericTextboxComponent, KitNumericTextboxSize, KitNumericTextboxState, KitOptionToggleComponent, KitPageLayoutComponent, KitPermissionDirective, KitPillComponent, KitPillTheme, KitPillType, KitPopupAlignHorizontal, KitPopupAlignVertical, KitPopupComponent, KitPopupPositionMode, KitProfileMenuComponent, KitQueryParamsName, KitQueryParamsService, KitRadioButtonComponent, KitRadioButtonType, KitRoutePathComponent, KitSchedulerComponent, KitSchedulerMonthEventTemplateDirective, KitSchedulerWeekEventTemplateDirective, KitScrollNavigationComponent, KitScrollNavigationSectionComponent, KitSearchBarComponent, KitSidebarComponent, KitSkeletonAnimation, KitSkeletonComponent, KitSkeletonGridComponent, 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, kitApiResponseDefaultEntities, kitBuildFilterBooleanOptions, kitBuildFilterListOptions, kitBuildFilters, kitBuildGridColumn, kitBuildGridDataResults, kitBuildOdataFilter, kitBuildSortString, kitDataStateToODataString, kitEncodeViewNameToUrl, kitExportExcel, kitFilterBy, kitFormatStringForSearch, kitGetFormControlErrors, kitGetPermissionTypesByCategory, kitHasPermission, kitTranslations, kitUserPermissionsGuard, mapGlobalSearchResult, trimTrailingSlash };
|
|
4535
4555
|
export type { GlobalSearchFilter, GlobalSearchLineItem, GlobalSearchPrompt, GlobalSearchResult, GlobalSearchRouteConfig, GlobalSearchSelectedFilter, KitApiResponseState, KitAutocompleteItem, KitBreadcrumbsItem, KitCard, KitCardDetailsState, KitCardItem, KitCardLink, KitCollapsedListItem, KitCompositeFilterDescriptor, KitCtaPanelConfirmation, KitCtaPanelConfirmationValue, KitCtaPanelCopyItem, KitCtaPanelItem, KitCurrentUser, KitDataResult, KitDataState, KitDaterangeValue, KitDropdownItem, KitFileUploadFile, KitFileUploadFileRestrictions, KitFileUploadFileRestrictionsMessages, KitFilterDescriptor, KitFilterItem, KitFilterListConfig, KitFilterListOption, KitFilterValue, 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, KitScheduleEventClickEvent, KitScheduleSlotClickEvent, KitSchedulerEvent, KitSortDescriptor, KitSwitchItem, KitSwitchItemSelection, KitTabsSelectEvent, KitTileLayoutColumnsConfig, KitTimelineItem, KitTimelineItemDate, KitToastrConfig, KitTrackingCardTabs, KitTrackingTimelineItem, KitUser, KitUserIdentities, KitUserIdentity, KitUserMenuItem, KitUserPermissions, KitUserSettings };
|