fixa-admin 0.0.54 → 0.0.55
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.
|
@@ -125,6 +125,7 @@ export interface FilterBoxModel {
|
|
|
125
125
|
items?: FilterBoxItemsModel[];
|
|
126
126
|
value: any;
|
|
127
127
|
nodes: NzTreeNodeOptions[];
|
|
128
|
+
position: 'filter' | 'data';
|
|
128
129
|
type?: 'boolean' | 'enum' | 'string' | 'number' | 'select' | 'date' | 'date-time' | 'price' | 'image' | 'tree-select' | 'time';
|
|
129
130
|
}
|
|
130
131
|
export interface FilterBoxItemsModel {
|
|
@@ -136,6 +137,7 @@ export interface FilterItemsModel {
|
|
|
136
137
|
field: string;
|
|
137
138
|
label: string;
|
|
138
139
|
items?: () => Promise<FilterBoxItemsModel[]>;
|
|
140
|
+
position?: 'filter' | 'data';
|
|
139
141
|
type: 'boolean' | 'enum' | 'string' | 'number' | 'select' | 'date' | 'date-time' | 'price' | 'image' | 'tree-select' | 'time';
|
|
140
142
|
}
|
|
141
143
|
export interface SelectItemsModel {
|