cat-documents-ng 0.2.86 → 0.2.88
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/Shared/constant/SHARED.d.ts +13 -0
- package/fesm2022/cat-documents-ng.mjs +280 -67
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-search/document-search.component.d.ts +4 -0
- package/lib/document/components/folder-container/folder-container.component.d.ts +12 -0
- package/lib/document/components/sidebar/sidebar.component.d.ts +53 -6
- package/lib/document/document.module.d.ts +2 -1
- package/lib/document/models/uploaded-file-response.model.d.ts +7 -0
- package/lib/document/services/document-upload-business.service.d.ts +7 -3
- package/lib/document/services/document-upload.service.d.ts +9 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -58,6 +58,10 @@ export declare class SHARED {
|
|
|
58
58
|
* Represents an empty string.
|
|
59
59
|
*/
|
|
60
60
|
static EMPTY: string;
|
|
61
|
+
/**
|
|
62
|
+
* Represents an empty string.
|
|
63
|
+
*/
|
|
64
|
+
static STRING: string;
|
|
61
65
|
/**
|
|
62
66
|
* Represents an true.
|
|
63
67
|
* @static
|
|
@@ -228,7 +232,16 @@ export declare class SHARED {
|
|
|
228
232
|
static UPLOAD_FAILED: string;
|
|
229
233
|
static USER_LIST: string;
|
|
230
234
|
static CATEGORIES: string;
|
|
235
|
+
static UNSAVED_CHANGES_MESSAGE: string;
|
|
236
|
+
static UNSAVED_CHANGES_HEADER: string;
|
|
231
237
|
static DOCUMENT_DELETED_SUCCESSFULLY: string;
|
|
238
|
+
static UNSAVED_CHANGES_ICON: string;
|
|
239
|
+
static REMOVE: string;
|
|
240
|
+
static CANCEL: string;
|
|
241
|
+
static ACCEPT_ICON: string;
|
|
242
|
+
static REJECT_ICON: string;
|
|
243
|
+
static ACCEPT_BUTTON_STYLE_CLASS: string;
|
|
244
|
+
static REJECT_BUTTON_STYLE_CLASS: string;
|
|
232
245
|
static Menu: {
|
|
233
246
|
label: string;
|
|
234
247
|
items: ({
|