@rangertechnologies/ngnxt 2.1.76 → 2.1.77

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 +29 -29
  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 -212
  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 +177 -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 +368 -352
  41. package/esm2022/lib/nxt-app.service.mjs +14 -14
  42. package/esm2022/lib/pages/booklet/booklet.component.mjs +541 -541
  43. package/esm2022/lib/pages/questionbook/questionbook.component.mjs +414 -407
  44. package/esm2022/lib/pages/questionnaire/questionnaire.component.mjs +2392 -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 +10305 -9805
  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 -13
  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 +49 -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 +1 -1
  114. package/public-api.d.ts +10 -10
  115. package/rangertechnologies-ngnxt-2.1.77.tgz +0 -0
  116. package/rangertechnologies-ngnxt-2.1.76.tgz +0 -0
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@rangertechnologies/ngnxt" />
5
- export * from './public-api';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@rangertechnologies/ngnxt" />
5
+ export * from './public-api';
package/lib/ar.i18n.d.ts CHANGED
@@ -1,24 +1,24 @@
1
- declare const arI18n: {
2
- required: string;
3
- addMore: string;
4
- select: string;
5
- attachment: string;
6
- chooseFiles: string;
7
- uploadFile: string;
8
- thisFieldIsRequired: string;
9
- pickYourLocation: string;
10
- calibrated: string;
11
- enterValue: string;
12
- details: string;
13
- pleaseMakeChoice: string;
14
- attach: string;
15
- add: string;
16
- zeroOfZero: string;
17
- selectDate: string;
18
- toBuyTicket: string;
19
- pickLocation: string;
20
- enterLocation: string;
21
- searchNearestLocation: string;
22
- currentTheme: string;
23
- };
24
- export default arI18n;
1
+ declare const arI18n: {
2
+ required: string;
3
+ addMore: string;
4
+ select: string;
5
+ attachment: string;
6
+ chooseFiles: string;
7
+ uploadFile: string;
8
+ thisFieldIsRequired: string;
9
+ pickYourLocation: string;
10
+ calibrated: string;
11
+ enterValue: string;
12
+ details: string;
13
+ pleaseMakeChoice: string;
14
+ attach: string;
15
+ add: string;
16
+ zeroOfZero: string;
17
+ selectDate: string;
18
+ toBuyTicket: string;
19
+ pickLocation: string;
20
+ enterLocation: string;
21
+ searchNearestLocation: string;
22
+ currentTheme: string;
23
+ };
24
+ export default arI18n;
@@ -1,16 +1,16 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class CustomButtonComponent implements OnInit {
4
- height: string;
5
- width: string;
6
- textColor: string;
7
- buttonText: string;
8
- value: string;
9
- backgroundColor: string;
10
- buttonValue: EventEmitter<any>;
11
- constructor();
12
- ngOnInit(): void;
13
- handleClick(event: any): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomButtonComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomButtonComponent, "app-custom-button", never, { "height": "height"; "width": "width"; "textColor": "textColor"; "buttonText": "buttonText"; "value": "value"; "backgroundColor": "backgroundColor"; }, { "buttonValue": "buttonValue"; }, never, never, false>;
16
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CustomButtonComponent implements OnInit {
4
+ height: string;
5
+ width: string;
6
+ textColor: string;
7
+ buttonText: string;
8
+ value: string;
9
+ backgroundColor: string;
10
+ buttonValue: EventEmitter<any>;
11
+ constructor();
12
+ ngOnInit(): void;
13
+ handleClick(event: any): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomButtonComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomButtonComponent, "app-custom-button", never, { "height": "height"; "width": "width"; "textColor": "textColor"; "buttonText": "buttonText"; "value": "value"; "backgroundColor": "backgroundColor"; }, { "buttonValue": "buttonValue"; }, never, never, false>;
16
+ }
@@ -1,65 +1,65 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { Question } from '../../wrapper';
3
- import { ChangeService } from '../../services/change.service';
4
- import * as i0 from "@angular/core";
5
- interface CalendarDay {
6
- date: Date;
7
- events: any[];
8
- isCurrentMonth: boolean;
9
- isPast: boolean;
10
- isToday: boolean;
11
- isFuture: boolean;
12
- isSelected?: boolean;
13
- }
14
- export declare class CustomCalendarComponent implements OnInit {
15
- private changeService;
16
- eventSelected: EventEmitter<any>;
17
- dateSelected: EventEmitter<any>;
18
- openModal: EventEmitter<any>;
19
- closeModal: EventEmitter<any>;
20
- allEvents: any[];
21
- question: Question;
22
- nxtId: string;
23
- entries: any[];
24
- referenceQuestions: any[];
25
- qbRefrenceBook: any;
26
- calendarQuestion: any[];
27
- calendar: {};
28
- currentDate: Date;
29
- calendarDays: CalendarDay[];
30
- daysOfWeek: string[];
31
- newEventTitle: string;
32
- newEventTime: string;
33
- newDescription: string;
34
- newLink: string;
35
- selectedDay: CalendarDay | null;
36
- isModalOpen: boolean;
37
- modalTitle: string;
38
- modalSize: string;
39
- saveButtonValue: string;
40
- modalFooter: boolean;
41
- editingEventId: number;
42
- editingEntryGroup: any;
43
- showAppoinmentSection: boolean;
44
- subscription: any;
45
- constructor(changeService: ChangeService);
46
- ngOnInit(): void;
47
- processQuestion(): void;
48
- generateCalendar(): void;
49
- selectDay(day: CalendarDay): void;
50
- previousMonth(): void;
51
- nextMonth(): void;
52
- addAppointment(): void;
53
- openBookModel(): void;
54
- closeCalendarModal(): void;
55
- editEvent(event: any, entryGroup: any): void;
56
- deleteEvent(eventId: number, entryGroup: any): void;
57
- addEvent(day: CalendarDay, entryQues: any): void;
58
- onSave(): void;
59
- generateId(): string;
60
- getEntryKeys(entryGroup: any): string[];
61
- removeCharacters(questionText: string): string;
62
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomCalendarComponent, never>;
63
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomCalendarComponent, "app-custom-calendar", never, { "allEvents": "allEvents"; "question": "question"; "nxtId": "nxtId"; }, { "eventSelected": "eventSelected"; "dateSelected": "dateSelected"; "openModal": "openModal"; "closeModal": "closeModal"; }, never, never, false>;
64
- }
65
- export {};
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { Question } from '../../wrapper';
3
+ import { ChangeService } from '../../services/change.service';
4
+ import * as i0 from "@angular/core";
5
+ interface CalendarDay {
6
+ date: Date;
7
+ events: any[];
8
+ isCurrentMonth: boolean;
9
+ isPast: boolean;
10
+ isToday: boolean;
11
+ isFuture: boolean;
12
+ isSelected?: boolean;
13
+ }
14
+ export declare class CustomCalendarComponent implements OnInit {
15
+ private changeService;
16
+ eventSelected: EventEmitter<any>;
17
+ dateSelected: EventEmitter<any>;
18
+ openModal: EventEmitter<any>;
19
+ closeModal: EventEmitter<any>;
20
+ allEvents: any[];
21
+ question: Question;
22
+ nxtId: string;
23
+ entries: any[];
24
+ referenceQuestions: any[];
25
+ qbRefrenceBook: any;
26
+ calendarQuestion: any[];
27
+ calendar: {};
28
+ currentDate: Date;
29
+ calendarDays: CalendarDay[];
30
+ daysOfWeek: string[];
31
+ newEventTitle: string;
32
+ newEventTime: string;
33
+ newDescription: string;
34
+ newLink: string;
35
+ selectedDay: CalendarDay | null;
36
+ isModalOpen: boolean;
37
+ modalTitle: string;
38
+ modalSize: string;
39
+ saveButtonValue: string;
40
+ modalFooter: boolean;
41
+ editingEventId: number;
42
+ editingEntryGroup: any;
43
+ showAppoinmentSection: boolean;
44
+ subscription: any;
45
+ constructor(changeService: ChangeService);
46
+ ngOnInit(): void;
47
+ processQuestion(): void;
48
+ generateCalendar(): void;
49
+ selectDay(day: CalendarDay): void;
50
+ previousMonth(): void;
51
+ nextMonth(): void;
52
+ addAppointment(): void;
53
+ openBookModel(): void;
54
+ closeCalendarModal(): void;
55
+ editEvent(event: any, entryGroup: any): void;
56
+ deleteEvent(eventId: number, entryGroup: any): void;
57
+ addEvent(day: CalendarDay, entryQues: any): void;
58
+ onSave(): void;
59
+ generateId(): string;
60
+ getEntryKeys(entryGroup: any): string[];
61
+ removeCharacters(questionText: string): string;
62
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomCalendarComponent, never>;
63
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomCalendarComponent, "app-custom-calendar", never, { "allEvents": "allEvents"; "question": "question"; "nxtId": "nxtId"; }, { "eventSelected": "eventSelected"; "dateSelected": "dateSelected"; "openModal": "openModal"; "closeModal": "closeModal"; }, never, never, false>;
64
+ }
65
+ export {};
@@ -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 CustomDateComponent implements OnInit {
5
- i18nService: I18nService;
6
- date: string;
7
- readOnly: boolean;
8
- error: any;
9
- errorMessage: string;
10
- dateChange: EventEmitter<any>;
11
- dateSelected: any;
12
- constructor(i18nService: I18nService);
13
- ngOnInit(): void;
14
- ngOnChanges(simplechanges: SimpleChanges): void;
15
- onDateChange(event: any): void;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomDateComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomDateComponent, "app-custom-date", never, { "date": "date"; "readOnly": "readOnly"; "error": "error"; "errorMessage": "errorMessage"; }, { "dateChange": "dateChange"; }, 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 CustomDateComponent implements OnInit {
5
+ i18nService: I18nService;
6
+ date: string;
7
+ readOnly: boolean;
8
+ error: any;
9
+ errorMessage: string;
10
+ dateChange: EventEmitter<any>;
11
+ dateSelected: any;
12
+ constructor(i18nService: I18nService);
13
+ ngOnInit(): void;
14
+ ngOnChanges(simplechanges: SimpleChanges): void;
15
+ onDateChange(event: any): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomDateComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomDateComponent, "app-custom-date", never, { "date": "date"; "readOnly": "readOnly"; "error": "error"; "errorMessage": "errorMessage"; }, { "dateChange": "dateChange"; }, never, never, false>;
18
+ }
@@ -1,19 +1,19 @@
1
- import { OnInit, EventEmitter } from '@angular/core';
2
- import { I18nService } from '../../i18n.service';
3
- import * as i0 from "@angular/core";
4
- export declare class CustomDatePickerComponent implements OnInit {
5
- i18nService: I18nService;
6
- date: string;
7
- minDate: any;
8
- maxDate: any;
9
- error: any;
10
- errorMessage: string;
11
- readOnly: boolean;
12
- dateChange: EventEmitter<any>;
13
- dateSelected: any;
14
- constructor(i18nService: I18nService);
15
- ngOnInit(): void;
16
- onDateChange(event: any): void;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomDatePickerComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomDatePickerComponent, "app-custom-date-picker", never, { "date": "date"; "minDate": "minDate"; "maxDate": "maxDate"; "error": "error"; "errorMessage": "errorMessage"; "readOnly": "readOnly"; }, { "dateChange": "dateChange"; }, never, never, false>;
19
- }
1
+ import { OnInit, EventEmitter } from '@angular/core';
2
+ import { I18nService } from '../../i18n.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CustomDatePickerComponent implements OnInit {
5
+ i18nService: I18nService;
6
+ date: string;
7
+ minDate: any;
8
+ maxDate: any;
9
+ error: any;
10
+ errorMessage: string;
11
+ readOnly: boolean;
12
+ dateChange: EventEmitter<any>;
13
+ dateSelected: any;
14
+ constructor(i18nService: I18nService);
15
+ ngOnInit(): void;
16
+ onDateChange(event: any): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomDatePickerComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomDatePickerComponent, "app-custom-date-picker", never, { "date": "date"; "minDate": "minDate"; "maxDate": "maxDate"; "error": "error"; "errorMessage": "errorMessage"; "readOnly": "readOnly"; }, { "dateChange": "dateChange"; }, never, never, false>;
19
+ }
@@ -1,39 +1,39 @@
1
- import { OnInit, EventEmitter } from '@angular/core';
2
- import { Subscription } from 'rxjs';
3
- import { APIMeta } from '../../interfaces/apimeta';
4
- import { ChangeWrapper } from '../../model/changeWrapper';
5
- import { ChangeService } from '../../services/change.service';
6
- import { I18nService } from '../../i18n.service';
7
- import { DataService } from '../../services/data.service';
8
- import * as i0 from "@angular/core";
9
- export declare class CustomDropdownComponent implements OnInit {
10
- private changeService;
11
- private dataService;
12
- i18nService: I18nService;
13
- options: string[];
14
- placeholder: string;
15
- apiMeta: string;
16
- selectedValue: string;
17
- progressBar: boolean;
18
- id: string;
19
- readOnly: boolean;
20
- errorMessage: string;
21
- error: any;
22
- fromShengel: boolean;
23
- question: any;
24
- referenceField: string;
25
- token: string;
26
- valueChange: EventEmitter<ChangeWrapper>;
27
- invalidFieldIds: string[];
28
- constructor(changeService: ChangeService, dataService: DataService, i18nService: I18nService);
29
- labelField: string;
30
- valueField: string;
31
- subscription: Subscription;
32
- apiObj: APIMeta;
33
- uniqueKey: string;
34
- ngOnInit(): void;
35
- getOptions(): void;
36
- selectChange(event: any): void;
37
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomDropdownComponent, never>;
38
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomDropdownComponent, "app-custom-dropdown", never, { "options": "options"; "placeholder": "placeholder"; "apiMeta": "apiMeta"; "selectedValue": "selectedValue"; "progressBar": "progressBar"; "id": "id"; "readOnly": "readOnly"; "errorMessage": "errorMessage"; "error": "error"; "fromShengel": "fromShengel"; "question": "question"; "referenceField": "referenceField"; "token": "token"; }, { "valueChange": "valueChange"; }, never, never, false>;
39
- }
1
+ import { OnInit, EventEmitter } from '@angular/core';
2
+ import { Subscription } from 'rxjs';
3
+ import { APIMeta } from '../../interfaces/apimeta';
4
+ import { ChangeWrapper } from '../../model/changeWrapper';
5
+ import { ChangeService } from '../../services/change.service';
6
+ import { I18nService } from '../../i18n.service';
7
+ import { DataService } from '../../services/data.service';
8
+ import * as i0 from "@angular/core";
9
+ export declare class CustomDropdownComponent implements OnInit {
10
+ private changeService;
11
+ private dataService;
12
+ i18nService: I18nService;
13
+ options: string[];
14
+ placeholder: string;
15
+ apiMeta: string;
16
+ selectedValue: string;
17
+ progressBar: boolean;
18
+ id: string;
19
+ readOnly: boolean;
20
+ errorMessage: string;
21
+ error: any;
22
+ fromShengel: boolean;
23
+ question: any;
24
+ referenceField: string;
25
+ token: string;
26
+ valueChange: EventEmitter<ChangeWrapper>;
27
+ invalidFieldIds: string[];
28
+ constructor(changeService: ChangeService, dataService: DataService, i18nService: I18nService);
29
+ labelField: string;
30
+ valueField: string;
31
+ subscription: Subscription;
32
+ apiObj: APIMeta;
33
+ uniqueKey: string;
34
+ ngOnInit(): void;
35
+ getOptions(): void;
36
+ selectChange(event: any): void;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomDropdownComponent, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomDropdownComponent, "app-custom-dropdown", never, { "options": "options"; "placeholder": "placeholder"; "apiMeta": "apiMeta"; "selectedValue": "selectedValue"; "progressBar": "progressBar"; "id": "id"; "readOnly": "readOnly"; "errorMessage": "errorMessage"; "error": "error"; "fromShengel": "fromShengel"; "question": "question"; "referenceField": "referenceField"; "token": "token"; }, { "valueChange": "valueChange"; }, never, never, false>;
39
+ }
@@ -1,13 +1,13 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class CustomImageComponent implements OnInit {
4
- alt: string;
5
- src: string;
6
- imageStyle: any;
7
- question: any;
8
- styles: string;
9
- constructor();
10
- ngOnInit(): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomImageComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomImageComponent, "app-custom-image", never, { "alt": "alt"; "src": "src"; "imageStyle": "imageStyle"; "question": "question"; }, {}, never, never, false>;
13
- }
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CustomImageComponent implements OnInit {
4
+ alt: string;
5
+ src: string;
6
+ imageStyle: any;
7
+ question: any;
8
+ styles: string;
9
+ constructor();
10
+ ngOnInit(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomImageComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomImageComponent, "app-custom-image", never, { "alt": "alt"; "src": "src"; "imageStyle": "imageStyle"; "question": "question"; }, {}, never, never, false>;
13
+ }
@@ -1,31 +1,31 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { Subscription } from 'rxjs';
3
- import { ChangeService } from '../../services/change.service';
4
- import { Question } from '../../wrapper';
5
- import { I18nService } from '../../i18n.service';
6
- import { DataService } from '../../services/data.service';
7
- import * as i0 from "@angular/core";
8
- export declare class CustomInputComponent implements OnInit {
9
- private changeService;
10
- i18nService: I18nService;
11
- private dataService;
12
- value: any | any[];
13
- question: Question;
14
- disabled: boolean;
15
- placeholder: string;
16
- error: any;
17
- fromShengel: boolean;
18
- readOnly: boolean;
19
- ngClassValue: any;
20
- idValue: any;
21
- focusEvent: any;
22
- inputValue: EventEmitter<any>;
23
- subscription: Subscription;
24
- constructor(changeService: ChangeService, i18nService: I18nService, dataService: DataService);
25
- ngOnInit(): void;
26
- ngOnChange(): void;
27
- ngOnDestroy(): void;
28
- onInputChange(input: any): void;
29
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomInputComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomInputComponent, "app-custom-input", never, { "value": "value"; "question": "question"; "disabled": "disabled"; "placeholder": "placeholder"; "error": "error"; "fromShengel": "fromShengel"; "readOnly": "readOnly"; "ngClassValue": "ngClassValue"; "idValue": "idValue"; "focusEvent": "focusEvent"; }, { "inputValue": "inputValue"; }, never, never, false>;
31
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { Subscription } from 'rxjs';
3
+ import { ChangeService } from '../../services/change.service';
4
+ import { Question } from '../../wrapper';
5
+ import { I18nService } from '../../i18n.service';
6
+ import { DataService } from '../../services/data.service';
7
+ import * as i0 from "@angular/core";
8
+ export declare class CustomInputComponent implements OnInit {
9
+ private changeService;
10
+ i18nService: I18nService;
11
+ private dataService;
12
+ value: any | any[];
13
+ question: Question;
14
+ disabled: boolean;
15
+ placeholder: string;
16
+ error: any;
17
+ fromShengel: boolean;
18
+ readOnly: boolean;
19
+ ngClassValue: any;
20
+ idValue: any;
21
+ focusEvent: any;
22
+ inputValue: EventEmitter<any>;
23
+ subscription: Subscription;
24
+ constructor(changeService: ChangeService, i18nService: I18nService, dataService: DataService);
25
+ ngOnInit(): void;
26
+ ngOnChange(): void;
27
+ ngOnDestroy(): void;
28
+ onInputChange(input: any): void;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomInputComponent, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomInputComponent, "app-custom-input", never, { "value": "value"; "question": "question"; "disabled": "disabled"; "placeholder": "placeholder"; "error": "error"; "fromShengel": "fromShengel"; "readOnly": "readOnly"; "ngClassValue": "ngClassValue"; "idValue": "idValue"; "focusEvent": "focusEvent"; }, { "inputValue": "inputValue"; }, never, never, false>;
31
+ }
@@ -1,10 +1,10 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class CustomLabelComponent implements OnInit {
4
- labelValue: string;
5
- labelStyle: string;
6
- constructor();
7
- ngOnInit(): void;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomLabelComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomLabelComponent, "app-custom-label", never, { "labelValue": "labelValue"; "labelStyle": "labelStyle"; }, {}, never, never, false>;
10
- }
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CustomLabelComponent implements OnInit {
4
+ labelValue: string;
5
+ labelStyle: string;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomLabelComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomLabelComponent, "app-custom-label", never, { "labelValue": "labelValue"; "labelStyle": "labelStyle"; }, {}, never, never, false>;
10
+ }
@@ -1,19 +1,19 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class CustomModelComponent implements OnInit {
4
- constructor();
5
- modalTitle: any;
6
- isModalOpen: boolean;
7
- modalSize: string;
8
- saveButtonValue: string;
9
- modalFooter: boolean;
10
- saveButtonEmit: EventEmitter<any>;
11
- cancelButtonEmit: EventEmitter<any>;
12
- onSave(): void;
13
- onCancel(): void;
14
- ngOnInit(): void;
15
- closeModal(): void;
16
- saveModal(): void;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomModelComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomModelComponent, "app-custom-model", never, { "modalTitle": "modalTitle"; "isModalOpen": "isModalOpen"; "modalSize": "modalSize"; "saveButtonValue": "saveButtonValue"; "modalFooter": "modalFooter"; }, { "saveButtonEmit": "saveButtonEmit"; "cancelButtonEmit": "cancelButtonEmit"; }, never, ["*"], false>;
19
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CustomModelComponent implements OnInit {
4
+ constructor();
5
+ modalTitle: any;
6
+ isModalOpen: boolean;
7
+ modalSize: string;
8
+ saveButtonValue: string;
9
+ modalFooter: boolean;
10
+ saveButtonEmit: EventEmitter<any>;
11
+ cancelButtonEmit: EventEmitter<any>;
12
+ onSave(): void;
13
+ onCancel(): void;
14
+ ngOnInit(): void;
15
+ closeModal(): void;
16
+ saveModal(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomModelComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomModelComponent, "app-custom-model", never, { "modalTitle": "modalTitle"; "isModalOpen": "isModalOpen"; "modalSize": "modalSize"; "saveButtonValue": "saveButtonValue"; "modalFooter": "modalFooter"; }, { "saveButtonEmit": "saveButtonEmit"; "cancelButtonEmit": "cancelButtonEmit"; }, never, ["*"], false>;
19
+ }
@@ -1,33 +1,33 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { ChangeWrapper } from '../../model/changeWrapper';
3
- import { ChangeService } from '../../services/change.service';
4
- import { I18nService } from '../../i18n.service';
5
- import { DataService } from '../../services/data.service';
6
- import { Subscription } from 'rxjs';
7
- import * as i0 from "@angular/core";
8
- export declare class CustomRadioComponent implements OnInit {
9
- private changeService;
10
- private dataService;
11
- i18nService: I18nService;
12
- options: any[];
13
- apiMeta: string;
14
- selectedValue: string;
15
- progressBar: boolean;
16
- id: string;
17
- readOnly: boolean;
18
- errorMessage: string;
19
- error: any;
20
- fromShengel: boolean;
21
- referenceField: string;
22
- token: string;
23
- valueChange: EventEmitter<ChangeWrapper>;
24
- invalidFieldIds: string[];
25
- labelField: string;
26
- valueField: string;
27
- subscription: Subscription;
28
- constructor(changeService: ChangeService, dataService: DataService, i18nService: I18nService);
29
- ngOnInit(): void;
30
- radioChange(event: any): void;
31
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomRadioComponent, never>;
32
- static ɵcmp: i0.ɵɵComponentDeclaration<CustomRadioComponent, "app-custom-radio", never, { "options": "options"; "apiMeta": "apiMeta"; "selectedValue": "selectedValue"; "progressBar": "progressBar"; "id": "id"; "readOnly": "readOnly"; "errorMessage": "errorMessage"; "error": "error"; "fromShengel": "fromShengel"; "referenceField": "referenceField"; "token": "token"; }, { "valueChange": "valueChange"; }, never, never, false>;
33
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { ChangeWrapper } from '../../model/changeWrapper';
3
+ import { ChangeService } from '../../services/change.service';
4
+ import { I18nService } from '../../i18n.service';
5
+ import { DataService } from '../../services/data.service';
6
+ import { Subscription } from 'rxjs';
7
+ import * as i0 from "@angular/core";
8
+ export declare class CustomRadioComponent implements OnInit {
9
+ private changeService;
10
+ private dataService;
11
+ i18nService: I18nService;
12
+ options: any[];
13
+ apiMeta: string;
14
+ selectedValue: string;
15
+ progressBar: boolean;
16
+ id: string;
17
+ readOnly: boolean;
18
+ errorMessage: string;
19
+ error: any;
20
+ fromShengel: boolean;
21
+ referenceField: string;
22
+ token: string;
23
+ valueChange: EventEmitter<ChangeWrapper>;
24
+ invalidFieldIds: string[];
25
+ labelField: string;
26
+ valueField: string;
27
+ subscription: Subscription;
28
+ constructor(changeService: ChangeService, dataService: DataService, i18nService: I18nService);
29
+ ngOnInit(): void;
30
+ radioChange(event: any): void;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomRadioComponent, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<CustomRadioComponent, "app-custom-radio", never, { "options": "options"; "apiMeta": "apiMeta"; "selectedValue": "selectedValue"; "progressBar": "progressBar"; "id": "id"; "readOnly": "readOnly"; "errorMessage": "errorMessage"; "error": "error"; "fromShengel": "fromShengel"; "referenceField": "referenceField"; "token": "token"; }, { "valueChange": "valueChange"; }, never, never, false>;
33
+ }
@@ -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": "value"; "placeholder": "placeholder"; "error": "error"; "question": "question"; "rows": "rows"; "readOnly": "readOnly"; "minLength": "minLength"; "maxLength": "maxLength"; }, { "textValueChange": "textValueChange"; }, never, never, false>;
29
+ }