@indigina/ui-kit 1.1.435 → 1.1.437
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 +205 -169
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/theming.scss +9 -0
- package/types/indigina-ui-kit.d.ts +43 -13
package/package.json
CHANGED
package/styles/theming.scss
CHANGED
|
@@ -31,6 +31,11 @@
|
|
|
31
31
|
--ui-kit-color-grey-16: #ececf8;
|
|
32
32
|
--ui-kit-color-grey-17: #878787;
|
|
33
33
|
--ui-kit-color-grey-18: #727684;
|
|
34
|
+
--ui-kit-color-grey-19: #e5e7eb;
|
|
35
|
+
--ui-kit-color-grey-20: #99a1af;
|
|
36
|
+
--ui-kit-color-grey-21: #27282a;
|
|
37
|
+
--ui-kit-color-grey-22: #101828;
|
|
38
|
+
--ui-kit-color-grey-23: #6a7282;
|
|
34
39
|
|
|
35
40
|
--ui-kit-color-green: #00b0ad;
|
|
36
41
|
--ui-kit-color-green-1: #39c237;
|
|
@@ -40,6 +45,7 @@
|
|
|
40
45
|
--ui-kit-color-green-5: #e5ffe5;
|
|
41
46
|
--ui-kit-color-green-6: #62dd5f;
|
|
42
47
|
--ui-kit-color-green-7: #17aa14;
|
|
48
|
+
--ui-kit-color-green-8: #00c950;
|
|
43
49
|
|
|
44
50
|
--ui-kit-color-red: #ef3e42;
|
|
45
51
|
--ui-kit-color-red-20: #f8e0e0;
|
|
@@ -73,4 +79,7 @@
|
|
|
73
79
|
|
|
74
80
|
--ui-kit-color-blue: #1677ff;
|
|
75
81
|
--ui-kit-color-blue-1: #e4eeff;
|
|
82
|
+
--ui-kit-color-blue-2: #193cb8;
|
|
83
|
+
|
|
84
|
+
--ui-kit-color-violet: #4e4696;
|
|
76
85
|
}
|
|
@@ -1216,6 +1216,26 @@ declare class KitNotificationService {
|
|
|
1216
1216
|
static ɵprov: i0.ɵɵInjectableDeclaration<KitNotificationService>;
|
|
1217
1217
|
}
|
|
1218
1218
|
|
|
1219
|
+
declare enum KitPillType {
|
|
1220
|
+
DEFAULT = "default",
|
|
1221
|
+
DASHED = "dashed"
|
|
1222
|
+
}
|
|
1223
|
+
declare enum KitPillTheme {
|
|
1224
|
+
DEFAULT = "default",
|
|
1225
|
+
BLUE = "blue",
|
|
1226
|
+
MAIN = "main"
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
declare enum KitLocationStepperTheme {
|
|
1230
|
+
DEFAULT = "default",
|
|
1231
|
+
CUSTOM = "custom"
|
|
1232
|
+
}
|
|
1233
|
+
declare enum KitLocationStepperIconTheme {
|
|
1234
|
+
GREEN = "green",
|
|
1235
|
+
BLUE = "blue",
|
|
1236
|
+
GREY = "grey"
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1219
1239
|
interface KitLocationStepperItemDate {
|
|
1220
1240
|
value: string;
|
|
1221
1241
|
description?: string;
|
|
@@ -1223,7 +1243,10 @@ interface KitLocationStepperItemDate {
|
|
|
1223
1243
|
interface KitLocationStepperItem {
|
|
1224
1244
|
title: string;
|
|
1225
1245
|
icon: KitSvgIcon;
|
|
1246
|
+
iconType?: KitSvgIconType;
|
|
1247
|
+
iconTheme?: KitLocationStepperIconTheme;
|
|
1226
1248
|
name?: string;
|
|
1249
|
+
label?: string;
|
|
1227
1250
|
description?: string;
|
|
1228
1251
|
dates?: KitLocationStepperItemDate[];
|
|
1229
1252
|
cssClass?: string;
|
|
@@ -1236,9 +1259,13 @@ declare class KitLocationStepperComponent {
|
|
|
1236
1259
|
*/
|
|
1237
1260
|
items: KitLocationStepperItem[];
|
|
1238
1261
|
toolTipPosition: KitTooltipPosition;
|
|
1262
|
+
readonly theme: InputSignal<KitLocationStepperTheme>;
|
|
1263
|
+
readonly hideDates: InputSignal<boolean>;
|
|
1239
1264
|
readonly KitSvgIcon: typeof KitSvgIcon;
|
|
1265
|
+
readonly KitSvgIconType: typeof KitSvgIconType;
|
|
1266
|
+
readonly KitPillTheme: typeof KitPillTheme;
|
|
1240
1267
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitLocationStepperComponent, never>;
|
|
1241
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitLocationStepperComponent, "kit-location-stepper", never, { "items": { "alias": "items"; "required": false; }; "toolTipPosition": { "alias": "toolTipPosition"; "required": false; }; }, {}, never, never, true, never>;
|
|
1268
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitLocationStepperComponent, "kit-location-stepper", never, { "items": { "alias": "items"; "required": false; }; "toolTipPosition": { "alias": "toolTipPosition"; "required": false; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; "hideDates": { "alias": "hideDates"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1242
1269
|
}
|
|
1243
1270
|
|
|
1244
1271
|
interface KitAutocompleteItem<T> {
|
|
@@ -1513,16 +1540,6 @@ declare class KitOptionToggleComponent implements ControlValueAccessor {
|
|
|
1513
1540
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitOptionToggleComponent, "kit-option-toggle", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "defaultActiveOption": { "alias": "defaultActiveOption"; "required": false; "isSignal": true; }; "leftOption": { "alias": "leftOption"; "required": true; "isSignal": true; }; "rightOption": { "alias": "rightOption"; "required": true; "isSignal": true; }; }, { "disabled": "disabledChange"; "defaultActiveOption": "defaultActiveOptionChange"; "handleChange": "handleChange"; }, never, never, true, never>;
|
|
1514
1541
|
}
|
|
1515
1542
|
|
|
1516
|
-
declare enum KitPillType {
|
|
1517
|
-
DEFAULT = "default",
|
|
1518
|
-
DASHED = "dashed"
|
|
1519
|
-
}
|
|
1520
|
-
declare enum KitPillTheme {
|
|
1521
|
-
DEFAULT = "default",
|
|
1522
|
-
BLUE = "blue",
|
|
1523
|
-
MAIN = "main"
|
|
1524
|
-
}
|
|
1525
|
-
|
|
1526
1543
|
declare class KitPillComponent {
|
|
1527
1544
|
/**
|
|
1528
1545
|
* Defines if the pill will be removable. If set to true pill renders a remove button
|
|
@@ -4184,6 +4201,7 @@ declare class KitGridExportComponent<T> {
|
|
|
4184
4201
|
private readonly translateService;
|
|
4185
4202
|
private readonly notificationService;
|
|
4186
4203
|
private readonly gridCellService;
|
|
4204
|
+
private readonly kitExcelExportService;
|
|
4187
4205
|
private readonly store;
|
|
4188
4206
|
private readonly injector;
|
|
4189
4207
|
readonly getExportedData: InputSignal<() => Observable<{
|
|
@@ -4304,6 +4322,7 @@ declare class KitGridDetailsButtonComponent {
|
|
|
4304
4322
|
}
|
|
4305
4323
|
|
|
4306
4324
|
declare const KIT_DATE_FORMAT: string;
|
|
4325
|
+
declare const KIT_DATE_FORMAT_SHORT: string;
|
|
4307
4326
|
declare const KIT_DATETIME_FORMAT_LONG: string;
|
|
4308
4327
|
declare const KIT_TIME_FORMAT_SHORT: string;
|
|
4309
4328
|
|
|
@@ -4839,7 +4858,17 @@ declare class KitSplitContainerComponent {
|
|
|
4839
4858
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitSplitContainerComponent, "kit-split-container", never, { "contentTemplateRef": { "alias": "contentTemplateRef"; "required": false; "isSignal": true; }; "sidebarTemplateRef": { "alias": "sidebarTemplateRef"; "required": false; "isSignal": true; }; "sidebarTitle": { "alias": "sidebarTitle"; "required": false; "isSignal": true; }; "actionsTemplateRef": { "alias": "actionsTemplateRef"; "required": false; "isSignal": true; }; "isSidebarCollapsed": { "alias": "isSidebarCollapsed"; "required": false; "isSignal": true; }; }, { "isSidebarCollapsed": "isSidebarCollapsedChange"; "collapsed": "collapsed"; }, never, never, true, never>;
|
|
4840
4859
|
}
|
|
4841
4860
|
|
|
4842
|
-
declare
|
|
4861
|
+
declare class KitExcelExportService {
|
|
4862
|
+
private readonly translateService;
|
|
4863
|
+
private readonly store;
|
|
4864
|
+
private readonly gridCellService;
|
|
4865
|
+
export<T>(data: T[], exportedColumns: KitGridColumnConfig[], exportedFileName: string, translationMap: Record<string, (value: string) => string>): Promise<void>;
|
|
4866
|
+
private getExportedExcelRows;
|
|
4867
|
+
private timeStringToExcelFraction;
|
|
4868
|
+
private convertToUtcDate;
|
|
4869
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitExcelExportService, never>;
|
|
4870
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<KitExcelExportService>;
|
|
4871
|
+
}
|
|
4843
4872
|
|
|
4844
4873
|
declare const kitFormatStringForSearch: (inputString: string) => string;
|
|
4845
4874
|
|
|
@@ -4949,6 +4978,7 @@ declare class KitApiTokenMaintenanceListComponent implements OnDestroy {
|
|
|
4949
4978
|
private readonly kitDialogService;
|
|
4950
4979
|
private readonly translateService;
|
|
4951
4980
|
private readonly viewContainerRef;
|
|
4981
|
+
private readonly kitExcelExportService;
|
|
4952
4982
|
readonly kitCardDetailsComponent: Signal<KitCardDetailsComponent<KitApiToken>>;
|
|
4953
4983
|
readonly apiTokens$: Observable<KitGridDataResult<KitApiToken>>;
|
|
4954
4984
|
private readonly clientScopeFilter;
|
|
@@ -5045,5 +5075,5 @@ declare class KitBackButtonComponent {
|
|
|
5045
5075
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitBackButtonComponent, "kit-back-button", never, { "backUrl": { "alias": "backUrl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5046
5076
|
}
|
|
5047
5077
|
|
|
5048
|
-
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_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, 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, KitMobileHeaderComponent, KitMobileMenuComponent, KitMobileMenuState, KitMultiselectComponent, 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,
|
|
5078
|
+
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, 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 };
|
|
5049
5079
|
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 };
|