@arsedizioni/ars-utils 21.2.198 → 21.2.199
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/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +11 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +698 -32
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.common.d.ts +19 -2
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +125 -5
package/package.json
CHANGED
|
@@ -48,6 +48,21 @@ declare const ClipperMessages: {
|
|
|
48
48
|
UPDATE_RELOAD: string;
|
|
49
49
|
};
|
|
50
50
|
|
|
51
|
+
interface EditedEventArgs<T> {
|
|
52
|
+
data: T;
|
|
53
|
+
isNew?: boolean;
|
|
54
|
+
}
|
|
55
|
+
interface EditDialogData<T> {
|
|
56
|
+
currentItem?: T;
|
|
57
|
+
isEditable?: boolean;
|
|
58
|
+
parentId?: number;
|
|
59
|
+
}
|
|
60
|
+
interface EditDialogCompleted<T> {
|
|
61
|
+
data: T;
|
|
62
|
+
dismissed?: boolean;
|
|
63
|
+
isNew?: boolean;
|
|
64
|
+
preview?: boolean;
|
|
65
|
+
}
|
|
51
66
|
declare enum ClipperServiceFlags {
|
|
52
67
|
None = 0,
|
|
53
68
|
NotifySystemErrors = 1,
|
|
@@ -1054,6 +1069,8 @@ declare class ClipperSearchUtils {
|
|
|
1054
1069
|
static getRankFromChar(value: string): number;
|
|
1055
1070
|
}
|
|
1056
1071
|
|
|
1072
|
+
declare const PropertiesColors: NameValueItem<string>[];
|
|
1073
|
+
|
|
1057
1074
|
declare class ClipperAuthInterceptor implements HttpInterceptor {
|
|
1058
1075
|
private clipperService;
|
|
1059
1076
|
private broadcastService;
|
|
@@ -1509,5 +1526,5 @@ declare class ArsClipperCommonModule {
|
|
|
1509
1526
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<ArsClipperCommonModule>;
|
|
1510
1527
|
}
|
|
1511
1528
|
|
|
1512
|
-
export { ArsClipperCommonModule, ClipperArchiveCopyMode, ClipperArchiveFileStorageType, ClipperArchiveFileStorageTypes, ClipperArchiveFileType, ClipperArchiveFileTypes, ClipperArchiveFilesSearchParams, ClipperArchiveFoldersSearchParams, ClipperAuthInterceptor, ClipperAuthors, ClipperCalendarCopyMode, ClipperCalendarSearchParams, ClipperCalendarState, ClipperCalendarStates, ClipperChannel, ClipperChannelSettings, ClipperChannels, ClipperDashboard, ClipperDocumentChangeReasons, ClipperDocumentContainer, ClipperExportDocumentsFormat, ClipperFacet, ClipperMessages, ClipperModel, ClipperModels, ClipperModule, ClipperModuleGroup, ClipperModuleGroups, ClipperModules, ClipperQueryDocumentFlags, ClipperQueryReferencesMode, ClipperRecurrenceType, ClipperRecurrenceTypes, ClipperRegions, ClipperSearchCalendarSnapshotResult, ClipperSearchFacetsSnapshot, ClipperSearchParams, ClipperSearchResult, ClipperSearchUtils, ClipperSectorTypes, ClipperSectors, ClipperSelectionMode, ClipperService, ClipperServiceFlags, ClipperSort, ClipperSources, ClipperTeamInfo, ClipperTeamMemberInfo, ClipperTeamProduct, ClipperTeamProductPermission, ClipperUpdateChannelsStateParams, ClipperUtils };
|
|
1513
|
-
export type { ClipperArchiveFileInfo, ClipperArchiveFilesCopyParams, ClipperArchiveFilesDeleteParams, ClipperArchiveFilesSearchResult, ClipperArchiveFolderTree, ClipperArchiveFoldersImportParams, ClipperArchiveFoldersSearchResult, ClipperArsEventInfo, ClipperAvailableChannel, ClipperCalendarCopyDeadlinesParams, ClipperCalendarSaveDeadlineParams, ClipperCalendarSearchResult, ClipperChannelSettingsItem, ClipperContactInfo, ClipperContactsSearchParams, ClipperDashboardItem, ClipperDashboardModelItem, ClipperDashboardResult, ClipperDayGroup, ClipperDayItem, ClipperDeadlineInfo, ClipperDeleteWorkingDocumentsParams, ClipperDocumentAnchorInfo, ClipperDocumentInfo, ClipperDocumentProperty, ClipperDocumentPropertyTracking, ClipperDocumentRelevantChunkHit, ClipperDocumentRelevants, ClipperDocumentStructure, ClipperDocumentUpdateStateParams, ClipperExportDocumentsParams, ClipperLastDaysResult, ClipperLoginInfo, ClipperLoginResult, ClipperNotifyDocumentUserPropertyParams, ClipperOTPInfo, ClipperPropertiesSearchParams, ClipperReferencesSearchParams, ClipperSearchArsEventsParams, ClipperSearchArsEventsResult, ClipperSearchCalendarSnapshotMonth, ClipperSearchFacet, ClipperSearchFacetGroup, ClipperSearchFacetsResult, ClipperSearchFilter, ClipperSendDocumentsByEmailParams, ClipperTaxonomyParams, ClipperTeamMembersSearchResult, ClipperTeamProductInfo, ClipperTeamsSearchParams, ClipperTeamsSearchResult, ClipperUserChannelInfo, ClipperUserInfo, ClipperUserLink, ClipperUserSearch, ClipperUserTrialInfo, ClipperUserWorkingDocument, SectorInfo };
|
|
1529
|
+
export { ArsClipperCommonModule, ClipperArchiveCopyMode, ClipperArchiveFileStorageType, ClipperArchiveFileStorageTypes, ClipperArchiveFileType, ClipperArchiveFileTypes, ClipperArchiveFilesSearchParams, ClipperArchiveFoldersSearchParams, ClipperAuthInterceptor, ClipperAuthors, ClipperCalendarCopyMode, ClipperCalendarSearchParams, ClipperCalendarState, ClipperCalendarStates, ClipperChannel, ClipperChannelSettings, ClipperChannels, ClipperDashboard, ClipperDocumentChangeReasons, ClipperDocumentContainer, ClipperExportDocumentsFormat, ClipperFacet, ClipperMessages, ClipperModel, ClipperModels, ClipperModule, ClipperModuleGroup, ClipperModuleGroups, ClipperModules, ClipperQueryDocumentFlags, ClipperQueryReferencesMode, ClipperRecurrenceType, ClipperRecurrenceTypes, ClipperRegions, ClipperSearchCalendarSnapshotResult, ClipperSearchFacetsSnapshot, ClipperSearchParams, ClipperSearchResult, ClipperSearchUtils, ClipperSectorTypes, ClipperSectors, ClipperSelectionMode, ClipperService, ClipperServiceFlags, ClipperSort, ClipperSources, ClipperTeamInfo, ClipperTeamMemberInfo, ClipperTeamProduct, ClipperTeamProductPermission, ClipperUpdateChannelsStateParams, ClipperUtils, PropertiesColors };
|
|
1530
|
+
export type { ClipperArchiveFileInfo, ClipperArchiveFilesCopyParams, ClipperArchiveFilesDeleteParams, ClipperArchiveFilesSearchResult, ClipperArchiveFolderTree, ClipperArchiveFoldersImportParams, ClipperArchiveFoldersSearchResult, ClipperArsEventInfo, ClipperAvailableChannel, ClipperCalendarCopyDeadlinesParams, ClipperCalendarSaveDeadlineParams, ClipperCalendarSearchResult, ClipperChannelSettingsItem, ClipperContactInfo, ClipperContactsSearchParams, ClipperDashboardItem, ClipperDashboardModelItem, ClipperDashboardResult, ClipperDayGroup, ClipperDayItem, ClipperDeadlineInfo, ClipperDeleteWorkingDocumentsParams, ClipperDocumentAnchorInfo, ClipperDocumentInfo, ClipperDocumentProperty, ClipperDocumentPropertyTracking, ClipperDocumentRelevantChunkHit, ClipperDocumentRelevants, ClipperDocumentStructure, ClipperDocumentUpdateStateParams, ClipperExportDocumentsParams, ClipperLastDaysResult, ClipperLoginInfo, ClipperLoginResult, ClipperNotifyDocumentUserPropertyParams, ClipperOTPInfo, ClipperPropertiesSearchParams, ClipperReferencesSearchParams, ClipperSearchArsEventsParams, ClipperSearchArsEventsResult, ClipperSearchCalendarSnapshotMonth, ClipperSearchFacet, ClipperSearchFacetGroup, ClipperSearchFacetsResult, ClipperSearchFilter, ClipperSendDocumentsByEmailParams, ClipperTaxonomyParams, ClipperTeamMembersSearchResult, ClipperTeamProductInfo, ClipperTeamsSearchParams, ClipperTeamsSearchResult, ClipperUserChannelInfo, ClipperUserInfo, ClipperUserLink, ClipperUserSearch, ClipperUserTrialInfo, ClipperUserWorkingDocument, EditDialogCompleted, EditDialogData, EditedEventArgs, SectorInfo };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { DestroyRef, ChangeDetectorRef, Injector, OnInit, AfterViewInit, Signal } from '@angular/core';
|
|
2
|
+
import { DestroyRef, ChangeDetectorRef, Injector, OnInit, AfterViewInit, Signal, OnDestroy } from '@angular/core';
|
|
3
3
|
import { MatPaginator, PageEvent } from '@angular/material/paginator';
|
|
4
4
|
import { MatDrawer } from '@angular/material/sidenav';
|
|
5
|
-
import { ClipperSearchFacetsSnapshot, ClipperSearchFacet, ClipperSearchFacetGroup, ClipperService, ClipperDocumentInfo, ClipperSearchParams, ClipperQueryReferencesMode, ClipperModule, ClipperModel, ClipperSearchCalendarSnapshotMonth, ClipperSearchCalendarSnapshotResult, ClipperSelectionMode, ClipperSearchResult, ClipperSort, ClipperUserInfo, ClipperUserSearch, SectorInfo, ClipperDocumentRelevants, ClipperDocumentAnchorInfo } from '@arsedizioni/ars-utils/clipper.common';
|
|
5
|
+
import { ClipperSearchFacetsSnapshot, ClipperSearchFacet, ClipperSearchFacetGroup, ClipperService, ClipperDocumentInfo, ClipperSearchParams, ClipperQueryReferencesMode, ClipperModule, ClipperModel, ClipperSearchCalendarSnapshotMonth, ClipperSearchCalendarSnapshotResult, ClipperSelectionMode, ClipperSearchResult, ClipperSort, ClipperUserInfo, ClipperUserSearch, SectorInfo, ClipperDocumentRelevants, ClipperDocumentAnchorInfo, ClipperDocumentProperty, EditDialogData, EditDialogCompleted, ClipperContactInfo } from '@arsedizioni/ars-utils/clipper.common';
|
|
6
6
|
import * as rxjs from 'rxjs';
|
|
7
7
|
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
8
8
|
import { BroadcastService, DateInterval, ThemeService, ScreenService, SelectableModel, NameValueItem, INode, ThemeType } from '@arsedizioni/ars-utils/core';
|
|
@@ -14,6 +14,7 @@ import { MatExpansionPanel } from '@angular/material/expansion';
|
|
|
14
14
|
import { MatInput } from '@angular/material/input';
|
|
15
15
|
import { MatMenu, MatMenuTrigger } from '@angular/material/menu';
|
|
16
16
|
import { MatSelectionList } from '@angular/material/list';
|
|
17
|
+
import { NgForm } from '@angular/forms';
|
|
17
18
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
18
19
|
|
|
19
20
|
declare class ClipperSearchFacetsComponent {
|
|
@@ -805,7 +806,7 @@ declare class ClipperSearchResultItemComponent implements OnInit {
|
|
|
805
806
|
protected broadcastService: BroadcastService;
|
|
806
807
|
private changeDetector;
|
|
807
808
|
readonly parent: _angular_core.InputSignal<ClipperSearchResultManager>;
|
|
808
|
-
readonly item: _angular_core.
|
|
809
|
+
readonly item: _angular_core.ModelSignal<ClipperDocumentInfo>;
|
|
809
810
|
readonly actions: _angular_core.InputSignal<MatMenu>;
|
|
810
811
|
readonly tileNoPictureUrl: _angular_core.InputSignal<string>;
|
|
811
812
|
readonly tilePictureUrl: _angular_core.InputSignal<string>;
|
|
@@ -835,7 +836,7 @@ declare class ClipperSearchResultItemComponent implements OnInit {
|
|
|
835
836
|
*/
|
|
836
837
|
protected canBeRead(): boolean;
|
|
837
838
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClipperSearchResultItemComponent, never>;
|
|
838
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClipperSearchResultItemComponent, "clipper-search-result-item", never, { "parent": { "alias": "parent"; "required": true; "isSignal": true; }; "item": { "alias": "item"; "required": true; "isSignal": true; }; "actions": { "alias": "actions"; "required": true; "isSignal": true; }; "tileNoPictureUrl": { "alias": "tileNoPictureUrl"; "required": false; "isSignal": true; }; "tilePictureUrl": { "alias": "tilePictureUrl"; "required": false; "isSignal": true; }; "isSelectable": { "alias": "isSelectable"; "required": false; "isSignal": true; }; "isReadable": { "alias": "isReadable"; "required": false; "isSignal": true; }; "isReadableModel": { "alias": "isReadableModel"; "required": false; "isSignal": true; }; "displayModifiedTitle": { "alias": "displayModifiedTitle"; "required": false; "isSignal": true; }; "displayModelName": { "alias": "displayModelName"; "required": false; "isSignal": true; }; "displayDate": { "alias": "displayDate"; "required": false; "isSignal": true; }; "displayMode": { "alias": "displayMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
839
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClipperSearchResultItemComponent, "clipper-search-result-item", never, { "parent": { "alias": "parent"; "required": true; "isSignal": true; }; "item": { "alias": "item"; "required": true; "isSignal": true; }; "actions": { "alias": "actions"; "required": true; "isSignal": true; }; "tileNoPictureUrl": { "alias": "tileNoPictureUrl"; "required": false; "isSignal": true; }; "tilePictureUrl": { "alias": "tilePictureUrl"; "required": false; "isSignal": true; }; "isSelectable": { "alias": "isSelectable"; "required": false; "isSignal": true; }; "isReadable": { "alias": "isReadable"; "required": false; "isSignal": true; }; "isReadableModel": { "alias": "isReadableModel"; "required": false; "isSignal": true; }; "displayModifiedTitle": { "alias": "displayModifiedTitle"; "required": false; "isSignal": true; }; "displayModelName": { "alias": "displayModelName"; "required": false; "isSignal": true; }; "displayDate": { "alias": "displayDate"; "required": false; "isSignal": true; }; "displayMode": { "alias": "displayMode"; "required": false; "isSignal": true; }; }, { "item": "itemChange"; }, never, never, true, never>;
|
|
839
840
|
}
|
|
840
841
|
|
|
841
842
|
interface ClipperDocumentDialogData {
|
|
@@ -1136,6 +1137,125 @@ declare class ClipperDocumentMenuComponent implements OnInit {
|
|
|
1136
1137
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClipperDocumentMenuComponent, "clipper-document-menu", never, { "useSelections": { "alias": "useSelections"; "required": false; "isSignal": true; }; "selectionSource": { "alias": "selectionSource"; "required": false; "isSignal": true; }; "parent": { "alias": "parent"; "required": true; "isSignal": true; }; "item": { "alias": "item"; "required": false; "isSignal": true; }; "isReference": { "alias": "isReference"; "required": false; "isSignal": true; }; "isReadable": { "alias": "isReadable"; "required": false; "isSignal": true; }; "isReadableModel": { "alias": "isReadableModel"; "required": false; "isSignal": true; }; "isLawInForce": { "alias": "isLawInForce"; "required": false; "isSignal": true; }; "canPrint": { "alias": "canPrint"; "required": false; "isSignal": true; }; "canFind": { "alias": "canFind"; "required": false; "isSignal": true; }; "canUseCalendar": { "alias": "canUseCalendar"; "required": false; "isSignal": true; }; "canUseArchive": { "alias": "canUseArchive"; "required": false; "isSignal": true; }; "canUseProperties": { "alias": "canUseProperties"; "required": false; "isSignal": true; }; "canUseAIAssistant": { "alias": "canUseAIAssistant"; "required": false; "isSignal": true; }; "canUseRS": { "alias": "canUseRS"; "required": false; "isSignal": true; }; "canOpenDocument": { "alias": "canOpenDocument"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1137
1138
|
}
|
|
1138
1139
|
|
|
1140
|
+
declare class ClipperPropertyBadgeComponent implements AfterViewInit, OnDestroy {
|
|
1141
|
+
private themeService;
|
|
1142
|
+
private injector;
|
|
1143
|
+
private clipperService;
|
|
1144
|
+
private broadcastService;
|
|
1145
|
+
private dialogService;
|
|
1146
|
+
private destroyRef;
|
|
1147
|
+
private overlay;
|
|
1148
|
+
private overlayRef;
|
|
1149
|
+
private resizeSub;
|
|
1150
|
+
private viewContainerRef;
|
|
1151
|
+
readonly populateContacts: _angular_core.OutputEmitterRef<SendToPopulateData>;
|
|
1152
|
+
private popupTpl;
|
|
1153
|
+
readonly property: _angular_core.ModelSignal<ClipperDocumentProperty>;
|
|
1154
|
+
protected backgroundColor: _angular_core.WritableSignal<string>;
|
|
1155
|
+
protected trackingUnopenedCount: _angular_core.Signal<number>;
|
|
1156
|
+
protected trackingOpenedCount: _angular_core.Signal<number>;
|
|
1157
|
+
protected totalTrackings: _angular_core.Signal<number>;
|
|
1158
|
+
ngOnDestroy(): void;
|
|
1159
|
+
ngAfterViewInit(): void;
|
|
1160
|
+
/**
|
|
1161
|
+
* Gets the background color for the badge, which is a mix of the property color and either black or white depending on the current theme.
|
|
1162
|
+
* @returns the calculated background color as a CSS color string
|
|
1163
|
+
*/
|
|
1164
|
+
private getBackgroundColor;
|
|
1165
|
+
/**
|
|
1166
|
+
* Shows the popup with property details at the position of the mouse event. Stops the propagation of the click event to prevent triggering other click handlers.
|
|
1167
|
+
* @param event : the mouse event that triggered the popup, used to get the cursor position for placing the popup
|
|
1168
|
+
*/
|
|
1169
|
+
protected showPopup(event: MouseEvent): void;
|
|
1170
|
+
/**
|
|
1171
|
+
* Closes the property details popup.
|
|
1172
|
+
*/
|
|
1173
|
+
protected closePopup(event?: MouseEvent): void;
|
|
1174
|
+
/**
|
|
1175
|
+
* Edits the property by opening a dialog with the PropertyEditComponent. Passes the current property as data to the dialog. Subscribes to the 'done' event of the dialog component to update the property when editing is complete. Stops the propagation of the click event to prevent triggering other click handlers.
|
|
1176
|
+
* @param event : the mouse event that triggered the edit action, used to stop propagation and prevent triggering other click handlers
|
|
1177
|
+
*/
|
|
1178
|
+
protected edit(event: MouseEvent): void;
|
|
1179
|
+
/**
|
|
1180
|
+
* Deletes the property after confirming with the user. Opens a confirmation dialog and if the user confirms, emits an event to indicate that the property should be deleted. Stops the propagation of the click event to prevent triggering other click handlers.
|
|
1181
|
+
* @param event : the mouse event that triggered the delete action, used to stop propagation and prevent triggering other click handlers
|
|
1182
|
+
*/
|
|
1183
|
+
protected delete(event: MouseEvent): void;
|
|
1184
|
+
/**
|
|
1185
|
+
* Sends the document associated with the property to email. Opens a dialog to enter email details and then calls the service to send the email. Stops the propagation of the click event to prevent triggering other click handlers.
|
|
1186
|
+
* @param event : the mouse event that triggered the send action, used to stop propagation and prevent triggering other click handlers
|
|
1187
|
+
*/
|
|
1188
|
+
protected sendTo(event: MouseEvent): void;
|
|
1189
|
+
/**
|
|
1190
|
+
* Sends the email associated with the property again. Opens a confirmation dialog and if the user confirms, calls the service to resend the email. Stops the propagation of the click event to prevent triggering other click handlers.
|
|
1191
|
+
* @param event The mouse event that triggered the resend action, used to stop propagation and prevent triggering other click handlers
|
|
1192
|
+
* @param notifyIfNotOpen A boolean flag indicating whether to notify if the property is not open
|
|
1193
|
+
*/
|
|
1194
|
+
protected sendAgain(event: MouseEvent, notifyIfNotOpen: boolean): void;
|
|
1195
|
+
/**
|
|
1196
|
+
* Refresh tracking information for the property by calling the service to get the latest trackings. Updates the property with the new tracking information. Stops the propagation of the click event to prevent triggering other click handlers.
|
|
1197
|
+
* @param event : the mouse event that triggered the refresh action, used to stop propagation and prevent triggering other click handlers
|
|
1198
|
+
*/
|
|
1199
|
+
protected refresh(event: MouseEvent): void;
|
|
1200
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClipperPropertyBadgeComponent, never>;
|
|
1201
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClipperPropertyBadgeComponent, "clipper-property-badge", never, { "property": { "alias": "property"; "required": true; "isSignal": true; }; }, { "populateContacts": "populateContacts"; "property": "propertyChange"; }, never, never, true, never>;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
declare class ClipperPropertyEditComponent implements OnInit {
|
|
1205
|
+
readonly done: _angular_core.OutputEmitterRef<ClipperDocumentProperty>;
|
|
1206
|
+
private dialogService;
|
|
1207
|
+
protected dialogData: EditDialogData<ClipperDocumentProperty>;
|
|
1208
|
+
protected dialogTitle: string;
|
|
1209
|
+
private clipperService;
|
|
1210
|
+
protected colors: NameValueItem<string>[];
|
|
1211
|
+
protected colorName(value: string): string;
|
|
1212
|
+
protected isNew: _angular_core.WritableSignal<boolean>;
|
|
1213
|
+
protected item: ClipperDocumentProperty;
|
|
1214
|
+
protected availableTeams: _angular_core.WritableSignal<NameValueItem<string>[]>;
|
|
1215
|
+
protected selectedTeam?: NameValueItem<string>;
|
|
1216
|
+
ngOnInit(): void;
|
|
1217
|
+
/**
|
|
1218
|
+
* Load teams
|
|
1219
|
+
*/
|
|
1220
|
+
private loadTeams;
|
|
1221
|
+
/**
|
|
1222
|
+
* Submit
|
|
1223
|
+
*/
|
|
1224
|
+
protected ok(): void;
|
|
1225
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClipperPropertyEditComponent, never>;
|
|
1226
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClipperPropertyEditComponent, "ng-component", never, {}, { "done": "done"; }, never, never, true, never>;
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
declare class ContactEditComponent implements OnInit {
|
|
1230
|
+
private clipperService;
|
|
1231
|
+
private dialogService;
|
|
1232
|
+
private dialogRef;
|
|
1233
|
+
private dialogData;
|
|
1234
|
+
protected readonly f: _angular_core.Signal<NgForm>;
|
|
1235
|
+
readonly done: _angular_core.OutputEmitterRef<EditDialogCompleted<ClipperContactInfo>>;
|
|
1236
|
+
protected dialogTitle: string;
|
|
1237
|
+
protected isNew: _angular_core.WritableSignal<boolean>;
|
|
1238
|
+
protected item: ClipperContactInfo;
|
|
1239
|
+
protected availableTeams: _angular_core.WritableSignal<NameValueItem<string>[]>;
|
|
1240
|
+
protected selectedTeam?: NameValueItem<string>;
|
|
1241
|
+
ngOnInit(): void;
|
|
1242
|
+
/**
|
|
1243
|
+
* Load teams
|
|
1244
|
+
*/
|
|
1245
|
+
private loadTeams;
|
|
1246
|
+
/**
|
|
1247
|
+
* Save
|
|
1248
|
+
* @param save : true if data must really be submitted because changed
|
|
1249
|
+
*/
|
|
1250
|
+
protected save(): void;
|
|
1251
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ContactEditComponent, never>;
|
|
1252
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ContactEditComponent, "ng-component", never, {}, { "done": "done"; }, never, never, true, never>;
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1255
|
+
declare class ContactsSelector {
|
|
1256
|
+
static Show(injector: Injector, canAppend?: boolean, canEdit?: boolean, onSelect?: Function): void;
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1139
1259
|
declare class ClipperDocumentsUtils {
|
|
1140
1260
|
/**
|
|
1141
1261
|
* Open a document
|
|
@@ -1157,5 +1277,5 @@ declare class ClipperDocumentsUtils {
|
|
|
1157
1277
|
static parseDocumentTitle(title: string): string;
|
|
1158
1278
|
}
|
|
1159
1279
|
|
|
1160
|
-
export { ClipperBrowserComponent, ClipperBrowserDialogComponent, ClipperDocumentComponent, ClipperDocumentIndexComponent, ClipperDocumentManager, ClipperDocumentMenuComponent, ClipperDocumentsUtils, ClipperReferencesComponent, ClipperSearchCalendarComponent, ClipperSearchFacetsComponent, ClipperSearchFreeTextHelpComponent, ClipperSearchFreeTextQueryBuilderComponent, ClipperSearchResultItemComponent, ClipperSearchResultItemDisplayMode, ClipperSearchResultManager };
|
|
1280
|
+
export { ClipperBrowserComponent, ClipperBrowserDialogComponent, ClipperDocumentComponent, ClipperDocumentIndexComponent, ClipperDocumentManager, ClipperDocumentMenuComponent, ClipperDocumentsUtils, ClipperPropertyBadgeComponent, ClipperPropertyEditComponent, ClipperReferencesComponent, ClipperSearchCalendarComponent, ClipperSearchFacetsComponent, ClipperSearchFreeTextHelpComponent, ClipperSearchFreeTextQueryBuilderComponent, ClipperSearchResultItemComponent, ClipperSearchResultItemDisplayMode, ClipperSearchResultManager, ContactEditComponent, ContactsSelector };
|
|
1161
1281
|
export type { ClipperBrowserDialogData, ClipperDocumentDialogData, ClipperDocumentIndexDialogData, ClipperDocumentIndexDialogResult, ClipperReferenceDialogResult, ClipperReferencesDialogData, SearchFreeTextQueryParams };
|