@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.
@@ -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?: undefined;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rangertechnologies/ngnxt",
3
- "version": "2.1.326",
3
+ "version": "2.1.328",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14"