simpo-component-library 3.6.206 → 3.6.208
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/esm2022/lib/directive/sticky-directive.mjs +4 -2
- package/esm2022/lib/ecommerce/sections/authentication-required/authentication-required.component.mjs +3 -3
- package/esm2022/lib/ecommerce/sections/cart/cart.component.mjs +6 -3
- package/esm2022/lib/ecommerce/sections/enrollment-form/enrollment-form.component.mjs +3 -3
- package/esm2022/lib/ecommerce/sections/order-details/order-details.component.mjs +6 -3
- package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +7 -4
- package/esm2022/lib/ecommerce/sections/product-list/product-list.component.mjs +5 -5
- package/esm2022/lib/ecommerce/sections/user-profile/user-profile.component.mjs +3 -3
- package/esm2022/lib/elements/list-home-appointment/list-home-appointment.component.mjs +3 -3
- package/esm2022/lib/elements/schedule-video-call/schedule-video-call.component.mjs +3 -3
- package/esm2022/lib/pipes/gender.pipe.mjs +2 -2
- package/esm2022/lib/sections/header-section/header-section.component.mjs +7 -4
- package/esm2022/lib/sections/image-carousel-section/image-carousel-section.component.mjs +3 -3
- package/esm2022/lib/services/rest.service.mjs +3 -3
- package/fesm2022/simpo-component-library.mjs +44 -30
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/order-details/order-details.component.d.ts +1 -0
- package/lib/sections/header-section/header-section.component.d.ts +2 -0
- package/package.json +1 -1
- package/simpo-component-library-3.6.208.tgz +0 -0
- package/src/lib/styles/global-styles.css +14 -2
- package/simpo-component-library-3.6.206.tgz +0 -0
@@ -46,6 +46,7 @@ export declare class HeaderSectionComponent implements OnInit {
|
|
46
46
|
onScroll(event: any): void;
|
47
47
|
movingText?: MovingTextModal;
|
48
48
|
ngOnInit(): void;
|
49
|
+
showSearchBarMobile: boolean;
|
49
50
|
isNavbarOpen: boolean;
|
50
51
|
screenWidth: number;
|
51
52
|
getScreenSize(event?: number): void;
|
@@ -83,6 +84,7 @@ export declare class HeaderSectionComponent implements OnInit {
|
|
83
84
|
selectedCategory: any;
|
84
85
|
storeAvaiable: boolean;
|
85
86
|
getCategoriesHeader(): void;
|
87
|
+
schemeAvailable: boolean;
|
86
88
|
goToStores(): void;
|
87
89
|
Object: ObjectConstructor;
|
88
90
|
applyFilterToList(obj: any, type: any): void;
|
package/package.json
CHANGED
Binary file
|
@@ -237,9 +237,21 @@
|
|
237
237
|
position: unset !important;
|
238
238
|
}
|
239
239
|
}
|
240
|
-
|
240
|
+
|
241
|
+
.p-rating-icon {
|
241
242
|
color: gold;
|
242
243
|
}
|
244
|
+
|
245
|
+
.appointment-form {
|
246
|
+
width: 100vw;
|
247
|
+
height: 100vh;
|
248
|
+
max-width: 100vw;
|
249
|
+
position: static;
|
250
|
+
margin-left: 0px;
|
251
|
+
margin-top: 0px;
|
252
|
+
margin-right: 0px;
|
253
|
+
}
|
254
|
+
|
243
255
|
.trim-text {
|
244
256
|
text-align: left !important;
|
245
257
|
display: -webkit-box !important;
|
@@ -249,4 +261,4 @@
|
|
249
261
|
-webkit-box-orient: vertical;
|
250
262
|
text-overflow: ellipsis !important;
|
251
263
|
/* word-break: break-all; */
|
252
|
-
}
|
264
|
+
}
|
Binary file
|