@indigina/ui-kit 1.1.282 → 1.1.284

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.
@@ -6306,6 +6306,111 @@ const kitTranslations = {
6306
6306
  },
6307
6307
  },
6308
6308
  },
6309
+ ru: {
6310
+ kit: {
6311
+ views: {
6312
+ save: 'Сохранить',
6313
+ cancel: 'Отмена',
6314
+ apply: 'Применить',
6315
+ addView: 'Добавить вид',
6316
+ saveView: 'Сохранить вид',
6317
+ enterText: 'Введите текст',
6318
+ overrideMessage: 'Существующий вид будет перезаписан',
6319
+ invalidMessage: 'Специальные символы не допускаются',
6320
+ lengthMessage: 'Название должно содержать не более 250 символов',
6321
+ noUnsavedChanges: 'Нет несохраненных изменений',
6322
+ manageViews: 'Управление видами',
6323
+ views: 'Виды',
6324
+ more: 'Еще',
6325
+ },
6326
+ filters: {
6327
+ addNewFilter: 'Добавить новый фильтр',
6328
+ chooseDateFrom: 'Выберите дату с',
6329
+ chooseDateTo: 'Выберите дату по',
6330
+ clear: 'Очистить',
6331
+ apply: 'Применить',
6332
+ search: 'Поиск',
6333
+ all: 'Все',
6334
+ logic: {
6335
+ or: 'Или',
6336
+ and: 'И',
6337
+ },
6338
+ operator: {
6339
+ contains: 'Содержит',
6340
+ eq: 'Равно',
6341
+ isnotnull: 'Имеет значение',
6342
+ isnull: 'Не имеет значения',
6343
+ neq: 'Не равно',
6344
+ startswith: 'Начинается с',
6345
+ endswith: 'Заканчивается на',
6346
+ doesnotcontain: 'Не содержит',
6347
+ gte: 'Больше или равно',
6348
+ gt: 'Больше чем',
6349
+ lte: 'Меньше или равно',
6350
+ lt: 'Меньше чем',
6351
+ },
6352
+ },
6353
+ export: {
6354
+ exportTableData: 'Экспортировать данные таблицы как:',
6355
+ notification: {
6356
+ success: 'Экспорт завершен.',
6357
+ start: 'Экспорт выполняется...',
6358
+ error: 'Произошла ошибка при экспорте.',
6359
+ },
6360
+ },
6361
+ search: {
6362
+ placeholder: 'Поиск',
6363
+ searchButtonLabel: 'Поиск',
6364
+ closeButtonLabel: 'Закрыть',
6365
+ },
6366
+ globalSearch: {
6367
+ placeholder: 'Глобальный поиск',
6368
+ showResults: 'Показать результаты',
6369
+ noData: 'Данные не найдены',
6370
+ showMore: 'Показать больше',
6371
+ showLess: 'Показать меньше',
6372
+ },
6373
+ columns: {
6374
+ title: 'Колонки',
6375
+ cancel: 'Отмена',
6376
+ apply: 'Применить',
6377
+ },
6378
+ multiselect: {
6379
+ all: 'Все',
6380
+ },
6381
+ grid: {
6382
+ pagerItemsText: 'элементов',
6383
+ view: 'Вид',
6384
+ },
6385
+ routePath: {
6386
+ tbc: 'Уточняется',
6387
+ by: 'от',
6388
+ },
6389
+ userSettings: {
6390
+ title: 'Настройки пользователя',
6391
+ },
6392
+ common: {
6393
+ noData: 'Нет доступных данных',
6394
+ loading: 'Загрузка...',
6395
+ error: 'Произошла ошибка при загрузке данных',
6396
+ loadMore: 'Загрузить еще',
6397
+ },
6398
+ notFound: {
6399
+ title: '404',
6400
+ subtitle: 'Не найдено',
6401
+ description: 'Страница, которую вы ищете, не найдена.<br><br>' +
6402
+ 'Веб-страница, к которой вы пытаетесь получить доступ, могла быть перемещена, удалена или не существует.',
6403
+ },
6404
+ forbidden: {
6405
+ title: '403',
6406
+ subtitle: 'Доступ запрещен',
6407
+ description: 'У вас нет прав для просмотра этой страницы с текущими учетными данными.<br><br>' +
6408
+ 'Веб-страница, которую вы пытаетесь просмотреть, имеет ограниченный доступ.<br>' +
6409
+ 'Попробуйте войти под другим пользователем или обратитесь в службу поддержки/к администратору за помощью.',
6410
+ logout: 'Выйти',
6411
+ },
6412
+ },
6413
+ },
6309
6414
  };
6310
6415
 
6311
6416
  class KitTranslateService {
@@ -8637,6 +8742,7 @@ class KitEntityGridComponent {
8637
8742
  this.kitButtonKind = KitButtonKind;
8638
8743
  this.kitButtonIconPosition = KitButtonIconPosition;
8639
8744
  this.kitBadgeTheme = KitBadgeTheme;
8745
+ this.gridState = this.store.selectSignal(KIT_GRID_STATE_TOKEN);
8640
8746
  this.isExporting = signal(false, ...(ngDevMode ? [{ debugName: "isExporting" }] : []));
8641
8747
  effect(() => {
8642
8748
  this.isExporting.set(!!this.gridExportComponent()?.isGridExporting());
@@ -8652,6 +8758,7 @@ class KitEntityGridComponent {
8652
8758
  }
8653
8759
  onGridViewChange() {
8654
8760
  this.gridViewChanged.emit();
8761
+ this.searchIsOpen.set(!!this.gridState()?.search);
8655
8762
  }
8656
8763
  onDataStateChange(event) {
8657
8764
  this.store.dispatch([
@@ -9626,5 +9733,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
9626
9733
  * Generated bundle index. Do not edit.
9627
9734
  */
9628
9735
 
9629
- 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_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, 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, KitGridCellComponent, KitGridCellService, KitGridCellTemplateDirective, KitGridColumnComponent, KitGridColumnManagerComponent, KitGridComponent, KitGridDetailTemplateDirective, KitGridDetailsButtonComponent, KitGridExportComponent, KitGridFiltersComponent, 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, KitSkeletonShape, KitSortDirection, KitSortableComponent, KitSplitContainerComponent, KitStatusLabelColor, KitStatusLabelComponent, KitStatusLabelSize, KitSvgIcon, KitSvgIconComponent, KitSvgIconType, KitSvgSpriteComponent, KitSwitchComponent, KitSwitchMode, KitSwitchState, KitTabComponent, KitTabContentDirective, KitTabsComponent, KitTabsSize, KitTabsType, KitTextLabelComponent, KitTextLabelState, KitTextareaAutoresizeDirective, KitTextareaComponent, KitTextareaState, 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, kitBuildFilterBooleanOptions, kitBuildFilterListOptions, kitBuildFilters, kitBuildGridColumn, kitBuildGridDataResults, kitBuildOdataFilter, kitBuildSortString, kitDataStateToODataString, kitEncodeViewNameToUrl, kitExportExcel, kitGetPermissionTypesByCategory, kitHasPermission, kitUserPermissionsGuard, mapGlobalSearchResult, trimTrailingSlash };
9736
+ 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_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, 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, KitGridCellComponent, KitGridCellService, KitGridCellTemplateDirective, KitGridColumnComponent, KitGridColumnManagerComponent, KitGridComponent, KitGridDetailTemplateDirective, KitGridDetailsButtonComponent, KitGridExportComponent, KitGridFiltersComponent, 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, KitSkeletonShape, KitSortDirection, KitSortableComponent, KitSplitContainerComponent, KitStatusLabelColor, KitStatusLabelComponent, KitStatusLabelSize, KitSvgIcon, KitSvgIconComponent, KitSvgIconType, KitSvgSpriteComponent, KitSwitchComponent, KitSwitchMode, KitSwitchState, KitTabComponent, KitTabContentDirective, KitTabsComponent, KitTabsSize, KitTabsType, KitTextLabelComponent, KitTextLabelState, KitTextareaAutoresizeDirective, KitTextareaComponent, KitTextareaState, 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, kitBuildFilterBooleanOptions, kitBuildFilterListOptions, kitBuildFilters, kitBuildGridColumn, kitBuildGridDataResults, kitBuildOdataFilter, kitBuildSortString, kitDataStateToODataString, kitEncodeViewNameToUrl, kitExportExcel, kitGetPermissionTypesByCategory, kitHasPermission, kitTranslations, kitUserPermissionsGuard, mapGlobalSearchResult, trimTrailingSlash };
9630
9737
  //# sourceMappingURL=indigina-ui-kit.mjs.map