@sumaris-net/ngx-components 21.0.0-rc21 → 21.0.0-rc22
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
package/src/assets/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ngx-sumaris-components",
|
|
3
3
|
"short_name": "ngx-sumaris-components",
|
|
4
4
|
"manifest_version": 1,
|
|
5
|
-
"version": "21.0.0-
|
|
5
|
+
"version": "21.0.0-rc22",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|
|
@@ -11909,12 +11909,29 @@ declare class MessageFilter extends EntityFilter<MessageFilter, Message> {
|
|
|
11909
11909
|
protected buildFilter(): FilterFn<Message>[];
|
|
11910
11910
|
}
|
|
11911
11911
|
|
|
11912
|
+
interface AppSelectUsersModalOptions {
|
|
11913
|
+
debug?: boolean;
|
|
11914
|
+
title?: string;
|
|
11915
|
+
showFilter?: boolean;
|
|
11916
|
+
canEdit?: boolean;
|
|
11917
|
+
settingsId?: string;
|
|
11918
|
+
showMessageButton?: boolean;
|
|
11919
|
+
mobile?: boolean;
|
|
11920
|
+
multiple?: boolean;
|
|
11921
|
+
selectedUsers?: Person[];
|
|
11922
|
+
showIdColumn?: boolean;
|
|
11923
|
+
showSelectColumn?: boolean;
|
|
11924
|
+
showEmailColumn?: boolean;
|
|
11925
|
+
showPubkeyColumn?: boolean;
|
|
11926
|
+
showUpdateDateColumn?: boolean;
|
|
11927
|
+
showCreationDateColumn?: boolean;
|
|
11928
|
+
}
|
|
11912
11929
|
/**
|
|
11913
11930
|
* Interface for controllers that can open the user selection modal.
|
|
11914
11931
|
* Defined separately from the implementation to break circular dependencies.
|
|
11915
11932
|
*/
|
|
11916
11933
|
interface IUserController {
|
|
11917
|
-
openSelectUsersModal(opts?:
|
|
11934
|
+
openSelectUsersModal(opts?: Partial<AppSelectUsersModalOptions>): Promise<Person[] | undefined>;
|
|
11918
11935
|
}
|
|
11919
11936
|
declare const USER_CONTROLLER: InjectionToken<IUserController>;
|
|
11920
11937
|
|
|
@@ -11959,6 +11976,11 @@ declare class MessageModal implements OnInit, AfterViewInit, MessageModalOptions
|
|
|
11959
11976
|
}): void;
|
|
11960
11977
|
static ɵfac: i0.ɵɵFactoryDeclaration<MessageModal, [null, null, null, null, { optional: true; }]>;
|
|
11961
11978
|
static ɵcmp: i0.ɵɵComponentDeclaration<MessageModal, "app-message-modal", never, { "debug": { "alias": "debug"; "required": false; }; "title": { "alias": "title"; "required": false; }; "suggestFn": { "alias": "suggestFn"; "required": false; }; "data": { "alias": "data"; "required": false; }; "canSelectType": { "alias": "canSelectType"; "required": false; }; "canRecipientFilter": { "alias": "canRecipientFilter"; "required": false; }; "canSearchRecipients": { "alias": "canSearchRecipients"; "required": false; }; "recipientFilterCount": { "alias": "recipientFilterCount"; "required": false; }; }, {}, never, never, false, never>;
|
|
11979
|
+
static ngAcceptInputType_debug: unknown;
|
|
11980
|
+
static ngAcceptInputType_canSelectType: unknown;
|
|
11981
|
+
static ngAcceptInputType_canRecipientFilter: unknown;
|
|
11982
|
+
static ngAcceptInputType_canSearchRecipients: unknown;
|
|
11983
|
+
static ngAcceptInputType_recipientFilterCount: unknown;
|
|
11962
11984
|
}
|
|
11963
11985
|
|
|
11964
11986
|
declare class MessageService extends BaseGraphqlService<Message, MessageFilter> {
|
|
@@ -13647,23 +13669,6 @@ declare class UsersPage extends AppTable<Person, PersonFilter> implements OnInit
|
|
|
13647
13669
|
static ngAcceptInputType_showPaginator: unknown;
|
|
13648
13670
|
}
|
|
13649
13671
|
|
|
13650
|
-
interface AppSelectUsersModalOptions {
|
|
13651
|
-
debug?: boolean;
|
|
13652
|
-
title?: string;
|
|
13653
|
-
showFilter?: boolean;
|
|
13654
|
-
canEdit?: boolean;
|
|
13655
|
-
hideFooter?: boolean;
|
|
13656
|
-
showMessageButton?: boolean;
|
|
13657
|
-
mobile?: boolean;
|
|
13658
|
-
multiple?: boolean;
|
|
13659
|
-
selectedUsers?: Person[];
|
|
13660
|
-
showIdColumn?: boolean;
|
|
13661
|
-
showSelectColumn?: boolean;
|
|
13662
|
-
showEmailColumn?: boolean;
|
|
13663
|
-
showPubkeyColumn?: boolean;
|
|
13664
|
-
showUpdateDateColumn?: boolean;
|
|
13665
|
-
showCreationDateColumn?: boolean;
|
|
13666
|
-
}
|
|
13667
13672
|
interface AppSelectUsersModalState {
|
|
13668
13673
|
showFilter: boolean;
|
|
13669
13674
|
canEdit: boolean;
|