simpo-component-library 2.1.54 → 2.1.55
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/sections/logo-gallery/logo-gallery.component.mjs +17 -3
- package/fesm2022/simpo-component-library.mjs +15 -2
- 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 +5 -1
- package/lib/sections/navbar-section/navbar-section.component.d.ts +2 -2
- package/lib/sections/pricing-section/pricing-section.component.d.ts +1 -1
- package/package.json +1 -1
- package/simpo-component-library-2.1.55.tgz +0 -0
- package/simpo-component-library-2.1.54.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): "#ffffff" | "#000000" | "#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): "#ffffff" | "#000000" | "#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(): "#ffffff" | "#000000" | "#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
|
}
|
@@ -10,12 +10,16 @@ export declare class LogoGalleryComponent extends BaseSection {
|
|
10
10
|
index?: number;
|
11
11
|
customClass?: string;
|
12
12
|
nextComponentColor?: BackgroundModel;
|
13
|
+
edit?: boolean;
|
14
|
+
delete?: boolean;
|
13
15
|
content?: LogoGalleryContentModal;
|
14
16
|
style?: LogoGalleryStylesModel;
|
15
17
|
constructor(_eventService: EventsService);
|
16
18
|
ngOnInit(): void;
|
17
19
|
get headingSpace(): SPACING;
|
18
20
|
isEvenRow(index: number): boolean;
|
21
|
+
editSection(): void;
|
22
|
+
stopPropagation(event: any): void;
|
19
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<LogoGalleryComponent, never>;
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LogoGalleryComponent, "simpo-logo-gallery", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LogoGalleryComponent, "simpo-logo-gallery", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; }, {}, never, never, true, never>;
|
21
25
|
}
|
@@ -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(): "STATIC" | "E_COMMERCE" | "REAL_ESTATE";
|
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(): "STATIC" | "E_COMMERCE" | "REAL_ESTATE";
|
66
66
|
get showMobileHomeIcon(): boolean;
|
67
67
|
get getCartItemsCount(): number;
|
68
68
|
get getHeaderStyling(): HEADER_STYLING | undefined;
|
@@ -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(): "#ffffff" | "#000000";
|
21
21
|
get headingSpace(): SPACING;
|
22
22
|
editSection(): void;
|
23
23
|
redirectTo(): void;
|
package/package.json
CHANGED
Binary file
|
Binary file
|