cat-documents-ng 0.3.57 → 0.3.59
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/cat-documents-ng.mjs +53 -48
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-content-viewer/document-content-viewer.component.d.ts +6 -1
- package/lib/document/components/document-viewer/document-viewer.component.d.ts +6 -1
- package/lib/document/components/document-zoom-controls/document-zoom-controls.component.d.ts +2 -1
- package/lib/document/document.module.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -2
package/lib/document/components/document-content-viewer/document-content-viewer.component.d.ts
CHANGED
|
@@ -41,6 +41,11 @@ export declare class DocumentContentViewerComponent implements OnChanges, OnInit
|
|
|
41
41
|
* @type {string}
|
|
42
42
|
*/
|
|
43
43
|
contextId?: string;
|
|
44
|
+
/**
|
|
45
|
+
* Flag to hide form elements
|
|
46
|
+
* @type {boolean}
|
|
47
|
+
*/
|
|
48
|
+
isFormHide: boolean;
|
|
44
49
|
/**
|
|
45
50
|
* Excel data for display
|
|
46
51
|
* @type {any}
|
|
@@ -255,5 +260,5 @@ export declare class DocumentContentViewerComponent implements OnChanges, OnInit
|
|
|
255
260
|
*/
|
|
256
261
|
private isCsvDataValid;
|
|
257
262
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentContentViewerComponent, never>;
|
|
258
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentContentViewerComponent, "document-content-viewer", never, { "documentUrl": { "alias": "documentUrl"; "required": false; }; "contentType": { "alias": "contentType"; "required": false; }; "documentName": { "alias": "documentName"; "required": false; }; "selectedDocument": { "alias": "selectedDocument"; "required": false; }; "contextId": { "alias": "contextId"; "required": false; }; }, {}, never, never, false, never>;
|
|
263
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentContentViewerComponent, "document-content-viewer", never, { "documentUrl": { "alias": "documentUrl"; "required": false; }; "contentType": { "alias": "contentType"; "required": false; }; "documentName": { "alias": "documentName"; "required": false; }; "selectedDocument": { "alias": "selectedDocument"; "required": false; }; "contextId": { "alias": "contextId"; "required": false; }; "isFormHide": { "alias": "isFormHide"; "required": false; }; }, {}, never, never, false, never>;
|
|
259
264
|
}
|
|
@@ -34,6 +34,11 @@ export declare class DocumentViewerComponent implements OnChanges, OnDestroy {
|
|
|
34
34
|
* @type {string}
|
|
35
35
|
*/
|
|
36
36
|
contextId?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Flag to hide form elements
|
|
39
|
+
* @type {boolean}
|
|
40
|
+
*/
|
|
41
|
+
isFormHide: boolean;
|
|
37
42
|
/**
|
|
38
43
|
* Event emitted when document status is updated to refresh the document list
|
|
39
44
|
* @type {EventEmitter<void>}
|
|
@@ -128,5 +133,5 @@ export declare class DocumentViewerComponent implements OnChanges, OnDestroy {
|
|
|
128
133
|
*/
|
|
129
134
|
private refreshDocumentData;
|
|
130
135
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentViewerComponent, never>;
|
|
131
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentViewerComponent, "document-viewer", never, { "selectedDocument": { "alias": "selectedDocument"; "required": false; }; "documentList": { "alias": "documentList"; "required": false; }; "contextId": { "alias": "contextId"; "required": false; }; }, { "documentStatusUpdated": "documentStatusUpdated"; "deleteError": "deleteError"; "deleteSuccess": "deleteSuccess"; "viewerDestroyed": "viewerDestroyed"; }, never, ["*"], false, never>;
|
|
136
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentViewerComponent, "document-viewer", never, { "selectedDocument": { "alias": "selectedDocument"; "required": false; }; "documentList": { "alias": "documentList"; "required": false; }; "contextId": { "alias": "contextId"; "required": false; }; "isFormHide": { "alias": "isFormHide"; "required": false; }; }, { "documentStatusUpdated": "documentStatusUpdated"; "deleteError": "deleteError"; "deleteSuccess": "deleteSuccess"; "viewerDestroyed": "viewerDestroyed"; }, never, ["*"], false, never>;
|
|
132
137
|
}
|
package/lib/document/components/document-zoom-controls/document-zoom-controls.component.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export declare class DocumentZoomControlsComponent implements OnInit, OnDestroy
|
|
|
8
8
|
private documentHttpService;
|
|
9
9
|
selectedDocument?: DocumentListItem;
|
|
10
10
|
contextId?: string;
|
|
11
|
+
isFormHide: boolean;
|
|
11
12
|
documentNameUpdated: EventEmitter<void>;
|
|
12
13
|
currentZoom: number;
|
|
13
14
|
private subscription;
|
|
@@ -28,5 +29,5 @@ export declare class DocumentZoomControlsComponent implements OnInit, OnDestroy
|
|
|
28
29
|
onDocumentNameChange(event: Event): void;
|
|
29
30
|
handleSaveClick(): void;
|
|
30
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentZoomControlsComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentZoomControlsComponent, "document-zoom-controls", never, { "selectedDocument": { "alias": "selectedDocument"; "required": false; }; "contextId": { "alias": "contextId"; "required": false; }; }, { "documentNameUpdated": "documentNameUpdated"; }, never, never, false, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocumentZoomControlsComponent, "document-zoom-controls", never, { "selectedDocument": { "alias": "selectedDocument"; "required": false; }; "contextId": { "alias": "contextId"; "required": false; }; "isFormHide": { "alias": "isFormHide"; "required": false; }; }, { "documentNameUpdated": "documentNameUpdated"; }, never, never, false, never>;
|
|
32
33
|
}
|
|
@@ -54,6 +54,6 @@ import * as i46 from "primeng/message";
|
|
|
54
54
|
*/
|
|
55
55
|
export declare class DocumentModule {
|
|
56
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentModule, never>;
|
|
57
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DocumentModule, [typeof i1.DocumentContainerComponent, typeof i2.FolderContainerComponent, typeof i3.FolderBlockComponent, typeof i4.DocumentListComponent, typeof i5.DocumentListItemComponent, typeof i6.DocumentUploadComponent, typeof i7.DocumentViewerComponent, typeof i8.DocumentHistoryComponent, typeof i9.DocumentContentViewerComponent, typeof i10.DocumentZoomControlsComponent, typeof i11.DocumentDirective, typeof i12.LinkedDocumentComponent, typeof i13.DocumentsMenuComponent, typeof i14.UserListComponent, typeof i15.DocumentStatusComponent, typeof i16.DocumentActionsComponent, typeof i17.DocumentSearchComponent, typeof i18.SidebarComponent], [typeof i19.CommonModule, typeof i20.AccordionModule, typeof i21.HttpClientModule, typeof i22.ButtonModule, typeof i23.SidebarModule, typeof i24.FileUploadModule, typeof i25.ProgressBarModule, typeof i26.BadgeModule, typeof i27.ListboxModule, typeof i28.CheckboxModule, typeof i29.RadioButtonModule, typeof i30.TimelineModule, typeof i31.InputTextareaModule, typeof i32.FormsModule, typeof i33.PdfViewerModule, typeof i34.NgxDocViewerModule, typeof i35.DialogModule, typeof i36.DropdownModule, typeof i37.InputTextModule, typeof i38.MenuModule, typeof i39.PanelMenuModule, typeof i40.CardModule, typeof i41.TableModule, typeof i42.SharedModule, typeof i31.InputTextareaModule, typeof i43.ToastModule, typeof i44.TooltipModule, typeof i45.MessagesModule, typeof i46.MessageModule], [typeof i1.DocumentContainerComponent, typeof i7.DocumentViewerComponent, typeof i9.DocumentContentViewerComponent, typeof i10.DocumentZoomControlsComponent, typeof i16.DocumentActionsComponent, typeof i4.DocumentListComponent, typeof i11.DocumentDirective, typeof i17.DocumentSearchComponent, typeof i18.SidebarComponent
|
|
57
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DocumentModule, [typeof i1.DocumentContainerComponent, typeof i2.FolderContainerComponent, typeof i3.FolderBlockComponent, typeof i4.DocumentListComponent, typeof i5.DocumentListItemComponent, typeof i6.DocumentUploadComponent, typeof i7.DocumentViewerComponent, typeof i8.DocumentHistoryComponent, typeof i9.DocumentContentViewerComponent, typeof i10.DocumentZoomControlsComponent, typeof i11.DocumentDirective, typeof i12.LinkedDocumentComponent, typeof i13.DocumentsMenuComponent, typeof i14.UserListComponent, typeof i15.DocumentStatusComponent, typeof i16.DocumentActionsComponent, typeof i17.DocumentSearchComponent, typeof i18.SidebarComponent], [typeof i19.CommonModule, typeof i20.AccordionModule, typeof i21.HttpClientModule, typeof i22.ButtonModule, typeof i23.SidebarModule, typeof i24.FileUploadModule, typeof i25.ProgressBarModule, typeof i26.BadgeModule, typeof i27.ListboxModule, typeof i28.CheckboxModule, typeof i29.RadioButtonModule, typeof i30.TimelineModule, typeof i31.InputTextareaModule, typeof i32.FormsModule, typeof i33.PdfViewerModule, typeof i34.NgxDocViewerModule, typeof i35.DialogModule, typeof i36.DropdownModule, typeof i37.InputTextModule, typeof i38.MenuModule, typeof i39.PanelMenuModule, typeof i40.CardModule, typeof i41.TableModule, typeof i42.SharedModule, typeof i31.InputTextareaModule, typeof i43.ToastModule, typeof i44.TooltipModule, typeof i45.MessagesModule, typeof i46.MessageModule], [typeof i1.DocumentContainerComponent, typeof i7.DocumentViewerComponent, typeof i9.DocumentContentViewerComponent, typeof i10.DocumentZoomControlsComponent, typeof i16.DocumentActionsComponent, typeof i4.DocumentListComponent, typeof i6.DocumentUploadComponent, typeof i11.DocumentDirective, typeof i17.DocumentSearchComponent, typeof i18.SidebarComponent]>;
|
|
58
58
|
static ɵinj: i0.ɵɵInjectorDeclaration<DocumentModule>;
|
|
59
59
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from './lib/document/document.module';
|
|
2
2
|
export * from './lib/document/components/document-container/document-container.component';
|
|
3
|
+
export * from './lib/document/components/document-upload/document-upload.component';
|
|
3
4
|
export * from './lib/document/components/document-viewer/document-viewer.component';
|
|
4
5
|
export * from './lib/document/components/document-content-viewer/document-content-viewer.component';
|
|
5
6
|
export * from './lib/document/components/document-zoom-controls/document-zoom-controls.component';
|
|
@@ -7,11 +8,9 @@ export * from './lib/document/components/document-actions/document-actions.compo
|
|
|
7
8
|
export * from './lib/document/components/document-history/document-history.component';
|
|
8
9
|
export * from './lib/document/components/document-list/document-list.component';
|
|
9
10
|
export * from './lib/document/components/document-search/document-search.component';
|
|
10
|
-
export * from './lib/document/components/document-upload/document-upload.component';
|
|
11
11
|
export * from './lib/document/components/sidebar/sidebar.component';
|
|
12
12
|
export * from './lib/document/models/document-history.model';
|
|
13
13
|
export * from './lib/document/models/uploaded-file-response.model';
|
|
14
|
-
export * from './lib/document/services/document-upload-business.service';
|
|
15
14
|
export * from './lib/document/services/document-table-builder.service';
|
|
16
15
|
export * from './lib/document/services/document-content-type.service';
|
|
17
16
|
export * from './lib/document/services/document-zoom.service';
|