@hotelinking/ui 14.47.1 → 14.47.4
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/ui.cjs +1 -1
- package/dist/ui.d.ts +17 -0
- package/dist/ui.es.js +1209 -1187
- package/package.json +1 -1
package/dist/ui.d.ts
CHANGED
|
@@ -201,6 +201,15 @@ declare interface Props {
|
|
|
201
201
|
};
|
|
202
202
|
/** Categorías disponibles para crear filtros */
|
|
203
203
|
availableCategories: CategoryConfig[];
|
|
204
|
+
/** Filtros pre-aplicados para regenerar el componente */
|
|
205
|
+
filters?: {
|
|
206
|
+
logicOperator: string;
|
|
207
|
+
filters: Array<{
|
|
208
|
+
category: string;
|
|
209
|
+
type: 'uiInput' | 'uiSelect';
|
|
210
|
+
value: string | undefined;
|
|
211
|
+
}>;
|
|
212
|
+
};
|
|
204
213
|
}
|
|
205
214
|
|
|
206
215
|
export declare type SelectItemType = {
|
|
@@ -1585,6 +1594,14 @@ value: string | undefined;
|
|
|
1585
1594
|
}[];
|
|
1586
1595
|
}) => any) | undefined;
|
|
1587
1596
|
}>, {
|
|
1597
|
+
filters: {
|
|
1598
|
+
logicOperator: string;
|
|
1599
|
+
filters: {
|
|
1600
|
+
category: string;
|
|
1601
|
+
type: "uiInput" | "uiSelect";
|
|
1602
|
+
value: string | undefined;
|
|
1603
|
+
}[];
|
|
1604
|
+
};
|
|
1588
1605
|
literals: {
|
|
1589
1606
|
filters: string;
|
|
1590
1607
|
contains: string;
|