@rangertechnologies/ngnxt 2.1.71 → 2.1.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/custom-dropdown/custom-dropdown.component.mjs +2 -2
- package/esm2022/lib/components/file-upload/file-upload.component.mjs +4 -2
- package/esm2022/lib/components/search-box/search-box.component.mjs +3 -3
- package/esm2022/lib/pages/booklet/booklet.component.mjs +4 -4
- package/esm2022/lib/pages/questionbook/questionbook.component.mjs +2 -2
- package/fesm2022/rangertechnologies-ngnxt.mjs +10 -8
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.73.tgz +0 -0
- package/rangertechnologies-ngnxt-2.1.71.tgz +0 -0
|
@@ -1834,6 +1834,7 @@ class CustomDropdownComponent {
|
|
|
1834
1834
|
if (this.apiMeta !== undefined) {
|
|
1835
1835
|
this.apiObj = JSON.parse(this.apiMeta);
|
|
1836
1836
|
// VD 25Oct24 changes
|
|
1837
|
+
this.labelField = this.apiObj.field;
|
|
1837
1838
|
this.uniqueKey = this.apiObj.uniqueKey;
|
|
1838
1839
|
const cachedOptions = localStorage.getItem(this.uniqueKey);
|
|
1839
1840
|
if (cachedOptions) {
|
|
@@ -1842,7 +1843,6 @@ class CustomDropdownComponent {
|
|
|
1842
1843
|
else {
|
|
1843
1844
|
if (!this.apiObj.isDependentField) {
|
|
1844
1845
|
this.options = [];
|
|
1845
|
-
this.labelField = this.apiObj.field;
|
|
1846
1846
|
// VD 09Sep24- setup the query param for api call
|
|
1847
1847
|
let fullEndPoint;
|
|
1848
1848
|
if (this.apiObj.endpoint) {
|
|
@@ -4778,11 +4778,11 @@ class SearchBoxComponent {
|
|
|
4778
4778
|
this.searchValueChange.emit(change);
|
|
4779
4779
|
}
|
|
4780
4780
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: SearchBoxComponent, deps: [{ token: SalesforceService }, { token: DataService }, { token: i1.ActivatedRoute }, { token: i0.ElementRef }, { token: I18nService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4781
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: SearchBoxComponent, selector: "lib-search-box", inputs: { placeHolderText: "placeHolderText", question: "question", apiMeta: "apiMeta", id: "id", readOnly: "readOnly", filterName: "filterName" }, outputs: { searchValueChange: "searchValueChange" }, viewQueries: [{ propertyName: "auto", first: true, predicate: ["auto"], descendants: true }], ngImport: i0, template: "<!-- // VD 12Jun24 - readonly change-->\n<div id=\"autocomplete-input\"
|
|
4781
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: SearchBoxComponent, selector: "lib-search-box", inputs: { placeHolderText: "placeHolderText", question: "question", apiMeta: "apiMeta", id: "id", readOnly: "readOnly", filterName: "filterName" }, outputs: { searchValueChange: "searchValueChange" }, viewQueries: [{ propertyName: "auto", first: true, predicate: ["auto"], descendants: true }], ngImport: i0, template: "<!-- // VD 12Jun24 - readonly change-->\n<div id=\"autocomplete-input\"> <!-- SKS5NOV25 search icon -->\n <input #auto id=\"searchbox-style\"\n (blur)=\"clearList()\" \n [(ngModel)]=\"filterName\" \n type=\"text\" \n name=\"name\" \n [readOnly]=\"readOnly\"\n [placeholder]=\"placeHolderText\" \n style=\"margin: 0 !important; padding-right: 30px;\" \n class=\"searchInput she-line-input form-control\" \n (focusin)=\"getSourceDataLocal($event)\" \n (input)=\"getSourceDataLocal($event)\">\n <div id=\"selectList\" style=\"position: absolute;position: absolute;background: white;z-index: 2;\">\n <div *ngIf=\"finalResults.length > 0 && showSuggestion\" \n style=\"max-height: 100vh;border: 1px solid #d2d4d6;overflow: scroll;\" \n class=\"suggestions-container\">\n <!-- HA 20DEC23 Uncommented the logic -->\n <!-- VD 03May- search changes -->\n <div *ngFor=\"let item of finalResults\" (click)='clickItem(item)' class=\"hoover\">\n <!-- VD 26Jun24 - id condition removed -->\n <div class=\"grid-x align-middle\" style=\"padding: 1rem\">\n <div *ngIf=\"item.thumbnail\" class=\"cell shrink\" style=\"width: 60px; margin-right: 1.6rem;\">\n <img [src]=\"item.thumbnail\" style=\"width: 60px;\" alt=\"\">\n </div>\n <div class=\"cell auto\" style=\"text-align: left; padding-left: 20px;\">\n <!--// VD 26JUN24 - pipe changes -->\n <h4 >{{ '' | getValue: item : SearchItem }}</h4>\n </div>\n </div>\n </div>\n <!-- HA 20DEC23 For Commented this for future purpose -->\n <!-- <table class=\"table table-striped table-bordered\">\n <thead>\n <tr>\n <th>{{ 'firstName' | i18n:i18nService.currentLanguage }}</th>\n <th>{{ 'lastName' | i18n:i18nService.currentLanguage }}</th>\n <th>{{ 'division' | i18n:i18nService.currentLanguage }}</th>\n <th>{{ 'numberPlate' | i18n:i18nService.currentLanguage }}</th>\n </tr>\n </thead>\n <tbody>\n <tr *ngFor=\"let item of finalResults\" (click)='clickItem(item)'>\n <td>{{ item.firstName }}</td>\n <td>{{ item.lastName }}</td>\n <td>{{ item.division }}</td>\n <td>{{ item.numberPlate }}</td>\n </tr>\n </tbody>\n </table> -->\n </div>\n</div>\n", styles: ["#searchbox-style{background-image:url('data:image/svg+xml;utf8,<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"11\" cy=\"11\" r=\"7\" stroke=\"%23434555\" stroke-opacity=\"0.65\" stroke-width=\"2\"/><path d=\"M20 20L17 17\" stroke=\"%23434555\" stroke-opacity=\"0.65\" stroke-width=\"2\" stroke-linecap=\"round\"/></svg>');background-position:right 5px center;background-repeat:no-repeat;background-size:24px;padding-right:35px}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "pipe", type: GetValuePipe, name: "getValue" }] });
|
|
4782
4782
|
}
|
|
4783
4783
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: SearchBoxComponent, decorators: [{
|
|
4784
4784
|
type: Component,
|
|
4785
|
-
args: [{ selector: 'lib-search-box', template: "<!-- // VD 12Jun24 - readonly change-->\n<div id=\"autocomplete-input\"
|
|
4785
|
+
args: [{ selector: 'lib-search-box', template: "<!-- // VD 12Jun24 - readonly change-->\n<div id=\"autocomplete-input\"> <!-- SKS5NOV25 search icon -->\n <input #auto id=\"searchbox-style\"\n (blur)=\"clearList()\" \n [(ngModel)]=\"filterName\" \n type=\"text\" \n name=\"name\" \n [readOnly]=\"readOnly\"\n [placeholder]=\"placeHolderText\" \n style=\"margin: 0 !important; padding-right: 30px;\" \n class=\"searchInput she-line-input form-control\" \n (focusin)=\"getSourceDataLocal($event)\" \n (input)=\"getSourceDataLocal($event)\">\n <div id=\"selectList\" style=\"position: absolute;position: absolute;background: white;z-index: 2;\">\n <div *ngIf=\"finalResults.length > 0 && showSuggestion\" \n style=\"max-height: 100vh;border: 1px solid #d2d4d6;overflow: scroll;\" \n class=\"suggestions-container\">\n <!-- HA 20DEC23 Uncommented the logic -->\n <!-- VD 03May- search changes -->\n <div *ngFor=\"let item of finalResults\" (click)='clickItem(item)' class=\"hoover\">\n <!-- VD 26Jun24 - id condition removed -->\n <div class=\"grid-x align-middle\" style=\"padding: 1rem\">\n <div *ngIf=\"item.thumbnail\" class=\"cell shrink\" style=\"width: 60px; margin-right: 1.6rem;\">\n <img [src]=\"item.thumbnail\" style=\"width: 60px;\" alt=\"\">\n </div>\n <div class=\"cell auto\" style=\"text-align: left; padding-left: 20px;\">\n <!--// VD 26JUN24 - pipe changes -->\n <h4 >{{ '' | getValue: item : SearchItem }}</h4>\n </div>\n </div>\n </div>\n <!-- HA 20DEC23 For Commented this for future purpose -->\n <!-- <table class=\"table table-striped table-bordered\">\n <thead>\n <tr>\n <th>{{ 'firstName' | i18n:i18nService.currentLanguage }}</th>\n <th>{{ 'lastName' | i18n:i18nService.currentLanguage }}</th>\n <th>{{ 'division' | i18n:i18nService.currentLanguage }}</th>\n <th>{{ 'numberPlate' | i18n:i18nService.currentLanguage }}</th>\n </tr>\n </thead>\n <tbody>\n <tr *ngFor=\"let item of finalResults\" (click)='clickItem(item)'>\n <td>{{ item.firstName }}</td>\n <td>{{ item.lastName }}</td>\n <td>{{ item.division }}</td>\n <td>{{ item.numberPlate }}</td>\n </tr>\n </tbody>\n </table> -->\n </div>\n</div>\n", styles: ["#searchbox-style{background-image:url('data:image/svg+xml;utf8,<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"11\" cy=\"11\" r=\"7\" stroke=\"%23434555\" stroke-opacity=\"0.65\" stroke-width=\"2\"/><path d=\"M20 20L17 17\" stroke=\"%23434555\" stroke-opacity=\"0.65\" stroke-width=\"2\" stroke-linecap=\"round\"/></svg>');background-position:right 5px center;background-repeat:no-repeat;background-size:24px;padding-right:35px}\n"] }]
|
|
4786
4786
|
}], ctorParameters: function () { return [{ type: SalesforceService }, { type: DataService }, { type: i1.ActivatedRoute }, { type: i0.ElementRef }, { type: I18nService }]; }, propDecorators: { placeHolderText: [{
|
|
4787
4787
|
type: Input
|
|
4788
4788
|
}], auto: [{
|
|
@@ -4840,7 +4840,9 @@ class FileUploadComponent {
|
|
|
4840
4840
|
// }
|
|
4841
4841
|
ngOnChanges(simpleChanges) {
|
|
4842
4842
|
console.log('simple changes', simpleChanges);
|
|
4843
|
-
|
|
4843
|
+
if (simpleChanges.allFiles) { //SKS5NOV25
|
|
4844
|
+
this.copyOfInputAllFiles = simpleChanges.allFiles.currentValue || [];
|
|
4845
|
+
}
|
|
4844
4846
|
if (simpleChanges.limitFileUploading) {
|
|
4845
4847
|
this.copyOfFileUploadingLimit = simpleChanges.limitFileUploading?.currentValue;
|
|
4846
4848
|
}
|
|
@@ -5756,7 +5758,7 @@ class QuestionbookComponent {
|
|
|
5756
5758
|
else if (ques.Type__c == 'Date' || ques.Type__c == 'DateTime') { // HA 24JAN24 Converting Date and DateTime to UTC
|
|
5757
5759
|
if (event.value) {
|
|
5758
5760
|
let d = new Date(event.value);
|
|
5759
|
-
let utcString = d
|
|
5761
|
+
let utcString = d?.toISOString();
|
|
5760
5762
|
ques.input = utcString;
|
|
5761
5763
|
}
|
|
5762
5764
|
else {
|
|
@@ -6103,7 +6105,7 @@ class BookletComponent {
|
|
|
6103
6105
|
const currentBook = dataToParent['jsonBook'].bookQuestionsMap[key];
|
|
6104
6106
|
currentBook.Questions__r.records.forEach(element => {
|
|
6105
6107
|
// VD 01Aug24 - validation change
|
|
6106
|
-
if (element.Is_Optional__c && dataToParent['action'] == 'submit' && !element.input && !element.Is_Hide__c && element.Type__c != 'Label' && element.Type__c != 'Image') {
|
|
6108
|
+
if (element.Is_Optional__c && dataToParent['action'] == 'submit' && (!element.input || (Array.isArray(element.input) && element.input.length === 0)) && !element.Is_Hide__c && element.Type__c != 'Label' && element.Type__c != 'Image') { //SKS5NOV25
|
|
6107
6109
|
element.error = true;
|
|
6108
6110
|
validForm = false;
|
|
6109
6111
|
this.changeService.submitChange(element.Id);
|
|
@@ -6193,7 +6195,7 @@ class BookletComponent {
|
|
|
6193
6195
|
}
|
|
6194
6196
|
// HA 24JAN24 To bind-in Date and DateTime
|
|
6195
6197
|
else if (ques.Type__c === 'Date' || ques.Type__c == 'DateTime') {
|
|
6196
|
-
ques.input = new Date(value
|
|
6198
|
+
ques.input = new Date(value?.toString());
|
|
6197
6199
|
}
|
|
6198
6200
|
// HA 12FEB24 To bind-in Location Type
|
|
6199
6201
|
else if (ques.Type__c === 'Location') {
|
|
@@ -6222,7 +6224,7 @@ class BookletComponent {
|
|
|
6222
6224
|
referenceQuestions.forEach(field => {
|
|
6223
6225
|
if (field.Reference_Field__c == k) {
|
|
6224
6226
|
if (field.Type__c === 'Date' || field.Type__c == 'DateTime' || field.Type__c == 'Time') {
|
|
6225
|
-
field.input = new Date(v
|
|
6227
|
+
field.input = new Date(v?.toString());
|
|
6226
6228
|
}
|
|
6227
6229
|
if (field.Type__c === 'Dropdown' || field.Type__c === 'Radio') {
|
|
6228
6230
|
field.selectedValue = v;
|