@rangertechnologies/ngnxt 2.1.142 → 2.1.144
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/environments/version.mjs +2 -2
- package/esm2022/lib/components/custom-input/custom-input.component.mjs +3 -3
- package/esm2022/lib/components/datatable/datatable.component.mjs +78 -35
- package/esm2022/lib/pages/builder/element/element.component.mjs +12 -24
- package/esm2022/lib/pages/questionbook/questionbook.component.mjs +3 -3
- package/fesm2022/rangertechnologies-ngnxt.mjs +714 -681
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/components/custom-input/custom-input.component.d.ts +1 -2
- package/lib/components/datatable/datatable.component.d.ts +7 -6
- package/lib/pages/builder/element/element.component.d.ts +0 -2
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.144.tgz +0 -0
- package/src/lib/style.css +4 -4
- package/rangertechnologies-ngnxt-2.1.142.tgz +0 -0
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { Subscription } from 'rxjs';
|
|
3
3
|
import { ChangeService } from '../../services/change.service';
|
|
4
|
-
import { Question } from '../../wrapper';
|
|
5
4
|
import { I18nService } from '../../i18n.service';
|
|
6
5
|
import { DataService } from '../../services/data.service';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
@@ -10,7 +9,7 @@ export declare class CustomInputComponent implements OnInit {
|
|
|
10
9
|
i18nService: I18nService;
|
|
11
10
|
private dataService;
|
|
12
11
|
value: any | any[];
|
|
13
|
-
question:
|
|
12
|
+
question: any;
|
|
14
13
|
disabled: boolean;
|
|
15
14
|
placeholder: string;
|
|
16
15
|
error: any;
|
|
@@ -137,11 +137,11 @@ export declare class NxtDatatable {
|
|
|
137
137
|
computeSummaryColumns(): void;
|
|
138
138
|
computeSummaryValues(): void;
|
|
139
139
|
onSummaryInputChange(): void;
|
|
140
|
-
sortData(column: string, sortingState?: any | undefined, currentState?: any | undefined): void;
|
|
140
|
+
sortData(column: string, sortingState?: any | undefined, currentState?: any | undefined, from?: any): void;
|
|
141
141
|
onScroll(tableContainer: HTMLElement): void;
|
|
142
142
|
onDocumentClick(event: any): void;
|
|
143
143
|
filter(datas: any): void;
|
|
144
|
-
pageParams(event: any): void;
|
|
144
|
+
pageParams(event: any, from?: any): void;
|
|
145
145
|
applyFilter(event: any, from?: any): void;
|
|
146
146
|
/** SKS15FEB25 Whether the number of selected elements matches the total number of rows. */
|
|
147
147
|
isAllSelected(): boolean;
|
|
@@ -150,6 +150,7 @@ export declare class NxtDatatable {
|
|
|
150
150
|
isSomeSelected(): boolean;
|
|
151
151
|
separateRowSelect(data: any, element: any): void;
|
|
152
152
|
tableClick(data: any): void;
|
|
153
|
+
getNestedValue(obj: any, path: string): any;
|
|
153
154
|
filterRetain(filterkey: any, from?: any): void;
|
|
154
155
|
removeDuplicates(objects: any): any[];
|
|
155
156
|
deleteRecord(data: any, index: number): void;
|
|
@@ -160,17 +161,17 @@ export declare class NxtDatatable {
|
|
|
160
161
|
getValue(element: any, column: string): any;
|
|
161
162
|
onClickHyperlink(column: any, element: any, isHyperLink: any): void;
|
|
162
163
|
checkHyperlinkCheck(col: any): boolean;
|
|
163
|
-
addTableRecord(element: any): void;
|
|
164
|
+
addTableRecord(element: any, from?: any): void;
|
|
164
165
|
isConditionMet(element: any, conditions: any): boolean;
|
|
165
166
|
isDateColumn(column: string): boolean;
|
|
166
167
|
isTimeColumn(column: string): boolean;
|
|
167
|
-
onSearch(event: any): void;
|
|
168
|
+
onSearch(event: any, from?: any): void;
|
|
168
169
|
emptySearch(event: any): void;
|
|
169
170
|
onSideNavInfoClick(data: any, col: any): void;
|
|
170
171
|
onColumnClick(column: string): void;
|
|
171
|
-
closefilter(): void;
|
|
172
|
+
closefilter(from?: any): void;
|
|
172
173
|
isSelected(event: any): boolean;
|
|
173
|
-
checkedData(event: any): void;
|
|
174
|
+
checkedData(event: any, from?: any): void;
|
|
174
175
|
private addClickOutsideListener;
|
|
175
176
|
private removeClickListener;
|
|
176
177
|
toggleDropdown(index: number): void;
|
|
@@ -16,7 +16,6 @@ export declare class ElementComponent {
|
|
|
16
16
|
};
|
|
17
17
|
basicElements: any[];
|
|
18
18
|
advancedElements: any[];
|
|
19
|
-
elementDisabledArray: any;
|
|
20
19
|
version: string;
|
|
21
20
|
book: any;
|
|
22
21
|
selectedElement: any;
|
|
@@ -70,7 +69,6 @@ export declare class ElementComponent {
|
|
|
70
69
|
removeColumn(event: any): void;
|
|
71
70
|
fileChangeEvent(index: any, event: any): Promise<void>;
|
|
72
71
|
private readFileAsDataURL;
|
|
73
|
-
isElementDisabled(elementType: string): boolean;
|
|
74
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElementComponent, never>;
|
|
75
73
|
static ɵcmp: i0.ɵɵComponentDeclaration<ElementComponent, "app-element", never, { "bookletJSON": { "alias": "bookletJSON"; "required": false; }; "bookletId": { "alias": "bookletId"; "required": false; }; }, { "templateMode": "templateMode"; }, never, never, false, never>;
|
|
76
74
|
}
|
package/package.json
CHANGED
|
Binary file
|
package/src/lib/style.css
CHANGED
|
@@ -976,10 +976,10 @@ select{
|
|
|
976
976
|
padding-bottom: 5px;
|
|
977
977
|
padding-top: 5px;
|
|
978
978
|
padding-right: 15px;
|
|
979
|
-
padding-left: 2px
|
|
980
|
-
color: #9a9a9a
|
|
981
|
-
font-size: 14px
|
|
982
|
-
font-weight: 400
|
|
979
|
+
padding-left: 2px;
|
|
980
|
+
color: #9a9a9a;
|
|
981
|
+
font-size: 14px;
|
|
982
|
+
font-weight: 400;
|
|
983
983
|
}
|
|
984
984
|
.input-shengel {
|
|
985
985
|
border: none;
|
|
Binary file
|