@rangertechnologies/ngnxt 2.1.295 → 2.1.296
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/fesm2022/rangertechnologies-ngnxt.mjs +208 -63
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/components/datatable/datatable.component.d.ts +5 -1
- package/lib/pipe/NxtDate.pipe.d.ts +4 -1
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.296.tgz +0 -0
- package/rangertechnologies-ngnxt-2.1.295.tgz +0 -0
|
@@ -127,7 +127,7 @@ export declare class NxtDatatable {
|
|
|
127
127
|
deleteIndex: number;
|
|
128
128
|
showPopover: boolean;
|
|
129
129
|
summaryValues: {
|
|
130
|
-
[label: string]:
|
|
130
|
+
[label: string]: any;
|
|
131
131
|
};
|
|
132
132
|
isSummaryColumn: boolean;
|
|
133
133
|
isSummaryStartColumn: any[];
|
|
@@ -154,6 +154,8 @@ export declare class NxtDatatable {
|
|
|
154
154
|
currencyOption: any;
|
|
155
155
|
columnSourceId: any;
|
|
156
156
|
summaryRowsOrginal: any;
|
|
157
|
+
displaySummaryRows: any;
|
|
158
|
+
Array: ArrayConstructor;
|
|
157
159
|
constructor(countryService: CountryService, storageService: StorageService, cdRef: ChangeDetectorRef, translationService: TranslationService, renderer: Renderer2, dataService: DataService, changeService: ChangeService);
|
|
158
160
|
ngOnChanges(changes: SimpleChanges): void;
|
|
159
161
|
ngOnInit(): void;
|
|
@@ -171,6 +173,8 @@ export declare class NxtDatatable {
|
|
|
171
173
|
onDocumentClick(event: any): void;
|
|
172
174
|
filter(datas: any): void;
|
|
173
175
|
pageParams(event: any, from?: any): void;
|
|
176
|
+
/** SKS29OCT25 Formats a cell value exactly the way it appears in the UI */
|
|
177
|
+
private formatDateForSearch;
|
|
174
178
|
applyFilter(event: any, from?: any): void;
|
|
175
179
|
/** SKS15FEB25 Whether the number of selected elements matches the total number of rows. */
|
|
176
180
|
isAllSelected(): boolean;
|
|
@@ -3,7 +3,10 @@ import 'moment/locale/ar-sa';
|
|
|
3
3
|
import 'moment/locale/en-gb';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class NxtDatePipe implements PipeTransform {
|
|
6
|
-
transform(value: any,
|
|
6
|
+
transform(value: any, typeOrFormat?: 'date' | 'datetime' | 'month' | 'time' | string, languageCode?: string, dateFormatType?: 'hijri' | 'gregorian'): string;
|
|
7
|
+
/** SKS29OCT25 Map Angular-style date aliases to Moment formats */
|
|
8
|
+
private mapAngularFormat;
|
|
9
|
+
/** SKS29OCT25 Convert digits to Arabic numerals */
|
|
7
10
|
private toArabicNumbers;
|
|
8
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<NxtDatePipe, never>;
|
|
9
12
|
static ɵpipe: i0.ɵɵPipeDeclaration<NxtDatePipe, "NxtDate", true>;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|