@cxbox-ui/core 2.4.0 → 2.4.1-CXBOX-451-alpha.0
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/dist/core.d.ts +6 -0
- package/package.json +1 -1
package/dist/core.d.ts
CHANGED
|
@@ -3137,6 +3137,7 @@ export declare interface RowMeta {
|
|
|
3137
3137
|
* @param drillDownKey - ключ для получения адреса из данных
|
|
3138
3138
|
* @param values TODO:
|
|
3139
3139
|
* @param filterValues TODO:
|
|
3140
|
+
* @param allValues TODO:
|
|
3140
3141
|
* @param filterable - можно ли фильтровать записи по этому полю
|
|
3141
3142
|
*/
|
|
3142
3143
|
export declare interface RowMetaField {
|
|
@@ -3167,9 +3168,14 @@ export declare interface RowMetaField {
|
|
|
3167
3168
|
}>;
|
|
3168
3169
|
filterValues?: Array<{
|
|
3169
3170
|
value: string;
|
|
3171
|
+
icon?: string;
|
|
3170
3172
|
}>;
|
|
3171
3173
|
filterable?: boolean;
|
|
3172
3174
|
sortable?: boolean;
|
|
3175
|
+
allValues?: Array<{
|
|
3176
|
+
value: string;
|
|
3177
|
+
icon: string;
|
|
3178
|
+
}>;
|
|
3173
3179
|
}
|
|
3174
3180
|
|
|
3175
3181
|
export declare interface RowMetaResponse extends CxboxResponse {
|