@rangertechnologies/ngnxt 2.1.78 → 2.1.80

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 (116) hide show
  1. package/README.md +27 -30
  2. package/esm2022/lib/ar.i18n.mjs +29 -29
  3. package/esm2022/lib/components/custom-button/custom-button.component.mjs +39 -39
  4. package/esm2022/lib/components/custom-calendar/custom-calendar.component.mjs +366 -366
  5. package/esm2022/lib/components/custom-date/custom-date.component.mjs +47 -47
  6. package/esm2022/lib/components/custom-date-picker/custom-date-picker.component.mjs +48 -48
  7. package/esm2022/lib/components/custom-dropdown/custom-dropdown.component.mjs +219 -219
  8. package/esm2022/lib/components/custom-image/custom-image.component.mjs +34 -34
  9. package/esm2022/lib/components/custom-input/custom-input.component.mjs +93 -93
  10. package/esm2022/lib/components/custom-label/custom-label.component.mjs +21 -21
  11. package/esm2022/lib/components/custom-model/custom-model.component.mjs +48 -48
  12. package/esm2022/lib/components/custom-radio/custom-radio.component.mjs +115 -115
  13. package/esm2022/lib/components/custom-rich-text/custom-rich-text.component.mjs +156 -0
  14. package/esm2022/lib/components/custom-table/custom-table.component.mjs +169 -169
  15. package/esm2022/lib/components/custom-text-area/custom-text-area.component.mjs +65 -65
  16. package/esm2022/lib/components/custom-time/custom-time.component.mjs +61 -61
  17. package/esm2022/lib/components/dependent-table/dependent-table.component.mjs +42 -42
  18. package/esm2022/lib/components/dropdown-with-flag/dropdown-with-flag.component.mjs +39 -39
  19. package/esm2022/lib/components/file-upload/file-upload.component.mjs +233 -233
  20. package/esm2022/lib/components/file-view/file-view.component.mjs +46 -46
  21. package/esm2022/lib/components/loader/loader.component.mjs +23 -23
  22. package/esm2022/lib/components/pick-location/pick-location.component.mjs +188 -188
  23. package/esm2022/lib/components/search-box/search-box.component.mjs +130 -130
  24. package/esm2022/lib/components/table-appendix/table-appendix.component.mjs +123 -123
  25. package/esm2022/lib/directives/componenthost/componenthost.directive.mjs +19 -19
  26. package/esm2022/lib/en.i18n.mjs +29 -29
  27. package/esm2022/lib/i18n-config.service.mjs +4 -4
  28. package/esm2022/lib/i18n.component.mjs +47 -47
  29. package/esm2022/lib/i18n.module.mjs +38 -38
  30. package/esm2022/lib/i18n.pipe.mjs +25 -25
  31. package/esm2022/lib/i18n.service.mjs +56 -56
  32. package/esm2022/lib/interfaces/actionMeta.mjs +2 -2
  33. package/esm2022/lib/interfaces/apimeta.mjs +2 -2
  34. package/esm2022/lib/interfaces/dependencyMeta.mjs +2 -2
  35. package/esm2022/lib/model/bookletWrapper.mjs +9 -9
  36. package/esm2022/lib/model/changeWrapper.mjs +11 -11
  37. package/esm2022/lib/model/errorWrapper.mjs +6 -6
  38. package/esm2022/lib/model/tableWrapper.mjs +20 -20
  39. package/esm2022/lib/nxt-app.component.mjs +22 -22
  40. package/esm2022/lib/nxt-app.module.mjs +364 -352
  41. package/esm2022/lib/nxt-app.service.mjs +14 -14
  42. package/esm2022/lib/pages/booklet/booklet.component.mjs +540 -541
  43. package/esm2022/lib/pages/questionbook/questionbook.component.mjs +428 -407
  44. package/esm2022/lib/pages/questionnaire/questionnaire.component.mjs +2387 -2373
  45. package/esm2022/lib/pages/summary-page/summary-page.component.mjs +76 -76
  46. package/esm2022/lib/pipe/get-value.pipe.mjs +50 -50
  47. package/esm2022/lib/sample.mjs +3715 -3431
  48. package/esm2022/lib/services/change.service.mjs +53 -53
  49. package/esm2022/lib/services/data.service.mjs +80 -80
  50. package/esm2022/lib/services/salesforce.service.mjs +46 -46
  51. package/esm2022/lib/services/shared.service.mjs +100 -100
  52. package/esm2022/lib/services/storage.service.mjs +44 -44
  53. package/esm2022/lib/tam.i18n.mjs +29 -29
  54. package/esm2022/lib/wrapper.mjs +175 -175
  55. package/esm2022/public-api.mjs +15 -15
  56. package/esm2022/rangertechnologies-ngnxt.mjs +4 -4
  57. package/fesm2022/rangertechnologies-ngnxt.mjs +10306 -9830
  58. package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
  59. package/index.d.ts +5 -5
  60. package/lib/ar.i18n.d.ts +24 -24
  61. package/lib/components/custom-button/custom-button.component.d.ts +16 -16
  62. package/lib/components/custom-calendar/custom-calendar.component.d.ts +65 -65
  63. package/lib/components/custom-date/custom-date.component.d.ts +18 -18
  64. package/lib/components/custom-date-picker/custom-date-picker.component.d.ts +19 -19
  65. package/lib/components/custom-dropdown/custom-dropdown.component.d.ts +39 -39
  66. package/lib/components/custom-image/custom-image.component.d.ts +13 -13
  67. package/lib/components/custom-input/custom-input.component.d.ts +31 -31
  68. package/lib/components/custom-label/custom-label.component.d.ts +10 -10
  69. package/lib/components/custom-model/custom-model.component.d.ts +19 -19
  70. package/lib/components/custom-radio/custom-radio.component.d.ts +33 -33
  71. package/lib/components/custom-rich-text/custom-rich-text.component.d.ts +29 -0
  72. package/lib/components/custom-table/custom-table.component.d.ts +43 -43
  73. package/lib/components/custom-text-area/custom-text-area.component.d.ts +22 -22
  74. package/lib/components/custom-time/custom-time.component.d.ts +18 -18
  75. package/lib/components/dependent-table/dependent-table.component.d.ts +15 -15
  76. package/lib/components/dropdown-with-flag/dropdown-with-flag.component.d.ts +16 -16
  77. package/lib/components/file-upload/file-upload.component.d.ts +42 -42
  78. package/lib/components/file-view/file-view.component.d.ts +16 -16
  79. package/lib/components/loader/loader.component.d.ts +11 -11
  80. package/lib/components/pick-location/pick-location.component.d.ts +42 -42
  81. package/lib/components/search-box/search-box.component.d.ts +40 -40
  82. package/lib/components/table-appendix/table-appendix.component.d.ts +30 -30
  83. package/lib/directives/componenthost/componenthost.directive.d.ts +8 -8
  84. package/lib/en.i18n.d.ts +24 -24
  85. package/lib/i18n-config.service.d.ts +2 -2
  86. package/lib/i18n.component.d.ts +11 -11
  87. package/lib/i18n.module.d.ts +9 -9
  88. package/lib/i18n.pipe.d.ts +10 -10
  89. package/lib/i18n.service.d.ts +14 -14
  90. package/lib/interfaces/actionMeta.d.ts +5 -5
  91. package/lib/interfaces/apimeta.d.ts +14 -14
  92. package/lib/interfaces/dependencyMeta.d.ts +8 -8
  93. package/lib/model/bookletWrapper.d.ts +5 -5
  94. package/lib/model/changeWrapper.d.ts +10 -10
  95. package/lib/model/errorWrapper.d.ts +5 -5
  96. package/lib/model/tableWrapper.d.ts +18 -18
  97. package/lib/nxt-app.component.d.ts +8 -8
  98. package/lib/nxt-app.module.d.ts +47 -46
  99. package/lib/nxt-app.service.d.ts +6 -6
  100. package/lib/pages/booklet/booklet.component.d.ts +68 -68
  101. package/lib/pages/questionbook/questionbook.component.d.ts +66 -66
  102. package/lib/pages/questionnaire/questionnaire.component.d.ts +220 -218
  103. package/lib/pages/summary-page/summary-page.component.d.ts +20 -20
  104. package/lib/pipe/get-value.pipe.d.ts +7 -7
  105. package/lib/sample.d.ts +11 -10
  106. package/lib/services/change.service.d.ts +22 -22
  107. package/lib/services/data.service.d.ts +13 -13
  108. package/lib/services/salesforce.service.d.ts +11 -11
  109. package/lib/services/shared.service.d.ts +15 -15
  110. package/lib/services/storage.service.d.ts +13 -13
  111. package/lib/tam.i18n.d.ts +24 -24
  112. package/lib/wrapper.d.ts +203 -203
  113. package/package.json +3 -3
  114. package/public-api.d.ts +10 -10
  115. package/rangertechnologies-ngnxt-2.1.80.tgz +0 -0
  116. package/rangertechnologies-ngnxt-2.1.78.tgz +0 -0
@@ -0,0 +1,29 @@
1
+ import { EventEmitter, OnInit, OnDestroy } from '@angular/core';
2
+ import { I18nService } from '../../i18n.service';
3
+ import { Subscription } from 'rxjs';
4
+ import { ChangeService } from '../../services/change.service';
5
+ import { QuillModules } from 'ngx-quill';
6
+ import * as i0 from "@angular/core";
7
+ export declare const QuillConfiguration: QuillModules;
8
+ export declare class CustomRichTextComponent implements OnInit, OnDestroy {
9
+ i18nService: I18nService;
10
+ private changeService;
11
+ value: any | any[];
12
+ placeholder: string;
13
+ error: any;
14
+ question: any;
15
+ rows: Number;
16
+ readOnly: boolean;
17
+ textValueChange: EventEmitter<string>;
18
+ minLength?: number;
19
+ maxLength?: number;
20
+ quillConfiguration: QuillModules;
21
+ subscription: Subscription;
22
+ constructor(i18nService: I18nService, changeService: ChangeService);
23
+ ngOnInit(): void;
24
+ private initializeDependency;
25
+ onEditorChange(event: any): void;
26
+ ngOnDestroy(): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomRichTextComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomRichTextComponent, "app-custom-rich-text", never, { "value": { "alias": "value"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "error": { "alias": "error"; "required": false; }; "question": { "alias": "question"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; }, { "textValueChange": "textValueChange"; }, never, never, true, never>;
29
+ }
@@ -1,43 +1,43 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { I18nService } from '../../i18n.service';
3
- import { TableWrapper } from '../../model/tableWrapper';
4
- import { SalesforceService } from '../../services/salesforce.service';
5
- import { Question } from '../../wrapper';
6
- import { DataService } from '../../services/data.service';
7
- import { Subscription } from 'rxjs';
8
- import { ChangeService } from '../../services/change.service';
9
- import * as i0 from "@angular/core";
10
- export declare class CustomTableComponent implements OnInit {
11
- private changeService;
12
- i18nService: I18nService;
13
- private sfService;
14
- private dataService;
15
- question: Question;
16
- valueChange: EventEmitter<any>;
17
- tableInfo: TableWrapper;
18
- tableHeader: any[];
19
- tableData: any[];
20
- addRowColSpan: number;
21
- tableSize: number;
22
- objName: any;
23
- filterLogic: any;
24
- fieldMeta: string;
25
- firStr: string;
26
- searchBox: boolean;
27
- apiMeta: string;
28
- options: string[];
29
- isDisabled: boolean;
30
- subscription: Subscription;
31
- labelField: string;
32
- constructor(changeService: ChangeService, i18nService: I18nService, sfService: SalesforceService, dataService: DataService);
33
- ngOnInit(): void;
34
- addRow(): void;
35
- updateRadio(item: any, value: string): void;
36
- updateLabel(rowIndex: number, label: string, value: any): void;
37
- deleteRow(rowIndex: number): void;
38
- editRow(rowIndex: number): void;
39
- updateNumber(item: any, label: string, value: string): void;
40
- emitTableDataValue(updatedTableData: any[]): void;
41
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomTableComponent, never>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomTableComponent, "app-custom-table", never, { "question": "question"; "apiMeta": "apiMeta"; }, { "valueChange": "valueChange"; }, never, never, false>;
43
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { I18nService } from '../../i18n.service';
3
+ import { TableWrapper } from '../../model/tableWrapper';
4
+ import { SalesforceService } from '../../services/salesforce.service';
5
+ import { Question } from '../../wrapper';
6
+ import { DataService } from '../../services/data.service';
7
+ import { Subscription } from 'rxjs';
8
+ import { ChangeService } from '../../services/change.service';
9
+ import * as i0 from "@angular/core";
10
+ export declare class CustomTableComponent implements OnInit {
11
+ private changeService;
12
+ i18nService: I18nService;
13
+ private sfService;
14
+ private dataService;
15
+ question: Question;
16
+ valueChange: EventEmitter<any>;
17
+ tableInfo: TableWrapper;
18
+ tableHeader: any[];
19
+ tableData: any[];
20
+ addRowColSpan: number;
21
+ tableSize: number;
22
+ objName: any;
23
+ filterLogic: any;
24
+ fieldMeta: string;
25
+ firStr: string;
26
+ searchBox: boolean;
27
+ apiMeta: string;
28
+ options: string[];
29
+ isDisabled: boolean;
30
+ subscription: Subscription;
31
+ labelField: string;
32
+ constructor(changeService: ChangeService, i18nService: I18nService, sfService: SalesforceService, dataService: DataService);
33
+ ngOnInit(): void;
34
+ addRow(): void;
35
+ updateRadio(item: any, value: string): void;
36
+ updateLabel(rowIndex: number, label: string, value: any): void;
37
+ deleteRow(rowIndex: number): void;
38
+ editRow(rowIndex: number): void;
39
+ updateNumber(item: any, label: string, value: string): void;
40
+ emitTableDataValue(updatedTableData: any[]): void;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomTableComponent, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomTableComponent, "app-custom-table", never, { "question": { "alias": "question"; "required": false; }; "apiMeta": { "alias": "apiMeta"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
43
+ }
@@ -1,22 +1,22 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { I18nService } from '../../i18n.service';
3
- import { Subscription } from 'rxjs';
4
- import { ChangeService } from '../../services/change.service';
5
- import * as i0 from "@angular/core";
6
- export declare class CustomTextAreaComponent implements OnInit {
7
- i18nService: I18nService;
8
- private changeService;
9
- value: any | any[];
10
- placeholder: string;
11
- rows: Number;
12
- error: any;
13
- question: any;
14
- readOnly: boolean;
15
- textareaValueChange: EventEmitter<string>;
16
- subscription: Subscription;
17
- constructor(i18nService: I18nService, changeService: ChangeService);
18
- ngOnInit(): void;
19
- onTextareaChange(event: any): void;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomTextAreaComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomTextAreaComponent, "app-custom-text-area", never, { "value": "value"; "placeholder": "placeholder"; "rows": "rows"; "error": "error"; "question": "question"; "readOnly": "readOnly"; }, { "textareaValueChange": "textareaValueChange"; }, never, never, false>;
22
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { I18nService } from '../../i18n.service';
3
+ import { Subscription } from 'rxjs';
4
+ import { ChangeService } from '../../services/change.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class CustomTextAreaComponent implements OnInit {
7
+ i18nService: I18nService;
8
+ private changeService;
9
+ value: any | any[];
10
+ placeholder: string;
11
+ rows: Number;
12
+ error: any;
13
+ question: any;
14
+ readOnly: boolean;
15
+ textareaValueChange: EventEmitter<string>;
16
+ subscription: Subscription;
17
+ constructor(i18nService: I18nService, changeService: ChangeService);
18
+ ngOnInit(): void;
19
+ onTextareaChange(event: any): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomTextAreaComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomTextAreaComponent, "app-custom-text-area", never, { "value": { "alias": "value"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "error": { "alias": "error"; "required": false; }; "question": { "alias": "question"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; }, { "textareaValueChange": "textareaValueChange"; }, never, never, false, never>;
22
+ }
@@ -1,18 +1,18 @@
1
- import { EventEmitter, OnInit, SimpleChanges } from '@angular/core';
2
- import { I18nService } from '../../i18n.service';
3
- import * as i0 from "@angular/core";
4
- export declare class CustomTimeComponent implements OnInit {
5
- i18nService: I18nService;
6
- time: string;
7
- readOnly: boolean;
8
- error: any;
9
- errorMessage: string;
10
- timeChange: EventEmitter<any>;
11
- timeSelected: any;
12
- constructor(i18nService: I18nService);
13
- ngOnInit(): void;
14
- ngOnChanges(changes: SimpleChanges): void;
15
- onTimeChange(event: any): void;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomTimeComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomTimeComponent, "app-custom-time", never, { "time": "time"; "readOnly": "readOnly"; "error": "error"; "errorMessage": "errorMessage"; }, { "timeChange": "timeChange"; }, never, never, false>;
18
- }
1
+ import { EventEmitter, OnInit, SimpleChanges } from '@angular/core';
2
+ import { I18nService } from '../../i18n.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CustomTimeComponent implements OnInit {
5
+ i18nService: I18nService;
6
+ time: string;
7
+ readOnly: boolean;
8
+ error: any;
9
+ errorMessage: string;
10
+ timeChange: EventEmitter<any>;
11
+ timeSelected: any;
12
+ constructor(i18nService: I18nService);
13
+ ngOnInit(): void;
14
+ ngOnChanges(changes: SimpleChanges): void;
15
+ onTimeChange(event: any): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomTimeComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomTimeComponent, "app-custom-time", never, { "time": { "alias": "time"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "error": { "alias": "error"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; }, { "timeChange": "timeChange"; }, never, never, false, never>;
18
+ }
@@ -1,15 +1,15 @@
1
- import { OnInit } from '@angular/core';
2
- import { ChangeService } from '../../services/change.service';
3
- import * as i0 from "@angular/core";
4
- export declare class DependentTableComponent implements OnInit {
5
- private changeService;
6
- alertMessage: any;
7
- ValueLength: boolean;
8
- Value: any;
9
- errorObj: any;
10
- constructor(changeService: ChangeService);
11
- ngOnInit(): void;
12
- dependentData(data: any): void;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<DependentTableComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<DependentTableComponent, "app-dependent-table", never, { "alertMessage": "alertMessage"; }, {}, never, never, false>;
15
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { ChangeService } from '../../services/change.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DependentTableComponent implements OnInit {
5
+ private changeService;
6
+ alertMessage: any;
7
+ ValueLength: boolean;
8
+ Value: any;
9
+ errorObj: any;
10
+ constructor(changeService: ChangeService);
11
+ ngOnInit(): void;
12
+ dependentData(data: any): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<DependentTableComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<DependentTableComponent, "app-dependent-table", never, { "alertMessage": { "alias": "alertMessage"; "required": false; }; }, {}, never, never, false, never>;
15
+ }
@@ -1,16 +1,16 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { I18nService } from '../../i18n.service';
3
- import * as i0 from "@angular/core";
4
- export declare class DropdownWithFlagComponent implements OnInit {
5
- i18nService: I18nService;
6
- certified: boolean;
7
- JobPerformerCertificates: any[];
8
- flagDropDownChange: EventEmitter<any>;
9
- selectedValue: string;
10
- constructor(i18nService: I18nService);
11
- ngOnInit(): void;
12
- ngOnChanges(): void;
13
- onJobPerformerCertified(event: any): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<DropdownWithFlagComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<DropdownWithFlagComponent, "app-dropdown-with-flag", never, { "certified": "certified"; "JobPerformerCertificates": "JobPerformerCertificates"; }, { "flagDropDownChange": "flagDropDownChange"; }, never, never, false>;
16
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { I18nService } from '../../i18n.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DropdownWithFlagComponent implements OnInit {
5
+ i18nService: I18nService;
6
+ certified: boolean;
7
+ JobPerformerCertificates: any[];
8
+ flagDropDownChange: EventEmitter<any>;
9
+ selectedValue: string;
10
+ constructor(i18nService: I18nService);
11
+ ngOnInit(): void;
12
+ ngOnChanges(): void;
13
+ onJobPerformerCertified(event: any): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownWithFlagComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownWithFlagComponent, "app-dropdown-with-flag", never, { "certified": { "alias": "certified"; "required": false; }; "JobPerformerCertificates": { "alias": "JobPerformerCertificates"; "required": false; }; }, { "flagDropDownChange": "flagDropDownChange"; }, never, never, false, never>;
16
+ }
@@ -1,42 +1,42 @@
1
- import { OnInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
- import { I18nService } from '../../i18n.service';
3
- import { SharedService } from '../../services/shared.service';
4
- import { DataService } from '../../services/data.service';
5
- import { DomSanitizer } from '@angular/platform-browser';
6
- import * as i0 from "@angular/core";
7
- export declare class FileUploadComponent implements OnInit, OnChanges {
8
- private SharedService;
9
- private dataService;
10
- private sanitizer;
11
- i18nService: I18nService;
12
- selectedFileData: EventEmitter<any[]>;
13
- deletedFileData: EventEmitter<any>;
14
- allFiles: any;
15
- limitFileUploading: any;
16
- isDeleteFileButtonVisible: any;
17
- isShowNoFileIcon: any;
18
- tableFile: any;
19
- question: any;
20
- error: any;
21
- selectedFileNameArray: string[];
22
- copyOfInputAllFiles: any;
23
- copyOfFileUploadingLimit: any;
24
- fileUrl: any;
25
- showFile: boolean;
26
- isImage: boolean;
27
- fileName: string;
28
- currentFile: any;
29
- constructor(SharedService: SharedService, dataService: DataService, sanitizer: DomSanitizer, i18nService: I18nService);
30
- ngOnInit(): void;
31
- ngOnChanges(simpleChanges: SimpleChanges): void;
32
- uploadMultipleFiles(event: any): void;
33
- deleteFile(currentFileIndex: any): void;
34
- viewFile(currentFile: any): void;
35
- viewLocalFile(): void;
36
- handleFileContent(fileResponse: any): void;
37
- setFileUrl(url: string): void;
38
- getDocIcon(docName: any): "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PDF.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-XLSX.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-DOCX.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-AVI.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-DOC.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-GIF.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-JPG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MOV.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MP3.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MP4.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MPEG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MPG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PNG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PPT.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-TXT.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-XLS.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/ic_document.svg";
39
- close(): void;
40
- static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "app-file-upload", never, { "allFiles": "allFiles"; "limitFileUploading": "limitFileUploading"; "isDeleteFileButtonVisible": "isDeleteFileButtonVisible"; "isShowNoFileIcon": "isShowNoFileIcon"; "tableFile": "tableFile"; "question": "question"; "error": "error"; }, { "selectedFileData": "selectedFileData"; "deletedFileData": "deletedFileData"; }, never, never, false>;
42
- }
1
+ import { OnInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { I18nService } from '../../i18n.service';
3
+ import { SharedService } from '../../services/shared.service';
4
+ import { DataService } from '../../services/data.service';
5
+ import { DomSanitizer } from '@angular/platform-browser';
6
+ import * as i0 from "@angular/core";
7
+ export declare class FileUploadComponent implements OnInit, OnChanges {
8
+ private SharedService;
9
+ private dataService;
10
+ private sanitizer;
11
+ i18nService: I18nService;
12
+ selectedFileData: EventEmitter<any[]>;
13
+ deletedFileData: EventEmitter<any>;
14
+ allFiles: any;
15
+ limitFileUploading: any;
16
+ isDeleteFileButtonVisible: any;
17
+ isShowNoFileIcon: any;
18
+ tableFile: any;
19
+ question: any;
20
+ error: any;
21
+ selectedFileNameArray: string[];
22
+ copyOfInputAllFiles: any;
23
+ copyOfFileUploadingLimit: any;
24
+ fileUrl: any;
25
+ showFile: boolean;
26
+ isImage: boolean;
27
+ fileName: string;
28
+ currentFile: any;
29
+ constructor(SharedService: SharedService, dataService: DataService, sanitizer: DomSanitizer, i18nService: I18nService);
30
+ ngOnInit(): void;
31
+ ngOnChanges(simpleChanges: SimpleChanges): void;
32
+ uploadMultipleFiles(event: any): void;
33
+ deleteFile(currentFileIndex: any): void;
34
+ viewFile(currentFile: any): void;
35
+ viewLocalFile(): void;
36
+ handleFileContent(fileResponse: any): void;
37
+ setFileUrl(url: string): void;
38
+ getDocIcon(docName: any): "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PDF.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-XLSX.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-DOCX.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-AVI.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-DOC.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-GIF.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-JPG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MOV.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MP3.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MP4.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MPEG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MPG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PNG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PPT.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-TXT.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-XLS.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/ic_document.svg";
39
+ close(): void;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "app-file-upload", never, { "allFiles": { "alias": "allFiles"; "required": false; }; "limitFileUploading": { "alias": "limitFileUploading"; "required": false; }; "isDeleteFileButtonVisible": { "alias": "isDeleteFileButtonVisible"; "required": false; }; "isShowNoFileIcon": { "alias": "isShowNoFileIcon"; "required": false; }; "tableFile": { "alias": "tableFile"; "required": false; }; "question": { "alias": "question"; "required": false; }; "error": { "alias": "error"; "required": false; }; }, { "selectedFileData": "selectedFileData"; "deletedFileData": "deletedFileData"; }, never, never, false, never>;
42
+ }
@@ -1,16 +1,16 @@
1
- import { OnInit } from '@angular/core';
2
- import { I18nService } from '../../i18n.service';
3
- import { SharedService } from '../../services/shared.service';
4
- import * as i0 from "@angular/core";
5
- export declare class FileViewComponent implements OnInit {
6
- private SharedService;
7
- i18nService: I18nService;
8
- documentData: any;
9
- api: any;
10
- constructor(SharedService: SharedService, i18nService: I18nService);
11
- ngOnInit(): void;
12
- viewDoc(link: any): void;
13
- getDocIcon(docName: any): "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PDF.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-XLSX.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-DOCX.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-AVI.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-DOC.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-GIF.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-JPG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MOV.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MP3.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MP4.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MPEG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MPG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PNG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PPT.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-TXT.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-XLS.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/ic_document.svg";
14
- static ɵfac: i0.ɵɵFactoryDeclaration<FileViewComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<FileViewComponent, "app-file-view", never, { "documentData": "documentData"; "api": "api"; }, {}, never, never, false>;
16
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { I18nService } from '../../i18n.service';
3
+ import { SharedService } from '../../services/shared.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class FileViewComponent implements OnInit {
6
+ private SharedService;
7
+ i18nService: I18nService;
8
+ documentData: any;
9
+ api: any;
10
+ constructor(SharedService: SharedService, i18nService: I18nService);
11
+ ngOnInit(): void;
12
+ viewDoc(link: any): void;
13
+ getDocIcon(docName: any): "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PDF.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-XLSX.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-DOCX.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-AVI.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-DOC.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-GIF.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-JPG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MOV.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MP3.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MP4.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MPEG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MPG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PNG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PPT.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-TXT.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-XLS.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/ic_document.svg";
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileViewComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileViewComponent, "app-file-view", never, { "documentData": { "alias": "documentData"; "required": false; }; "api": { "alias": "api"; "required": false; }; }, {}, never, never, false, never>;
16
+ }
@@ -1,11 +1,11 @@
1
- import { OnInit } from '@angular/core';
2
- import { SharedService } from '../../services/shared.service';
3
- import * as i0 from "@angular/core";
4
- export declare class LoaderComponent implements OnInit {
5
- private loaderService;
6
- isLoading: boolean;
7
- constructor(loaderService: SharedService);
8
- ngOnInit(): void;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "app-loader", never, {}, {}, never, never, false>;
11
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { SharedService } from '../../services/shared.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LoaderComponent implements OnInit {
5
+ private loaderService;
6
+ isLoading: boolean;
7
+ constructor(loaderService: SharedService);
8
+ ngOnInit(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "app-loader", never, {}, {}, never, never, false, never>;
11
+ }
@@ -1,42 +1,42 @@
1
- /// <reference types="google.maps" />
2
- import { ElementRef, EventEmitter, NgZone, OnInit } from '@angular/core';
3
- import { I18nService } from '../../i18n.service';
4
- import { ChangeWrapper } from '../../model/changeWrapper';
5
- import { Question } from '../../wrapper';
6
- import * as i0 from "@angular/core";
7
- export declare class PickLocationComponent implements OnInit {
8
- i18nService: I18nService;
9
- private ngZone;
10
- latitude: any;
11
- longitude: any;
12
- zoom: number;
13
- private geoCoder;
14
- searchElementRef: ElementRef<HTMLInputElement>;
15
- showModal: boolean;
16
- address: string;
17
- question: Question;
18
- locationSelected: EventEmitter<ChangeWrapper>;
19
- navigatorGeolocation: any;
20
- markerPosition: {
21
- lat: any;
22
- lng: any;
23
- };
24
- center: {
25
- lat: any;
26
- lng: any;
27
- };
28
- markerOptions: any;
29
- apiKey: any;
30
- constructor(i18nService: I18nService, ngZone: NgZone);
31
- ngOnInit(): void;
32
- private loadGoogleMapsScript;
33
- initAutocomplete(): void;
34
- onMarkerDragEnd(): void;
35
- onMapClick(event: google.maps.MapMouseEvent): void;
36
- private setCurrentLocation;
37
- getAddress(latitude: number, longitude: number): void;
38
- openMap(): void;
39
- closeModal(): void;
40
- static ɵfac: i0.ɵɵFactoryDeclaration<PickLocationComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<PickLocationComponent, "app-pick-location", never, { "address": "address"; "question": "question"; "apiKey": "apiKey"; }, { "locationSelected": "locationSelected"; }, never, never, false>;
42
- }
1
+ /// <reference types="google.maps" />
2
+ import { ElementRef, EventEmitter, NgZone, OnInit } from '@angular/core';
3
+ import { I18nService } from '../../i18n.service';
4
+ import { ChangeWrapper } from '../../model/changeWrapper';
5
+ import { Question } from '../../wrapper';
6
+ import * as i0 from "@angular/core";
7
+ export declare class PickLocationComponent implements OnInit {
8
+ i18nService: I18nService;
9
+ private ngZone;
10
+ latitude: any;
11
+ longitude: any;
12
+ zoom: number;
13
+ private geoCoder;
14
+ searchElementRef: ElementRef<HTMLInputElement>;
15
+ showModal: boolean;
16
+ address: string;
17
+ question: Question;
18
+ locationSelected: EventEmitter<ChangeWrapper>;
19
+ navigatorGeolocation: any;
20
+ markerPosition: {
21
+ lat: any;
22
+ lng: any;
23
+ };
24
+ center: {
25
+ lat: any;
26
+ lng: any;
27
+ };
28
+ markerOptions: any;
29
+ apiKey: any;
30
+ constructor(i18nService: I18nService, ngZone: NgZone);
31
+ ngOnInit(): void;
32
+ private loadGoogleMapsScript;
33
+ initAutocomplete(): void;
34
+ onMarkerDragEnd(): void;
35
+ onMapClick(event: google.maps.MapMouseEvent): void;
36
+ private setCurrentLocation;
37
+ getAddress(latitude: number, longitude: number): void;
38
+ openMap(): void;
39
+ closeModal(): void;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<PickLocationComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<PickLocationComponent, "app-pick-location", never, { "address": { "alias": "address"; "required": false; }; "question": { "alias": "question"; "required": false; }; "apiKey": { "alias": "apiKey"; "required": false; }; }, { "locationSelected": "locationSelected"; }, never, never, false, never>;
42
+ }
@@ -1,40 +1,40 @@
1
- import { OnInit, EventEmitter, ElementRef } from "@angular/core";
2
- import { DataService } from '../../services/data.service';
3
- import { SalesforceService } from "../../services/salesforce.service";
4
- import { ActivatedRoute } from "@angular/router";
5
- import { ChangeWrapper } from "../../model/changeWrapper";
6
- import { I18nService } from "../../i18n.service";
7
- import * as i0 from "@angular/core";
8
- export declare class SearchBoxComponent implements OnInit {
9
- private sfService;
10
- private dataService;
11
- private route;
12
- i18nService: I18nService;
13
- placeHolderText: string;
14
- auto: any;
15
- question: any;
16
- apiMeta: string;
17
- id: string;
18
- readOnly: boolean;
19
- searchValueChange: EventEmitter<ChangeWrapper>;
20
- apiObj: any;
21
- SearchItem: any;
22
- filterName: string;
23
- finalResults: any[];
24
- searchKeyWord: string;
25
- newResult: any;
26
- showResult: boolean;
27
- noResult: boolean;
28
- showSuggestion: boolean;
29
- private el;
30
- private serv;
31
- private tkn;
32
- constructor(sfService: SalesforceService, dataService: DataService, route: ActivatedRoute, el: ElementRef, i18nService: I18nService);
33
- ngOnInit(): void;
34
- clearList(): void;
35
- getSourceDataLocal(event: any): void;
36
- getSourceData: (keyword: string) => void;
37
- clickItem(event: any): void;
38
- static ɵfac: i0.ɵɵFactoryDeclaration<SearchBoxComponent, never>;
39
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchBoxComponent, "lib-search-box", never, { "placeHolderText": "placeHolderText"; "question": "question"; "apiMeta": "apiMeta"; "id": "id"; "readOnly": "readOnly"; "filterName": "filterName"; }, { "searchValueChange": "searchValueChange"; }, never, never, false>;
40
- }
1
+ import { OnInit, EventEmitter, ElementRef } from "@angular/core";
2
+ import { DataService } from '../../services/data.service';
3
+ import { SalesforceService } from "../../services/salesforce.service";
4
+ import { ActivatedRoute } from "@angular/router";
5
+ import { ChangeWrapper } from "../../model/changeWrapper";
6
+ import { I18nService } from "../../i18n.service";
7
+ import * as i0 from "@angular/core";
8
+ export declare class SearchBoxComponent implements OnInit {
9
+ private sfService;
10
+ private dataService;
11
+ private route;
12
+ i18nService: I18nService;
13
+ placeHolderText: string;
14
+ auto: any;
15
+ question: any;
16
+ apiMeta: string;
17
+ id: string;
18
+ readOnly: boolean;
19
+ searchValueChange: EventEmitter<ChangeWrapper>;
20
+ apiObj: any;
21
+ SearchItem: any;
22
+ filterName: string;
23
+ finalResults: any[];
24
+ searchKeyWord: string;
25
+ newResult: any;
26
+ showResult: boolean;
27
+ noResult: boolean;
28
+ showSuggestion: boolean;
29
+ private el;
30
+ private serv;
31
+ private tkn;
32
+ constructor(sfService: SalesforceService, dataService: DataService, route: ActivatedRoute, el: ElementRef, i18nService: I18nService);
33
+ ngOnInit(): void;
34
+ clearList(): void;
35
+ getSourceDataLocal(event: any): void;
36
+ getSourceData: (keyword: string) => void;
37
+ clickItem(event: any): void;
38
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchBoxComponent, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchBoxComponent, "lib-search-box", never, { "placeHolderText": { "alias": "placeHolderText"; "required": false; }; "question": { "alias": "question"; "required": false; }; "apiMeta": { "alias": "apiMeta"; "required": false; }; "id": { "alias": "id"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "filterName": { "alias": "filterName"; "required": false; }; }, { "searchValueChange": "searchValueChange"; }, never, never, false, never>;
40
+ }