ui-mathilde-web 0.10.11 → 0.10.12
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/style.css +1 -1
- package/dist/ui-mathilde-web.d.ts +10 -1
- package/dist/ui-mathilde-web.js +5193 -5158
- package/dist/ui-mathilde-web.umd.cjs +50 -50
- package/package.json +1 -1
|
@@ -396,6 +396,10 @@ declare interface FilterGroup {
|
|
|
396
396
|
declare interface FilterGroup_2 {
|
|
397
397
|
id: string;
|
|
398
398
|
conditions: FilterCondition_2[];
|
|
399
|
+
/**
|
|
400
|
+
* Operador entre las condiciones dentro de ESTE grupo.
|
|
401
|
+
* En v2 del QueryBuilder, este operador es OR (chips dentro de la misma columna).
|
|
402
|
+
*/
|
|
399
403
|
operator: 'AND' | 'OR';
|
|
400
404
|
}
|
|
401
405
|
|
|
@@ -407,7 +411,12 @@ declare interface FilterSection {
|
|
|
407
411
|
|
|
408
412
|
declare interface FilterSection_2 {
|
|
409
413
|
id: string;
|
|
410
|
-
title:
|
|
414
|
+
title: string;
|
|
415
|
+
/**
|
|
416
|
+
* Operador entre grupos dentro de ESTA sección.
|
|
417
|
+
* En v2 del QueryBuilder, este operador es AND (columnas entre sí).
|
|
418
|
+
*/
|
|
419
|
+
operator: 'AND' | 'OR';
|
|
411
420
|
groups: FilterGroup_2[];
|
|
412
421
|
}
|
|
413
422
|
|