ichec-angular-core 0.3.3 → 0.3.5

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.3",
3
+ "version": "0.3.5",
4
4
  "exports": {
5
5
  "./styles/": "./styles",
6
6
  "./package.json": {
@@ -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';
@@ -53,12 +54,16 @@ type IMemberIdentifierCreate = IMemberIdentifierBase;
53
54
  interface IMemberIdentifierDetail extends IMemberIdentifierBase {
54
55
  id: number;
55
56
  }
57
+ interface IPreferences {
58
+ notifications: string;
59
+ }
56
60
  interface IPortalMemberBase {
57
61
  username: string;
58
62
  email: string;
59
63
  first_name: string;
60
64
  last_name: string;
61
65
  phone: string;
66
+ preferences: IPreferences | null;
62
67
  }
63
68
  interface IPortalMemberCreate extends IPortalMemberBase {
64
69
  identifiers: IMemberIdentifierCreate[];
@@ -69,6 +74,15 @@ interface IPortalMemberList extends IPortalMemberBase, Identifiable {
69
74
  profile_thumbnail: string | null;
70
75
  permissions: string[];
71
76
  identifiers: IMemberIdentifierDetail[];
77
+ verified: boolean;
78
+ }
79
+ interface IMemberInvitation {
80
+ first_name: string;
81
+ last_name: string;
82
+ email: string;
83
+ username: string;
84
+ type: string;
85
+ resource_id: number | null;
72
86
  }
73
87
  type IPortalMemberDetail = IPortalMemberList;
74
88
  declare class PortalMember {
@@ -79,6 +93,7 @@ declare class PortalMember {
79
93
 
80
94
  interface IGroupBase {
81
95
  name: string;
96
+ user_set: string[];
82
97
  }
83
98
  type IGroupCreate = IGroupBase;
84
99
  interface IGroupList extends IGroupBase, Identifiable {
@@ -120,6 +135,7 @@ interface IOrganizationBase {
120
135
  description: string;
121
136
  website: string;
122
137
  members: string[];
138
+ public: boolean;
123
139
  }
124
140
  interface IOrganizationCreate extends IOrganizationBase {
125
141
  address: IAddressCreate;
@@ -172,6 +188,7 @@ interface OptionAction {
172
188
  read_only: boolean;
173
189
  max_length?: number;
174
190
  choices?: OptionActionChoice[];
191
+ children: OptionAction[];
175
192
  }
176
193
  interface IRestOptions {
177
194
  name: string;
@@ -291,6 +308,21 @@ interface IPopulatedFormUpdate {
291
308
  id: number;
292
309
  values: IFormFieldValueUpdate[];
293
310
  }
311
+ interface IFilter {
312
+ display_name: string;
313
+ key: string;
314
+ type: string;
315
+ tooltip: string;
316
+ choices: string[];
317
+ default: string;
318
+ include_if_null: boolean;
319
+ }
320
+ interface IFilterRow {
321
+ filters: IFilter[];
322
+ }
323
+ interface IFilters {
324
+ rows: IFilterRow[];
325
+ }
294
326
 
295
327
  interface LeftNavOption {
296
328
  name: string;
@@ -320,6 +352,7 @@ declare const REST_SERVICE_CONFIG: InjectionToken<RestServiceConfig>;
320
352
  declare class RestService<D extends Identifiable, L extends Identifiable = D, C = D, U extends Identifiable = D> {
321
353
  manifest: BehaviorSubject<IServerManifest | null>;
322
354
  readonly _url: string;
355
+ readonly userQuery = "user";
323
356
  config: RestServiceConfig;
324
357
  protected _http: HttpClient;
325
358
  protected cookieService: CookieService;
@@ -366,13 +399,16 @@ declare class UserService extends ItemService<IPortalMemberDetail, IPortalMember
366
399
  Service to handle IPortalMember via REST and also handle logins.
367
400
  */
368
401
  loggedInUser: BehaviorSubject<IPortalMemberList | null>;
402
+ canInvite: _angular_core.WritableSignal<boolean>;
369
403
  private document;
370
404
  readonly _url: string;
371
405
  typename: string;
372
406
  private permissions;
373
407
  login(next?: string): void;
374
408
  logout(next?: string): void;
409
+ canCreate(): boolean;
375
410
  getSelf(): Observable<IPortalMemberDetail | null>;
411
+ inviteMember(invite: IMemberInvitation): Observable<IMemberInvitation>;
376
412
  private _getSelf;
377
413
  private _selfFetchFailed;
378
414
  private _do_login;
@@ -449,18 +485,6 @@ declare class LeftNavService {
449
485
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<LeftNavService>;
450
486
  }
451
487
 
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
488
  declare class GroupService extends ItemWithUserService<IGroupDetail, IGroupList, IGroupCreate> {
465
489
  readonly _url: string;
466
490
  typename: string;
@@ -472,6 +496,12 @@ declare class GroupService extends ItemWithUserService<IGroupDetail, IGroupList,
472
496
  declare class OrganizationService extends ItemWithUserService<IOrganizationDetail, IOrganizationList, IOrganizationCreate> {
473
497
  readonly _url: string;
474
498
  typename: string;
499
+ countryOptions: _angular_core.WritableSignal<ICountry[]>;
500
+ refreshCountryOptions(): void;
501
+ protected onOptions(options: IRestOptions): void;
502
+ protected onAddressOption(option: OptionAction): void;
503
+ protected onPostActions(actions: Record<string, OptionAction>): void;
504
+ protected onCountryChoices(choices: OptionActionChoice[]): void;
475
505
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OrganizationService, never>;
476
506
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<OrganizationService>;
477
507
  }
@@ -612,46 +642,63 @@ declare class DetailHeaderComponent {
612
642
  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>;
613
643
  }
614
644
 
615
- declare class SearchBarComponent implements AfterViewInit {
645
+ declare class SearchBarComponent implements OnInit, AfterViewInit {
616
646
  itemType: _angular_core.InputSignal<string>;
617
647
  sortFields: _angular_core.InputSignal<string[]>;
618
648
  sortAscending: _angular_core.WritableSignal<boolean>;
649
+ filters: _angular_core.InputSignal<IFilters | null>;
619
650
  searchChanged: _angular_core.OutputEmitterRef<string>;
620
651
  searchFilter: FormControl<any>;
652
+ showFilters: _angular_core.WritableSignal<boolean>;
653
+ private fb;
654
+ filterForm: FormGroup | null;
655
+ ngOnInit(): void;
621
656
  ngAfterViewInit(): void;
657
+ toggleFilterVisibility(): void;
622
658
  clearSearch(): void;
623
659
  searchEntered(): void;
624
660
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchBarComponent, never>;
625
- 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>;
661
+ 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>;
626
662
  }
627
663
 
628
664
  declare class FileUploadComponent {
629
665
  control: _angular_core.InputSignal<FormControl<IFileRecord>>;
666
+ uploadCategory: _angular_core.InputSignal<string>;
667
+ allowedSizeMb: _angular_core.InputSignal<number>;
668
+ showHeading: _angular_core.InputSignal<boolean>;
669
+ error: _angular_core.WritableSignal<string>;
670
+ get accepts(): string;
671
+ get acceptTitle(): string;
672
+ get maxSize(): string;
630
673
  protected onFileUpload(event: Event): void;
674
+ isImage(): boolean;
631
675
  protected onFileUploaded(file: File): void;
632
676
  protected onPreviewLoaded(preview: string | ArrayBuffer): void;
633
677
  protected onClearLocal(): void;
634
678
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FileUploadComponent, never>;
635
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<FileUploadComponent, "lib-file-upload", never, { "control": { "alias": "control"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
679
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<FileUploadComponent, "lib-file-upload", never, { "control": { "alias": "control"; "required": true; "isSignal": true; }; "uploadCategory": { "alias": "uploadCategory"; "required": false; "isSignal": true; }; "allowedSizeMb": { "alias": "allowedSizeMb"; "required": false; "isSignal": true; }; "showHeading": { "alias": "showHeading"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
636
680
  }
637
681
 
638
682
  declare class FormFieldDetailComponent {
639
683
  readonly field: _angular_core.InputSignal<IFormFieldDetail>;
640
684
  form: _angular_core.InputSignal<FormGroup<any>>;
641
- get isValid(): boolean;
642
685
  get key(): string;
643
686
  get control(): FormControl<IFileRecord>;
644
687
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormFieldDetailComponent, never>;
645
688
  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>;
646
689
  }
647
690
 
691
+ interface IOption {
692
+ key: string;
693
+ value: string;
694
+ }
648
695
  interface IFormFieldForm {
649
696
  label: FormControl<string | null>;
650
697
  key: FormControl<string | null>;
651
698
  required: FormControl<boolean | null>;
652
699
  description: FormControl<string | null>;
653
700
  template: FormControl<IFileRecord | null>;
654
- options: FormControl<string | null>;
701
+ options: FormControl<IOption[] | null>;
655
702
  default: FormControl<string | null>;
656
703
  field_type: FormControl<string | null>;
657
704
  order: FormControl<number | null>;
@@ -662,6 +709,9 @@ declare class FormFieldEditComponent {
662
709
  availableTypes: ichec_angular_core.TypeChoice[];
663
710
  readonly FieldType: typeof FieldType;
664
711
  readonly deleteDialog: MatDialog;
712
+ protected table: _angular_core.Signal<MatTable<any> | undefined>;
713
+ protected keyControl: FormControl<string | null>;
714
+ protected valueControl: FormControl<string | null>;
665
715
  form: _angular_core.InputSignal<FormGroup<IFormFieldForm>>;
666
716
  canOrderUp: _angular_core.InputSignal<boolean>;
667
717
  canOrderDown: _angular_core.InputSignal<boolean>;
@@ -669,11 +719,14 @@ declare class FormFieldEditComponent {
669
719
  orderDown: _angular_core.OutputEmitterRef<void>;
670
720
  deleted: _angular_core.OutputEmitterRef<void>;
671
721
  get templateControl(): FormControl<IFileRecord>;
722
+ get optionsControl(): FormControl<IOption[]>;
672
723
  get fieldType(): FieldType;
673
724
  onOrderUp(): void;
674
725
  onOrderDown(): void;
675
726
  onDelete(): void;
676
727
  onDeleteClicked(): void;
728
+ addChoice(): void;
729
+ removeOption(value: string): void;
677
730
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormFieldEditComponent, never>;
678
731
  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>;
679
732
  }
@@ -839,6 +892,7 @@ declare class ListViewComponent<D extends Identifiable, L extends Identifiable,
839
892
  noItemsCanCreateMessage: _angular_core.InputSignal<string | undefined>;
840
893
  noItemsMessage: _angular_core.InputSignal<string | undefined>;
841
894
  defaultQueries: _angular_core.InputSignal<IQuery[]>;
895
+ filters: _angular_core.InputSignal<IFilters | null>;
842
896
  embeddedMode: _angular_core.InputSignal<boolean>;
843
897
  selectedViewType: _angular_core.WritableSignal<string>;
844
898
  selected: _angular_core.OutputEmitterRef<number | null>;
@@ -864,7 +918,7 @@ declare class ListViewComponent<D extends Identifiable, L extends Identifiable,
864
918
  onSelection(id: number): void;
865
919
  protected isSelfList(): boolean;
866
920
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListViewComponent<any, any, any, any>, never>;
867
- 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>;
921
+ 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>;
868
922
  }
869
923
 
870
924
  declare class ListTableViewComponent implements AfterViewInit {
@@ -944,6 +998,28 @@ declare class UserEditComponent extends EditView<IPortalMemberDetail, IPortalMem
944
998
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserEditComponent, "lib-user-edit", never, {}, {}, never, never, true, never>;
945
999
  }
946
1000
 
1001
+ declare class UserCreateForm {
1002
+ private type;
1003
+ private resource_id;
1004
+ constructor(type?: string, resource_id?: number | null);
1005
+ private fb;
1006
+ form: _angular_forms.FormGroup<{
1007
+ username: FormControl<string | null>;
1008
+ email: FormControl<string | null>;
1009
+ first_name: FormControl<string | null>;
1010
+ last_name: FormControl<string | null>;
1011
+ }>;
1012
+ createItem(): IMemberInvitation;
1013
+ }
1014
+
1015
+ declare class UserCreateComponent {
1016
+ form: UserCreateForm;
1017
+ userService: UserService;
1018
+ submit(): void;
1019
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<UserCreateComponent, never>;
1020
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserCreateComponent, "lib-user-create", never, {}, {}, never, never, true, never>;
1021
+ }
1022
+
947
1023
  declare class UserComponent {
948
1024
  itemService: UserService;
949
1025
  detailView: _angular_core.Signal<UserDetailComponent | undefined>;
@@ -960,6 +1036,18 @@ declare class GroupDetailComponent extends DetailView<IGroupDetail, IGroupList,
960
1036
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<GroupDetailComponent, "lib-group-detail", never, { "showBack": { "alias": "showBack"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
961
1037
  }
962
1038
 
1039
+ declare class GroupEditComponent extends EditView<IGroupDetail, IGroupList, IGroupCreate> implements OnInit {
1040
+ selectionManager: MemberSelectionManager;
1041
+ constructor();
1042
+ ngOnInit(): void;
1043
+ get showSubmit(): boolean;
1044
+ createItem(): IGroupCreate;
1045
+ protected updateItem(item: IGroupDetail): IGroupDetail;
1046
+ onItemAndUserAvailable(item: IGroupDetail, _: IPortalMemberDetail): void;
1047
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GroupEditComponent, never>;
1048
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<GroupEditComponent, "lib-group-edit", never, {}, {}, never, never, true, never>;
1049
+ }
1050
+
963
1051
  declare class GroupComponent {
964
1052
  itemService: GroupService;
965
1053
  detailView: _angular_core.Signal<GroupDetailComponent | undefined>;
@@ -1009,6 +1097,7 @@ declare class OrganizationDetailComponent extends DetailView<IOrganizationDetail
1009
1097
  declare class OrganizationComponent {
1010
1098
  itemService: OrganizationService;
1011
1099
  columns: TableColumn[];
1100
+ filters: IFilters | null;
1012
1101
  detailView: _angular_core.Signal<OrganizationDetailComponent | undefined>;
1013
1102
  onSelected(id: number | null): void;
1014
1103
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<OrganizationComponent, never>;
@@ -1016,10 +1105,10 @@ declare class OrganizationComponent {
1016
1105
  }
1017
1106
 
1018
1107
  declare class OrganizationEditComponent extends EditView<IOrganizationDetail, IOrganizationList, IOrganizationCreate> implements OnInit {
1019
- addressService: AddressService;
1020
1108
  selectionManager: MemberSelectionManager;
1021
1109
  constructor();
1022
1110
  ngOnInit(): void;
1111
+ get organizationService(): OrganizationService;
1023
1112
  addressForm(): FormGroup<IAddressForm>;
1024
1113
  get showSubmit(): boolean;
1025
1114
  createItem(): IOrganizationCreate;
@@ -1029,5 +1118,5 @@ declare class OrganizationEditComponent extends EditView<IOrganizationDetail, IO
1029
1118
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<OrganizationEditComponent, "lib-organization-edit", never, {}, {}, never, never, true, never>;
1030
1119
  }
1031
1120
 
1032
- 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 };
1033
- 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 };
1121
+ 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 };
1122
+ 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, IPreferences, IRestOptions, IServerManifest, Identifiable, LeftNavCategory, LeftNavOption, NavGroup, NavGrouping, NavOption, OptionAction, OptionActionChoice, RestServiceConfig, Selectable, TableColumn, TypeChoice };