@indigina/ui-kit 1.1.138 → 1.1.139
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.
|
@@ -4,6 +4,7 @@ import { KitSvgIcon } from '../kit-svg-icon/kit-svg-icon.const';
|
|
|
4
4
|
import { KitButtonKind, KitButtonType } from '../kit-button/kit-button.const';
|
|
5
5
|
import { KitDropdownSize } from '../kit-dropdown/kit-dropdown.const';
|
|
6
6
|
import { PopupSettings } from '@progress/kendo-angular-dropdowns';
|
|
7
|
+
import { KitDropdownComponent } from '../kit-dropdown/kit-dropdown.component';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class KitCollapsedListComponent<T extends KitCollapsedListItem> implements AfterViewInit, OnChanges, OnDestroy {
|
|
9
10
|
readonly itemList: InputSignal<T[]>;
|
|
@@ -22,6 +23,7 @@ export declare class KitCollapsedListComponent<T extends KitCollapsedListItem> i
|
|
|
22
23
|
readonly wrapperInner: Signal<ElementRef<HTMLDivElement>>;
|
|
23
24
|
readonly container: Signal<ElementRef<HTMLDivElement>>;
|
|
24
25
|
readonly dropdown: Signal<ElementRef<HTMLDivElement> | undefined>;
|
|
26
|
+
readonly kitDropdownComponent: Signal<KitDropdownComponent<T> | undefined>;
|
|
25
27
|
readonly defaultSelectedItem: Signal<KitCollapsedListItem>;
|
|
26
28
|
shouldShowDropdown: WritableSignal<boolean>;
|
|
27
29
|
dropdownItems: WritableSignal<KitCollapsedListItem[]>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DestroyRef, ElementRef, EventEmitter, InputSignal, OnDestroy, OnInit, Signal, ViewContainerRef, WritableSignal } from '@angular/core';
|
|
2
2
|
import { Store } from '@ngxs/store';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
|
-
import { TitleCasePipe } from '@angular/common';
|
|
4
|
+
import { TitleCasePipe, Location as NgLocation } from '@angular/common';
|
|
5
5
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
6
6
|
import { KitSortDescriptor } from '../../../utils/kit-data-query/kit-data-query.model';
|
|
7
7
|
import { KitAutocompleteItem } from '../../../components/kit-autocomplete/kit-autocomplete.component';
|
|
@@ -26,6 +26,7 @@ export declare class KitGridViewsComponent implements OnInit, OnDestroy {
|
|
|
26
26
|
private readonly kitDialogService;
|
|
27
27
|
private readonly translateService;
|
|
28
28
|
private readonly viewContainerRef;
|
|
29
|
+
private readonly location;
|
|
29
30
|
readonly viewGroup: InputSignal<string>;
|
|
30
31
|
readonly viewConfigGroup: InputSignal<string>;
|
|
31
32
|
readonly defaultColumns: InputSignal<KitGridColumnConfig[]>;
|
|
@@ -53,7 +54,7 @@ export declare class KitGridViewsComponent implements OnInit, OnDestroy {
|
|
|
53
54
|
readonly selectedView: Signal<KitGridView | null>;
|
|
54
55
|
get isViewNameValid(): boolean;
|
|
55
56
|
get inputMessage(): string;
|
|
56
|
-
constructor(store: Store, activatedRoute: ActivatedRoute, router: Router, destroyRef: DestroyRef, titleCasePipe: TitleCasePipe, kitDialogService: KitDialogService, translateService: TranslateService, viewContainerRef: ViewContainerRef);
|
|
57
|
+
constructor(store: Store, activatedRoute: ActivatedRoute, router: Router, destroyRef: DestroyRef, titleCasePipe: TitleCasePipe, kitDialogService: KitDialogService, translateService: TranslateService, viewContainerRef: ViewContainerRef, location: NgLocation);
|
|
57
58
|
ngOnInit(): void;
|
|
58
59
|
ngOnDestroy(): void;
|
|
59
60
|
onSelectView(selectedView: KitGridViewListItem): void;
|