cat-documents-ng 0.1.36 → 0.2.31

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.
@@ -33,11 +33,4 @@ 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;
43
36
  }
@@ -1,5 +1,6 @@
1
1
  /**
2
2
  * Storing all permission properties.
3
+ * @export
3
4
  * @class PERMISSIONS
4
5
  * @typedef {PERMISSIONS}
5
6
  */
@@ -10,10 +11,4 @@ export declare class PERMISSIONS {
10
11
  * @type {string}
11
12
  */
12
13
  static DOCUMENT_POST: string;
13
- /**
14
- * Access permission for updating existing documents.
15
- * @static
16
- * @type {string}
17
- */
18
- static DOCUMENT_PUT: string;
19
14
  }
@@ -141,12 +141,18 @@ 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
+ static Menu: {
145
+ label: string;
146
+ items: ({
147
+ badge: string;
148
+ label: string;
149
+ icon: string;
150
+ } | {
151
+ label: string;
152
+ icon: string;
153
+ badge?: undefined;
154
+ })[];
155
+ }[];
150
156
  }
151
157
  /**
152
158
  * `DUMMYDOCUMENTLIST` is a mock list of document objects used for testing and development purposes.