@acorex/components 4.2.46 → 4.2.51
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/esm2020/lib/dropdown/dropdown.component.mjs +5 -4
- package/esm2020/lib/property-editor/property-editor.class.mjs +1 -1
- package/esm2020/lib/search-bar/search-bar.component.mjs +27 -15
- package/fesm2015/acorex-components.mjs +29 -16
- package/fesm2015/acorex-components.mjs.map +1 -1
- package/fesm2020/acorex-components.mjs +29 -16
- package/fesm2020/acorex-components.mjs.map +1 -1
- package/lib/property-editor/property-editor.class.d.ts +2 -0
- package/lib/search-bar/search-bar.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export interface AXPropertyDef {
|
|
|
16
16
|
row?: number;
|
|
17
17
|
col?: number | AXPropertyColDef;
|
|
18
18
|
filterOptions?: FilterModel;
|
|
19
|
+
uniqueNumber?: number;
|
|
19
20
|
}
|
|
20
21
|
export interface FilterModel {
|
|
21
22
|
operator?: any;
|
|
@@ -29,6 +30,7 @@ export interface FilterModel {
|
|
|
29
30
|
export interface FiltersModel {
|
|
30
31
|
name?: string;
|
|
31
32
|
value?: string;
|
|
33
|
+
field?: string;
|
|
32
34
|
filterOptions: FilterModel;
|
|
33
35
|
}
|
|
34
36
|
export interface AXPropertyColDef {
|