@ieeesa-npm/groups 0.12.6 → 0.12.8
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/esm2022/lib/groups.component.mjs +11 -2
- package/esm2022/lib/models/group-types.model.mjs +1 -1
- package/fesm2022/ieeesa-npm-groups.mjs +10 -1
- package/fesm2022/ieeesa-npm-groups.mjs.map +1 -1
- package/lib/groups.component.d.ts +7 -1
- package/lib/models/group-types.model.d.ts +1 -0
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ import { GroupsService } from './services/groups.service';
|
|
|
5
5
|
import { Subject } from 'rxjs';
|
|
6
6
|
import { GroupInfo } from './models/group-info.model';
|
|
7
7
|
import { SelectOption, IconButton, AlignType, SearchType } from '@ieeesa-npm/presentation';
|
|
8
|
-
import { GroupTypeConfigValue } from './models/group-types.model';
|
|
8
|
+
import { GroupType, GroupTypeConfigValue } from './models/group-types.model';
|
|
9
9
|
import { AlertType, BreakpointObserverService, AlertsService, GlobalErrorHandlerService } from '@ieeesa-npm/utility';
|
|
10
10
|
import { GroupFunctionType } from './models/group-function-type.model';
|
|
11
11
|
import { GetGroupsPayload } from './models/view-group.model';
|
|
@@ -154,6 +154,12 @@ export declare class GroupsComponent implements OnInit, OnDestroy {
|
|
|
154
154
|
* @memberof GroupsComponent
|
|
155
155
|
*/
|
|
156
156
|
getGroupTypeOptions(): SelectOption[];
|
|
157
|
+
/**
|
|
158
|
+
* Returns the sorted group types based on the view order.
|
|
159
|
+
* @return [string, GroupType][]
|
|
160
|
+
* @memberof GroupsComponent
|
|
161
|
+
*/
|
|
162
|
+
sortGroupTypes(): [string, GroupType][];
|
|
157
163
|
/**
|
|
158
164
|
* Sets the isGroupSearchOrFilterActive flag and loads parent group info as per selected filter option.
|
|
159
165
|
* @param {SelectOption} event
|