simpo-component-library 3.6.62 → 3.6.69
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/background-directive.mjs +43 -30
- package/esm2022/lib/directive/sticky-directive.mjs +2 -2
- package/esm2022/lib/elements/link-editor/link-editor.component.mjs +78 -4
- package/esm2022/lib/elements/text-editor/text-editor.component.mjs +53 -27
- package/esm2022/lib/sections/banner-section/banner-section.component.mjs +3 -3
- package/esm2022/lib/sections/contact-us/contact-us.component.mjs +3 -3
- package/esm2022/lib/sections/header-section/header-section.component.mjs +14 -45
- package/esm2022/lib/sections/new-services/new-services.component.mjs +3 -3
- package/esm2022/lib/sections/process-section/process-section.component.mjs +3 -3
- package/esm2022/lib/styles/types.mjs +1 -1
- package/fesm2022/simpo-component-library.mjs +191 -109
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/elements/link-editor/link-editor.component.d.ts +6 -0
- package/lib/sections/header-section/header-section.component.d.ts +3 -9
- package/lib/styles/types.d.ts +1 -1
- package/package.json +1 -1
- package/simpo-component-library-3.6.69.tgz +0 -0
- package/simpo-component-library-3.6.62.tgz +0 -0
@@ -16,6 +16,7 @@ export declare class LinkEditorComponent {
|
|
16
16
|
linkType: any[];
|
17
17
|
buttonTypes: any[];
|
18
18
|
buttonShapes: any[];
|
19
|
+
directionType: any[];
|
19
20
|
templatePage: any[];
|
20
21
|
addLink: boolean;
|
21
22
|
constructor(editorService: ElementServiceService, dialogRef: MatDialogRef<LinkEditorComponent>, data: any, eventService: EventsService);
|
@@ -26,6 +27,11 @@ export declare class LinkEditorComponent {
|
|
26
27
|
addNewLink(): void;
|
27
28
|
buttonStyles: any;
|
28
29
|
changeButtonStyle(): void;
|
30
|
+
backgroundType: string[];
|
31
|
+
setBorderRadius(): "0px" | "7px" | "99px";
|
32
|
+
setBorder(): string;
|
33
|
+
setColor(): string;
|
34
|
+
setBackground(): any;
|
29
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinkEditorComponent, never>;
|
30
36
|
static ɵcmp: i0.ɵɵComponentDeclaration<LinkEditorComponent, "simpo-link-editor", never, {}, {}, never, never, true, never>;
|
31
37
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { OnInit } from '@angular/core';
|
2
2
|
import { HeaderContentModel, HeaderSectionModel, HeaderStyleModel } from './header-section.model';
|
3
3
|
import { EventsService } from './../../services/events.service';
|
4
4
|
import { ActionModel, LayOutModel } from '../../styles/style.model';
|
@@ -14,9 +14,6 @@ export declare class HeaderSectionComponent implements OnInit {
|
|
14
14
|
private readonly activatedRoute;
|
15
15
|
private readonly matDialog;
|
16
16
|
private readonly storageService;
|
17
|
-
private ngZone;
|
18
|
-
private renderer;
|
19
|
-
private platformId;
|
20
17
|
data?: HeaderSectionModel;
|
21
18
|
nextComponent: any;
|
22
19
|
index?: number;
|
@@ -32,7 +29,7 @@ export declare class HeaderSectionComponent implements OnInit {
|
|
32
29
|
theme: typeof ProductCardTheme;
|
33
30
|
HeaderStyling: typeof Header_Type;
|
34
31
|
parentHeight: number;
|
35
|
-
constructor(_eventService: EventsService, router: Router, activatedRoute: ActivatedRoute, matDialog: MatDialog, storageService: StorageServiceService
|
32
|
+
constructor(_eventService: EventsService, router: Router, activatedRoute: ActivatedRoute, matDialog: MatDialog, storageService: StorageServiceService);
|
36
33
|
searchProducts(): void;
|
37
34
|
goToFav(): void;
|
38
35
|
get stylesLayout(): LayOutModel;
|
@@ -42,12 +39,9 @@ export declare class HeaderSectionComponent implements OnInit {
|
|
42
39
|
goToWishlist(): void;
|
43
40
|
goToCart(): void;
|
44
41
|
applyFilter(value: any, type: string): void;
|
45
|
-
|
46
|
-
private scrollSubscription;
|
42
|
+
onScroll(event: any): void;
|
47
43
|
movingText?: MovingTextModal;
|
48
44
|
ngOnInit(): void;
|
49
|
-
private checkScroll;
|
50
|
-
ngOnDestroy(): void;
|
51
45
|
isNavbarOpen: boolean;
|
52
46
|
screenWidth: number;
|
53
47
|
getScreenSize(event?: number): void;
|
package/lib/styles/types.d.ts
CHANGED
@@ -22,5 +22,5 @@ export type BANNER_TRANSITION = 'Horizontal' | 'Animated';
|
|
22
22
|
export type FILE_TYPE = 'Image' | 'Video';
|
23
23
|
export type BACKGROUND_TYPE = 'Solid' | 'Gradient';
|
24
24
|
export type GRADIENT_DIRECTION = 'DOWN' | 'RIGHT' | 'DIAGONAL_RIGHT' | 'DIAGONAL_LEFT';
|
25
|
-
export type BACKGROUND_ANIMATION = 'NONE' | 'DANCING_DOTS' | 'SCATTERING_DOTS' | '';
|
25
|
+
export type BACKGROUND_ANIMATION = 'NONE' | 'DANCING_DOTS' | 'SCATTERING_DOTS' | 'WAVES' | 'ABSTRACT' | 'DREW' | 'DOTS';
|
26
26
|
export type PROCESS_SECTION_DISPLAY_STYLE = 'STYLE1' | 'STYLE2';
|
package/package.json
CHANGED
Binary file
|
Binary file
|