simpo-component-library 3.6.809 → 3.6.810
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/button-directive.directive.mjs +2 -1
- package/esm2022/lib/ecommerce/sections/cart/cart.component.mjs +9 -8
- package/esm2022/lib/elements/below-image-card/below-image-card.component.mjs +3 -3
- package/esm2022/lib/sections/banner-section/banner-section.component.mjs +3 -3
- package/esm2022/lib/sections/choose-us-section/choose-us-section.component.mjs +3 -3
- package/esm2022/lib/sections/feature-experience-section/feature-experience-section.component.mjs +6 -4
- package/esm2022/lib/sections/features-section/features-section.component.mjs +3 -3
- package/esm2022/lib/sections/header-section/header-section.component.mjs +4 -39
- package/esm2022/lib/sections/header-section/header-section.model.mjs +1 -1
- package/esm2022/lib/services/events.service.mjs +1 -2
- package/esm2022/lib/services/rest.service.mjs +1 -4
- package/esm2022/lib/styles/index.mjs +1 -6
- package/fesm2022/simpo-component-library.mjs +25 -66
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/authentication-required/authentication-required.component.d.ts +1 -1
- package/lib/sections/header-section/header-section.component.d.ts +0 -6
- package/lib/sections/header-section/header-section.model.d.ts +1 -2
- package/lib/services/events.service.d.ts +0 -1
- package/lib/services/rest.service.d.ts +0 -1
- package/lib/styles/index.d.ts +0 -4
- package/package.json +1 -1
- package/simpo-component-library-3.6.810.tgz +0 -0
- package/simpo-component-library-3.6.809.tgz +0 -0
package/lib/ecommerce/sections/authentication-required/authentication-required.component.d.ts
CHANGED
|
@@ -94,7 +94,7 @@ export declare class AuthenticationRequiredComponent extends BaseSection {
|
|
|
94
94
|
validateNumber(event: KeyboardEvent): void;
|
|
95
95
|
validateOTP(event: KeyboardEvent): void;
|
|
96
96
|
checkStrength(): void;
|
|
97
|
-
getStrengthColor(index: number): "
|
|
97
|
+
getStrengthColor(index: number): "tomato" | "#d3d3d3ba" | "orange" | "yellow" | "lightgreen";
|
|
98
98
|
emailDebounceTimer: any;
|
|
99
99
|
onEmailChange(): void;
|
|
100
100
|
emailCheck: boolean;
|
|
@@ -38,7 +38,6 @@ export declare class HeaderSectionComponent implements OnInit {
|
|
|
38
38
|
currentPlaceholder: string;
|
|
39
39
|
placeholderIndex: number;
|
|
40
40
|
animatePlaceholder: boolean;
|
|
41
|
-
private _eventSubscriber;
|
|
42
41
|
constructor(_eventService: EventsService, router: Router, activatedRoute: ActivatedRoute, matDialog: MatDialog, storageService: StorageServiceService, restService: RestService, eventService: EventsService, storage: StorageLike);
|
|
43
42
|
searchChangeTimeout: any;
|
|
44
43
|
waitBeforeSearch(): void;
|
|
@@ -60,7 +59,6 @@ export declare class HeaderSectionComponent implements OnInit {
|
|
|
60
59
|
passbookAppStatus: boolean;
|
|
61
60
|
checkPassbookApp(): void;
|
|
62
61
|
showSearchBarMobile: boolean;
|
|
63
|
-
showDropdownDesktopSearch: boolean;
|
|
64
62
|
isNavbarOpen: boolean;
|
|
65
63
|
screenWidth: number;
|
|
66
64
|
getScreenSize(event?: number): void;
|
|
@@ -118,10 +116,6 @@ export declare class HeaderSectionComponent implements OnInit {
|
|
|
118
116
|
showCategoryMobileHeader(): boolean;
|
|
119
117
|
byMetalAndStone: any;
|
|
120
118
|
navigateLogin(): void;
|
|
121
|
-
megaMenu: any;
|
|
122
|
-
getMenuItems(): void;
|
|
123
|
-
redirectionsOfMenu(ele: any): void;
|
|
124
|
-
setChildMenu(ele: any): void;
|
|
125
119
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderSectionComponent, never>;
|
|
126
120
|
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderSectionComponent, "simpo-header-section", never, { "data": { "alias": "data"; "required": false; }; "nextComponent": { "alias": "nextComponent"; "required": false; }; "index": { "alias": "index"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; }, {}, never, never, true, never>;
|
|
127
121
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Header_Type, HeaderButtonStyle, headlineAnimationType,
|
|
1
|
+
import { Header_Type, HeaderButtonStyle, headlineAnimationType, ProductCardTheme } from "./../../styles/index";
|
|
2
2
|
import { BackgroundModel, DisplaySection, HeaderButtonStyleModel, InputTextModel, ListItemModal, NavbarButton } from "../../styles/style.model";
|
|
3
3
|
import { FooterLayoutModel, FooterLogoModel, FooterSocialLinkModel } from "../footer-section/footer-section.modal";
|
|
4
4
|
import { ActionModel } from "../../styles/style.model";
|
|
@@ -35,7 +35,6 @@ export interface HeaderStyleModel {
|
|
|
35
35
|
shrinkOnScroll?: boolean;
|
|
36
36
|
navbarButtonStyle: HeaderButtonStyleModel;
|
|
37
37
|
styling: Header_Type;
|
|
38
|
-
menuType: Menu_Type;
|
|
39
38
|
theme: ProductCardTheme;
|
|
40
39
|
showSearchBar: boolean;
|
|
41
40
|
headline: {
|
|
@@ -52,7 +52,6 @@ export declare class EventsService implements OnInit {
|
|
|
52
52
|
iconChanged: EventEmitter<unknown>;
|
|
53
53
|
emitCountDownDate: EventEmitter<any>;
|
|
54
54
|
showDummyCartItems: EventEmitter<boolean>;
|
|
55
|
-
menuList: EventEmitter<unknown>;
|
|
56
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<EventsService, never>;
|
|
57
56
|
static ɵprov: i0.ɵɵInjectableDeclaration<EventsService>;
|
|
58
57
|
}
|
|
@@ -151,7 +151,6 @@ export declare class RestService implements OnDestroy {
|
|
|
151
151
|
loginWithPasswordNew(payload: any): Observable<Object>;
|
|
152
152
|
flush(eventsToSend: any): void;
|
|
153
153
|
getPopularSearches(): Observable<Object>;
|
|
154
|
-
getMenuItems(menuId: any): Observable<Object>;
|
|
155
154
|
static ɵfac: i0.ɵɵFactoryDeclaration<RestService, never>;
|
|
156
155
|
static ɵprov: i0.ɵɵInjectableDeclaration<RestService>;
|
|
157
156
|
}
|
package/lib/styles/index.d.ts
CHANGED
|
@@ -82,10 +82,6 @@ export declare enum Header_Type {
|
|
|
82
82
|
HEADER3 = "Header3",
|
|
83
83
|
HEADER4 = "Header4"
|
|
84
84
|
}
|
|
85
|
-
export declare enum Menu_Type {
|
|
86
|
-
MEGA_MENU = "MEGA_MENU",
|
|
87
|
-
DROP_DOWN = "DROPDOWN_MENU"
|
|
88
|
-
}
|
|
89
85
|
export declare enum TEXT_SIZE {
|
|
90
86
|
Small = "Small",
|
|
91
87
|
Medium = "Medium",
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|