kupos-ui-components-lib 9.7.1 → 9.7.3
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/assets/images/anims/service_list/users_anim.json +1 -0
- package/dist/components/ServiceItem/ServiceItemDesktop.js +5 -1
- package/dist/components/ServiceItem/ServiceItemMobile.d.ts +1 -1
- package/dist/components/ServiceItem/ServiceItemMobile.js +16 -7
- package/dist/components/ServiceItem/mobileTypes.d.ts +27 -0
- package/dist/components/ServiceItem/types.d.ts +5 -0
- package/dist/styles.css +18 -6
- package/dist/ui/FeaturServiceUiMobile/FeatureServiceUiMobile.d.ts +18 -0
- package/dist/ui/FeaturServiceUiMobile/FeatureServiceUiMobile.js +270 -0
- package/dist/ui/FeatureServiceUI/FeatureServiceUi.d.ts +1 -2
- package/dist/ui/FeatureServiceUI/FeatureServiceUi.js +55 -69
- package/dist/ui/SeatSection/SeatSection.js +1 -1
- package/package.json +1 -1
- package/src/assets/images/anims/service_list/users_anim.json +1 -0
- package/src/components/ServiceItem/ServiceItemDesktop.tsx +4 -1
- package/src/components/ServiceItem/ServiceItemMobile.tsx +331 -286
- package/src/components/ServiceItem/mobileTypes.ts +22 -0
- package/src/components/ServiceItem/types.ts +6 -1
- package/src/ui/FeaturServiceUiMobile/FeatureServiceUiMobile.tsx +1042 -0
- package/src/ui/FeatureServiceUI/FeatureServiceUi.tsx +56 -201
- package/src/ui/SeatSection/SeatSection.tsx +1 -1
|
@@ -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[];
|