ichec-angular-core 0.3.12 → 0.3.13
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
|
@@ -57,6 +57,16 @@ interface IMemberIdentifierDetail extends IMemberIdentifierBase {
|
|
|
57
57
|
interface IPreferences {
|
|
58
58
|
notifications: string;
|
|
59
59
|
}
|
|
60
|
+
interface IFeedbackCreate {
|
|
61
|
+
comments: string;
|
|
62
|
+
}
|
|
63
|
+
interface IFeedbackDetail extends Identifiable {
|
|
64
|
+
comments: string;
|
|
65
|
+
}
|
|
66
|
+
declare class Feedback {
|
|
67
|
+
static typename: string;
|
|
68
|
+
static plural: string;
|
|
69
|
+
}
|
|
60
70
|
interface IPortalMemberBase {
|
|
61
71
|
username: string;
|
|
62
72
|
email: string;
|
|
@@ -237,6 +247,7 @@ interface IFormFieldBase {
|
|
|
237
247
|
order: number;
|
|
238
248
|
field_type: string;
|
|
239
249
|
description: string;
|
|
250
|
+
tooltip: string;
|
|
240
251
|
default: string;
|
|
241
252
|
options: string | null;
|
|
242
253
|
}
|
|
@@ -371,6 +382,7 @@ interface IRequestBase {
|
|
|
371
382
|
interface IServerManifest {
|
|
372
383
|
login_url: string;
|
|
373
384
|
logout_url: string;
|
|
385
|
+
docs_url: string;
|
|
374
386
|
supports_cors: boolean;
|
|
375
387
|
}
|
|
376
388
|
declare const REST_SERVICE_CONFIG: InjectionToken<RestServiceConfig>;
|
|
@@ -549,7 +561,7 @@ declare abstract class DetailView<D extends Identifiable, L extends Identifiable
|
|
|
549
561
|
protected location: Location;
|
|
550
562
|
readonly deleteDialog: MatDialog;
|
|
551
563
|
constructor(itemService: ItemService<D, L, C, U>);
|
|
552
|
-
onInit(): void;
|
|
564
|
+
onInit(embedded?: boolean): void;
|
|
553
565
|
onSelection(id: number | null): void;
|
|
554
566
|
title(): string;
|
|
555
567
|
onItemAvailable(item: D): void;
|
|
@@ -730,6 +742,7 @@ interface IFormFieldForm {
|
|
|
730
742
|
key: FormControl<string | null>;
|
|
731
743
|
required: FormControl<boolean | null>;
|
|
732
744
|
description: FormControl<string | null>;
|
|
745
|
+
tooltip: FormControl<string | null>;
|
|
733
746
|
template: FormControl<IFileRecord | null>;
|
|
734
747
|
options: FormControl<IOption[] | null>;
|
|
735
748
|
default: FormControl<string | null>;
|
|
@@ -901,7 +914,7 @@ declare class ListDataSource<D extends Identifiable, L extends Identifiable, C =
|
|
|
901
914
|
hasFetched: _angular_core.WritableSignal<boolean>;
|
|
902
915
|
sourceIsEmpty: _angular_core.Signal<boolean>;
|
|
903
916
|
private consumerType;
|
|
904
|
-
|
|
917
|
+
items: BehaviorSubject<L[]>;
|
|
905
918
|
itemService: ItemService<D, L, C, U>;
|
|
906
919
|
private subscription;
|
|
907
920
|
private fetchedPages;
|
|
@@ -917,6 +930,19 @@ declare class ListDataSource<D extends Identifiable, L extends Identifiable, C =
|
|
|
917
930
|
disconnect(): void;
|
|
918
931
|
}
|
|
919
932
|
|
|
933
|
+
declare class ListScrollViewComponent {
|
|
934
|
+
itemHeight: _angular_core.InputSignal<number>;
|
|
935
|
+
itemWidth: _angular_core.InputSignal<string>;
|
|
936
|
+
dataSource: _angular_core.InputSignal<ListDataSource<any, any, any, any> | undefined>;
|
|
937
|
+
listItemTemplate: _angular_core.InputSignal<TemplateRef<unknown> | null | undefined>;
|
|
938
|
+
routerMode: _angular_core.InputSignal<boolean>;
|
|
939
|
+
selection: _angular_core.WritableSignal<number | null>;
|
|
940
|
+
selected: _angular_core.OutputEmitterRef<number | null>;
|
|
941
|
+
onSelected(id: number | null): void;
|
|
942
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListScrollViewComponent, never>;
|
|
943
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListScrollViewComponent, "lib-list-scroll-view", never, { "itemHeight": { "alias": "itemHeight"; "required": false; "isSignal": true; }; "itemWidth": { "alias": "itemWidth"; "required": false; "isSignal": true; }; "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "listItemTemplate": { "alias": "listItemTemplate"; "required": false; "isSignal": true; }; "routerMode": { "alias": "routerMode"; "required": false; "isSignal": true; }; }, { "selected": "selected"; }, never, never, true, never>;
|
|
944
|
+
}
|
|
945
|
+
|
|
920
946
|
declare class ListViewComponent<D extends Identifiable, L extends Identifiable, C = D, U extends Identifiable = D> implements OnInit, AfterViewInit {
|
|
921
947
|
viewType: _angular_core.InputSignal<string>;
|
|
922
948
|
itemService: _angular_core.InputSignal<ItemService<D, L, C, U> | undefined>;
|
|
@@ -938,6 +964,7 @@ declare class ListViewComponent<D extends Identifiable, L extends Identifiable,
|
|
|
938
964
|
columnNames: _angular_core.Signal<string[]>;
|
|
939
965
|
fb: FormBuilder;
|
|
940
966
|
searchForm: _angular_core.WritableSignal<SearchForm>;
|
|
967
|
+
scrollView: _angular_core.Signal<ListScrollViewComponent | undefined>;
|
|
941
968
|
get resolvedItemWidth(): string;
|
|
942
969
|
ngOnInit(): void;
|
|
943
970
|
ngAfterViewInit(): void;
|
|
@@ -947,9 +974,10 @@ declare class ListViewComponent<D extends Identifiable, L extends Identifiable,
|
|
|
947
974
|
title(): string;
|
|
948
975
|
isTableView(): boolean;
|
|
949
976
|
resetDataSource(): void;
|
|
977
|
+
onSearchItems(items: L[]): void;
|
|
950
978
|
reset(): void;
|
|
951
979
|
viewChanged(event: MatButtonToggleChange): void;
|
|
952
|
-
onSelection(id: number): void;
|
|
980
|
+
onSelection(id: number | null): void;
|
|
953
981
|
protected isSelfList(): boolean;
|
|
954
982
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListViewComponent<any, any, any, any>, never>;
|
|
955
983
|
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; }; "noSelfItemsMessage": { "alias": "noSelfItemsMessage"; "required": false; "isSignal": true; }; "noItemsCanCreateMessage": { "alias": "noItemsCanCreateMessage"; "required": false; "isSignal": true; }; "noItemsMessage": { "alias": "noItemsMessage"; "required": false; "isSignal": true; }; "searchFields": { "alias": "searchFields"; "required": true; "isSignal": true; }; "embeddedMode": { "alias": "embeddedMode"; "required": false; "isSignal": true; }; }, { "selected": "selected"; }, never, never, true, never>;
|
|
@@ -1003,7 +1031,10 @@ declare class LeftNavComponent {
|
|
|
1003
1031
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LeftNavComponent, "lib-left-nav", never, { "background": { "alias": "background"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1004
1032
|
}
|
|
1005
1033
|
|
|
1006
|
-
declare class FeedbackComponent {
|
|
1034
|
+
declare class FeedbackComponent extends EditView<IFeedbackDetail, IFeedbackDetail, IFeedbackCreate> implements OnInit {
|
|
1035
|
+
helpLink: _angular_core.WritableSignal<string>;
|
|
1036
|
+
constructor();
|
|
1037
|
+
ngOnInit(): void;
|
|
1007
1038
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FeedbackComponent, never>;
|
|
1008
1039
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FeedbackComponent, "lib-feedback", never, {}, {}, never, never, true, never>;
|
|
1009
1040
|
}
|
|
@@ -1164,5 +1195,5 @@ declare class OrganizationEditComponent extends EditView<IOrganizationDetail, IO
|
|
|
1164
1195
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OrganizationEditComponent, "lib-organization-edit", never, {}, {}, never, never, true, never>;
|
|
1165
1196
|
}
|
|
1166
1197
|
|
|
1167
|
-
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, SearchFields, SelectTableComponent, SelectionManager, TopBarComponent, UserComponent, UserCreateComponent, UserCreateForm, UserDetailComponent, UserEditComponent, UserService, getFieldTypeFromKey, getFileFieldIds, getFilter };
|
|
1168
|
-
export type { IAddressBase, IAddressCreate, IAddressDetail, IAddressForm, IAddressList, ICountry, IDynamicFormForm, IFieldFile, IFileField, IFileRecord, IFilter, IFilterChoice, 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, IQuery, IRestOptions, ISearchFields, IServerManifest, ISortField, IUserCreateForm, Identifiable, LeftNavCategory, LeftNavOption, NavGroup, NavGrouping, NavOption, OptionAction, OptionActionChoice, RestServiceConfig, Selectable, TableColumn, TypeChoice };
|
|
1198
|
+
export { Address, AddressDetailComponent, AddressEditComponent, AddressForm, ApiError, AvatarComponent, BackButtonComponent, DetailHeaderComponent, DetailView, DynamicFormBuilderComponent, DynamicFormComponent, DynamicFormForm, EditView, ErrorCode, FORM_FIELD_CHOICES, Feedback, 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, SearchFields, SelectTableComponent, SelectionManager, TopBarComponent, UserComponent, UserCreateComponent, UserCreateForm, UserDetailComponent, UserEditComponent, UserService, getFieldTypeFromKey, getFileFieldIds, getFilter };
|
|
1199
|
+
export type { IAddressBase, IAddressCreate, IAddressDetail, IAddressForm, IAddressList, ICountry, IDynamicFormForm, IFeedbackCreate, IFeedbackDetail, IFieldFile, IFileField, IFileRecord, IFilter, IFilterChoice, 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, IQuery, IRestOptions, ISearchFields, IServerManifest, ISortField, IUserCreateForm, Identifiable, LeftNavCategory, LeftNavOption, NavGroup, NavGrouping, NavOption, OptionAction, OptionActionChoice, RestServiceConfig, Selectable, TableColumn, TypeChoice };
|