@geotab/zenith 3.1.1-beta.2 → 3.1.1-beta.3
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.
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { IEntityWithId } from "../commonHelpers/entity";
|
|
1
2
|
import { IFilterState as IFilterStateRaw, TFilterVal as TFilterValRaw, ITypedHash as ITypedHashRaw, IAdvancedEntitiesNavigatorDialog as IAdvancedEntitiesNavigatorDialogRaw, IGroupItem as IGroupItemRaw, IGroupsFilterTotalState as IGroupsFilterTotalStateRaw, FilterMenuStep, IGroupsFilterOptions as IGroupsFilterOptionsRaw, IGroupTree as IGroupTreeRaw, IColor as IColorRaw, IGroupsColorTree as IGroupsColorTreeRaw, INamedEntity as INamedEntityRaw, IGroup as IGroupRaw, ILinkedGroup as ILinkedGroupRaw, ILeafStateItem as ILeafStateItemRaw, RelationOperatorLocal as RelationOperator } from "../groupsFilterRaw/groupsFilterInterfaces";
|
|
2
|
-
export interface IFilterState<T> extends IFilterStateRaw<T> {
|
|
3
|
+
export interface IFilterState<T = IEntityWithId> extends IFilterStateRaw<T> {
|
|
3
4
|
}
|
|
4
|
-
export type TFilterVal<T> = TFilterValRaw<T>;
|
|
5
|
+
export type TFilterVal<T = IEntityWithId> = TFilterValRaw<T>;
|
|
5
6
|
export interface ITypedHash<T> extends ITypedHashRaw<T> {
|
|
6
7
|
}
|
|
7
8
|
export interface IAdvancedEntitiesNavigatorDialog extends IAdvancedEntitiesNavigatorDialogRaw {
|
|
@@ -25,5 +26,5 @@ export interface IGroup extends IGroupRaw {
|
|
|
25
26
|
}
|
|
26
27
|
export interface ILinkedGroup extends ILinkedGroupRaw {
|
|
27
28
|
}
|
|
28
|
-
export interface ILeafStateItem<T> extends ILeafStateItemRaw<T> {
|
|
29
|
+
export interface ILeafStateItem<T = IEntityWithId> extends ILeafStateItemRaw<T> {
|
|
29
30
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { IEntityWithId } from "../commonHelpers/entity";
|
|
1
2
|
import { IFilterState as IFilterStateRaw, TFilterVal as TFilterValRaw, ITypedHash as ITypedHashRaw, IAdvancedEntitiesNavigatorDialog as IAdvancedEntitiesNavigatorDialogRaw, IGroupItem as IGroupItemRaw, IGroupsFilterTotalState as IGroupsFilterTotalStateRaw, FilterMenuStep, IGroupsFilterOptions as IGroupsFilterOptionsRaw, IGroupTree as IGroupTreeRaw, IColor as IColorRaw, IGroupsColorTree as IGroupsColorTreeRaw, INamedEntity as INamedEntityRaw, IGroup as IGroupRaw, ILinkedGroup as ILinkedGroupRaw, ILeafStateItem as ILeafStateItemRaw, RelationOperatorLocal as RelationOperator } from "../groupsFilterRaw/groupsFilterInterfaces";
|
|
2
|
-
export interface IFilterState<T> extends IFilterStateRaw<T> {
|
|
3
|
+
export interface IFilterState<T = IEntityWithId> extends IFilterStateRaw<T> {
|
|
3
4
|
}
|
|
4
|
-
export type TFilterVal<T> = TFilterValRaw<T>;
|
|
5
|
+
export type TFilterVal<T = IEntityWithId> = TFilterValRaw<T>;
|
|
5
6
|
export interface ITypedHash<T> extends ITypedHashRaw<T> {
|
|
6
7
|
}
|
|
7
8
|
export interface IAdvancedEntitiesNavigatorDialog extends IAdvancedEntitiesNavigatorDialogRaw {
|
|
@@ -25,5 +26,5 @@ export interface IGroup extends IGroupRaw {
|
|
|
25
26
|
}
|
|
26
27
|
export interface ILinkedGroup extends ILinkedGroupRaw {
|
|
27
28
|
}
|
|
28
|
-
export interface ILeafStateItem<T> extends ILeafStateItemRaw<T> {
|
|
29
|
+
export interface ILeafStateItem<T = IEntityWithId> extends ILeafStateItemRaw<T> {
|
|
29
30
|
}
|