@rangertechnologies/ngnxt 2.1.327 → 2.1.329
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 +53 -13
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/components/datatable/datatable.component.d.ts +1 -0
- package/lib/components/search-box/search-box.component.d.ts +2 -1
- package/lib/pages/builder/element/element.component.d.ts +1 -0
- package/lib/pages/builder/properties/common-fields.constants.d.ts +25 -6
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.329.tgz +0 -0
- package/rangertechnologies-ngnxt-2.1.327.tgz +0 -0
|
@@ -237,6 +237,7 @@ export declare class NxtDatatable {
|
|
|
237
237
|
discardChanges(): void;
|
|
238
238
|
groupFilterEmit(event: any, from?: any): void;
|
|
239
239
|
groupFilterRetain(filterkey: any, from?: any): void;
|
|
240
|
+
changeAnnounce(event: any): void;
|
|
240
241
|
static ɵfac: i0.ɵɵFactoryDeclaration<NxtDatatable, never>;
|
|
241
242
|
static ɵcmp: i0.ɵɵComponentDeclaration<NxtDatatable, "nxt-datatable", never, { "data": { "alias": "data"; "required": false; }; "summaryValues": { "alias": "summaryValues"; "required": false; }; "tableFilterData": { "alias": "tableFilterData"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "withCheckBox": { "alias": "withCheckBox"; "required": false; }; "searchBar": { "alias": "searchBar"; "required": false; }; "tableSaveButton": { "alias": "tableSaveButton"; "required": false; }; "stickyColumn": { "alias": "stickyColumn"; "required": false; }; "tableWidth": { "alias": "tableWidth"; "required": false; }; "actionColumHeader": { "alias": "actionColumHeader"; "required": false; }; "actionButton": { "alias": "actionButton"; "required": false; }; "title": { "alias": "title"; "required": false; }; "isButtons": { "alias": "isButtons"; "required": false; }; "buttonArray": { "alias": "buttonArray"; "required": false; }; "tableId": { "alias": "tableId"; "required": false; }; "isEditRow": { "alias": "isEditRow"; "required": false; }; "isDeleteRow": { "alias": "isDeleteRow"; "required": false; }; "addInlineRecord": { "alias": "addInlineRecord"; "required": false; }; "searchConfigs": { "alias": "searchConfigs"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "pagination": { "alias": "pagination"; "required": false; }; "actionButtonArray": { "alias": "actionButtonArray"; "required": false; }; "multipleFilter": { "alias": "multipleFilter"; "required": false; }; "isPagination": { "alias": "isPagination"; "required": false; }; "isListViews": { "alias": "isListViews"; "required": false; }; "id": { "alias": "id"; "required": false; }; "isNosIndicator": { "alias": "isNosIndicator"; "required": false; }; "isEditable": { "alias": "isEditable"; "required": false; }; "from": { "alias": "from"; "required": false; }; "question": { "alias": "question"; "required": false; }; "rowTextSize": { "alias": "rowTextSize"; "required": false; }; "rowTextColor": { "alias": "rowTextColor"; "required": false; }; "apiMeta": { "alias": "apiMeta"; "required": false; }; "summaryRows": { "alias": "summaryRows"; "required": false; }; "summaryColumns": { "alias": "summaryColumns"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "tableConfig": { "alias": "tableConfig"; "required": false; }; "tableParams": { "alias": "tableParams"; "required": false; }; "listViews": { "alias": "listViews"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "languageCode": { "alias": "languageCode"; "required": false; }; "selectedColumn": { "alias": "selectedColumn"; "required": false; }; "allIcons": { "alias": "allIcons"; "required": false; }; "isButtonLoading": { "alias": "isButtonLoading"; "required": false; }; "isPreview": { "alias": "isPreview"; "required": false; }; "groupFilter": { "alias": "groupFilter"; "required": false; }; "groupFilterConfig": { "alias": "groupFilterConfig"; "required": false; }; "groupFilterColumn": { "alias": "groupFilterColumn"; "required": false; }; "onlyView": { "alias": "onlyView"; "required": false; }; "tableHeight": { "alias": "tableHeight"; "required": false; }; "serialNumberColumn": { "alias": "serialNumberColumn"; "required": false; }; }, { "tableRowClick": "tableRowClick"; "onEditData": "onEditData"; "onSaveData": "onSaveData"; "saveButtonData": "saveButtonData"; "onDeleteData": "onDeleteData"; "buttonEmit": "buttonEmit"; "hyperLinkEmit": "hyperLinkEmit"; "sideNavEmit": "sideNavEmit"; "actionButtonEmit": "actionButtonEmit"; "columnSelected": "columnSelected"; "removeColumn": "removeColumn"; "valueChange": "valueChange"; "selectedValues": "selectedValues"; "fileEmit": "fileEmit"; "NxtTableFilterEmit": "NxtTableFilterEmit"; "hadleDropDownDependent": "hadleDropDownDependent"; "NxtTableParamsEmit": "NxtTableParamsEmit"; }, never, never, true, never>;
|
|
242
243
|
}
|
|
@@ -20,6 +20,7 @@ export declare class NxtSearchBox implements OnInit, OnChanges, OnDestroy {
|
|
|
20
20
|
from: any;
|
|
21
21
|
value: any;
|
|
22
22
|
onlyView: boolean;
|
|
23
|
+
rowData: any;
|
|
23
24
|
searchValueChange: EventEmitter<any>;
|
|
24
25
|
searchWrapper: ElementRef;
|
|
25
26
|
SearchItem: any;
|
|
@@ -67,5 +68,5 @@ export declare class NxtSearchBox implements OnInit, OnChanges, OnDestroy {
|
|
|
67
68
|
private sanitizeHtml;
|
|
68
69
|
removeValueEmit(): void;
|
|
69
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<NxtSearchBox, never>;
|
|
70
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NxtSearchBox, "nxt-search-box", never, { "placeHolderText": { "alias": "placeHolderText"; "required": false; }; "question": { "alias": "question"; "required": false; }; "apiMeta": { "alias": "apiMeta"; "required": false; }; "id": { "alias": "id"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "from": { "alias": "from"; "required": false; }; "value": { "alias": "value"; "required": false; }; "onlyView": { "alias": "onlyView"; "required": false; }; }, { "searchValueChange": "searchValueChange"; }, never, never, true, never>;
|
|
71
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NxtSearchBox, "nxt-search-box", never, { "placeHolderText": { "alias": "placeHolderText"; "required": false; }; "question": { "alias": "question"; "required": false; }; "apiMeta": { "alias": "apiMeta"; "required": false; }; "id": { "alias": "id"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "from": { "alias": "from"; "required": false; }; "value": { "alias": "value"; "required": false; }; "onlyView": { "alias": "onlyView"; "required": false; }; "rowData": { "alias": "rowData"; "required": false; }; }, { "searchValueChange": "searchValueChange"; }, never, never, true, never>;
|
|
71
72
|
}
|
|
@@ -31,6 +31,7 @@ export declare class ElementComponent {
|
|
|
31
31
|
templateSelected: boolean;
|
|
32
32
|
isHeaderSelect: boolean;
|
|
33
33
|
selectedColumn: any;
|
|
34
|
+
statictype: string[];
|
|
34
35
|
constructor(cdRef: ChangeDetectorRef, formBuilderService: FormBuilderService, translationService: TranslationService);
|
|
35
36
|
ngOnInit(): void;
|
|
36
37
|
toggleSection(section: "basic" | "advanced"): void;
|
|
@@ -5,6 +5,8 @@ export declare const COMMON_ELEMENT_PROPS: ({
|
|
|
5
5
|
key: string;
|
|
6
6
|
labelPath: string;
|
|
7
7
|
isTranslate?: undefined;
|
|
8
|
+
required?: undefined;
|
|
9
|
+
options?: undefined;
|
|
8
10
|
} | {
|
|
9
11
|
label: string;
|
|
10
12
|
placeholder: string;
|
|
@@ -12,6 +14,8 @@ export declare const COMMON_ELEMENT_PROPS: ({
|
|
|
12
14
|
key: string;
|
|
13
15
|
isTranslate: boolean;
|
|
14
16
|
labelPath: string;
|
|
17
|
+
required?: undefined;
|
|
18
|
+
options?: undefined;
|
|
15
19
|
} | {
|
|
16
20
|
label: string;
|
|
17
21
|
type: string;
|
|
@@ -19,6 +23,21 @@ export declare const COMMON_ELEMENT_PROPS: ({
|
|
|
19
23
|
labelPath: string;
|
|
20
24
|
placeholder?: undefined;
|
|
21
25
|
isTranslate?: undefined;
|
|
26
|
+
required?: undefined;
|
|
27
|
+
options?: undefined;
|
|
28
|
+
} | {
|
|
29
|
+
label: string;
|
|
30
|
+
type: string;
|
|
31
|
+
key: string;
|
|
32
|
+
required: boolean;
|
|
33
|
+
labelPath: string;
|
|
34
|
+
options: {
|
|
35
|
+
label: string;
|
|
36
|
+
value: string;
|
|
37
|
+
labelPath: string;
|
|
38
|
+
}[];
|
|
39
|
+
placeholder?: undefined;
|
|
40
|
+
isTranslate?: undefined;
|
|
22
41
|
})[];
|
|
23
42
|
export declare const COMMON_FIELD_PROPS: ({
|
|
24
43
|
label: string;
|
|
@@ -71,11 +90,7 @@ export declare const COMMON_APPEARANCE_PROPS: ({
|
|
|
71
90
|
key: string;
|
|
72
91
|
required: boolean;
|
|
73
92
|
labelPath: string;
|
|
74
|
-
options
|
|
75
|
-
label: string;
|
|
76
|
-
value: string;
|
|
77
|
-
labelPath: string;
|
|
78
|
-
}[];
|
|
93
|
+
options?: undefined;
|
|
79
94
|
defaultValue?: undefined;
|
|
80
95
|
} | {
|
|
81
96
|
label: string;
|
|
@@ -83,7 +98,11 @@ export declare const COMMON_APPEARANCE_PROPS: ({
|
|
|
83
98
|
key: string;
|
|
84
99
|
required: boolean;
|
|
85
100
|
labelPath: string;
|
|
86
|
-
options
|
|
101
|
+
options: {
|
|
102
|
+
label: string;
|
|
103
|
+
value: string;
|
|
104
|
+
labelPath: string;
|
|
105
|
+
}[];
|
|
87
106
|
defaultValue?: undefined;
|
|
88
107
|
} | {
|
|
89
108
|
label: string;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|