@ieeesa-npm/presentation 0.26.5 → 0.26.7

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.
Files changed (42) hide show
  1. package/esm2022/lib/assets/constants.json +1 -11
  2. package/esm2022/lib/components/checkbox/checkbox.component.mjs +3 -3
  3. package/esm2022/lib/components/dynamic-form/dynamic-form.component.mjs +8 -28
  4. package/esm2022/lib/components/file-upload/file-upload.component.mjs +9 -125
  5. package/esm2022/lib/components/form-error/form-error.component.mjs +3 -3
  6. package/esm2022/lib/components/notification/notification.component.mjs +3 -3
  7. package/esm2022/lib/components/radio/radio.component.mjs +3 -3
  8. package/esm2022/lib/components/tabs/tabs.component.mjs +10 -30
  9. package/esm2022/lib/components/text-area/text-area.component.mjs +3 -3
  10. package/esm2022/lib/directives/dynamic-form-field/dynamic-form-field.directive.mjs +2 -14
  11. package/esm2022/lib/models/field-config.model.mjs +1 -1
  12. package/esm2022/lib/models/tab.model.mjs +1 -1
  13. package/esm2022/lib/services/file-upload.service.mjs +29 -95
  14. package/esm2022/public-api.mjs +1 -9
  15. package/fesm2022/ieeesa-npm-presentation.mjs +72 -333
  16. package/fesm2022/ieeesa-npm-presentation.mjs.map +1 -1
  17. package/lib/components/chips/chips.component.d.ts +0 -10
  18. package/lib/components/dynamic-form/dynamic-form.component.d.ts +5 -16
  19. package/lib/components/file-upload/file-upload.component.d.ts +5 -67
  20. package/lib/components/tabs/tabs.component.d.ts +1 -10
  21. package/lib/directives/dynamic-form-field/dynamic-form-field.directive.d.ts +2 -6
  22. package/lib/directives/file-upload/file-upload.directive.d.ts +1 -1
  23. package/lib/models/field-config.model.d.ts +0 -9
  24. package/lib/models/tab.model.d.ts +0 -1
  25. package/lib/services/file-upload.service.d.ts +12 -53
  26. package/package.json +1 -1
  27. package/public-api.d.ts +0 -8
  28. package/src/lib/assets/constants.json +1 -11
  29. package/esm2022/lib/models/delete-file.model.mjs +0 -2
  30. package/esm2022/lib/models/dynamic-properties.model.mjs +0 -13
  31. package/esm2022/lib/models/file-attachment.model.mjs +0 -2
  32. package/esm2022/lib/models/file-upload-payload-model.mjs +0 -2
  33. package/esm2022/lib/models/file-upload-response.model.mjs +0 -2
  34. package/esm2022/lib/models/file-upload-status.model.mjs +0 -2
  35. package/esm2022/lib/models/view-files-format.model.mjs +0 -7
  36. package/lib/models/delete-file.model.d.ts +0 -10
  37. package/lib/models/dynamic-properties.model.d.ts +0 -10
  38. package/lib/models/file-attachment.model.d.ts +0 -9
  39. package/lib/models/file-upload-payload-model.d.ts +0 -3
  40. package/lib/models/file-upload-response.model.d.ts +0 -11
  41. package/lib/models/file-upload-status.model.d.ts +0 -7
  42. package/lib/models/view-files-format.model.d.ts +0 -4
@@ -1,10 +0,0 @@
1
- export interface DeleteFilePayload {
2
- [key: string]: any;
3
- }
4
- export interface DeleteFileResponse {
5
- status: boolean;
6
- message: string;
7
- body: {
8
- message: string;
9
- };
10
- }
@@ -1,10 +0,0 @@
1
- export declare enum DynamicProperties {
2
- EVENT_ID = "eventId",
3
- MEETING_ID = "meetingId",
4
- ROUTE_PATHS = "routePaths",
5
- API_BASE_URL = "apiBaseURL",
6
- USER_PERMISSIONS = "userPermissions",
7
- ACTION_TYPE = "actionType",
8
- IS_VIEW_ONLY = "isViewOnly",
9
- IS_MEMBER_OF_GROUP = "isMemberOfGroup"
10
- }
@@ -1,9 +0,0 @@
1
- export interface FileAttachment {
2
- agendaItemId: string;
3
- agendaId: string;
4
- s3FilePath: string;
5
- fileName: string;
6
- }
7
- export interface FileAttachmentPayload {
8
- payload: FileAttachment[];
9
- }
@@ -1,3 +0,0 @@
1
- export interface FileUploadPayload {
2
- [key: string]: any;
3
- }
@@ -1,11 +0,0 @@
1
- export interface FileUploadBodyResponse {
2
- fileName: string;
3
- preSignedUrl: string;
4
- s3Path: string;
5
- errorMessage?: string | null;
6
- }
7
- export interface FileUploadResponse {
8
- status: boolean;
9
- body: FileUploadBodyResponse[];
10
- message: string;
11
- }
@@ -1,7 +0,0 @@
1
- export interface FileUploadStatus {
2
- filesUploadedSuccessfullyCount: number;
3
- filesNamesUploadFailed: string[];
4
- alreadyExistsFiles: string[];
5
- isUploadingStart: boolean;
6
- uploadedFiles?: string[];
7
- }
@@ -1,4 +0,0 @@
1
- export declare enum ViewFilesFormat {
2
- DEFAULT = "default",
3
- BOTTOM = "bottom"
4
- }