ichec-angular-core 0.3.2 → 0.3.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ichec-angular-core",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
4
4
  "exports": {
5
5
  "./styles/": "./styles",
6
6
  "./package.json": {
@@ -3,7 +3,8 @@
3
3
 
4
4
  .content-container {
5
5
  display: flex;
6
- padding: 10px;
6
+ padding-left: 5px;
7
+ padding-right: 5px;
7
8
  flex-direction: column;
8
9
  justify-content: center;
9
10
  align-items: center;
@@ -23,31 +24,24 @@
23
24
  align-items: center;
24
25
  flex-direction: column;
25
26
  padding: 5px;
26
- }
27
-
28
- .item-detail-heading {
29
- width:100%;
30
- max-width:500px
31
- }
32
-
33
- .item-detail-header{
34
- display: inline;
35
- width: 100%;
36
- max-width: 100px;
27
+ width: 100%;
37
28
  }
38
29
 
39
30
  .item-edit-container {
40
31
  display: flex;
41
- justify-content: left;
42
- align-items: left;
43
32
  flex-direction: column;
44
33
  width:100%;
45
34
  max-width:800px;
35
+ justify-content: left;
36
+ align-items: center;
37
+ text-align: center;
46
38
  }
47
39
 
48
40
  .item-edit-header {
49
41
  display: inline;
50
42
  width: 100%;
43
+ margin-top: 5px;
44
+ margin-bottom: 5px;
51
45
  }
52
46
 
53
47
  .item-field{
@@ -68,6 +62,7 @@
68
62
 
69
63
  .image-holder {
70
64
  display: flex;
65
+ flex-direction: column;
71
66
  justify-content: center;
72
67
  align-items: center;
73
68
  overflow: hidden;
@@ -75,7 +70,13 @@
75
70
  }
76
71
 
77
72
  .button-container{
78
- padding: 10px;
73
+ margin: 5px;
74
+ }
75
+
76
+ .button-group{
77
+ margin:5px;
78
+ display: flex;
79
+ flex-direction: row;
79
80
  }
80
81
 
81
82
  .form-card{
@@ -83,6 +84,15 @@
83
84
  align-items: center;
84
85
  flex-direction: column;
85
86
  display: flex;
87
+ width: 100%;
88
+ }
89
+
90
+ .form-card-left{
91
+ justify-content:center;
92
+ align-items: left;
93
+ flex-direction: column;
94
+ display: flex;
95
+ width: 100%;
86
96
  }
87
97
 
88
98
  .form-field{
@@ -98,13 +108,6 @@
98
108
  margin: 5px;
99
109
  }
100
110
 
101
- .button-group{
102
- margin:10px;
103
- display: flex;
104
- flex-direction: row;
105
- }
106
-
107
-
108
111
 
109
112
 
110
113
 
@@ -1,3 +1,4 @@
1
+ import * as _angular_forms from '@angular/forms';
1
2
  import { FormGroup, FormControl, FormArray, FormBuilder, AbstractControl } from '@angular/forms';
2
3
  import { BehaviorSubject, Observable } from 'rxjs';
3
4
  import { HttpClient, HttpParams, HttpHeaders, HttpErrorResponse } from '@angular/common/http';
@@ -69,6 +70,15 @@ interface IPortalMemberList extends IPortalMemberBase, Identifiable {
69
70
  profile_thumbnail: string | null;
70
71
  permissions: string[];
71
72
  identifiers: IMemberIdentifierDetail[];
73
+ verified: boolean;
74
+ }
75
+ interface IMemberInvitation {
76
+ first_name: string;
77
+ last_name: string;
78
+ email: string;
79
+ username: string;
80
+ type: string;
81
+ resource_id: number | null;
72
82
  }
73
83
  type IPortalMemberDetail = IPortalMemberList;
74
84
  declare class PortalMember {
@@ -79,6 +89,7 @@ declare class PortalMember {
79
89
 
80
90
  interface IGroupBase {
81
91
  name: string;
92
+ user_set: string[];
82
93
  }
83
94
  type IGroupCreate = IGroupBase;
84
95
  interface IGroupList extends IGroupBase, Identifiable {
@@ -120,6 +131,7 @@ interface IOrganizationBase {
120
131
  description: string;
121
132
  website: string;
122
133
  members: string[];
134
+ public: boolean;
123
135
  }
124
136
  interface IOrganizationCreate extends IOrganizationBase {
125
137
  address: IAddressCreate;
@@ -172,6 +184,7 @@ interface OptionAction {
172
184
  read_only: boolean;
173
185
  max_length?: number;
174
186
  choices?: OptionActionChoice[];
187
+ children: OptionAction[];
175
188
  }
176
189
  interface IRestOptions {
177
190
  name: string;
@@ -291,6 +304,21 @@ interface IPopulatedFormUpdate {
291
304
  id: number;
292
305
  values: IFormFieldValueUpdate[];
293
306
  }
307
+ interface IFilter {
308
+ display_name: string;
309
+ key: string;
310
+ type: string;
311
+ tooltip: string;
312
+ choices: string[];
313
+ default: string;
314
+ include_if_null: boolean;
315
+ }
316
+ interface IFilterRow {
317
+ filters: IFilter[];
318
+ }
319
+ interface IFilters {
320
+ rows: IFilterRow[];
321
+ }
294
322
 
295
323
  interface LeftNavOption {
296
324
  name: string;
@@ -320,6 +348,7 @@ declare const REST_SERVICE_CONFIG: InjectionToken<RestServiceConfig>;
320
348
  declare class RestService<D extends Identifiable, L extends Identifiable = D, C = D, U extends Identifiable = D> {
321
349
  manifest: BehaviorSubject<IServerManifest | null>;
322
350
  readonly _url: string;
351
+ readonly userQuery = "user";
323
352
  config: RestServiceConfig;
324
353
  protected _http: HttpClient;
325
354
  protected cookieService: CookieService;
@@ -366,13 +395,16 @@ declare class UserService extends ItemService<IPortalMemberDetail, IPortalMember
366
395
  Service to handle IPortalMember via REST and also handle logins.
367
396
  */
368
397
  loggedInUser: BehaviorSubject<IPortalMemberList | null>;
398
+ canInvite: _angular_core.WritableSignal<boolean>;
369
399
  private document;
370
400
  readonly _url: string;
371
401
  typename: string;
372
402
  private permissions;
373
403
  login(next?: string): void;
374
404
  logout(next?: string): void;
405
+ canCreate(): boolean;
375
406
  getSelf(): Observable<IPortalMemberDetail | null>;
407
+ inviteMember(invite: IMemberInvitation): Observable<IMemberInvitation>;
376
408
  private _getSelf;
377
409
  private _selfFetchFailed;
378
410
  private _do_login;
@@ -449,18 +481,6 @@ declare class LeftNavService {
449
481
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<LeftNavService>;
450
482
  }
451
483
 
452
- declare class AddressService extends ItemWithUserService<IAddressDetail, IAddressList, IAddressCreate> {
453
- readonly _url: string;
454
- typename: string;
455
- countryOptions: _angular_core.WritableSignal<ICountry[]>;
456
- refreshCountryOptions(): void;
457
- protected onOptions(options: IRestOptions): void;
458
- protected onPostActions(actions: Record<string, OptionAction>): void;
459
- protected onCountryChoices(choices: OptionActionChoice[]): void;
460
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<AddressService, never>;
461
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<AddressService>;
462
- }
463
-
464
484
  declare class GroupService extends ItemWithUserService<IGroupDetail, IGroupList, IGroupCreate> {
465
485
  readonly _url: string;
466
486
  typename: string;
@@ -472,6 +492,12 @@ declare class GroupService extends ItemWithUserService<IGroupDetail, IGroupList,
472
492
  declare class OrganizationService extends ItemWithUserService<IOrganizationDetail, IOrganizationList, IOrganizationCreate> {
473
493
  readonly _url: string;
474
494
  typename: string;
495
+ countryOptions: _angular_core.WritableSignal<ICountry[]>;
496
+ refreshCountryOptions(): void;
497
+ protected onOptions(options: IRestOptions): void;
498
+ protected onAddressOption(option: OptionAction): void;
499
+ protected onPostActions(actions: Record<string, OptionAction>): void;
500
+ protected onCountryChoices(choices: OptionActionChoice[]): void;
475
501
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OrganizationService, never>;
476
502
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<OrganizationService>;
477
503
  }
@@ -572,6 +598,7 @@ declare class SelectTableComponent<T extends Identifiable> implements OnInit {
572
598
 
573
599
  declare abstract class SelectionManager<D extends Identifiable, L extends Identifiable = D, C = D, U extends Identifiable = D> {
574
600
  candidates: _angular_core.WritableSignal<Selectable<L>[]>;
601
+ dirty: _angular_core.WritableSignal<boolean>;
575
602
  selected: _angular_core.WritableSignal<L[]>;
576
603
  columns: TableColumn[];
577
604
  itemService: ItemService<D, L, C, U>;
@@ -611,17 +638,23 @@ declare class DetailHeaderComponent {
611
638
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DetailHeaderComponent, "lib-detail-header", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "route": { "alias": "route"; "required": false; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; "canDelete": { "alias": "canDelete"; "required": false; "isSignal": true; }; }, { "deleteClicked": "deleteClicked"; }, never, never, true, never>;
612
639
  }
613
640
 
614
- declare class SearchBarComponent implements AfterViewInit {
641
+ declare class SearchBarComponent implements OnInit, AfterViewInit {
615
642
  itemType: _angular_core.InputSignal<string>;
616
643
  sortFields: _angular_core.InputSignal<string[]>;
617
644
  sortAscending: _angular_core.WritableSignal<boolean>;
645
+ filters: _angular_core.InputSignal<IFilters | null>;
618
646
  searchChanged: _angular_core.OutputEmitterRef<string>;
619
647
  searchFilter: FormControl<any>;
648
+ showFilters: _angular_core.WritableSignal<boolean>;
649
+ private fb;
650
+ filterForm: FormGroup | null;
651
+ ngOnInit(): void;
620
652
  ngAfterViewInit(): void;
653
+ toggleFilterVisibility(): void;
621
654
  clearSearch(): void;
622
655
  searchEntered(): void;
623
656
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchBarComponent, never>;
624
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchBarComponent, "lib-search-bar", never, { "itemType": { "alias": "itemType"; "required": false; "isSignal": true; }; "sortFields": { "alias": "sortFields"; "required": false; "isSignal": true; }; }, { "searchChanged": "searchChanged"; }, never, never, true, never>;
657
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchBarComponent, "lib-search-bar", never, { "itemType": { "alias": "itemType"; "required": false; "isSignal": true; }; "sortFields": { "alias": "sortFields"; "required": false; "isSignal": true; }; "filters": { "alias": "filters"; "required": false; "isSignal": true; }; }, { "searchChanged": "searchChanged"; }, never, never, true, never>;
625
658
  }
626
659
 
627
660
  declare class FileUploadComponent {
@@ -637,20 +670,23 @@ declare class FileUploadComponent {
637
670
  declare class FormFieldDetailComponent {
638
671
  readonly field: _angular_core.InputSignal<IFormFieldDetail>;
639
672
  form: _angular_core.InputSignal<FormGroup<any>>;
640
- get isValid(): boolean;
641
673
  get key(): string;
642
674
  get control(): FormControl<IFileRecord>;
643
675
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormFieldDetailComponent, never>;
644
676
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormFieldDetailComponent, "lib-form-field-detail", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "form": { "alias": "form"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
645
677
  }
646
678
 
679
+ interface IOption {
680
+ key: string;
681
+ value: string;
682
+ }
647
683
  interface IFormFieldForm {
648
684
  label: FormControl<string | null>;
649
685
  key: FormControl<string | null>;
650
686
  required: FormControl<boolean | null>;
651
687
  description: FormControl<string | null>;
652
688
  template: FormControl<IFileRecord | null>;
653
- options: FormControl<string | null>;
689
+ options: FormControl<IOption[] | null>;
654
690
  default: FormControl<string | null>;
655
691
  field_type: FormControl<string | null>;
656
692
  order: FormControl<number | null>;
@@ -660,16 +696,27 @@ interface IFormFieldForm {
660
696
  declare class FormFieldEditComponent {
661
697
  availableTypes: ichec_angular_core.TypeChoice[];
662
698
  readonly FieldType: typeof FieldType;
699
+ readonly deleteDialog: MatDialog;
700
+ protected table: _angular_core.Signal<MatTable<any> | undefined>;
701
+ protected keyControl: FormControl<string | null>;
702
+ protected valueControl: FormControl<string | null>;
663
703
  form: _angular_core.InputSignal<FormGroup<IFormFieldForm>>;
664
- editMode: _angular_core.InputSignal<boolean>;
665
- submitted: _angular_core.OutputEmitterRef<void>;
666
- cancelled: _angular_core.OutputEmitterRef<void>;
704
+ canOrderUp: _angular_core.InputSignal<boolean>;
705
+ canOrderDown: _angular_core.InputSignal<boolean>;
706
+ orderUp: _angular_core.OutputEmitterRef<void>;
707
+ orderDown: _angular_core.OutputEmitterRef<void>;
708
+ deleted: _angular_core.OutputEmitterRef<void>;
667
709
  get templateControl(): FormControl<IFileRecord>;
710
+ get optionsControl(): FormControl<IOption[]>;
668
711
  get fieldType(): FieldType;
669
- submit(): void;
670
- cancel(): void;
712
+ onOrderUp(): void;
713
+ onOrderDown(): void;
714
+ onDelete(): void;
715
+ onDeleteClicked(): void;
716
+ addChoice(): void;
717
+ removeOption(value: string): void;
671
718
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormFieldEditComponent, never>;
672
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormFieldEditComponent, "lib-form-field-edit", never, { "form": { "alias": "form"; "required": true; "isSignal": true; }; "editMode": { "alias": "editMode"; "required": false; "isSignal": true; }; }, { "submitted": "submitted"; "cancelled": "cancelled"; }, never, never, true, never>;
719
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormFieldEditComponent, "lib-form-field-edit", never, { "form": { "alias": "form"; "required": true; "isSignal": true; }; "canOrderUp": { "alias": "canOrderUp"; "required": false; "isSignal": true; }; "canOrderDown": { "alias": "canOrderDown"; "required": false; "isSignal": true; }; }, { "orderUp": "orderUp"; "orderDown": "orderDown"; "deleted": "deleted"; }, never, never, true, never>;
673
720
  }
674
721
 
675
722
  interface IFormGroupForm {
@@ -688,6 +735,7 @@ declare class DynamicFormForm {
688
735
  form: FormGroup<IDynamicFormForm>;
689
736
  constructor();
690
737
  get groups(): FormArray<FormGroup<IFormGroupForm>>;
738
+ groupSize(id: number): number;
691
739
  getFileFields(form: IFormDetail): IFileField[];
692
740
  orderUp(id: number): void;
693
741
  orderDown(id: number): void;
@@ -743,21 +791,44 @@ declare class DynamicFormComponent {
743
791
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DynamicFormComponent, "lib-dynamic-form", never, { "inputForm": { "alias": "inputForm"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
744
792
  }
745
793
 
794
+ interface IActiveGroup {
795
+ index: number;
796
+ group: FormGroup<IFormGroupForm>;
797
+ }
798
+ interface IActiveField {
799
+ index: number;
800
+ group_index: number;
801
+ field: FormGroup<IFormFieldForm>;
802
+ }
746
803
  declare class DynamicFormBuilderComponent {
747
804
  form: _angular_core.InputSignal<DynamicFormForm>;
748
805
  handleSubmit: _angular_core.InputSignal<boolean>;
749
806
  submitted: _angular_core.OutputEmitterRef<void>;
750
807
  dirty: _angular_core.WritableSignal<boolean>;
808
+ activeGroup: _angular_core.WritableSignal<IActiveGroup | null>;
809
+ activeField: _angular_core.WritableSignal<IActiveField | null>;
751
810
  fb: FormBuilder;
752
- groupForm: FormGroup<IFormGroupForm> | null;
753
- addGroup(): void;
754
- createGroup(): void;
755
- cancelGroup(): void;
756
- onSubmit(): void;
757
- deleteGroup(id: number): void;
811
+ onGroupClick(index: number, group: FormGroup<IFormGroupForm>): void;
812
+ onFieldClick(index: number, group_index: number, field: FormGroup<IFormFieldForm>): void;
813
+ protected getFields(group: FormGroup<IFormGroupForm>): FormArray<FormGroup<IFormFieldForm>>;
814
+ isGroupSelected(id: number): boolean;
815
+ isFieldSelected(group_id: number, id: number): boolean;
816
+ getGroupLabel(control: AbstractControl): string;
817
+ getFieldLabel(control: AbstractControl): string;
818
+ allowOrderUp(): boolean;
819
+ allowOrderDown(): boolean;
820
+ allowGroupOrderUp(): boolean;
821
+ allowGroupOrderDown(): boolean;
758
822
  onOrderUp(id: number): void;
759
823
  onOrderDown(id: number): void;
760
- getLabel(control: AbstractControl): string;
824
+ addGroup(): void;
825
+ addField(group: FormGroup<IFormGroupForm>): void;
826
+ deleteGroup(id: number): void;
827
+ deleteField(): void;
828
+ onFieldOrderUp(): void;
829
+ onFieldOrderDown(): void;
830
+ onGroupOrderUp(): void;
831
+ onGroupOrderDown(): void;
761
832
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DynamicFormBuilderComponent, never>;
762
833
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DynamicFormBuilderComponent, "lib-dynamic-form-builder", never, { "form": { "alias": "form"; "required": true; "isSignal": true; }; "handleSubmit": { "alias": "handleSubmit"; "required": false; "isSignal": true; }; }, { "submitted": "submitted"; }, never, never, true, never>;
763
834
  }
@@ -809,6 +880,7 @@ declare class ListViewComponent<D extends Identifiable, L extends Identifiable,
809
880
  noItemsCanCreateMessage: _angular_core.InputSignal<string | undefined>;
810
881
  noItemsMessage: _angular_core.InputSignal<string | undefined>;
811
882
  defaultQueries: _angular_core.InputSignal<IQuery[]>;
883
+ filters: _angular_core.InputSignal<IFilters | null>;
812
884
  embeddedMode: _angular_core.InputSignal<boolean>;
813
885
  selectedViewType: _angular_core.WritableSignal<string>;
814
886
  selected: _angular_core.OutputEmitterRef<number | null>;
@@ -834,7 +906,7 @@ declare class ListViewComponent<D extends Identifiable, L extends Identifiable,
834
906
  onSelection(id: number): void;
835
907
  protected isSelfList(): boolean;
836
908
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListViewComponent<any, any, any, any>, never>;
837
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListViewComponent<any, any, any, any>, "lib-list-view", never, { "viewType": { "alias": "viewType"; "required": false; "isSignal": true; }; "itemService": { "alias": "itemService"; "required": false; "isSignal": true; }; "listItemTemplate": { "alias": "listItemTemplate"; "required": false; "isSignal": true; }; "itemDetailTemplate": { "alias": "itemDetailTemplate"; "required": false; "isSignal": true; }; "itemHeight": { "alias": "itemHeight"; "required": false; "isSignal": true; }; "itemWidth": { "alias": "itemWidth"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "sortFields": { "alias": "sortFields"; "required": false; "isSignal": true; }; "noSelfItemsMessage": { "alias": "noSelfItemsMessage"; "required": false; "isSignal": true; }; "noItemsCanCreateMessage": { "alias": "noItemsCanCreateMessage"; "required": false; "isSignal": true; }; "noItemsMessage": { "alias": "noItemsMessage"; "required": false; "isSignal": true; }; "defaultQueries": { "alias": "defaultQueries"; "required": false; "isSignal": true; }; "embeddedMode": { "alias": "embeddedMode"; "required": false; "isSignal": true; }; }, { "selected": "selected"; }, never, never, true, never>;
909
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListViewComponent<any, any, any, any>, "lib-list-view", never, { "viewType": { "alias": "viewType"; "required": false; "isSignal": true; }; "itemService": { "alias": "itemService"; "required": false; "isSignal": true; }; "listItemTemplate": { "alias": "listItemTemplate"; "required": false; "isSignal": true; }; "itemDetailTemplate": { "alias": "itemDetailTemplate"; "required": false; "isSignal": true; }; "itemHeight": { "alias": "itemHeight"; "required": false; "isSignal": true; }; "itemWidth": { "alias": "itemWidth"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "sortFields": { "alias": "sortFields"; "required": false; "isSignal": true; }; "noSelfItemsMessage": { "alias": "noSelfItemsMessage"; "required": false; "isSignal": true; }; "noItemsCanCreateMessage": { "alias": "noItemsCanCreateMessage"; "required": false; "isSignal": true; }; "noItemsMessage": { "alias": "noItemsMessage"; "required": false; "isSignal": true; }; "defaultQueries": { "alias": "defaultQueries"; "required": false; "isSignal": true; }; "filters": { "alias": "filters"; "required": false; "isSignal": true; }; "embeddedMode": { "alias": "embeddedMode"; "required": false; "isSignal": true; }; }, { "selected": "selected"; }, never, never, true, never>;
838
910
  }
839
911
 
840
912
  declare class ListTableViewComponent implements AfterViewInit {
@@ -914,6 +986,28 @@ declare class UserEditComponent extends EditView<IPortalMemberDetail, IPortalMem
914
986
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserEditComponent, "lib-user-edit", never, {}, {}, never, never, true, never>;
915
987
  }
916
988
 
989
+ declare class UserCreateForm {
990
+ private type;
991
+ private resource_id;
992
+ constructor(type?: string, resource_id?: number | null);
993
+ private fb;
994
+ form: _angular_forms.FormGroup<{
995
+ username: FormControl<string | null>;
996
+ email: FormControl<string | null>;
997
+ first_name: FormControl<string | null>;
998
+ last_name: FormControl<string | null>;
999
+ }>;
1000
+ createItem(): IMemberInvitation;
1001
+ }
1002
+
1003
+ declare class UserCreateComponent {
1004
+ form: UserCreateForm;
1005
+ userService: UserService;
1006
+ submit(): void;
1007
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<UserCreateComponent, never>;
1008
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserCreateComponent, "lib-user-create", never, {}, {}, never, never, true, never>;
1009
+ }
1010
+
917
1011
  declare class UserComponent {
918
1012
  itemService: UserService;
919
1013
  detailView: _angular_core.Signal<UserDetailComponent | undefined>;
@@ -930,6 +1024,18 @@ declare class GroupDetailComponent extends DetailView<IGroupDetail, IGroupList,
930
1024
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<GroupDetailComponent, "lib-group-detail", never, { "showBack": { "alias": "showBack"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
931
1025
  }
932
1026
 
1027
+ declare class GroupEditComponent extends EditView<IGroupDetail, IGroupList, IGroupCreate> implements OnInit {
1028
+ selectionManager: MemberSelectionManager;
1029
+ constructor();
1030
+ ngOnInit(): void;
1031
+ get showSubmit(): boolean;
1032
+ createItem(): IGroupCreate;
1033
+ protected updateItem(item: IGroupDetail): IGroupDetail;
1034
+ onItemAndUserAvailable(item: IGroupDetail, _: IPortalMemberDetail): void;
1035
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GroupEditComponent, never>;
1036
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GroupEditComponent, "lib-group-edit", never, {}, {}, never, never, true, never>;
1037
+ }
1038
+
933
1039
  declare class GroupComponent {
934
1040
  itemService: GroupService;
935
1041
  detailView: _angular_core.Signal<GroupDetailComponent | undefined>;
@@ -979,6 +1085,7 @@ declare class OrganizationDetailComponent extends DetailView<IOrganizationDetail
979
1085
  declare class OrganizationComponent {
980
1086
  itemService: OrganizationService;
981
1087
  columns: TableColumn[];
1088
+ filters: IFilters;
982
1089
  detailView: _angular_core.Signal<OrganizationDetailComponent | undefined>;
983
1090
  onSelected(id: number | null): void;
984
1091
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OrganizationComponent, never>;
@@ -986,11 +1093,12 @@ declare class OrganizationComponent {
986
1093
  }
987
1094
 
988
1095
  declare class OrganizationEditComponent extends EditView<IOrganizationDetail, IOrganizationList, IOrganizationCreate> implements OnInit {
989
- addressService: AddressService;
990
1096
  selectionManager: MemberSelectionManager;
991
1097
  constructor();
992
1098
  ngOnInit(): void;
1099
+ get organizationService(): OrganizationService;
993
1100
  addressForm(): FormGroup<IAddressForm>;
1101
+ get showSubmit(): boolean;
994
1102
  createItem(): IOrganizationCreate;
995
1103
  protected updateItem(item: IOrganizationDetail): IOrganizationDetail;
996
1104
  onItemAndUserAvailable(item: IOrganizationDetail, _: IPortalMemberDetail): void;
@@ -998,5 +1106,5 @@ declare class OrganizationEditComponent extends EditView<IOrganizationDetail, IO
998
1106
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<OrganizationEditComponent, "lib-organization-edit", never, {}, {}, never, never, true, never>;
999
1107
  }
1000
1108
 
1001
- export { Address, AddressDetailComponent, AddressEditComponent, AddressForm, AddressService, ApiError, AvatarComponent, BackButtonComponent, DetailHeaderComponent, DetailView, DynamicFormBuilderComponent, DynamicFormComponent, DynamicFormForm, EditView, ErrorCode, FORM_FIELD_CHOICES, FeedbackComponent, FieldType, FileRecord, FileUploadComponent, FormFieldDetailComponent, FormFieldEditComponent, FormFieldValueForm, FormService, Group, GroupComponent, GroupDetailComponent, GroupService, ItemQuery, ItemService, ItemWithUserService, LeftNavComponent, LeftNavService, ListTableViewComponent, ListViewComponent, MemberSelectionManager, MockItemService, Organization, OrganizationComponent, OrganizationDetailComponent, OrganizationEditComponent, OrganizationService, Paginated, Permission, PopulatedFormComponent, PopulatedFormForm, PortalMember, REST_SERVICE_CONFIG, ResolvedPermission, RestService, SearchBarComponent, SelectTableComponent, SelectionManager, TopBarComponent, UserComponent, UserDetailComponent, UserEditComponent, UserService, getFieldTypeFromKey, getFileFieldIds };
1002
- export type { IAddressBase, IAddressCreate, IAddressDetail, IAddressForm, IAddressList, ICountry, IDynamicFormForm, IFieldFile, IFileField, IFileRecord, IForm, IFormCreate, IFormDetail, IFormFieldBase, IFormFieldCreate, IFormFieldDetail, IFormFieldValueBase, IFormFieldValueCreate, IFormFieldValueDetail, IFormFieldValueForm, IFormFieldValueUpdate, IFormGroupBase, IFormGroupCreate, IFormGroupDetail, IFormGroupUpdate, IFormUpdate, IGroupBase, IGroupCreate, IGroupDetail, IGroupList, IItemQuery, IMemberIdentifierBase, IMemberIdentifierCreate, IMemberIdentifierDetail, IOrganizationBase, IOrganizationCreate, IOrganizationDetail, IOrganizationList, IPaginated, IPermission, IPopulatedFormCreate, IPopulatedFormDetail, IPopulatedFormForm, IPopulatedFormUpdate, IPortalMemberBase, IPortalMemberCreate, IPortalMemberDetail, IPortalMemberList, IRestOptions, IServerManifest, Identifiable, LeftNavCategory, LeftNavOption, NavGroup, NavGrouping, NavOption, OptionAction, OptionActionChoice, RestServiceConfig, Selectable, TableColumn, TypeChoice };
1109
+ export { Address, AddressDetailComponent, AddressEditComponent, AddressForm, ApiError, AvatarComponent, BackButtonComponent, DetailHeaderComponent, DetailView, DynamicFormBuilderComponent, DynamicFormComponent, DynamicFormForm, EditView, ErrorCode, FORM_FIELD_CHOICES, FeedbackComponent, FieldType, FileRecord, FileUploadComponent, FormFieldDetailComponent, FormFieldEditComponent, FormFieldValueForm, FormService, Group, GroupComponent, GroupDetailComponent, GroupEditComponent, GroupService, ItemQuery, ItemService, ItemWithUserService, LeftNavComponent, LeftNavService, ListTableViewComponent, ListViewComponent, MemberSelectionManager, MockItemService, Organization, OrganizationComponent, OrganizationDetailComponent, OrganizationEditComponent, OrganizationService, Paginated, Permission, PopulatedFormComponent, PopulatedFormForm, PortalMember, REST_SERVICE_CONFIG, ResolvedPermission, RestService, SearchBarComponent, SelectTableComponent, SelectionManager, TopBarComponent, UserComponent, UserCreateComponent, UserDetailComponent, UserEditComponent, UserService, getFieldTypeFromKey, getFileFieldIds };
1110
+ export type { IAddressBase, IAddressCreate, IAddressDetail, IAddressForm, IAddressList, ICountry, IDynamicFormForm, IFieldFile, IFileField, IFileRecord, IFilter, IFilterRow, IFilters, IForm, IFormCreate, IFormDetail, IFormFieldBase, IFormFieldCreate, IFormFieldDetail, IFormFieldValueBase, IFormFieldValueCreate, IFormFieldValueDetail, IFormFieldValueForm, IFormFieldValueUpdate, IFormGroupBase, IFormGroupCreate, IFormGroupDetail, IFormGroupUpdate, IFormUpdate, IGroupBase, IGroupCreate, IGroupDetail, IGroupList, IItemQuery, IMemberIdentifierBase, IMemberIdentifierCreate, IMemberIdentifierDetail, IMemberInvitation, IOrganizationBase, IOrganizationCreate, IOrganizationDetail, IOrganizationList, IPaginated, IPermission, IPopulatedFormCreate, IPopulatedFormDetail, IPopulatedFormForm, IPopulatedFormUpdate, IPortalMemberBase, IPortalMemberCreate, IPortalMemberDetail, IPortalMemberList, IRestOptions, IServerManifest, Identifiable, LeftNavCategory, LeftNavOption, NavGroup, NavGrouping, NavOption, OptionAction, OptionActionChoice, RestServiceConfig, Selectable, TableColumn, TypeChoice };