simpo-component-library 2.1.52 → 2.1.54
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/components/input-fields/input-fields.component.mjs +2 -2
- package/esm2022/lib/elements/navbar-button-element/navbar-button-element.component.mjs +3 -3
- package/esm2022/lib/sections/footer-section/footer-section.component.mjs +3 -3
- package/esm2022/lib/sections/logo-gallery/logo-gallery.component.mjs +9 -7
- package/esm2022/lib/sections/navbar-section/navbar-section.component.mjs +16 -6
- package/esm2022/lib/sections/navbar-section/navbar-section.model.mjs +1 -1
- package/fesm2022/simpo-component-library.mjs +25 -14
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/directive/background-directive.d.ts +1 -1
- package/lib/directive/button-directive.directive.d.ts +1 -1
- package/lib/directive/color.directive.d.ts +1 -1
- package/lib/sections/logo-gallery/logo-gallery.component.d.ts +3 -1
- package/lib/sections/navbar-section/navbar-section.component.d.ts +2 -2
- package/lib/sections/navbar-section/navbar-section.model.d.ts +1 -1
- package/lib/sections/pricing-section/pricing-section.component.d.ts +1 -1
- package/package.json +1 -1
- package/simpo-component-library-2.1.54.tgz +0 -0
- package/simpo-component-library-2.1.52.tgz +0 -0
@@ -11,7 +11,7 @@ export declare class BackgroundDirective implements OnChanges {
|
|
11
11
|
constructor(el: ElementRef, eventService: EventsService);
|
12
12
|
ngOnDestroy(): void;
|
13
13
|
ngOnChanges(change: SimpleChanges): void;
|
14
|
-
getTextColor(bgColor: string): "#
|
14
|
+
getTextColor(bgColor: string): "#000000" | "#ffffff" | "#ffffff;";
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<BackgroundDirective, never>;
|
16
16
|
static ɵdir: i0.ɵɵDirectiveDeclaration<BackgroundDirective, "[simpoBackground]", never, { "simpoBackground": { "alias": "simpoBackground"; "required": false; }; "scrollValue": { "alias": "scrollValue"; "required": false; }; }, {}, never, never, true, never>;
|
17
17
|
}
|
@@ -15,7 +15,7 @@ export declare class ButtonDirectiveDirective implements OnChanges {
|
|
15
15
|
applyButtonStyleChanges(): void;
|
16
16
|
applyButtonType(style: ButtonStyleModel, color: string): void;
|
17
17
|
applyButtonShape(style: ButtonStyleModel): void;
|
18
|
-
getTextColor(bgColor: string): "#
|
18
|
+
getTextColor(bgColor: string): "#000000" | "#ffffff" | "#ffffff;";
|
19
19
|
buttonStyleSubscription?: Subscription;
|
20
20
|
buttonStyleChangeCheck(): void;
|
21
21
|
changeButtonStyle(id: any, style: ButtonStyleModel, bgColor: string): void;
|
@@ -12,7 +12,7 @@ export declare class ColorDirective implements OnChanges {
|
|
12
12
|
ngOnDestroy(): void;
|
13
13
|
applyColor(): void;
|
14
14
|
bgColorChangeCheck(): void;
|
15
|
-
getTextColor(): "#
|
15
|
+
getTextColor(): "#000000" | "#ffffff" | "#ffffff;";
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColorDirective, never>;
|
17
17
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ColorDirective, "[simpoColor]", never, { "bgColor": { "alias": "simpoColor"; "required": false; }; }, {}, never, never, true, never>;
|
18
18
|
}
|
@@ -2,15 +2,17 @@ import { LogoGalleryContentModal, LogoGallerySectionMOdal, LogoGalleryStylesMode
|
|
2
2
|
import BaseSection from '../BaseSection';
|
3
3
|
import { SPACING } from '../../styles/index';
|
4
4
|
import { BackgroundModel } from '../../styles/style.model';
|
5
|
+
import { EventsService } from './../../services/events.service';
|
5
6
|
import * as i0 from "@angular/core";
|
6
7
|
export declare class LogoGalleryComponent extends BaseSection {
|
8
|
+
private _eventService;
|
7
9
|
data?: LogoGallerySectionMOdal;
|
8
10
|
index?: number;
|
9
11
|
customClass?: string;
|
10
12
|
nextComponentColor?: BackgroundModel;
|
11
13
|
content?: LogoGalleryContentModal;
|
12
14
|
style?: LogoGalleryStylesModel;
|
13
|
-
constructor();
|
15
|
+
constructor(_eventService: EventsService);
|
14
16
|
ngOnInit(): void;
|
15
17
|
get headingSpace(): SPACING;
|
16
18
|
isEvenRow(index: number): boolean;
|
@@ -48,7 +48,7 @@ export declare class NavbarSectionComponent implements OnInit {
|
|
48
48
|
getScreenSize(event?: number): void;
|
49
49
|
get getParentHeight(): any;
|
50
50
|
get getDropdownLinks(): string[];
|
51
|
-
get isEcommerceWebsite():
|
51
|
+
get isEcommerceWebsite(): "E_COMMERCE" | "REAL_ESTATE" | "STATIC";
|
52
52
|
close(): void;
|
53
53
|
showEditors: boolean;
|
54
54
|
showEditTabs(isShow: boolean): void;
|
@@ -62,7 +62,7 @@ export declare class NavbarSectionComponent implements OnInit {
|
|
62
62
|
showSearchBar: boolean;
|
63
63
|
get isComponentMerged(): any;
|
64
64
|
editSection(): void;
|
65
|
-
get canShowMobileFooter():
|
65
|
+
get canShowMobileFooter(): "E_COMMERCE" | "REAL_ESTATE" | "STATIC";
|
66
66
|
get showMobileHomeIcon(): boolean;
|
67
67
|
get getCartItemsCount(): number;
|
68
68
|
get getHeaderStyling(): HEADER_STYLING | undefined;
|
@@ -9,7 +9,7 @@ export interface HeaderSectionModel {
|
|
9
9
|
content: HeaderContentModel;
|
10
10
|
styles: HeaderStyleModel;
|
11
11
|
action: ActionModel;
|
12
|
-
type: 'STATIC' | 'E_COMMERCE';
|
12
|
+
type: 'STATIC' | 'E_COMMERCE' | 'REAL_ESTATE';
|
13
13
|
}
|
14
14
|
export interface HeaderContentModel {
|
15
15
|
siteName: InputTextModel;
|
@@ -17,7 +17,7 @@ export declare class PricingSectionComponent extends BaseSection {
|
|
17
17
|
style?: PricingSectionStylesModel;
|
18
18
|
constructor(_eventService: EventsService);
|
19
19
|
ngOnInit(): void;
|
20
|
-
getTextColor(): "#
|
20
|
+
getTextColor(): "#000000" | "#ffffff";
|
21
21
|
get headingSpace(): SPACING;
|
22
22
|
editSection(): void;
|
23
23
|
redirectTo(): void;
|
package/package.json
CHANGED
Binary file
|
Binary file
|