@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.
- package/README.md +27 -30
- package/esm2022/lib/ar.i18n.mjs +29 -29
- package/esm2022/lib/components/custom-button/custom-button.component.mjs +39 -39
- package/esm2022/lib/components/custom-calendar/custom-calendar.component.mjs +366 -366
- package/esm2022/lib/components/custom-date/custom-date.component.mjs +47 -47
- package/esm2022/lib/components/custom-date-picker/custom-date-picker.component.mjs +48 -48
- package/esm2022/lib/components/custom-dropdown/custom-dropdown.component.mjs +219 -219
- package/esm2022/lib/components/custom-image/custom-image.component.mjs +34 -34
- package/esm2022/lib/components/custom-input/custom-input.component.mjs +93 -93
- package/esm2022/lib/components/custom-label/custom-label.component.mjs +21 -21
- package/esm2022/lib/components/custom-model/custom-model.component.mjs +48 -48
- package/esm2022/lib/components/custom-radio/custom-radio.component.mjs +115 -115
- package/esm2022/lib/components/custom-rich-text/custom-rich-text.component.mjs +156 -0
- package/esm2022/lib/components/custom-table/custom-table.component.mjs +169 -169
- package/esm2022/lib/components/custom-text-area/custom-text-area.component.mjs +65 -65
- package/esm2022/lib/components/custom-time/custom-time.component.mjs +61 -61
- package/esm2022/lib/components/dependent-table/dependent-table.component.mjs +42 -42
- package/esm2022/lib/components/dropdown-with-flag/dropdown-with-flag.component.mjs +39 -39
- package/esm2022/lib/components/file-upload/file-upload.component.mjs +233 -233
- package/esm2022/lib/components/file-view/file-view.component.mjs +46 -46
- package/esm2022/lib/components/loader/loader.component.mjs +23 -23
- package/esm2022/lib/components/pick-location/pick-location.component.mjs +188 -188
- package/esm2022/lib/components/search-box/search-box.component.mjs +130 -130
- package/esm2022/lib/components/table-appendix/table-appendix.component.mjs +123 -123
- package/esm2022/lib/directives/componenthost/componenthost.directive.mjs +19 -19
- package/esm2022/lib/en.i18n.mjs +29 -29
- package/esm2022/lib/i18n-config.service.mjs +4 -4
- package/esm2022/lib/i18n.component.mjs +47 -47
- package/esm2022/lib/i18n.module.mjs +38 -38
- package/esm2022/lib/i18n.pipe.mjs +25 -25
- package/esm2022/lib/i18n.service.mjs +56 -56
- package/esm2022/lib/interfaces/actionMeta.mjs +2 -2
- package/esm2022/lib/interfaces/apimeta.mjs +2 -2
- package/esm2022/lib/interfaces/dependencyMeta.mjs +2 -2
- package/esm2022/lib/model/bookletWrapper.mjs +9 -9
- package/esm2022/lib/model/changeWrapper.mjs +11 -11
- package/esm2022/lib/model/errorWrapper.mjs +6 -6
- package/esm2022/lib/model/tableWrapper.mjs +20 -20
- package/esm2022/lib/nxt-app.component.mjs +22 -22
- package/esm2022/lib/nxt-app.module.mjs +364 -352
- package/esm2022/lib/nxt-app.service.mjs +14 -14
- package/esm2022/lib/pages/booklet/booklet.component.mjs +540 -541
- package/esm2022/lib/pages/questionbook/questionbook.component.mjs +428 -407
- package/esm2022/lib/pages/questionnaire/questionnaire.component.mjs +2387 -2373
- package/esm2022/lib/pages/summary-page/summary-page.component.mjs +76 -76
- package/esm2022/lib/pipe/get-value.pipe.mjs +50 -50
- package/esm2022/lib/sample.mjs +3715 -3431
- package/esm2022/lib/services/change.service.mjs +53 -53
- package/esm2022/lib/services/data.service.mjs +80 -80
- package/esm2022/lib/services/salesforce.service.mjs +46 -46
- package/esm2022/lib/services/shared.service.mjs +100 -100
- package/esm2022/lib/services/storage.service.mjs +44 -44
- package/esm2022/lib/tam.i18n.mjs +29 -29
- package/esm2022/lib/wrapper.mjs +175 -175
- package/esm2022/public-api.mjs +15 -15
- package/esm2022/rangertechnologies-ngnxt.mjs +4 -4
- package/fesm2022/rangertechnologies-ngnxt.mjs +10306 -9830
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/lib/ar.i18n.d.ts +24 -24
- package/lib/components/custom-button/custom-button.component.d.ts +16 -16
- package/lib/components/custom-calendar/custom-calendar.component.d.ts +65 -65
- package/lib/components/custom-date/custom-date.component.d.ts +18 -18
- package/lib/components/custom-date-picker/custom-date-picker.component.d.ts +19 -19
- package/lib/components/custom-dropdown/custom-dropdown.component.d.ts +39 -39
- package/lib/components/custom-image/custom-image.component.d.ts +13 -13
- package/lib/components/custom-input/custom-input.component.d.ts +31 -31
- package/lib/components/custom-label/custom-label.component.d.ts +10 -10
- package/lib/components/custom-model/custom-model.component.d.ts +19 -19
- package/lib/components/custom-radio/custom-radio.component.d.ts +33 -33
- package/lib/components/custom-rich-text/custom-rich-text.component.d.ts +29 -0
- package/lib/components/custom-table/custom-table.component.d.ts +43 -43
- package/lib/components/custom-text-area/custom-text-area.component.d.ts +22 -22
- package/lib/components/custom-time/custom-time.component.d.ts +18 -18
- package/lib/components/dependent-table/dependent-table.component.d.ts +15 -15
- package/lib/components/dropdown-with-flag/dropdown-with-flag.component.d.ts +16 -16
- package/lib/components/file-upload/file-upload.component.d.ts +42 -42
- package/lib/components/file-view/file-view.component.d.ts +16 -16
- package/lib/components/loader/loader.component.d.ts +11 -11
- package/lib/components/pick-location/pick-location.component.d.ts +42 -42
- package/lib/components/search-box/search-box.component.d.ts +40 -40
- package/lib/components/table-appendix/table-appendix.component.d.ts +30 -30
- package/lib/directives/componenthost/componenthost.directive.d.ts +8 -8
- package/lib/en.i18n.d.ts +24 -24
- package/lib/i18n-config.service.d.ts +2 -2
- package/lib/i18n.component.d.ts +11 -11
- package/lib/i18n.module.d.ts +9 -9
- package/lib/i18n.pipe.d.ts +10 -10
- package/lib/i18n.service.d.ts +14 -14
- package/lib/interfaces/actionMeta.d.ts +5 -5
- package/lib/interfaces/apimeta.d.ts +14 -14
- package/lib/interfaces/dependencyMeta.d.ts +8 -8
- package/lib/model/bookletWrapper.d.ts +5 -5
- package/lib/model/changeWrapper.d.ts +10 -10
- package/lib/model/errorWrapper.d.ts +5 -5
- package/lib/model/tableWrapper.d.ts +18 -18
- package/lib/nxt-app.component.d.ts +8 -8
- package/lib/nxt-app.module.d.ts +47 -46
- package/lib/nxt-app.service.d.ts +6 -6
- package/lib/pages/booklet/booklet.component.d.ts +68 -68
- package/lib/pages/questionbook/questionbook.component.d.ts +66 -66
- package/lib/pages/questionnaire/questionnaire.component.d.ts +220 -218
- package/lib/pages/summary-page/summary-page.component.d.ts +20 -20
- package/lib/pipe/get-value.pipe.d.ts +7 -7
- package/lib/sample.d.ts +11 -10
- package/lib/services/change.service.d.ts +22 -22
- package/lib/services/data.service.d.ts +13 -13
- package/lib/services/salesforce.service.d.ts +11 -11
- package/lib/services/shared.service.d.ts +15 -15
- package/lib/services/storage.service.d.ts +13 -13
- package/lib/tam.i18n.d.ts +24 -24
- package/lib/wrapper.d.ts +203 -203
- package/package.json +3 -3
- package/public-api.d.ts +10 -10
- package/rangertechnologies-ngnxt-2.1.80.tgz +0 -0
- package/rangertechnologies-ngnxt-2.1.78.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": { "alias": "height"; "required": false; }; "width": { "alias": "width"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "buttonText": { "alias": "buttonText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; }, { "buttonValue": "buttonValue"; }, never, never, false, never>;
|
|
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": { "alias": "allEvents"; "required": false; }; "question": { "alias": "question"; "required": false; }; "nxtId": { "alias": "nxtId"; "required": false; }; }, { "eventSelected": "eventSelected"; "dateSelected": "dateSelected"; "openModal": "openModal"; "closeModal": "closeModal"; }, never, never, false, never>;
|
|
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": { "alias": "date"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "error": { "alias": "error"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; }, { "dateChange": "dateChange"; }, never, never, false, never>;
|
|
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": { "alias": "date"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "error": { "alias": "error"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; }, { "dateChange": "dateChange"; }, never, never, false, never>;
|
|
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": { "alias": "options"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "apiMeta": { "alias": "apiMeta"; "required": false; }; "selectedValue": { "alias": "selectedValue"; "required": false; }; "progressBar": { "alias": "progressBar"; "required": false; }; "id": { "alias": "id"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "error": { "alias": "error"; "required": false; }; "fromShengel": { "alias": "fromShengel"; "required": false; }; "question": { "alias": "question"; "required": false; }; "referenceField": { "alias": "referenceField"; "required": false; }; "token": { "alias": "token"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
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": { "alias": "alt"; "required": false; }; "src": { "alias": "src"; "required": false; }; "imageStyle": { "alias": "imageStyle"; "required": false; }; "question": { "alias": "question"; "required": false; }; }, {}, never, never, false, never>;
|
|
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": { "alias": "value"; "required": false; }; "question": { "alias": "question"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "error": { "alias": "error"; "required": false; }; "fromShengel": { "alias": "fromShengel"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "ngClassValue": { "alias": "ngClassValue"; "required": false; }; "idValue": { "alias": "idValue"; "required": false; }; "focusEvent": { "alias": "focusEvent"; "required": false; }; }, { "inputValue": "inputValue"; }, never, never, false, never>;
|
|
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": { "alias": "labelValue"; "required": false; }; "labelStyle": { "alias": "labelStyle"; "required": false; }; }, {}, never, never, false, never>;
|
|
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": { "alias": "modalTitle"; "required": false; }; "isModalOpen": { "alias": "isModalOpen"; "required": false; }; "modalSize": { "alias": "modalSize"; "required": false; }; "saveButtonValue": { "alias": "saveButtonValue"; "required": false; }; "modalFooter": { "alias": "modalFooter"; "required": false; }; }, { "saveButtonEmit": "saveButtonEmit"; "cancelButtonEmit": "cancelButtonEmit"; }, never, ["*"], false, never>;
|
|
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": { "alias": "options"; "required": false; }; "apiMeta": { "alias": "apiMeta"; "required": false; }; "selectedValue": { "alias": "selectedValue"; "required": false; }; "progressBar": { "alias": "progressBar"; "required": false; }; "id": { "alias": "id"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "error": { "alias": "error"; "required": false; }; "fromShengel": { "alias": "fromShengel"; "required": false; }; "referenceField": { "alias": "referenceField"; "required": false; }; "token": { "alias": "token"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
33
|
+
}
|