@ngageoint/mage.web-core-lib 6.2.2
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/README.md +24 -0
- package/bundles/ngageoint-mage.web-core-lib-common.umd.js +146 -0
- package/bundles/ngageoint-mage.web-core-lib-common.umd.js.map +1 -0
- package/bundles/ngageoint-mage.web-core-lib-common.umd.min.js +2 -0
- package/bundles/ngageoint-mage.web-core-lib-common.umd.min.js.map +1 -0
- package/bundles/ngageoint-mage.web-core-lib-event.umd.js +14 -0
- package/bundles/ngageoint-mage.web-core-lib-event.umd.js.map +1 -0
- package/bundles/ngageoint-mage.web-core-lib-event.umd.min.js +2 -0
- package/bundles/ngageoint-mage.web-core-lib-event.umd.min.js.map +1 -0
- package/bundles/ngageoint-mage.web-core-lib-feed.umd.js +114 -0
- package/bundles/ngageoint-mage.web-core-lib-feed.umd.js.map +1 -0
- package/bundles/ngageoint-mage.web-core-lib-feed.umd.min.js +2 -0
- package/bundles/ngageoint-mage.web-core-lib-feed.umd.min.js.map +1 -0
- package/bundles/ngageoint-mage.web-core-lib-paging.umd.js +313 -0
- package/bundles/ngageoint-mage.web-core-lib-paging.umd.js.map +1 -0
- package/bundles/ngageoint-mage.web-core-lib-paging.umd.min.js +16 -0
- package/bundles/ngageoint-mage.web-core-lib-paging.umd.min.js.map +1 -0
- package/bundles/ngageoint-mage.web-core-lib-plugin.umd.js +11 -0
- package/bundles/ngageoint-mage.web-core-lib-plugin.umd.js.map +1 -0
- package/bundles/ngageoint-mage.web-core-lib-plugin.umd.min.js +2 -0
- package/bundles/ngageoint-mage.web-core-lib-plugin.umd.min.js.map +1 -0
- package/bundles/ngageoint-mage.web-core-lib-static-icon.umd.js +391 -0
- package/bundles/ngageoint-mage.web-core-lib-static-icon.umd.js.map +1 -0
- package/bundles/ngageoint-mage.web-core-lib-static-icon.umd.min.js +2 -0
- package/bundles/ngageoint-mage.web-core-lib-static-icon.umd.min.js.map +1 -0
- package/bundles/ngageoint-mage.web-core-lib-user.umd.js +492 -0
- package/bundles/ngageoint-mage.web-core-lib-user.umd.js.map +1 -0
- package/bundles/ngageoint-mage.web-core-lib-user.umd.min.js +16 -0
- package/bundles/ngageoint-mage.web-core-lib-user.umd.min.js.map +1 -0
- package/bundles/ngageoint-mage.web-core-lib.umd.js +32 -0
- package/bundles/ngageoint-mage.web-core-lib.umd.js.map +1 -0
- package/bundles/ngageoint-mage.web-core-lib.umd.min.js +2 -0
- package/bundles/ngageoint-mage.web-core-lib.umd.min.js.map +1 -0
- package/common/mage-common.module.d.ts +7 -0
- package/common/ngageoint-mage.web-core-lib-common.d.ts +5 -0
- package/common/package.json +12 -0
- package/common/public-api.d.ts +2 -0
- package/common/xhr-img.component.d.ts +58 -0
- package/esm2015/common/mage-common.module.js +26 -0
- package/esm2015/common/ngageoint-mage.web-core-lib-common.js +5 -0
- package/esm2015/common/public-api.js +3 -0
- package/esm2015/common/xhr-img.component.js +109 -0
- package/esm2015/event/event-read.service.js +3 -0
- package/esm2015/event/event.model.js +1 -0
- package/esm2015/event/ngageoint-mage.web-core-lib-event.js +5 -0
- package/esm2015/event/public-api.js +2 -0
- package/esm2015/feed/feed.model.js +1 -0
- package/esm2015/feed/feed.service.js +105 -0
- package/esm2015/feed/ngageoint-mage.web-core-lib-feed.js +5 -0
- package/esm2015/feed/public-api.js +2 -0
- package/esm2015/mage-core-lib.module.js +20 -0
- package/esm2015/ngageoint-mage.web-core-lib.js +5 -0
- package/esm2015/paging/ngageoint-mage.web-core-lib-paging.js +5 -0
- package/esm2015/paging/paging.cdk-data-source.adapter.js +52 -0
- package/esm2015/paging/paging.model.js +25 -0
- package/esm2015/paging/public-api.js +3 -0
- package/esm2015/plugin/ngageoint-mage.web-core-lib-plugin.js +4 -0
- package/esm2015/plugin/plugin.model.js +1 -0
- package/esm2015/plugin/public-api.js +1 -0
- package/esm2015/public-api.js +5 -0
- package/esm2015/static-icon/ngageoint-mage.web-core-lib-static-icon.js +5 -0
- package/esm2015/static-icon/public-api.js +7 -0
- package/esm2015/static-icon/static-icon-form-field/static-icon-form-field.component.js +152 -0
- package/esm2015/static-icon/static-icon-img/static-icon-img.component.js +35 -0
- package/esm2015/static-icon/static-icon-select/static-icon-select.component.js +61 -0
- package/esm2015/static-icon/static-icon.model.js +10 -0
- package/esm2015/static-icon/static-icon.module.js +55 -0
- package/esm2015/static-icon/static-icon.service.js +82 -0
- package/esm2015/user/ngageoint-mage.web-core-lib-user.js +5 -0
- package/esm2015/user/public-api.js +4 -0
- package/esm2015/user/user-read.service.js +40 -0
- package/esm2015/user/user-select/user-select.component.js +165 -0
- package/esm2015/user/user.model.js +1 -0
- package/esm2015/user/user.module.js +65 -0
- package/esm5/common/mage-common.module.js +30 -0
- package/esm5/common/ngageoint-mage.web-core-lib-common.js +5 -0
- package/esm5/common/public-api.js +3 -0
- package/esm5/common/xhr-img.component.js +112 -0
- package/esm5/event/event-read.service.js +3 -0
- package/esm5/event/event.model.js +1 -0
- package/esm5/event/ngageoint-mage.web-core-lib-event.js +5 -0
- package/esm5/event/public-api.js +2 -0
- package/esm5/feed/feed.model.js +1 -0
- package/esm5/feed/feed.service.js +108 -0
- package/esm5/feed/ngageoint-mage.web-core-lib-feed.js +5 -0
- package/esm5/feed/public-api.js +2 -0
- package/esm5/mage-core-lib.module.js +24 -0
- package/esm5/ngageoint-mage.web-core-lib.js +5 -0
- package/esm5/paging/ngageoint-mage.web-core-lib-paging.js +5 -0
- package/esm5/paging/paging.cdk-data-source.adapter.js +60 -0
- package/esm5/paging/paging.model.js +25 -0
- package/esm5/paging/public-api.js +3 -0
- package/esm5/plugin/ngageoint-mage.web-core-lib-plugin.js +4 -0
- package/esm5/plugin/plugin.model.js +1 -0
- package/esm5/plugin/public-api.js +1 -0
- package/esm5/public-api.js +5 -0
- package/esm5/static-icon/ngageoint-mage.web-core-lib-static-icon.js +5 -0
- package/esm5/static-icon/public-api.js +7 -0
- package/esm5/static-icon/static-icon-form-field/static-icon-form-field.component.js +157 -0
- package/esm5/static-icon/static-icon-img/static-icon-img.component.js +38 -0
- package/esm5/static-icon/static-icon-select/static-icon-select.component.js +65 -0
- package/esm5/static-icon/static-icon.model.js +10 -0
- package/esm5/static-icon/static-icon.module.js +59 -0
- package/esm5/static-icon/static-icon.service.js +84 -0
- package/esm5/user/ngageoint-mage.web-core-lib-user.js +5 -0
- package/esm5/user/public-api.js +4 -0
- package/esm5/user/user-read.service.js +42 -0
- package/esm5/user/user-select/user-select.component.js +175 -0
- package/esm5/user/user.model.js +1 -0
- package/esm5/user/user.module.js +69 -0
- package/event/event-read.service.d.ts +11 -0
- package/event/event.model.d.ts +6 -0
- package/event/ngageoint-mage.web-core-lib-event.d.ts +5 -0
- package/event/package.json +12 -0
- package/event/public-api.d.ts +2 -0
- package/feed/feed.model.d.ts +83 -0
- package/feed/feed.service.d.ts +40 -0
- package/feed/ngageoint-mage.web-core-lib-feed.d.ts +5 -0
- package/feed/package.json +12 -0
- package/feed/public-api.d.ts +2 -0
- package/fesm2015/ngageoint-mage.web-core-lib-common.js +137 -0
- package/fesm2015/ngageoint-mage.web-core-lib-common.js.map +1 -0
- package/fesm2015/ngageoint-mage.web-core-lib-event.js +10 -0
- package/fesm2015/ngageoint-mage.web-core-lib-event.js.map +1 -0
- package/fesm2015/ngageoint-mage.web-core-lib-feed.js +111 -0
- package/fesm2015/ngageoint-mage.web-core-lib-feed.js.map +1 -0
- package/fesm2015/ngageoint-mage.web-core-lib-paging.js +83 -0
- package/fesm2015/ngageoint-mage.web-core-lib-paging.js.map +1 -0
- package/fesm2015/ngageoint-mage.web-core-lib-plugin.js +4 -0
- package/fesm2015/ngageoint-mage.web-core-lib-plugin.js.map +1 -0
- package/fesm2015/ngageoint-mage.web-core-lib-static-icon.js +379 -0
- package/fesm2015/ngageoint-mage.web-core-lib-static-icon.js.map +1 -0
- package/fesm2015/ngageoint-mage.web-core-lib-user.js +267 -0
- package/fesm2015/ngageoint-mage.web-core-lib-user.js.map +1 -0
- package/fesm2015/ngageoint-mage.web-core-lib.js +30 -0
- package/fesm2015/ngageoint-mage.web-core-lib.js.map +1 -0
- package/fesm5/ngageoint-mage.web-core-lib-common.js +142 -0
- package/fesm5/ngageoint-mage.web-core-lib-common.js.map +1 -0
- package/fesm5/ngageoint-mage.web-core-lib-event.js +10 -0
- package/fesm5/ngageoint-mage.web-core-lib-event.js.map +1 -0
- package/fesm5/ngageoint-mage.web-core-lib-feed.js +113 -0
- package/fesm5/ngageoint-mage.web-core-lib-feed.js.map +1 -0
- package/fesm5/ngageoint-mage.web-core-lib-paging.js +90 -0
- package/fesm5/ngageoint-mage.web-core-lib-paging.js.map +1 -0
- package/fesm5/ngageoint-mage.web-core-lib-plugin.js +4 -0
- package/fesm5/ngageoint-mage.web-core-lib-plugin.js.map +1 -0
- package/fesm5/ngageoint-mage.web-core-lib-static-icon.js +392 -0
- package/fesm5/ngageoint-mage.web-core-lib-static-icon.js.map +1 -0
- package/fesm5/ngageoint-mage.web-core-lib-user.js +280 -0
- package/fesm5/ngageoint-mage.web-core-lib-user.js.map +1 -0
- package/fesm5/ngageoint-mage.web-core-lib.js +33 -0
- package/fesm5/ngageoint-mage.web-core-lib.js.map +1 -0
- package/mage-core-lib.module.d.ts +6 -0
- package/ngageoint-mage.web-core-lib.d.ts +5 -0
- package/package.json +35 -0
- package/paging/ngageoint-mage.web-core-lib-paging.d.ts +5 -0
- package/paging/package.json +12 -0
- package/paging/paging.cdk-data-source.adapter.d.ts +20 -0
- package/paging/paging.model.d.ts +27 -0
- package/paging/public-api.d.ts +2 -0
- package/plugin/ngageoint-mage.web-core-lib-plugin.d.ts +5 -0
- package/plugin/package.json +12 -0
- package/plugin/plugin.model.d.ts +13 -0
- package/plugin/public-api.d.ts +1 -0
- package/public-api.d.ts +1 -0
- package/static-icon/ngageoint-mage.web-core-lib-static-icon.d.ts +5 -0
- package/static-icon/package.json +12 -0
- package/static-icon/public-api.d.ts +6 -0
- package/static-icon/static-icon-form-field/static-icon-form-field.component.d.ts +31 -0
- package/static-icon/static-icon-img/static-icon-img.component.d.ts +12 -0
- package/static-icon/static-icon-select/static-icon-select.component.d.ts +21 -0
- package/static-icon/static-icon.model.d.ts +19 -0
- package/static-icon/static-icon.module.d.ts +13 -0
- package/static-icon/static-icon.service.d.ts +20 -0
- package/user/ngageoint-mage.web-core-lib-user.d.ts +5 -0
- package/user/package.json +12 -0
- package/user/public-api.d.ts +4 -0
- package/user/user-read.service.d.ts +24 -0
- package/user/user-select/user-select.component.d.ts +38 -0
- package/user/user.model.d.ts +85 -0
- package/user/user.module.d.ts +16 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./static-icon-form-field/static-icon-form-field.component";
|
|
3
|
+
import * as i2 from "./static-icon-img/static-icon-img.component";
|
|
4
|
+
import * as i3 from "./static-icon-select/static-icon-select.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/forms";
|
|
7
|
+
import * as i6 from "@angular/material/card";
|
|
8
|
+
import * as i7 from "@ngageoint/mage.web-core-lib/common";
|
|
9
|
+
import * as i8 from "@angular/cdk/scrolling";
|
|
10
|
+
export declare class StaticIconModule {
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<StaticIconModule, [typeof i1.StaticIconFormFieldComponent, typeof i2.StaticIconImgComponent, typeof i3.StaticIconSelectComponent], [typeof i4.CommonModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof i6.MatCardModule, typeof i7.MageCommonModule, typeof i8.ScrollingModule], [typeof i1.StaticIconFormFieldComponent, typeof i2.StaticIconImgComponent, typeof i3.StaticIconSelectComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDef<StaticIconModule>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { PageOf, PagingParameters } from '@ngageoint/mage.web-core-lib/paging';
|
|
4
|
+
import { StaticIcon, StaticIconReference } from './static-icon.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export interface IconFetch extends PagingParameters {
|
|
7
|
+
searchText?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare class StaticIconService {
|
|
10
|
+
private http;
|
|
11
|
+
constructor(http: HttpClient);
|
|
12
|
+
fetchIcons(fetch?: IconFetch): Observable<PageOf<StaticIcon>>;
|
|
13
|
+
fetchIconById(id: string): Observable<StaticIcon | null>;
|
|
14
|
+
fetchIconBySourceUrl(url: string): Observable<StaticIcon>;
|
|
15
|
+
fetchIconByReference(ref: StaticIconReference): Observable<StaticIcon | null>;
|
|
16
|
+
registerIconUrl(url: string): Observable<StaticIcon>;
|
|
17
|
+
uploadIcon(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDef<StaticIconService, never>;
|
|
19
|
+
static ɵprov: i0.ɵɵInjectableDef<StaticIconService>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"main": "../bundles/ngageoint-mage.web-core-lib-user.umd.js",
|
|
3
|
+
"module": "../fesm5/ngageoint-mage.web-core-lib-user.js",
|
|
4
|
+
"es2015": "../fesm2015/ngageoint-mage.web-core-lib-user.js",
|
|
5
|
+
"esm5": "../esm5/user/ngageoint-mage.web-core-lib-user.js",
|
|
6
|
+
"esm2015": "../esm2015/user/ngageoint-mage.web-core-lib-user.js",
|
|
7
|
+
"fesm5": "../fesm5/ngageoint-mage.web-core-lib-user.js",
|
|
8
|
+
"fesm2015": "../fesm2015/ngageoint-mage.web-core-lib-user.js",
|
|
9
|
+
"typings": "ngageoint-mage.web-core-lib-user.d.ts",
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"name": "@ngageoint/mage.web-core-lib/user"
|
|
12
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { InjectionToken } from '@angular/core';
|
|
3
|
+
import { PageOf, PagingParameters } from '@ngageoint/mage.web-core-lib/paging';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import { User } from './user.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare const USER_READ_BASE_URL = "/api/next-users";
|
|
8
|
+
export declare class UserReadService {
|
|
9
|
+
private http;
|
|
10
|
+
constructor(http: HttpClient);
|
|
11
|
+
search(which: UserSearchParams): Observable<PageOf<UserSearchResult>>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDef<UserReadService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDef<UserReadService>;
|
|
14
|
+
}
|
|
15
|
+
export interface UserSearchParams extends PagingParameters {
|
|
16
|
+
term?: string | null | undefined;
|
|
17
|
+
}
|
|
18
|
+
export declare type UserSearchResult = Pick<User, 'id' | 'username' | 'displayName' | 'email' | 'active' | 'enabled'> & {
|
|
19
|
+
/**
|
|
20
|
+
* A reduction of all the phone numbers to a single string
|
|
21
|
+
*/
|
|
22
|
+
allPhones?: string | null | undefined;
|
|
23
|
+
};
|
|
24
|
+
export declare const USER_READ_SERVICE: InjectionToken<UserReadService>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { AfterViewInit, OnChanges, SimpleChanges, OnInit } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import { NgSelectComponent } from '@ng-select/ng-select';
|
|
4
|
+
import { User } from '../user.model';
|
|
5
|
+
import { UserReadService, UserSearchParams, UserSearchResult } from '../user-read.service';
|
|
6
|
+
import { Subject } from 'rxjs';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class UserSelectComponent implements OnInit, OnChanges, AfterViewInit, ControlValueAccessor {
|
|
9
|
+
private userService;
|
|
10
|
+
readonly baseFindParams: Readonly<UserSearchParams>;
|
|
11
|
+
readonly nextPageScrollThreshold = 15;
|
|
12
|
+
readonly searchTermDebounceTime = 500;
|
|
13
|
+
readonly trackByUserId: (x: User) => User['id'];
|
|
14
|
+
get loading(): boolean;
|
|
15
|
+
users: UserSearchResult[];
|
|
16
|
+
totalCount: number;
|
|
17
|
+
searchTerm$: Subject<string>;
|
|
18
|
+
currentSearchTerm: string | null;
|
|
19
|
+
userSelect: NgSelectComponent;
|
|
20
|
+
private currentFetch;
|
|
21
|
+
constructor(userService: UserReadService);
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
24
|
+
ngAfterViewInit(): void;
|
|
25
|
+
writeValue(x: User | null): void;
|
|
26
|
+
registerOnChange(fn: (...args: any[]) => any): void;
|
|
27
|
+
registerOnTouched(fn: (...args: any[]) => any): void;
|
|
28
|
+
setDisabledState(isDisabled: boolean): void;
|
|
29
|
+
onOpen(): void;
|
|
30
|
+
onScroll({ end }: {
|
|
31
|
+
start: number;
|
|
32
|
+
end: number;
|
|
33
|
+
}): void;
|
|
34
|
+
onScrollToEnd(): void;
|
|
35
|
+
fetchNextPage(): void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDef<UserSelectComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDefWithMeta<UserSelectComponent, "mage-user-select", never, {}, {}, never, never>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This type represents a MAGE user account. This is a base type that defines
|
|
3
|
+
* the properties of a persisted user that the server returns from a read
|
|
4
|
+
* operation, like a user query. This type does not necessarily reflect the
|
|
5
|
+
* properties the client would send to the server API for mutation operations.
|
|
6
|
+
*/
|
|
7
|
+
export interface User {
|
|
8
|
+
/**
|
|
9
|
+
* Unique ID of the user account
|
|
10
|
+
*/
|
|
11
|
+
id: string;
|
|
12
|
+
/**
|
|
13
|
+
* Unique name for this user account
|
|
14
|
+
*/
|
|
15
|
+
username: string;
|
|
16
|
+
displayName: string;
|
|
17
|
+
/**
|
|
18
|
+
* Whether an admin has activated this user account after initial sign-up
|
|
19
|
+
*/
|
|
20
|
+
active: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* Whether this account is enabled or diabled, typically by the manual action
|
|
23
|
+
* of an administrator
|
|
24
|
+
*/
|
|
25
|
+
enabled: boolean;
|
|
26
|
+
/**
|
|
27
|
+
* The authentication method for this user account
|
|
28
|
+
*/
|
|
29
|
+
authentication: any;
|
|
30
|
+
/**
|
|
31
|
+
* ISO-8601 date string
|
|
32
|
+
*/
|
|
33
|
+
createdAt: string;
|
|
34
|
+
/**
|
|
35
|
+
* ISO-8601 date string
|
|
36
|
+
*/
|
|
37
|
+
lastUpdated: string;
|
|
38
|
+
/**
|
|
39
|
+
* The authorization role of this user account that defines the actions this
|
|
40
|
+
* user account has permission to perform
|
|
41
|
+
*/
|
|
42
|
+
roleId: string;
|
|
43
|
+
email?: string;
|
|
44
|
+
/**
|
|
45
|
+
* URL of the image that identifies this user account in the user feed, etc.;
|
|
46
|
+
* a profile picture
|
|
47
|
+
*/
|
|
48
|
+
avatarUrl?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Map marker icon info
|
|
51
|
+
*/
|
|
52
|
+
icon?: UserIcon;
|
|
53
|
+
/**
|
|
54
|
+
* URL of the map marker icon image
|
|
55
|
+
*/
|
|
56
|
+
iconUrl?: string;
|
|
57
|
+
phones: UserPhone[];
|
|
58
|
+
/**
|
|
59
|
+
* List of events in which this user account has participated
|
|
60
|
+
*/
|
|
61
|
+
recentEventIds: number[];
|
|
62
|
+
}
|
|
63
|
+
export interface UserPhone {
|
|
64
|
+
type: string;
|
|
65
|
+
number: string;
|
|
66
|
+
}
|
|
67
|
+
export interface UserIcon {
|
|
68
|
+
/**
|
|
69
|
+
* Hex color string beginning with `#`
|
|
70
|
+
*/
|
|
71
|
+
color: string;
|
|
72
|
+
/**
|
|
73
|
+
* A standard media type, e.g., `image/png`
|
|
74
|
+
*/
|
|
75
|
+
contentType: string;
|
|
76
|
+
/**
|
|
77
|
+
* Size in bytes of the icon image
|
|
78
|
+
*/
|
|
79
|
+
size: number;
|
|
80
|
+
text: string;
|
|
81
|
+
/**
|
|
82
|
+
* The source type of the icon
|
|
83
|
+
*/
|
|
84
|
+
type: 'create' | 'upload' | 'none';
|
|
85
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./user-select/user-select.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "@angular/cdk/scrolling";
|
|
6
|
+
import * as i5 from "@angular/material/autocomplete";
|
|
7
|
+
import * as i6 from "@angular/material/dialog";
|
|
8
|
+
import * as i7 from "@angular/material/form-field";
|
|
9
|
+
import * as i8 from "@angular/material/input";
|
|
10
|
+
import * as i9 from "@angular/material/list";
|
|
11
|
+
import * as i10 from "@angular/material/select";
|
|
12
|
+
import * as i11 from "@ng-select/ng-select";
|
|
13
|
+
export declare class MageUserModule {
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDefWithMeta<MageUserModule, [typeof i1.UserSelectComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.ScrollingModule, typeof i5.MatAutocompleteModule, typeof i6.MatDialogModule, typeof i7.MatFormFieldModule, typeof i8.MatInputModule, typeof i9.MatListModule, typeof i10.MatSelectModule, typeof i11.NgSelectModule], [typeof i1.UserSelectComponent]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDef<MageUserModule>;
|
|
16
|
+
}
|