simpo-component-library 3.6.834 → 3.6.836
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/image-position.directive.mjs +1 -1
- package/esm2022/lib/ecommerce/sections/authentication-required/authentication-required.component.mjs +12 -4
- package/esm2022/lib/ecommerce/sections/authentication-required/authentication-required.model.mjs +1 -1
- package/esm2022/lib/elements/text-editor/text-editor.component.mjs +3 -3
- package/esm2022/lib/sections/banner-carousel/banner-carousel.component.mjs +1 -1
- package/esm2022/lib/sections/banner-section/banner-section.component.mjs +3 -3
- package/esm2022/lib/sections/header-section/header-section.component.mjs +42 -3
- package/esm2022/lib/sections/image-carousel-section/image-carousel-section.component.mjs +3 -7
- package/fesm2022/simpo-component-library.mjs +54 -13
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/authentication-required/authentication-required.model.d.ts +10 -1
- package/lib/ecommerce/sections/product-desc/product-desc.component.d.ts +1 -1
- package/lib/ecommerce/sections/schemes/schemes.component.d.ts +1 -1
- package/lib/sections/banner-carousel/banner-carousel.component.d.ts +1 -1
- package/lib/sections/header-section/header-section.component.d.ts +2 -0
- package/lib/sections/pricing-section/pricing-section.component.d.ts +1 -1
- package/package.json +1 -1
- package/simpo-component-library-3.6.836.tgz +0 -0
- package/simpo-component-library-3.6.834.tgz +0 -0
|
@@ -1,15 +1,24 @@
|
|
|
1
1
|
import { Corners } from '../../../styles/index';
|
|
2
|
-
import { ActionModel, AnimationModel, BackgroundModel, BannerStylesModel, LayOutModel } from '../../../styles/style.model';
|
|
2
|
+
import { ActionModel, AnimationModel, BackgroundModel, BannerStylesModel, Image, ImageStyle, LayOutModel, PositionLayoutModal } from '../../../styles/style.model';
|
|
3
3
|
export interface AuthenticationModel {
|
|
4
4
|
id: string;
|
|
5
5
|
sectionType: string;
|
|
6
6
|
sectionName: string;
|
|
7
|
+
content?: AuthenticationContentModel;
|
|
7
8
|
styles: BannerStylesModel;
|
|
8
9
|
action: ActionModel;
|
|
9
10
|
}
|
|
11
|
+
export interface AuthenticationContentModel {
|
|
12
|
+
image?: AuthenticationImageModel;
|
|
13
|
+
}
|
|
14
|
+
export interface AuthenticationImageModel extends Image {
|
|
15
|
+
showImage: boolean;
|
|
16
|
+
}
|
|
10
17
|
export interface AuthenticationStylesModel {
|
|
11
18
|
layout: LayOutModel;
|
|
12
19
|
background: BackgroundModel;
|
|
13
20
|
animation: AnimationModel;
|
|
21
|
+
image?: ImageStyle;
|
|
22
|
+
positionLayout: PositionLayoutModal;
|
|
14
23
|
corners: Corners;
|
|
15
24
|
}
|
|
@@ -121,7 +121,7 @@ export declare class ProductDescComponent extends BaseSection {
|
|
|
121
121
|
getTextColor(color: any): "#000000" | "#ffffff";
|
|
122
122
|
languages: string[];
|
|
123
123
|
selectedLang: string;
|
|
124
|
-
getClass(map: any): "col-
|
|
124
|
+
getClass(map: any): "col-4" | "col-6" | "col-3" | "width-max";
|
|
125
125
|
onFindInStore(id: string): void;
|
|
126
126
|
onBookAppointment(): void;
|
|
127
127
|
isDetails: boolean;
|
|
@@ -21,7 +21,7 @@ export declare class SchemesComponent extends BaseSection {
|
|
|
21
21
|
get stylesLayout(): LayOutModel;
|
|
22
22
|
get spacingLayout(): SpacingModel;
|
|
23
23
|
getParentClass(): "" | "overflow-scroll flex-nowrap";
|
|
24
|
-
getClass(index: number): "col-
|
|
24
|
+
getClass(index: number): "col-12" | "col-6" | "col-6 mb-2" | "col-12 mb-2";
|
|
25
25
|
showSchemeDetails(scheme: any): void;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<SchemesComponent, never>;
|
|
27
27
|
static ɵcmp: i0.ɵɵComponentDeclaration<SchemesComponent, "simpo-schemes", never, { "data": { "alias": "data"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "index": { "alias": "index"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -33,7 +33,7 @@ export declare class BannerCarouselComponent extends BaseSection implements OnIn
|
|
|
33
33
|
get stylesLayout(): LayOutModel;
|
|
34
34
|
get getBlurValue(): "NONE" | "LIGHT" | "MODERATE" | "STRONG" | "VERY_STRONG" | undefined;
|
|
35
35
|
get getBackgroundColor(): BackgroundModel;
|
|
36
|
-
get getBackgroundOpacity(): "
|
|
36
|
+
get getBackgroundOpacity(): "1" | "0" | "0.7" | "0.5" | "0.6" | "0.8";
|
|
37
37
|
opacityValue(value: OverlayValue): "1" | "0.7" | "0.5" | "0.6" | "0.8";
|
|
38
38
|
editSection(): void;
|
|
39
39
|
getScreenSize(): number;
|
|
@@ -67,6 +67,8 @@ export declare class HeaderSectionComponent implements OnInit, AfterViewInit, On
|
|
|
67
67
|
ngOnInit(): void;
|
|
68
68
|
ngAfterViewInit(): void;
|
|
69
69
|
ngOnDestroy(): void;
|
|
70
|
+
handleSearchInputClick(event: Event): void;
|
|
71
|
+
private closeMobileOffcanvas;
|
|
70
72
|
passbookAppStatus: boolean;
|
|
71
73
|
checkPassbookApp(): void;
|
|
72
74
|
showSearchBarMobile: boolean;
|
|
@@ -23,7 +23,7 @@ export declare class PricingSectionComponent extends BaseSection {
|
|
|
23
23
|
getButtonId(): string;
|
|
24
24
|
editSection(): void;
|
|
25
25
|
redirectTo(data: any): void;
|
|
26
|
-
getClass(): "col-
|
|
26
|
+
getClass(): "col-4" | "col-12" | "col-6" | "col-3";
|
|
27
27
|
getAlignment(): "justify-content-start" | "justify-content-center" | "justify-content-end";
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<PricingSectionComponent, never>;
|
|
29
29
|
static ɵcmp: i0.ɵɵComponentDeclaration<PricingSectionComponent, "simpo-pricing-section", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|