@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.
- package/esm2022/lib/assets/constants.json +1 -11
- package/esm2022/lib/components/checkbox/checkbox.component.mjs +3 -3
- package/esm2022/lib/components/dynamic-form/dynamic-form.component.mjs +8 -28
- package/esm2022/lib/components/file-upload/file-upload.component.mjs +9 -125
- package/esm2022/lib/components/form-error/form-error.component.mjs +3 -3
- package/esm2022/lib/components/notification/notification.component.mjs +3 -3
- package/esm2022/lib/components/radio/radio.component.mjs +3 -3
- package/esm2022/lib/components/tabs/tabs.component.mjs +10 -30
- package/esm2022/lib/components/text-area/text-area.component.mjs +3 -3
- package/esm2022/lib/directives/dynamic-form-field/dynamic-form-field.directive.mjs +2 -14
- package/esm2022/lib/models/field-config.model.mjs +1 -1
- package/esm2022/lib/models/tab.model.mjs +1 -1
- package/esm2022/lib/services/file-upload.service.mjs +29 -95
- package/esm2022/public-api.mjs +1 -9
- package/fesm2022/ieeesa-npm-presentation.mjs +72 -333
- package/fesm2022/ieeesa-npm-presentation.mjs.map +1 -1
- package/lib/components/chips/chips.component.d.ts +0 -10
- package/lib/components/dynamic-form/dynamic-form.component.d.ts +5 -16
- package/lib/components/file-upload/file-upload.component.d.ts +5 -67
- package/lib/components/tabs/tabs.component.d.ts +1 -10
- package/lib/directives/dynamic-form-field/dynamic-form-field.directive.d.ts +2 -6
- package/lib/directives/file-upload/file-upload.directive.d.ts +1 -1
- package/lib/models/field-config.model.d.ts +0 -9
- package/lib/models/tab.model.d.ts +0 -1
- package/lib/services/file-upload.service.d.ts +12 -53
- package/package.json +1 -1
- package/public-api.d.ts +0 -8
- package/src/lib/assets/constants.json +1 -11
- package/esm2022/lib/models/delete-file.model.mjs +0 -2
- package/esm2022/lib/models/dynamic-properties.model.mjs +0 -13
- package/esm2022/lib/models/file-attachment.model.mjs +0 -2
- package/esm2022/lib/models/file-upload-payload-model.mjs +0 -2
- package/esm2022/lib/models/file-upload-response.model.mjs +0 -2
- package/esm2022/lib/models/file-upload-status.model.mjs +0 -2
- package/esm2022/lib/models/view-files-format.model.mjs +0 -7
- package/lib/models/delete-file.model.d.ts +0 -10
- package/lib/models/dynamic-properties.model.d.ts +0 -10
- package/lib/models/file-attachment.model.d.ts +0 -9
- package/lib/models/file-upload-payload-model.d.ts +0 -3
- package/lib/models/file-upload-response.model.d.ts +0 -11
- package/lib/models/file-upload-status.model.d.ts +0 -7
- package/lib/models/view-files-format.model.d.ts +0 -4
|
@@ -238,13 +238,6 @@ export declare class ChipsComponent implements OnInit, OnDestroy {
|
|
|
238
238
|
allowedFileFormat: string;
|
|
239
239
|
browseFiles: string;
|
|
240
240
|
uploadProgress: string;
|
|
241
|
-
upload: string;
|
|
242
|
-
mb: string;
|
|
243
|
-
uploadFor: string;
|
|
244
|
-
uploadErrorMsg: string;
|
|
245
|
-
of: string;
|
|
246
|
-
filesUploaded: string;
|
|
247
|
-
fileAlreadyExists: string;
|
|
248
241
|
};
|
|
249
242
|
ariaLabel: {
|
|
250
243
|
fileUpload: string;
|
|
@@ -281,9 +274,6 @@ export declare class ChipsComponent implements OnInit, OnDestroy {
|
|
|
281
274
|
"2064": string;
|
|
282
275
|
};
|
|
283
276
|
};
|
|
284
|
-
limit: {
|
|
285
|
-
maxFileUpload: number;
|
|
286
|
-
};
|
|
287
277
|
};
|
|
288
278
|
list: {
|
|
289
279
|
defaultIndentation: number;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterContentInit,
|
|
1
|
+
import { AfterContentInit, EventEmitter, OnInit, QueryList } from '@angular/core';
|
|
2
2
|
import { FormArray, FormBuilder, FormControl, FormGroup } from '@angular/forms';
|
|
3
3
|
import { FormModel } from '../../models/form.model';
|
|
4
4
|
import { FieldConfig } from '../../models/field-config.model';
|
|
@@ -14,7 +14,6 @@ import { SelectOpenedState } from '../../models/select-opened-state.model';
|
|
|
14
14
|
import { RadioOption } from '../../models/radio-option.model';
|
|
15
15
|
import { IconButton } from '../../models/icon-button.model';
|
|
16
16
|
import { AutoCompleteOption } from '../../models/autocomplete-option.model';
|
|
17
|
-
import { FileUploadStatus } from '../../models/file-upload-status.model';
|
|
18
17
|
import * as i0 from "@angular/core";
|
|
19
18
|
/**
|
|
20
19
|
* Creates a reactive form dynamically based on the passed form field configuration and handles the form events.
|
|
@@ -23,9 +22,8 @@ import * as i0 from "@angular/core";
|
|
|
23
22
|
* @implements {OnInit}
|
|
24
23
|
* @implements {AfterContentInit}
|
|
25
24
|
*/
|
|
26
|
-
export declare class DynamicFormComponent implements OnInit, AfterContentInit
|
|
25
|
+
export declare class DynamicFormComponent implements OnInit, AfterContentInit {
|
|
27
26
|
private fb;
|
|
28
|
-
private elementRef;
|
|
29
27
|
formFields: QueryList<DynamicFormFieldDirective>;
|
|
30
28
|
private _formGroups;
|
|
31
29
|
/**
|
|
@@ -48,9 +46,6 @@ export declare class DynamicFormComponent implements OnInit, AfterContentInit, A
|
|
|
48
46
|
*/
|
|
49
47
|
set searchResponse(value: any);
|
|
50
48
|
get searchResponse(): any;
|
|
51
|
-
private _fileUploadStatus;
|
|
52
|
-
get fileUploadStatus(): FileUploadStatus;
|
|
53
|
-
set fileUploadStatus(value: FileUploadStatus);
|
|
54
49
|
colWidth: FormGrid;
|
|
55
50
|
isLegendVisible: boolean;
|
|
56
51
|
rightButtonLabel: string;
|
|
@@ -58,7 +53,6 @@ export declare class DynamicFormComponent implements OnInit, AfterContentInit, A
|
|
|
58
53
|
isSubmitButtonDisabled: boolean;
|
|
59
54
|
isLeftButtonDisabled: boolean;
|
|
60
55
|
isLeftButtonNeeded: boolean;
|
|
61
|
-
isRightButtonNeeded: boolean;
|
|
62
56
|
actionButtonAlign: AlignType;
|
|
63
57
|
alignmentType: typeof AlignType;
|
|
64
58
|
formSubmit: EventEmitter<any>;
|
|
@@ -87,7 +81,7 @@ export declare class DynamicFormComponent implements OnInit, AfterContentInit, A
|
|
|
87
81
|
formTimeSelected: EventEmitter<SelectedTime>;
|
|
88
82
|
supportTextLinkClick: EventEmitter<LinkEventEmitType>;
|
|
89
83
|
formSlideToggleChange: EventEmitter<SlideToggleOption>;
|
|
90
|
-
formFileUpload: EventEmitter<
|
|
84
|
+
formFileUpload: EventEmitter<File | FileList>;
|
|
91
85
|
dropdownOpenedChange: EventEmitter<SelectOpenedState>;
|
|
92
86
|
formColorPickerChange: EventEmitter<string>;
|
|
93
87
|
formRadioOptionSelected: EventEmitter<RadioOption>;
|
|
@@ -100,7 +94,7 @@ export declare class DynamicFormComponent implements OnInit, AfterContentInit, A
|
|
|
100
94
|
formGroupArray: FormGroup[];
|
|
101
95
|
formControlArray: any[];
|
|
102
96
|
legendsArray: string[];
|
|
103
|
-
constructor(fb: FormBuilder
|
|
97
|
+
constructor(fb: FormBuilder);
|
|
104
98
|
/**
|
|
105
99
|
* Implementation of ngOnInit lifecycle hook method to create form group
|
|
106
100
|
* @memberof DynamicFormComponent
|
|
@@ -111,11 +105,6 @@ export declare class DynamicFormComponent implements OnInit, AfterContentInit, A
|
|
|
111
105
|
* @memberof DynamicFormComponent
|
|
112
106
|
*/
|
|
113
107
|
ngAfterContentInit(): void;
|
|
114
|
-
/**
|
|
115
|
-
* Sets the focus to the first field.
|
|
116
|
-
* @memberof DynamicFormComponent
|
|
117
|
-
*/
|
|
118
|
-
ngAfterViewInit(): void;
|
|
119
108
|
/**
|
|
120
109
|
* Creates form group on the basis of formGroups configuration input
|
|
121
110
|
* @return {void}
|
|
@@ -326,5 +315,5 @@ export declare class DynamicFormComponent implements OnInit, AfterContentInit, A
|
|
|
326
315
|
*/
|
|
327
316
|
onCheckboxCTAButtonClick(event: IconButton): void;
|
|
328
317
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormComponent, never>;
|
|
329
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormComponent, "ieeesa-dynamic-form", ["dynamicForm"], { "formGroups": { "alias": "formGroups"; "required": false; }; "submitResponse": { "alias": "submitResponse"; "required": false; }; "searchResponse": { "alias": "searchResponse"; "required": false; }; "
|
|
318
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormComponent, "ieeesa-dynamic-form", ["dynamicForm"], { "formGroups": { "alias": "formGroups"; "required": false; }; "submitResponse": { "alias": "submitResponse"; "required": false; }; "searchResponse": { "alias": "searchResponse"; "required": false; }; "colWidth": { "alias": "colWidth"; "required": false; }; "isLegendVisible": { "alias": "isLegendVisible"; "required": false; }; "rightButtonLabel": { "alias": "rightButtonLabel"; "required": false; }; "leftButtonLabel": { "alias": "leftButtonLabel"; "required": false; }; "isSubmitButtonDisabled": { "alias": "isSubmitButtonDisabled"; "required": false; }; "isLeftButtonDisabled": { "alias": "isLeftButtonDisabled"; "required": false; }; "isLeftButtonNeeded": { "alias": "isLeftButtonNeeded"; "required": false; }; "actionButtonAlign": { "alias": "actionButtonAlign"; "required": false; }; }, { "formSubmit": "formSubmit"; "formChange": "formChange"; "formInput": "formInput"; "formLeftButtonClicked": "formLeftButtonClicked"; "formSearchApply": "formSearchApply"; "formGroupsReference": "formGroupsReference"; "dropdownChange": "dropdownChange"; "formCheckboxSelection": "formCheckboxSelection"; "formDateSelected": "formDateSelected"; "formSelectSearch": "formSelectSearch"; "formControlChange": "formControlChange"; "formAutoCompleteSearch": "formAutoCompleteSearch"; "formAutoCompleteClearSearchValue": "formAutoCompleteClearSearchValue"; "autoCompleteOptionSelected": "autoCompleteOptionSelected"; "formAfterContentInit": "formAfterContentInit"; "formSelectedDateRange": "formSelectedDateRange"; "addFormGroup": "addFormGroup"; "formTimeSelected": "formTimeSelected"; "supportTextLinkClick": "supportTextLinkClick"; "formSlideToggleChange": "formSlideToggleChange"; "formFileUpload": "formFileUpload"; "dropdownOpenedChange": "dropdownOpenedChange"; "formColorPickerChange": "formColorPickerChange"; "formRadioOptionSelected": "formRadioOptionSelected"; "ctaButtonClick": "ctaButtonClick"; "formMultiSelectAutoCompleteSearch": "formMultiSelectAutoCompleteSearch"; "formMultiSelectAutoCompleteClearSearchValue": "formMultiSelectAutoCompleteClearSearchValue"; "multiSelectAutoCompleteOptionsSelected": "multiSelectAutoCompleteOptionsSelected"; "formRichTextEditorContentChange": "formRichTextEditorContentChange"; }, never, ["[component]"], true, never>;
|
|
330
319
|
}
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
3
|
import { FormUtilityService } from '../../services/form-utility.service';
|
|
4
4
|
import { FieldConfig } from '../../models/field-config.model';
|
|
5
5
|
import { AllowedFileTypes } from '../../models/allowed-file-types.model';
|
|
6
6
|
import { FileUploadService } from '../../services/file-upload.service';
|
|
7
|
-
import { ViewFilesFormat } from '../../models/view-files-format.model';
|
|
8
|
-
import { AlignType } from '../../models/align-type.model';
|
|
9
|
-
import { FileUploadStatus } from '../../models/file-upload-status.model';
|
|
10
7
|
import * as i0 from "@angular/core";
|
|
11
8
|
/**
|
|
12
9
|
* Provides functionality for uploading files to aws s3 bucket.
|
|
@@ -17,7 +14,6 @@ import * as i0 from "@angular/core";
|
|
|
17
14
|
export declare class FileUploadComponent implements OnInit {
|
|
18
15
|
formUtilityService: FormUtilityService;
|
|
19
16
|
fileUploadService: FileUploadService;
|
|
20
|
-
fileField: ElementRef;
|
|
21
17
|
constants: {
|
|
22
18
|
ariaLabel: {
|
|
23
19
|
clear: string;
|
|
@@ -217,11 +213,6 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
217
213
|
hexCodeInput: string;
|
|
218
214
|
palette: string;
|
|
219
215
|
};
|
|
220
|
-
/**
|
|
221
|
-
* Handles the selected file(s) and emits FileUpload event emitter for uploading the file(s).
|
|
222
|
-
* @param {(File | FileList)} file
|
|
223
|
-
* @memberof FileUploadComponent
|
|
224
|
-
*/
|
|
225
216
|
defaultColor: string;
|
|
226
217
|
ariaDescription: string;
|
|
227
218
|
ariaDescribedById: string;
|
|
@@ -238,13 +229,6 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
238
229
|
allowedFileFormat: string;
|
|
239
230
|
browseFiles: string;
|
|
240
231
|
uploadProgress: string;
|
|
241
|
-
upload: string;
|
|
242
|
-
mb: string;
|
|
243
|
-
uploadFor: string;
|
|
244
|
-
uploadErrorMsg: string;
|
|
245
|
-
of: string;
|
|
246
|
-
filesUploaded: string;
|
|
247
|
-
fileAlreadyExists: string;
|
|
248
232
|
};
|
|
249
233
|
ariaLabel: {
|
|
250
234
|
fileUpload: string;
|
|
@@ -281,9 +265,6 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
281
265
|
"2064": string;
|
|
282
266
|
};
|
|
283
267
|
};
|
|
284
|
-
limit: {
|
|
285
|
-
maxFileUpload: number;
|
|
286
|
-
};
|
|
287
268
|
};
|
|
288
269
|
list: {
|
|
289
270
|
defaultIndentation: number;
|
|
@@ -308,13 +289,6 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
308
289
|
allowedFileFormat: string;
|
|
309
290
|
browseFiles: string;
|
|
310
291
|
uploadProgress: string;
|
|
311
|
-
upload: string;
|
|
312
|
-
mb: string;
|
|
313
|
-
uploadFor: string;
|
|
314
|
-
uploadErrorMsg: string;
|
|
315
|
-
of: string;
|
|
316
|
-
filesUploaded: string;
|
|
317
|
-
fileAlreadyExists: string;
|
|
318
292
|
};
|
|
319
293
|
fileUploadAriaLabel: {
|
|
320
294
|
fileUpload: string;
|
|
@@ -344,15 +318,11 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
344
318
|
group: FormGroup;
|
|
345
319
|
isValidFileType: boolean;
|
|
346
320
|
isValidFileSize: boolean;
|
|
347
|
-
isValidMaxFileUploadLimit: boolean;
|
|
348
321
|
selectedFiles: FileList | File | any;
|
|
349
322
|
selectedFileNames: string;
|
|
350
323
|
isFormField: boolean;
|
|
351
324
|
totalSize: number;
|
|
352
325
|
uploadedFiles: FileList | File | any;
|
|
353
|
-
actionButtonAlign: AlignType;
|
|
354
|
-
alignmentType: typeof AlignType;
|
|
355
|
-
isUploadButtonDisabled: boolean;
|
|
356
326
|
formControlName: string;
|
|
357
327
|
isFileSelected: boolean;
|
|
358
328
|
supportMessage: string;
|
|
@@ -360,21 +330,12 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
360
330
|
isMultiFileUpload: boolean;
|
|
361
331
|
isUploadInProgress: boolean;
|
|
362
332
|
fileUploadHeading: string;
|
|
363
|
-
isAllowAnyFileType: boolean;
|
|
364
|
-
viewFilesFormat: ViewFilesFormat;
|
|
365
|
-
isUploadButtonNeeded: boolean;
|
|
366
333
|
maxUploadFileSize: number;
|
|
367
334
|
private uploadedSizeValue;
|
|
368
|
-
fileUploadErrorPosition: string;
|
|
369
|
-
maxFilesUploadLimit: number;
|
|
370
|
-
maxFilesUploadLimitErrorMessage: string;
|
|
371
|
-
private _fileUploadStatus;
|
|
372
|
-
get fileUploadStatus(): FileUploadStatus;
|
|
373
|
-
set fileUploadStatus(value: FileUploadStatus);
|
|
374
335
|
get uploadedSize(): number;
|
|
375
336
|
set uploadedSize(value: number);
|
|
376
|
-
uploadSelectedFiles: EventEmitter<
|
|
377
|
-
downloadSelectedFile: EventEmitter<
|
|
337
|
+
uploadSelectedFiles: EventEmitter<File | FileList>;
|
|
338
|
+
downloadSelectedFile: EventEmitter<File | FileList>;
|
|
378
339
|
constructor(formUtilityService: FormUtilityService, fileUploadService: FileUploadService);
|
|
379
340
|
/**
|
|
380
341
|
* Initializes component properties and retrieves configuration.
|
|
@@ -387,7 +348,7 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
387
348
|
*/
|
|
388
349
|
getAllowedFileFormatSizeMessage(): void;
|
|
389
350
|
/**
|
|
390
|
-
* Handles the selected file(s) and emits FileUpload event emitter for uploading the file(s).
|
|
351
|
+
* Handles the selected of file(s) and emits FileUpload event emitter for uploading the file(s).
|
|
391
352
|
* @param {(File | FileList)} file
|
|
392
353
|
* @memberof FileUploadComponent
|
|
393
354
|
*/
|
|
@@ -432,29 +393,6 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
432
393
|
* @memberof FileUploadComponent
|
|
433
394
|
*/
|
|
434
395
|
trackByFn(index: number): number | string;
|
|
435
|
-
/**
|
|
436
|
-
* Triggers on browse element clicked
|
|
437
|
-
* @memberof FileUploadComponent
|
|
438
|
-
*/
|
|
439
|
-
fileClick(): void;
|
|
440
|
-
/**
|
|
441
|
-
* Display comma separated failed file names
|
|
442
|
-
* @param {string[]} filesNamesUploadFailed
|
|
443
|
-
* @return {*} {string}
|
|
444
|
-
* @memberof FileUploadComponent
|
|
445
|
-
*/
|
|
446
|
-
displayFileNames(fileNames: string[]): string;
|
|
447
|
-
/**
|
|
448
|
-
* Removes file from respective properties used.
|
|
449
|
-
* @param {number} index
|
|
450
|
-
* @memberof FileUploadComponent
|
|
451
|
-
*/
|
|
452
|
-
removeFile(index: number): void;
|
|
453
|
-
/**
|
|
454
|
-
* Disabled file upload button
|
|
455
|
-
* @memberof FileUploadComponent
|
|
456
|
-
*/
|
|
457
|
-
disableUploadButton(): void;
|
|
458
396
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
|
|
459
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ieeesa-file-upload", never, { "
|
|
397
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ieeesa-file-upload", never, { "formControlName": { "alias": "formControlName"; "required": false; }; "isFileSelected": { "alias": "isFileSelected"; "required": false; }; "supportMessage": { "alias": "supportMessage"; "required": false; }; "allowedFileTypes": { "alias": "allowedFileTypes"; "required": false; }; "isMultiFileUpload": { "alias": "isMultiFileUpload"; "required": false; }; "isUploadInProgress": { "alias": "isUploadInProgress"; "required": false; }; "fileUploadHeading": { "alias": "fileUploadHeading"; "required": false; }; "maxUploadFileSize": { "alias": "maxUploadFileSize"; "required": false; }; "uploadedSize": { "alias": "uploadedSize"; "required": false; }; }, { "uploadSelectedFiles": "uploadSelectedFiles"; "downloadSelectedFile": "downloadSelectedFile"; }, never, never, true, never>;
|
|
460
398
|
}
|
|
@@ -6,7 +6,6 @@ import { ConfirmationModalData } from '../../models/confirmation-modal-data.mode
|
|
|
6
6
|
import { Subject } from 'rxjs';
|
|
7
7
|
import { FormGroup } from '@angular/forms';
|
|
8
8
|
import { EventsAndMeetingRouteConfig, UserPermission } from '@ieeesa-npm/shared';
|
|
9
|
-
import { DynamicProperties } from '../../models/dynamic-properties.model';
|
|
10
9
|
import * as i0 from "@angular/core";
|
|
11
10
|
export declare class TabsComponent implements OnInit, OnDestroy {
|
|
12
11
|
dialog: MatDialog;
|
|
@@ -29,14 +28,12 @@ export declare class TabsComponent implements OnInit, OnDestroy {
|
|
|
29
28
|
constants: any;
|
|
30
29
|
modalConfigTexts: any;
|
|
31
30
|
isViewOnly: string | boolean;
|
|
32
|
-
isMemberOfGroup: string | boolean;
|
|
33
31
|
eventId: string;
|
|
34
32
|
meetingId: string;
|
|
35
33
|
actionType: any;
|
|
36
34
|
routePaths: EventsAndMeetingRouteConfig;
|
|
37
35
|
apiBaseURL: string;
|
|
38
36
|
userPermissions: UserPermission[];
|
|
39
|
-
dynamicProperties: DynamicProperties[];
|
|
40
37
|
constructor(dialog: MatDialog);
|
|
41
38
|
/**
|
|
42
39
|
* Verifies tabs count and calls createComponent() to load selected component.
|
|
@@ -62,12 +59,6 @@ export declare class TabsComponent implements OnInit, OnDestroy {
|
|
|
62
59
|
* @memberof TabsComponent
|
|
63
60
|
*/
|
|
64
61
|
createComponent(tab: Tab): void;
|
|
65
|
-
/**
|
|
66
|
-
* Sets dynamic input property which is being sent by the consumer component and its value is not undefined for the component loaded by the tab component.
|
|
67
|
-
* @param {[]} properties
|
|
68
|
-
* @memberof TabsComponent
|
|
69
|
-
*/
|
|
70
|
-
setDynamicComponentProperty(properties: []): void;
|
|
71
62
|
/**
|
|
72
63
|
* Returns unique identifier for the tab.
|
|
73
64
|
* @param {number} index
|
|
@@ -82,5 +73,5 @@ export declare class TabsComponent implements OnInit, OnDestroy {
|
|
|
82
73
|
*/
|
|
83
74
|
ngOnDestroy(): void;
|
|
84
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
85
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "ieeesa-tabs", never, { "selectedTabIndex": { "alias": "selectedTabIndex"; "required": false; }; "tabs": { "alias": "tabs"; "required": false; }; "isFormChanged": { "alias": "isFormChanged"; "required": false; }; "confirmationModalConfig": { "alias": "confirmationModalConfig"; "required": false; }; "isViewOnly": { "alias": "isViewOnly"; "required": false; }; "
|
|
76
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "ieeesa-tabs", never, { "selectedTabIndex": { "alias": "selectedTabIndex"; "required": false; }; "tabs": { "alias": "tabs"; "required": false; }; "isFormChanged": { "alias": "isFormChanged"; "required": false; }; "confirmationModalConfig": { "alias": "confirmationModalConfig"; "required": false; }; "isViewOnly": { "alias": "isViewOnly"; "required": false; }; "eventId": { "alias": "eventId"; "required": false; }; "meetingId": { "alias": "meetingId"; "required": false; }; "actionType": { "alias": "actionType"; "required": false; }; "routePaths": { "alias": "routePaths"; "required": false; }; "apiBaseURL": { "alias": "apiBaseURL"; "required": false; }; "userPermissions": { "alias": "userPermissions"; "required": false; }; }, { "selectedIndexChange": "selectedIndexChange"; }, never, never, true, never>;
|
|
86
77
|
}
|
|
@@ -12,7 +12,6 @@ import { SelectOpenedState } from '../../models/select-opened-state.model';
|
|
|
12
12
|
import { RadioOption } from '../../models/radio-option.model';
|
|
13
13
|
import { IconButton } from '../../models/icon-button.model';
|
|
14
14
|
import { AutoCompleteOption } from '../../models/autocomplete-option.model';
|
|
15
|
-
import { FileUploadStatus } from '../../models/file-upload-status.model';
|
|
16
15
|
import * as i0 from "@angular/core";
|
|
17
16
|
/**
|
|
18
17
|
* Provides the implementation of DynamicFormFieldDirective which hosts and creates the form fields components dynamically.
|
|
@@ -39,9 +38,6 @@ export declare class DynamicFormFieldDirective implements FormField, OnInit, OnD
|
|
|
39
38
|
*/
|
|
40
39
|
set group(value: FormGroup);
|
|
41
40
|
get group(): FormGroup;
|
|
42
|
-
private _fileUploadStatus;
|
|
43
|
-
get fileUploadStatus(): FileUploadStatus;
|
|
44
|
-
set fileUploadStatus(value: FileUploadStatus);
|
|
45
41
|
private _submitResponse;
|
|
46
42
|
/**
|
|
47
43
|
* Sets the submit response of form submit event
|
|
@@ -78,7 +74,7 @@ export declare class DynamicFormFieldDirective implements FormField, OnInit, OnD
|
|
|
78
74
|
formSlideToggleChange: EventEmitter<SlideToggleOption>;
|
|
79
75
|
dropdownOpenedChange: EventEmitter<SelectOpenedState>;
|
|
80
76
|
formColorPickerChange: EventEmitter<string>;
|
|
81
|
-
formFileUpload: EventEmitter<
|
|
77
|
+
formFileUpload: EventEmitter<File | FileList>;
|
|
82
78
|
formRadioOptionSelected: EventEmitter<RadioOption>;
|
|
83
79
|
ctaButtonClick: EventEmitter<IconButton>;
|
|
84
80
|
formMultiSelectAutoCompleteSearch: EventEmitter<string>;
|
|
@@ -103,5 +99,5 @@ export declare class DynamicFormFieldDirective implements FormField, OnInit, OnD
|
|
|
103
99
|
*/
|
|
104
100
|
ngOnDestroy(): void;
|
|
105
101
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormFieldDirective, never>;
|
|
106
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicFormFieldDirective, "[ieeesaDynamicFormField]", never, { "config": { "alias": "config"; "required": false; }; "group": { "alias": "group"; "required": false; }; "
|
|
102
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicFormFieldDirective, "[ieeesaDynamicFormField]", never, { "config": { "alias": "config"; "required": false; }; "group": { "alias": "group"; "required": false; }; "submitResponse": { "alias": "submitResponse"; "required": false; }; "searchResponse": { "alias": "searchResponse"; "required": false; }; }, { "formSearchApply": "formSearchApply"; "formDropdownSelected": "formDropdownSelected"; "formDateSelected": "formDateSelected"; "formTimeSelected": "formTimeSelected"; "formSelectedDateRange": "formSelectedDateRange"; "formSelectSearch": "formSelectSearch"; "formAutoCompleteSearch": "formAutoCompleteSearch"; "autoCompleteClearSearchValue": "autoCompleteClearSearchValue"; "autoCompleteOptionSelected": "autoCompleteOptionSelected"; "formCheckboxSelection": "formCheckboxSelection"; "formInputValue": "formInputValue"; "addFormGroup": "addFormGroup"; "supportTextLinkClick": "supportTextLinkClick"; "formSlideToggleChange": "formSlideToggleChange"; "dropdownOpenedChange": "dropdownOpenedChange"; "formColorPickerChange": "formColorPickerChange"; "formFileUpload": "formFileUpload"; "formRadioOptionSelected": "formRadioOptionSelected"; "ctaButtonClick": "ctaButtonClick"; "formMultiSelectAutoCompleteSearch": "formMultiSelectAutoCompleteSearch"; "multiSelectAutoCompleteClearSearchValue": "multiSelectAutoCompleteClearSearchValue"; "multiSelectAutoCompleteOptionsSelected": "multiSelectAutoCompleteOptionsSelected"; "formRichTextEditorContentChange": "formRichTextEditorContentChange"; }, never, never, true, never>;
|
|
107
103
|
}
|
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
export declare class FileUploadDirective {
|
|
9
9
|
allowedFileTypes: string[];
|
|
10
10
|
isMultiFileUpload: boolean;
|
|
11
|
-
fileDropped: EventEmitter<
|
|
11
|
+
fileDropped: EventEmitter<File | FileList>;
|
|
12
12
|
/**
|
|
13
13
|
* Binds the 'multiple' attribute based on the value of allowMultiple property.
|
|
14
14
|
* @readonly
|
|
@@ -10,8 +10,6 @@ import { SlideToggleOption } from './slide-toggle-options.model';
|
|
|
10
10
|
import { ColorFormat, ColorsAnimation } from './color-format.model';
|
|
11
11
|
import { AllowedFileTypes } from './allowed-file-types.model';
|
|
12
12
|
import { EditorConfig } from 'ngx-simple-text-editor';
|
|
13
|
-
import { ViewFilesFormat } from './view-files-format.model';
|
|
14
|
-
import { AlignType } from './align-type.model';
|
|
15
13
|
export interface FieldConfig {
|
|
16
14
|
isSortNeeded?: boolean;
|
|
17
15
|
disabled?: boolean;
|
|
@@ -86,11 +84,4 @@ export interface FieldConfig {
|
|
|
86
84
|
canHideTextInput?: boolean;
|
|
87
85
|
multiSelectAutoCompleteOptions?: AutoCompleteOption[];
|
|
88
86
|
editorConfig?: EditorConfig;
|
|
89
|
-
isAllowAnyFileType?: boolean;
|
|
90
|
-
viewFilesFormat?: ViewFilesFormat;
|
|
91
|
-
isUploadButtonNeeded?: boolean;
|
|
92
|
-
actionButtonAlign?: AlignType;
|
|
93
|
-
fileUploadErrorPosition?: string;
|
|
94
|
-
maxFilesUploadLimit?: number;
|
|
95
|
-
maxFilesUploadLimitErrorMessage?: string;
|
|
96
87
|
}
|
|
@@ -3,9 +3,6 @@ import { OnDestroy } from '@angular/core';
|
|
|
3
3
|
import { AlertsService, HttpService, LoaderNotificationService } from '@ieeesa-npm/utility';
|
|
4
4
|
import { FileUploadPresignedUrl } from '../models/file-upload-presigned-url-res.model';
|
|
5
5
|
import { Observable, Subject } from 'rxjs';
|
|
6
|
-
import { FileUploadPayload } from '../models/file-upload-payload-model';
|
|
7
|
-
import { FileUploadBodyResponse, FileUploadResponse } from '../models/file-upload-response.model';
|
|
8
|
-
import { DeleteFileResponse } from '../models/delete-file.model';
|
|
9
6
|
import * as i0 from "@angular/core";
|
|
10
7
|
/**
|
|
11
8
|
* This service interacts with the server to obtain pre-signed URLs for file upload and uploads files to Amazon S3.
|
|
@@ -190,18 +187,17 @@ export declare class FileUploadService implements OnDestroy {
|
|
|
190
187
|
label: {
|
|
191
188
|
initial: string;
|
|
192
189
|
};
|
|
193
|
-
};
|
|
194
|
-
* Return distinct message for sent, upload progress, & response events.
|
|
195
|
-
* @param {HttpEvent<any>} event
|
|
196
|
-
* @param {(File | FileList)} file
|
|
197
|
-
* @return {*}
|
|
198
|
-
* @memberof FileUploadService
|
|
199
|
-
*/
|
|
190
|
+
};
|
|
200
191
|
loader: {
|
|
201
192
|
ariaLabel: {
|
|
202
193
|
spinner: string;
|
|
203
194
|
};
|
|
204
|
-
};
|
|
195
|
+
}; /**
|
|
196
|
+
* Retrieves presigned URL for downloading files to Amazon S3 bucket.
|
|
197
|
+
* @param {(File | FileList)} file
|
|
198
|
+
* @return {Observable<string>}
|
|
199
|
+
* @memberof FileUploadService
|
|
200
|
+
*/
|
|
205
201
|
defaultWelcomeBgColor: string;
|
|
206
202
|
timePicker: {
|
|
207
203
|
defaultTimeFormat: number;
|
|
@@ -237,13 +233,6 @@ export declare class FileUploadService implements OnDestroy {
|
|
|
237
233
|
allowedFileFormat: string;
|
|
238
234
|
browseFiles: string;
|
|
239
235
|
uploadProgress: string;
|
|
240
|
-
upload: string;
|
|
241
|
-
mb: string;
|
|
242
|
-
uploadFor: string;
|
|
243
|
-
uploadErrorMsg: string;
|
|
244
|
-
of: string;
|
|
245
|
-
filesUploaded: string;
|
|
246
|
-
fileAlreadyExists: string;
|
|
247
236
|
};
|
|
248
237
|
ariaLabel: {
|
|
249
238
|
fileUpload: string;
|
|
@@ -280,9 +269,6 @@ export declare class FileUploadService implements OnDestroy {
|
|
|
280
269
|
"2064": string;
|
|
281
270
|
};
|
|
282
271
|
};
|
|
283
|
-
limit: {
|
|
284
|
-
maxFileUpload: number;
|
|
285
|
-
};
|
|
286
272
|
};
|
|
287
273
|
list: {
|
|
288
274
|
defaultIndentation: number;
|
|
@@ -304,9 +290,6 @@ export declare class FileUploadService implements OnDestroy {
|
|
|
304
290
|
fileByteArray: Uint8Array | undefined;
|
|
305
291
|
httpClient: HttpClient;
|
|
306
292
|
isFileUploading: boolean;
|
|
307
|
-
filesNamesUploadFailed: string[];
|
|
308
|
-
filesUploadedSuccessfullyCount: number;
|
|
309
|
-
uploadedFileName: string;
|
|
310
293
|
constructor(httpService: HttpService, handler: HttpBackend, alertService: AlertsService, loaderNotificationService: LoaderNotificationService);
|
|
311
294
|
/**
|
|
312
295
|
* Sets the base URL for API requests.
|
|
@@ -322,30 +305,13 @@ export declare class FileUploadService implements OnDestroy {
|
|
|
322
305
|
*/
|
|
323
306
|
getFileUploadPresignedUrl(file: File | FileList, appId: string): Observable<FileUploadPresignedUrl>;
|
|
324
307
|
/**
|
|
325
|
-
*
|
|
326
|
-
* @param
|
|
327
|
-
* @param
|
|
328
|
-
*/
|
|
329
|
-
getPreSignedURL(fileUploadPayload: FileUploadPayload, fileUploadAPIPath?: string): Observable<FileUploadResponse>;
|
|
330
|
-
/**
|
|
331
|
-
* Uploads file to AWS S3 using a pre-signed URL.
|
|
332
|
-
* @param {string} preSignedUrl
|
|
333
|
-
* @param files
|
|
334
|
-
* @param isMultipleFileUpload
|
|
308
|
+
* Uploads file to AWS S3 using a presigned URL.
|
|
309
|
+
* @param {string} presignedUrl
|
|
310
|
+
* @param {(File | FileList)} file
|
|
335
311
|
* @return {Observable<any>} -Returns an observable that emits the response after uploading the file to S3.
|
|
336
312
|
* @memberof FileUploadService
|
|
337
313
|
*/
|
|
338
|
-
uploadFileToS3(
|
|
339
|
-
/**
|
|
340
|
-
* Makes http call to AWS to upload file in S3 bucket
|
|
341
|
-
* @param {string} preSignedUrl
|
|
342
|
-
* @param {File} file
|
|
343
|
-
* @param {string} fileType
|
|
344
|
-
* @param {number} fileSize
|
|
345
|
-
* @return {*} {Observable<any>}
|
|
346
|
-
* @memberof FileUploadService
|
|
347
|
-
*/
|
|
348
|
-
httpCallToAWS(preSignedUrl: string, file: File, fileType: string, fileSize: number): Observable<any>;
|
|
314
|
+
uploadFileToS3(presignedUrl: string, file: File | FileList): Observable<any>;
|
|
349
315
|
/**
|
|
350
316
|
* Gets file upload progress.
|
|
351
317
|
* @param {*} message
|
|
@@ -359,7 +325,7 @@ export declare class FileUploadService implements OnDestroy {
|
|
|
359
325
|
* @return {*}
|
|
360
326
|
* @memberof FileUploadService
|
|
361
327
|
*/
|
|
362
|
-
getEventMessage(event: HttpEvent<any>, file: File): string |
|
|
328
|
+
getEventMessage(event: HttpEvent<any>, file: File | FileList): string | true;
|
|
363
329
|
/**
|
|
364
330
|
* Converts file to byte array.
|
|
365
331
|
* @param {File} file
|
|
@@ -422,13 +388,6 @@ export declare class FileUploadService implements OnDestroy {
|
|
|
422
388
|
* @memberof FileUploadService
|
|
423
389
|
*/
|
|
424
390
|
private getFileExtension;
|
|
425
|
-
/**
|
|
426
|
-
* Deletes file by given fileId
|
|
427
|
-
* @param {string} fileId
|
|
428
|
-
* @return {*} {Observable<DeleteFileResponse>}
|
|
429
|
-
* @memberof FileUploadService
|
|
430
|
-
*/
|
|
431
|
-
deleteFile(deleteFileApiPath: string): Observable<DeleteFileResponse>;
|
|
432
391
|
/**
|
|
433
392
|
* Implementation of ngOnDestroy lifecycle hook method to unsubscribe the open observable subscriptions.
|
|
434
393
|
* @memberof FileUploadService
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -51,11 +51,8 @@ export * from './lib/models/calendar.model';
|
|
|
51
51
|
export * from './lib/models/checkbox-option.model';
|
|
52
52
|
export * from './lib/models/confirmation-modal-data.model';
|
|
53
53
|
export * from './lib/models/date-picker.model';
|
|
54
|
-
export * from './lib/models/delete-file.model';
|
|
55
|
-
export * from './lib/models/dynamic-properties.model';
|
|
56
54
|
export * from './lib/models/event-emit-type.model';
|
|
57
55
|
export * from './lib/models/field-config.model';
|
|
58
|
-
export * from './lib/models/file-attachment.model';
|
|
59
56
|
export * from './lib/models/footer-config.model';
|
|
60
57
|
export * from './lib/models/form-control-types.model';
|
|
61
58
|
export * from './lib/models/form-field.model';
|
|
@@ -82,8 +79,6 @@ export * from './lib/models/table-actions.model';
|
|
|
82
79
|
export * from './lib/models/table-schema.model';
|
|
83
80
|
export * from './lib/models/breadcrumb.model';
|
|
84
81
|
export * from './lib/models/tile.model';
|
|
85
|
-
export * from './lib/models/file-upload-response.model';
|
|
86
|
-
export * from './lib/models/file-upload-status.model';
|
|
87
82
|
export * from './lib/models/filters-options.model';
|
|
88
83
|
export * from './lib/models/profile-menu.model';
|
|
89
84
|
export * from './lib/models/slide-toggle-options.model';
|
|
@@ -92,13 +87,10 @@ export * from './lib/models/card-button.model';
|
|
|
92
87
|
export * from './lib/models/card-info.model';
|
|
93
88
|
export * from './lib/models/color-format.model';
|
|
94
89
|
export * from './lib/models/allowed-file-types.model';
|
|
95
|
-
export * from './lib/models/file-upload-payload-model';
|
|
96
90
|
export * from './lib/models/file-upload-presigned-url-res.model';
|
|
97
|
-
export * from './lib/models/file-upload-response.model';
|
|
98
91
|
export * from './lib/models/accordion-info.model';
|
|
99
92
|
export * from './lib/models/inactive-tenant.model';
|
|
100
93
|
export * from './lib/models/table-column-menu-info.model';
|
|
101
|
-
export * from './lib/models/view-files-format.model';
|
|
102
94
|
export * from './lib/services/datepicker.service';
|
|
103
95
|
export * from './lib/services/form-utility.service';
|
|
104
96
|
export * from './lib/services/file-upload.service';
|
|
@@ -548,14 +548,7 @@
|
|
|
548
548
|
"allowedFileSize2": "mb only;",
|
|
549
549
|
"allowedFileFormat": "Allowed file format(s): ",
|
|
550
550
|
"browseFiles": "Browse Files",
|
|
551
|
-
"uploadProgress": "Uploading... please wait"
|
|
552
|
-
"upload": "Upload",
|
|
553
|
-
"mb": "MB",
|
|
554
|
-
"uploadFor": "Upload for",
|
|
555
|
-
"uploadErrorMsg": "could not be completed. Please try again",
|
|
556
|
-
"of": "of",
|
|
557
|
-
"filesUploaded": "files Uploaded",
|
|
558
|
-
"fileAlreadyExists": "already exists"
|
|
551
|
+
"uploadProgress": "Uploading... please wait"
|
|
559
552
|
},
|
|
560
553
|
"ariaLabel": {
|
|
561
554
|
"fileUpload": "Drag and Drop your files here or Click 'Browse Files'.",
|
|
@@ -593,9 +586,6 @@
|
|
|
593
586
|
"2063": "File Name is required.",
|
|
594
587
|
"2064": "Application Id or Domain is required."
|
|
595
588
|
}
|
|
596
|
-
},
|
|
597
|
-
"limit": {
|
|
598
|
-
"maxFileUpload": 5
|
|
599
589
|
}
|
|
600
590
|
},
|
|
601
591
|
"list": {
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVsZXRlLWZpbGUubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcmVzZW50YXRpb24vc3JjL2xpYi9tb2RlbHMvZGVsZXRlLWZpbGUubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgRGVsZXRlRmlsZVBheWxvYWQge1xyXG4gIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAdHlwZXNjcmlwdC1lc2xpbnQvbm8tZXhwbGljaXQtYW55XHJcbiAgW2tleTogc3RyaW5nXTogYW55O1xyXG59XHJcbmV4cG9ydCBpbnRlcmZhY2UgRGVsZXRlRmlsZVJlc3BvbnNlIHtcclxuICBzdGF0dXM6IGJvb2xlYW47XHJcbiAgbWVzc2FnZTogc3RyaW5nO1xyXG4gIGJvZHk6IHtcclxuICAgIG1lc3NhZ2U6IHN0cmluZztcclxuICB9O1xyXG59XHJcbiJdfQ==
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/* eslint-disable no-unused-vars */
|
|
2
|
-
export var DynamicProperties;
|
|
3
|
-
(function (DynamicProperties) {
|
|
4
|
-
DynamicProperties["EVENT_ID"] = "eventId";
|
|
5
|
-
DynamicProperties["MEETING_ID"] = "meetingId";
|
|
6
|
-
DynamicProperties["ROUTE_PATHS"] = "routePaths";
|
|
7
|
-
DynamicProperties["API_BASE_URL"] = "apiBaseURL";
|
|
8
|
-
DynamicProperties["USER_PERMISSIONS"] = "userPermissions";
|
|
9
|
-
DynamicProperties["ACTION_TYPE"] = "actionType";
|
|
10
|
-
DynamicProperties["IS_VIEW_ONLY"] = "isViewOnly";
|
|
11
|
-
DynamicProperties["IS_MEMBER_OF_GROUP"] = "isMemberOfGroup";
|
|
12
|
-
})(DynamicProperties || (DynamicProperties = {}));
|
|
13
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHluYW1pYy1wcm9wZXJ0aWVzLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHJlc2VudGF0aW9uL3NyYy9saWIvbW9kZWxzL2R5bmFtaWMtcHJvcGVydGllcy5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxtQ0FBbUM7QUFDbkMsTUFBTSxDQUFOLElBQVksaUJBU1g7QUFURCxXQUFZLGlCQUFpQjtJQUMzQix5Q0FBb0IsQ0FBQTtJQUNwQiw2Q0FBd0IsQ0FBQTtJQUN4QiwrQ0FBMEIsQ0FBQTtJQUMxQixnREFBMkIsQ0FBQTtJQUMzQix5REFBb0MsQ0FBQTtJQUNwQywrQ0FBMEIsQ0FBQTtJQUMxQixnREFBMkIsQ0FBQTtJQUMzQiwyREFBc0MsQ0FBQTtBQUN4QyxDQUFDLEVBVFcsaUJBQWlCLEtBQWpCLGlCQUFpQixRQVM1QiIsInNvdXJjZXNDb250ZW50IjpbIi8qIGVzbGludC1kaXNhYmxlIG5vLXVudXNlZC12YXJzICovXHJcbmV4cG9ydCBlbnVtIER5bmFtaWNQcm9wZXJ0aWVzIHtcclxuICBFVkVOVF9JRCA9ICdldmVudElkJyxcclxuICBNRUVUSU5HX0lEID0gJ21lZXRpbmdJZCcsXHJcbiAgUk9VVEVfUEFUSFMgPSAncm91dGVQYXRocycsXHJcbiAgQVBJX0JBU0VfVVJMID0gJ2FwaUJhc2VVUkwnLFxyXG4gIFVTRVJfUEVSTUlTU0lPTlMgPSAndXNlclBlcm1pc3Npb25zJyxcclxuICBBQ1RJT05fVFlQRSA9ICdhY3Rpb25UeXBlJyxcclxuICBJU19WSUVXX09OTFkgPSAnaXNWaWV3T25seScsXHJcbiAgSVNfTUVNQkVSX09GX0dST1VQID0gJ2lzTWVtYmVyT2ZHcm91cCcsXHJcbn1cclxuIl19
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlsZS1hdHRhY2htZW50Lm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHJlc2VudGF0aW9uL3NyYy9saWIvbW9kZWxzL2ZpbGUtYXR0YWNobWVudC5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBGaWxlQXR0YWNobWVudCB7XHJcbiAgYWdlbmRhSXRlbUlkOiBzdHJpbmc7XHJcbiAgYWdlbmRhSWQ6IHN0cmluZztcclxuICBzM0ZpbGVQYXRoOiBzdHJpbmc7XHJcbiAgZmlsZU5hbWU6IHN0cmluZztcclxufVxyXG5leHBvcnQgaW50ZXJmYWNlIEZpbGVBdHRhY2htZW50UGF5bG9hZCB7XHJcbiAgcGF5bG9hZDogRmlsZUF0dGFjaG1lbnRbXTtcclxufVxyXG4iXX0=
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlsZS11cGxvYWQtcGF5bG9hZC1tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3ByZXNlbnRhdGlvbi9zcmMvbGliL21vZGVscy9maWxlLXVwbG9hZC1wYXlsb2FkLW1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgaW50ZXJmYWNlIEZpbGVVcGxvYWRQYXlsb2FkIHtcclxuICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQHR5cGVzY3JpcHQtZXNsaW50L25vLWV4cGxpY2l0LWFueVxyXG4gIFtrZXk6IHN0cmluZ106IGFueTtcclxufVxyXG4iXX0=
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlsZS11cGxvYWQtcmVzcG9uc2UubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcmVzZW50YXRpb24vc3JjL2xpYi9tb2RlbHMvZmlsZS11cGxvYWQtcmVzcG9uc2UubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgRmlsZVVwbG9hZEJvZHlSZXNwb25zZSB7XHJcbiAgZmlsZU5hbWU6IHN0cmluZztcclxuICBwcmVTaWduZWRVcmw6IHN0cmluZztcclxuICBzM1BhdGg6IHN0cmluZztcclxuICBlcnJvck1lc3NhZ2U/OiBzdHJpbmcgfCBudWxsO1xyXG59XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIEZpbGVVcGxvYWRSZXNwb25zZSB7XHJcbiAgc3RhdHVzOiBib29sZWFuO1xyXG4gIGJvZHk6IEZpbGVVcGxvYWRCb2R5UmVzcG9uc2VbXTtcclxuICBtZXNzYWdlOiBzdHJpbmc7XHJcbn1cclxuIl19
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlsZS11cGxvYWQtc3RhdHVzLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHJlc2VudGF0aW9uL3NyYy9saWIvbW9kZWxzL2ZpbGUtdXBsb2FkLXN0YXR1cy5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBGaWxlVXBsb2FkU3RhdHVzIHtcclxuICBmaWxlc1VwbG9hZGVkU3VjY2Vzc2Z1bGx5Q291bnQ6IG51bWJlcjtcclxuICBmaWxlc05hbWVzVXBsb2FkRmFpbGVkOiBzdHJpbmdbXTtcclxuICBhbHJlYWR5RXhpc3RzRmlsZXM6IHN0cmluZ1tdO1xyXG4gIGlzVXBsb2FkaW5nU3RhcnQ6IGJvb2xlYW47XHJcbiAgdXBsb2FkZWRGaWxlcz86IHN0cmluZ1tdO1xyXG59XHJcbiJdfQ==
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
/* eslint-disable no-unused-vars */
|
|
2
|
-
export var ViewFilesFormat;
|
|
3
|
-
(function (ViewFilesFormat) {
|
|
4
|
-
ViewFilesFormat["DEFAULT"] = "default";
|
|
5
|
-
ViewFilesFormat["BOTTOM"] = "bottom";
|
|
6
|
-
})(ViewFilesFormat || (ViewFilesFormat = {}));
|
|
7
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmlldy1maWxlcy1mb3JtYXQubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcmVzZW50YXRpb24vc3JjL2xpYi9tb2RlbHMvdmlldy1maWxlcy1mb3JtYXQubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsbUNBQW1DO0FBQ25DLE1BQU0sQ0FBTixJQUFZLGVBR1g7QUFIRCxXQUFZLGVBQWU7SUFDekIsc0NBQW1CLENBQUE7SUFDbkIsb0NBQWlCLENBQUE7QUFDbkIsQ0FBQyxFQUhXLGVBQWUsS0FBZixlQUFlLFFBRzFCIiwic291cmNlc0NvbnRlbnQiOlsiLyogZXNsaW50LWRpc2FibGUgbm8tdW51c2VkLXZhcnMgKi9cclxuZXhwb3J0IGVudW0gVmlld0ZpbGVzRm9ybWF0IHtcclxuICBERUZBVUxUID0gJ2RlZmF1bHQnLFxyXG4gIEJPVFRPTSA9ICdib3R0b20nLFxyXG59XHJcbiJdfQ==
|