@ecodev/natural 65.0.4 → 65.0.7
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/ecodev-natural.mjs +8 -14
- package/fesm2022/ecodev-natural.mjs.map +1 -1
- package/index.d.ts +2 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -19,7 +19,6 @@ import { HttpLink, HttpBatchLink, Options } from 'apollo-angular/http';
|
|
|
19
19
|
import { ReadonlyDeep } from 'type-fest';
|
|
20
20
|
import { HttpInterceptorFn } from '@angular/common/http';
|
|
21
21
|
import { NativeDateAdapter, ThemePalette, ErrorStateMatcher } from '@angular/material/core';
|
|
22
|
-
import { MatSelectionList } from '@angular/material/list';
|
|
23
22
|
import { MatTreeNestedDataSource } from '@angular/material/tree';
|
|
24
23
|
import { MatDialogConfig, MatDialogRef } from '@angular/material/dialog';
|
|
25
24
|
import { MatAutocompleteTrigger } from '@angular/material/autocomplete';
|
|
@@ -2354,10 +2353,9 @@ type TypeSelectConfiguration = {
|
|
|
2354
2353
|
*/
|
|
2355
2354
|
operators?: boolean;
|
|
2356
2355
|
};
|
|
2357
|
-
declare class TypeSelectComponent implements DropdownComponent
|
|
2356
|
+
declare class TypeSelectComponent implements DropdownComponent {
|
|
2358
2357
|
private readonly destroyRef;
|
|
2359
2358
|
readonly renderedValue: BehaviorSubject<string>;
|
|
2360
|
-
readonly list: i0.Signal<MatSelectionList | undefined>;
|
|
2361
2359
|
requireValueCtrl: boolean;
|
|
2362
2360
|
readonly operators: readonly PossibleDiscreteOperator[];
|
|
2363
2361
|
readonly operatorCtrl: FormControl<PossibleDiscreteOperatorKeys>;
|
|
@@ -2370,7 +2368,6 @@ declare class TypeSelectComponent implements DropdownComponent, AfterViewInit {
|
|
|
2370
2368
|
readonly configuration: Required<TypeSelectConfiguration>;
|
|
2371
2369
|
private readonly defaults;
|
|
2372
2370
|
constructor();
|
|
2373
|
-
ngAfterViewInit(): void;
|
|
2374
2371
|
getId(item: TypeSelectItem): Scalar;
|
|
2375
2372
|
getDisplay(item: TypeSelectItem): Scalar;
|
|
2376
2373
|
getCondition(): FilterGroupConditionField;
|
|
@@ -3125,7 +3122,7 @@ declare class NaturalHierarchicSelectorComponent implements OnInit, OnChanges {
|
|
|
3125
3122
|
* Get list of children, considering given FlatNode id as a parent.
|
|
3126
3123
|
* Mark loading status individually on nodes.
|
|
3127
3124
|
*/
|
|
3128
|
-
loadChildren(node: ModelNode
|
|
3125
|
+
loadChildren(node: ModelNode): void;
|
|
3129
3126
|
protected childrenAccessor: (node: ModelNode) => Observable<ModelNode[]>;
|
|
3130
3127
|
/**
|
|
3131
3128
|
* Sync inner selection (tree and mat-chips) according to selected input attribute
|