cat-documents-ng 0.1.31 → 0.1.32
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/ERROR.d.ts +7 -0
- package/Shared/constant/PERMISSIONS.d.ts +6 -0
- package/Shared/constant/SHARED.d.ts +6 -0
- package/fesm2022/cat-documents-ng.mjs +276 -113
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-container/document-container.component.d.ts +14 -2
- package/lib/document/components/document-list/document-list.component.d.ts +42 -4
- package/lib/document/components/document-viewer/document-viewer.component.d.ts +7 -2
- package/lib/document/components/folder-block/folder-block.component.d.ts +1 -1
- package/lib/document/state/document.query.d.ts +10 -0
- package/lib/document/state/document.store.d.ts +2 -0
- package/package.json +1 -1
|
@@ -33,4 +33,11 @@ export declare class ERRORS {
|
|
|
33
33
|
* @type {string}
|
|
34
34
|
*/
|
|
35
35
|
static ERROR_DOCUMENT_TYPES: string;
|
|
36
|
+
/**
|
|
37
|
+
* Error message when the file name contains invalid characters.
|
|
38
|
+
* Disallowed characters: <, >, :, ", /, \, |, ?, *
|
|
39
|
+
* @static
|
|
40
|
+
* @type {string}
|
|
41
|
+
*/
|
|
42
|
+
static ERROR_INVALID_FILENAME_CHARACTERS: string;
|
|
36
43
|
}
|
|
@@ -141,6 +141,12 @@ export declare class SHARED {
|
|
|
141
141
|
* @type {string}
|
|
142
142
|
*/
|
|
143
143
|
static UPDATE_DOCUMENT_NAME: string;
|
|
144
|
+
/**
|
|
145
|
+
* Identifier used to reference the file input element (e.g., for ViewChild or DOM access).
|
|
146
|
+
* @static
|
|
147
|
+
* @type {string}
|
|
148
|
+
*/
|
|
149
|
+
static FILE_INPUT: string;
|
|
144
150
|
}
|
|
145
151
|
/**
|
|
146
152
|
* `DUMMYDOCUMENTLIST` is a mock list of document objects used for testing and development purposes.
|