@rangertechnologies/ngnxt 2.1.177 → 2.1.178
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/datatable/datatable.component.mjs +15 -7
- package/esm2022/lib/components/file-upload/file-upload.component.mjs +26 -5
- package/esm2022/lib/components/nxt-input/nxt-input.component.mjs +70 -13
- package/esm2022/lib/pages/booklet/booklet.component.mjs +11 -4
- package/esm2022/lib/pages/questionbook/questionbook.component.mjs +3 -3
- package/fesm2022/rangertechnologies-ngnxt.mjs +122 -29
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/components/datatable/datatable.component.d.ts +1 -0
- package/lib/components/file-upload/file-upload.component.d.ts +8 -1
- package/lib/components/nxt-input/nxt-input.component.d.ts +3 -1
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.178.tgz +0 -0
- package/rangertechnologies-ngnxt-2.1.177.tgz +0 -0
|
@@ -137,6 +137,7 @@ export declare class NxtDatatable {
|
|
|
137
137
|
currentViewFilter: any;
|
|
138
138
|
currentHeaderLabels: any[];
|
|
139
139
|
currentDisplayedColumns: any[];
|
|
140
|
+
isFullTableSummaryRow: boolean;
|
|
140
141
|
constructor(renderer: Renderer2, dataService: DataService, changeService: ChangeService);
|
|
141
142
|
ngOnChanges(changes: SimpleChanges): void;
|
|
142
143
|
ngOnInit(): void;
|
|
@@ -9,7 +9,7 @@ export declare class FileUploadComponent implements OnInit, OnChanges {
|
|
|
9
9
|
private dataService;
|
|
10
10
|
private sanitizer;
|
|
11
11
|
i18nService: I18nService;
|
|
12
|
-
selectedFileData: EventEmitter<any
|
|
12
|
+
selectedFileData: EventEmitter<any>;
|
|
13
13
|
deletedFileData: EventEmitter<any>;
|
|
14
14
|
allFiles: any;
|
|
15
15
|
limitFileUploading: any;
|
|
@@ -29,6 +29,10 @@ export declare class FileUploadComponent implements OnInit, OnChanges {
|
|
|
29
29
|
fileName: string;
|
|
30
30
|
currentFile: any;
|
|
31
31
|
showPopup: boolean;
|
|
32
|
+
viewEdit: boolean;
|
|
33
|
+
originalValue: any;
|
|
34
|
+
isSaveHovered: boolean;
|
|
35
|
+
isDiscardHovered: boolean;
|
|
32
36
|
constructor(SharedService: SharedService, dataService: DataService, sanitizer: DomSanitizer, i18nService: I18nService);
|
|
33
37
|
ngOnInit(): void;
|
|
34
38
|
ngOnChanges(simpleChanges: SimpleChanges): void;
|
|
@@ -43,6 +47,9 @@ export declare class FileUploadComponent implements OnInit, OnChanges {
|
|
|
43
47
|
setFileUrl(url: any): void;
|
|
44
48
|
getDocIcon(docName: any): "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PDF.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-XLSX.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-DOCX.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-AVI.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-DOC.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-GIF.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-JPG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MOV.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MP3.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MP4.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MPEG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-MPG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PNG.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-PPT.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-TXT.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/img-file-XLS.png" | "https://rnxt.s3.amazonaws.com/Icons/fileTypeIcons/ic_document.svg";
|
|
45
49
|
close(): void;
|
|
50
|
+
viewEditClick(ques: any): void;
|
|
51
|
+
saveChanges(): void;
|
|
52
|
+
discardChanges(): void;
|
|
46
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
|
|
47
54
|
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "app-file-upload", never, { "allFiles": { "alias": "allFiles"; "required": false; }; "limitFileUploading": { "alias": "limitFileUploading"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "isShowNoFileIcon": { "alias": "isShowNoFileIcon"; "required": false; }; "question": { "alias": "question"; "required": false; }; "error": { "alias": "error"; "required": false; }; }, { "selectedFileData": "selectedFileData"; "deletedFileData": "deletedFileData"; }, never, never, true, never>;
|
|
48
55
|
}
|
|
@@ -6,6 +6,7 @@ import { Subscription } from 'rxjs';
|
|
|
6
6
|
import { QuillModules } from 'ngx-quill';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare const QuillConfiguration: QuillModules;
|
|
9
|
+
export declare const EmptyQuillConfiguration: QuillModules;
|
|
9
10
|
export declare class NxtInput implements AfterViewInit {
|
|
10
11
|
#private;
|
|
11
12
|
private elementRef;
|
|
@@ -111,7 +112,7 @@ export declare class NxtInput implements AfterViewInit {
|
|
|
111
112
|
dateSelected: any;
|
|
112
113
|
timeSelected: any;
|
|
113
114
|
quillConfiguration: QuillModules;
|
|
114
|
-
|
|
115
|
+
emptyQuillConfiguration: QuillModules;
|
|
115
116
|
viewEdit: boolean;
|
|
116
117
|
originalValue: any;
|
|
117
118
|
isSaveHovered: boolean;
|
|
@@ -121,6 +122,7 @@ export declare class NxtInput implements AfterViewInit {
|
|
|
121
122
|
ngAfterViewInit(): void;
|
|
122
123
|
ngOnChanges(changes: SimpleChanges): void;
|
|
123
124
|
ngOnInit(): void;
|
|
125
|
+
ngOnDestroy(): void;
|
|
124
126
|
private setupValidators;
|
|
125
127
|
closeDropdown(event: Event): void;
|
|
126
128
|
onChange: (value: string) => void;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|