carriera-intern-components 1.1.41 → 1.1.42

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.
@@ -14,7 +14,7 @@ export declare class AvatarComponent {
14
14
  * The size of the avatar in pixels.
15
15
  * @type {Size}
16
16
  */
17
- size: import("@angular/core").InputSignal<18 | 22 | 32 | 74 | 160 | 28>;
17
+ size: import("@angular/core").InputSignal<160 | 18 | 22 | 32 | 74 | 28>;
18
18
  /**
19
19
  * Whether the avatar should be rounded or not.
20
20
  * @type {boolean}
@@ -9,28 +9,21 @@ import * as i0 from "@angular/core";
9
9
  */
10
10
  export declare class DocumentPreviewComponent implements OnChanges, OnInit {
11
11
  coverMinimalMode: boolean;
12
+ cdlDetailsMode: boolean;
13
+ noTagOption: boolean;
14
+ tags: import("@angular/core").InputSignal<DocumentTag[]>;
12
15
  isCrop: import("@angular/core").WritableSignal<boolean>;
16
+ showInput: import("@angular/core").WritableSignal<boolean>;
17
+ showDeleteModal: import("@angular/core").WritableSignal<boolean>;
18
+ showTag: boolean;
19
+ selectedTag: DocumentTag | null;
20
+ inputFormControl: FormControl<any>;
13
21
  constructor();
14
22
  ngOnInit(): void;
15
23
  ngOnChanges(changes: SimpleChanges): void;
16
- noTagOption: boolean;
17
- showInput: import("@angular/core").WritableSignal<boolean>;
18
- inputFormControl: FormControl<any>;
19
24
  showFileNameInput(): void;
20
25
  hideFileNameInput(): void;
21
26
  handleEdit(event: any): void;
22
- /**
23
- * Signal that controls whether the delete modal is visible.Used to confirm the file deletion.
24
- */
25
- showDeleteModal: import("@angular/core").WritableSignal<boolean>;
26
- /**
27
- * Boolean flag indicating whether the tag popover is visible.Used to apply conditional styling or behavior.
28
- */
29
- showTag: boolean;
30
- /**
31
- * Currently selected tag for the document.
32
- */
33
- selectedTag: DocumentTag | null;
34
27
  /**
35
28
  * The application file to be displayed in the preview. This is a required input.
36
29
  * @type {InputSignal<AppFile>}
@@ -76,10 +69,6 @@ export declare class DocumentPreviewComponent implements OnChanges, OnInit {
76
69
  * Callback triggered when the tag popover is hidden. Used to update internal state.
77
70
  */
78
71
  onTagHidden(): void;
79
- /**
80
- * List of available tags for labeling the document. These are selectable within the tag popover.
81
- */
82
- tags: import("@angular/core").InputSignal<DocumentTag[]>;
83
72
  /**
84
73
  * Emits when a tag is selected or removed for the file.
85
74
  * Contains the file name and the selected tag.
@@ -104,5 +93,5 @@ export declare class DocumentPreviewComponent implements OnChanges, OnInit {
104
93
  */
105
94
  handleShare(): void;
106
95
  static ɵfac: i0.ɵɵFactoryDeclaration<DocumentPreviewComponent, never>;
107
- static ɵcmp: i0.ɵɵComponentDeclaration<DocumentPreviewComponent, "cai-document-preview", never, { "coverMinimalMode": { "alias": "coverMinimalMode"; "required": false; }; "noTagOption": { "alias": "noTagOption"; "required": false; }; "file": { "alias": "file"; "required": true; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": true; "isSignal": true; }; "tags": { "alias": "tags"; "required": false; "isSignal": true; }; }, { "onDelete": "onDelete"; "onDownload": "onDownload"; "onTagChange": "onTagChange"; }, never, never, true, never>;
96
+ static ɵcmp: i0.ɵɵComponentDeclaration<DocumentPreviewComponent, "cai-document-preview", never, { "coverMinimalMode": { "alias": "coverMinimalMode"; "required": false; }; "cdlDetailsMode": { "alias": "cdlDetailsMode"; "required": false; }; "noTagOption": { "alias": "noTagOption"; "required": false; }; "tags": { "alias": "tags"; "required": false; "isSignal": true; }; "file": { "alias": "file"; "required": true; "isSignal": true; }; "viewMode": { "alias": "viewMode"; "required": true; "isSignal": true; }; }, { "onDelete": "onDelete"; "onDownload": "onDownload"; "onTagChange": "onTagChange"; }, never, never, true, never>;
108
97
  }
@@ -38,6 +38,7 @@ export declare class DropZoneComponent {
38
38
  files: import("@angular/core").InputSignal<FileResponse[]>;
39
39
  deletedFileIds: import("@angular/core").InputSignal<number[]>;
40
40
  maxCountFiles: import("@angular/core").InputSignal<number>;
41
+ isDetailsSlider: import("@angular/core").InputSignal<boolean>;
41
42
  dropZoneVariant: typeof DropZoneVariant;
42
43
  /**
43
44
  * A input that holds an FormGroup object that is used to update the form validity when the crop mode is closed.
@@ -205,5 +206,5 @@ export declare class DropZoneComponent {
205
206
  setInvalid(): void;
206
207
  clearInvalid(): void;
207
208
  static ɵfac: i0.ɵɵFactoryDeclaration<DropZoneComponent, never>;
208
- static ɵcmp: i0.ɵɵComponentDeclaration<DropZoneComponent, "cai-drop-zone", never, { "crop": { "alias": "crop"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "rounded": { "alias": "rounded"; "required": false; "isSignal": true; }; "files": { "alias": "files"; "required": false; "isSignal": true; }; "deletedFileIds": { "alias": "deletedFileIds"; "required": false; "isSignal": true; }; "maxCountFiles": { "alias": "maxCountFiles"; "required": false; "isSignal": true; }; "parentForm": { "alias": "parentForm"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "documentTags": { "alias": "documentTags"; "required": false; "isSignal": true; }; "excludedFileTypes": { "alias": "excludedFileTypes"; "required": false; "isSignal": true; }; "fileTypes": { "alias": "fileTypes"; "required": false; "isSignal": true; }; }, { "onDeletedFileIds": "onDeletedFileIds"; "docsChange": "docsChange"; }, never, never, true, never>;
209
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropZoneComponent, "cai-drop-zone", never, { "crop": { "alias": "crop"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "rounded": { "alias": "rounded"; "required": false; "isSignal": true; }; "files": { "alias": "files"; "required": false; "isSignal": true; }; "deletedFileIds": { "alias": "deletedFileIds"; "required": false; "isSignal": true; }; "maxCountFiles": { "alias": "maxCountFiles"; "required": false; "isSignal": true; }; "isDetailsSlider": { "alias": "isDetailsSlider"; "required": false; "isSignal": true; }; "parentForm": { "alias": "parentForm"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "documentTags": { "alias": "documentTags"; "required": false; "isSignal": true; }; "excludedFileTypes": { "alias": "excludedFileTypes"; "required": false; "isSignal": true; }; "fileTypes": { "alias": "fileTypes"; "required": false; "isSignal": true; }; }, { "onDeletedFileIds": "onDeletedFileIds"; "docsChange": "docsChange"; }, never, never, true, never>;
209
210
  }
@@ -13,6 +13,6 @@ export declare const INPUT_CHARACTER_SETS: {
13
13
  readonly EMAIL_SPECIAL: readonly ["@", ".", "-", "_", "+"];
14
14
  readonly EMAIL_CHARACTERS: ("0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "." | "a" | "b" | "i" | "p" | "q" | "s" | "u" | "8" | "9" | "c" | "d" | "e" | "f" | "g" | "h" | "j" | "k" | "l" | "m" | "n" | "o" | "r" | "t" | "v" | "w" | "x" | "y" | "z" | "@" | "+" | "-" | "_")[];
15
15
  readonly SPECIAL_EXCEPT_NAME_FRIENDLY: ("*" | "." | "," | "!" | "?" | ";" | ":" | "@" | "#" | "$" | "%" | "&" | "+" | "-" | "=" | "_" | "|" | "~" | "`" | "^" | "<" | ">" | "/" | "\\" | "(" | ")" | "[" | "]" | "{" | "}" | "\"" | "'")[];
16
- readonly NAME_CHARACTER_EXCLUSIONS: ("0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "*" | "." | "8" | "9" | "," | "!" | "?" | ";" | ":" | "@" | "#" | "$" | "%" | "&" | "+" | "-" | "=" | "_" | "|" | "~" | "`" | "^" | "<" | ">" | "/" | "\\" | "(" | ")" | "[" | "]" | "{" | "}" | "\"" | "'")[];
16
+ readonly NAME_CHARACTER_EXCLUSIONS: ("0" | "1" | "2" | "3" | "4" | "5" | "*" | "6" | "7" | "." | "8" | "9" | "," | "!" | "?" | ";" | ":" | "@" | "#" | "$" | "%" | "&" | "+" | "-" | "=" | "_" | "|" | "~" | "`" | "^" | "<" | ">" | "/" | "\\" | "(" | ")" | "[" | "]" | "{" | "}" | "\"" | "'")[];
17
17
  readonly SPECIAL: ("*" | "." | "," | "!" | "?" | ";" | ":" | "@" | "#" | "$" | "%" | "&" | "+" | "-" | "=" | "_" | "|" | "~" | "`" | "^" | "<" | ">" | "/" | "\\" | "(" | ")" | "[" | "]" | "{" | "}" | "\"" | "'")[];
18
18
  };