@rangertechnologies/ngnxt 2.1.326 → 2.1.328
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 +51 -20
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -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.328.tgz +0 -0
- package/rangertechnologies-ngnxt-2.1.326.tgz +0 -0
|
@@ -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
|