kupos-ui-components-lib 9.7.1 → 9.7.2

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.
@@ -128,6 +128,20 @@ export interface MobileServiceItemProps {
128
128
  whiteFireIcon?: string
129
129
  femaleAnim?:string
130
130
  cancelTicketIcon?: string;
131
+ thunderAnim?: string
132
+ personsAnim?: string
133
+ whiteOrigin?: string,
134
+ whiteDestination?: string,
135
+ userIcon?: string,
136
+
137
+ sheildIcon?: string,
138
+ busIcon?: string,
139
+ whiteDownArrow?: string,
140
+ empressaIcon?: string,
141
+ flexibleIcon?: string,
142
+ listoIcon?: string,
143
+ precioIcon?: string,
144
+ confirmarIcon?: string
131
145
  [key: string]: string | Record<string, string | undefined> | undefined;
132
146
  };
133
147
  useLottieFor?: string[];
@@ -196,4 +210,12 @@ export interface MobileServiceItemProps {
196
210
  label?: string; // e.g. "personas están viendo este viaje"
197
211
  icon?: string; // optional icon URL
198
212
  };
213
+ isFeatureDropDownExpand?: any;
214
+ setIsFeatureDropDownExpand?: (value: any) => void;
215
+ ticketQuantity?: number;
216
+ onIncreaseTicketQuantity?: (serviceItem: MobileServiceItemProps["serviceItem"]) => void;
217
+ onDecreaseTicketQuantity?: (serviceItem: MobileServiceItemProps["serviceItem"]) => void;
218
+ cityOrigin?: { value: number; label: string };
219
+ cityDestination?: { value: number; label: string };
220
+ isNewUi?: boolean
199
221
  }
@@ -135,10 +135,15 @@ export interface ServiceItemProps {
135
135
  whiteOrigin?: string,
136
136
  whiteDestination?: string,
137
137
  userIcon?: string,
138
+
138
139
  sheildIcon?: string,
139
140
  busIcon?: string,
140
141
  whiteDownArrow?: string,
141
-
142
+ empressaIcon?: string,
143
+ flexibleIcon?: string,
144
+ listoIcon?: string,
145
+ precioIcon?: string,
146
+ confirmarIcon?: string
142
147
  [key: string]: string | Record<string, string | undefined> | undefined;
143
148
  };
144
149
  useLottieFor?: string[];