simpo-component-library 3.2.47 → 3.2.49
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/components/hover-elements/hover-elements.component.mjs +3 -3
- package/esm2022/lib/directive/button-editor.directive.mjs +51 -20
- package/esm2022/lib/directive/image-editor.directive.mjs +51 -31
- package/esm2022/lib/elements/add-section/add-section.component.mjs +61 -10
- package/esm2022/lib/elements/below-image-card/below-image-card.component.mjs +3 -3
- package/esm2022/lib/elements/covering-image-card/covering-image-card.component.mjs +3 -3
- package/esm2022/lib/elements/editor-service.service.mjs +2 -2
- package/esm2022/lib/elements/media-selector/media-selector.component.mjs +3 -3
- package/esm2022/lib/elements/navbar-button-element/navbar-button-element.component.mjs +6 -3
- package/esm2022/lib/elements/top-of-image-card/top-of-image-card.component.mjs +3 -3
- package/esm2022/lib/sections/add-new-section/add-new-section.component.mjs +9 -6
- package/esm2022/lib/sections/appointment-form/appointment-form.component.mjs +3 -3
- package/esm2022/lib/sections/banner-carousel/banner-carousel.component.mjs +4 -4
- package/esm2022/lib/sections/banner-grid-section/banner-grid-section.component.mjs +5 -5
- package/esm2022/lib/sections/banner-section/banner-section.component.mjs +3 -3
- package/esm2022/lib/sections/carousel-banner/carousel-banner.component.mjs +4 -4
- package/esm2022/lib/sections/choose-us-section/choose-us-section.component.mjs +3 -3
- package/esm2022/lib/sections/contact-us/contact-us.component.mjs +3 -3
- package/esm2022/lib/sections/faq-section/faq-section.component.mjs +3 -3
- package/esm2022/lib/sections/features-section/features-section.component.mjs +3 -3
- package/esm2022/lib/sections/footer/footer.component.mjs +3 -3
- package/esm2022/lib/sections/footer-section/footer-section.component.mjs +4 -4
- package/esm2022/lib/sections/header-text/header-text.component.mjs +4 -4
- package/esm2022/lib/sections/image-carousel-section/image-carousel-section.component.mjs +3 -3
- package/esm2022/lib/sections/image-grid-section/image-grid-section.component.mjs +3 -3
- package/esm2022/lib/sections/image-section/image-section.component.mjs +5 -5
- package/esm2022/lib/sections/location-section/location-section.component.mjs +5 -5
- package/esm2022/lib/sections/logo-showcase/logo-showcase.component.mjs +4 -4
- package/esm2022/lib/sections/navbar-section/navbar-section.component.mjs +4 -4
- package/esm2022/lib/sections/pricing-section/pricing-section.component.mjs +3 -3
- package/esm2022/lib/sections/process-modern/process-modern.component.mjs +3 -3
- package/esm2022/lib/sections/process-section/process-section.component.mjs +3 -3
- package/esm2022/lib/sections/recent-blog-post-section/recent-blog-post-section.component.mjs +3 -3
- package/esm2022/lib/sections/service-section/service-section.component.mjs +3 -3
- package/esm2022/lib/sections/team-member-section/team-member-section.component.mjs +3 -3
- package/esm2022/lib/sections/testimonial-fullwidth/testimonial-fullwidth.component.mjs +5 -5
- package/esm2022/lib/sections/testimonial-section/testimonial-section.component.mjs +5 -5
- package/esm2022/lib/sections/testimonial-video/testimonial-video.component.mjs +3 -3
- package/esm2022/lib/sections/text-image-section/text-image-section.component.mjs +5 -5
- package/esm2022/lib/sections/text-section/text-section.component.mjs +5 -5
- package/esm2022/lib/sections/video-section/video-section.component.mjs +3 -3
- package/esm2022/lib/styles/index.mjs +8 -1
- package/fesm2022/simpo-component-library.mjs +266 -157
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/directive/button-editor.directive.d.ts +11 -5
- package/lib/directive/image-editor.directive.d.ts +11 -4
- package/lib/elements/add-section/add-section.component.d.ts +9 -2
- package/lib/elements/navbar-button-element/navbar-button-element.component.d.ts +2 -1
- package/lib/sections/add-new-section/add-new-section.component.d.ts +3 -1
- package/lib/styles/index.d.ts +6 -0
- package/package.json +1 -1
- package/simpo-component-library-3.2.49.tgz +0 -0
- package/simpo-component-library-3.2.47.tgz +0 -0
@@ -1,16 +1,22 @@
|
|
1
|
-
import { ElementRef
|
1
|
+
import { ElementRef } from '@angular/core';
|
2
2
|
import { Button } from '../styles/style.model';
|
3
3
|
import { MatDialog } from '@angular/material/dialog';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class ButtonEditorDirective {
|
6
6
|
private el;
|
7
|
-
private renderer;
|
8
7
|
private matDialog;
|
9
8
|
appButtonEditor: boolean;
|
10
9
|
buttonData?: Button;
|
11
|
-
|
12
|
-
|
13
|
-
|
10
|
+
private mouseEnterSub?;
|
11
|
+
private mouseLeaveSub?;
|
12
|
+
private clickSub?;
|
13
|
+
private readonly HIGHLIGHT_BORDER;
|
14
|
+
constructor(el: ElementRef, matDialog: MatDialog);
|
15
|
+
ngOnInit(): void;
|
16
|
+
ngOnChanges(): void;
|
17
|
+
private setupEventListeners;
|
18
|
+
private cleanup;
|
19
|
+
ngOnDestroy(): void;
|
14
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonEditorDirective, never>;
|
15
21
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ButtonEditorDirective, "button[appButtonEditor]", never, { "appButtonEditor": { "alias": "appButtonEditor"; "required": false; }; "buttonData": { "alias": "buttonData"; "required": false; }; }, {}, never, never, true, never>;
|
16
22
|
}
|
@@ -1,16 +1,23 @@
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
1
|
+
import { ElementRef, OnInit, OnDestroy } from '@angular/core';
|
2
2
|
import { Image } from '../styles/style.model';
|
3
3
|
import { MatDialog } from '@angular/material/dialog';
|
4
4
|
import * as i0 from "@angular/core";
|
5
|
-
export declare class ImageEditorDirective {
|
5
|
+
export declare class ImageEditorDirective implements OnInit, OnDestroy {
|
6
6
|
private el;
|
7
7
|
private matDialog;
|
8
8
|
appImageEditor: boolean;
|
9
9
|
imageData?: Image;
|
10
10
|
sectionId?: string;
|
11
|
+
private mouseEnterSub?;
|
12
|
+
private mouseLeaveSub?;
|
13
|
+
private clickSub?;
|
14
|
+
private readonly HIGHLIGHT_BORDER;
|
11
15
|
constructor(el: ElementRef, matDialog: MatDialog);
|
12
|
-
|
13
|
-
|
16
|
+
ngOnInit(): void;
|
17
|
+
ngOnChanges(): void;
|
18
|
+
private setupEventListeners;
|
19
|
+
private cleanup;
|
20
|
+
ngOnDestroy(): void;
|
14
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageEditorDirective, never>;
|
15
22
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ImageEditorDirective, "img[appImageEditor]", never, { "appImageEditor": { "alias": "appImageEditor"; "required": false; }; "imageData": { "alias": "imageData"; "required": false; }; "sectionId": { "alias": "sectionId"; "required": false; }; }, {}, never, never, true, never>;
|
16
23
|
}
|
@@ -8,18 +8,25 @@ export declare class AddSectionComponent {
|
|
8
8
|
data: any;
|
9
9
|
private http;
|
10
10
|
private _eventService;
|
11
|
+
private editorService;
|
11
12
|
private elementService;
|
12
|
-
constructor(dialog: MatDialogRef<AddSectionComponent>, data: any, http: HttpClient, _eventService: EventsService, elementService: ElementServiceService);
|
13
|
+
constructor(dialog: MatDialogRef<AddSectionComponent>, data: any, http: HttpClient, _eventService: EventsService, editorService: ElementServiceService, elementService: ElementServiceService);
|
13
14
|
ngOnInit(): void;
|
14
15
|
selectedTab: string;
|
15
16
|
tabs: any;
|
16
17
|
sections: any;
|
17
18
|
selectedSection: any;
|
18
19
|
selectedSectionName: any;
|
20
|
+
loader: boolean;
|
21
|
+
tabShiftLoader: boolean;
|
22
|
+
selectSection(ele: any): void;
|
19
23
|
getAllSections(): void;
|
20
24
|
getObjectKeys(obj: any): any[];
|
21
|
-
getComponentApi(): import("rxjs").Observable<Object>;
|
22
25
|
addNewSection(componentId: any, sectionType: any, event: any): void;
|
26
|
+
searchText: string;
|
27
|
+
dummySections: any;
|
28
|
+
dummy2: any;
|
29
|
+
searchSections(): void;
|
23
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddSectionComponent, never>;
|
24
31
|
static ɵcmp: i0.ɵɵComponentDeclaration<AddSectionComponent, "simpo-add-section", never, {}, {}, never, never, true, never>;
|
25
32
|
}
|
@@ -10,10 +10,11 @@ export declare class NavbarButtonElementComponent implements OnInit {
|
|
10
10
|
selectedStyle?: HeaderButtonStyle;
|
11
11
|
bgColor?: string;
|
12
12
|
sectionId?: string;
|
13
|
+
accentColor?: string;
|
13
14
|
HeaderButtonStyle: typeof HeaderButtonStyle;
|
14
15
|
constructor(_eventService: EventsService);
|
15
16
|
ngOnInit(): void;
|
16
17
|
changePage(pageData?: any): void;
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarButtonElementComponent, never>;
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarButtonElementComponent, "simpo-navbar-button-element", never, { "buttonData": { "alias": "buttonData"; "required": false; }; "buttonStyle": { "alias": "buttonStyle"; "required": false; }; "selectedStyle": { "alias": "selectedStyle"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "sectionId": { "alias": "sectionId"; "required": false; }; }, {}, never, never, true, never>;
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarButtonElementComponent, "simpo-navbar-button-element", never, { "buttonData": { "alias": "buttonData"; "required": false; }; "buttonStyle": { "alias": "buttonStyle"; "required": false; }; "selectedStyle": { "alias": "selectedStyle"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "sectionId": { "alias": "sectionId"; "required": false; }; "accentColor": { "alias": "accentColor"; "required": false; }; }, {}, never, never, true, never>;
|
19
20
|
}
|
@@ -1,8 +1,10 @@
|
|
1
1
|
import { EventsService } from './../../services/events.service';
|
2
|
+
import { MatDialog } from '@angular/material/dialog';
|
2
3
|
import * as i0 from "@angular/core";
|
3
4
|
export declare class AddNewSectionComponent {
|
4
5
|
private _eventService;
|
5
|
-
|
6
|
+
private dialog;
|
7
|
+
constructor(_eventService: EventsService, dialog: MatDialog);
|
6
8
|
index?: number;
|
7
9
|
addSection(): void;
|
8
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddNewSectionComponent, never>;
|
package/lib/styles/index.d.ts
CHANGED
@@ -74,6 +74,12 @@ export declare enum HEADER_STYLING {
|
|
74
74
|
LOGO_CENTER__MENU_LEFT = "LOGO_CENTER__MENU_LEFT",
|
75
75
|
LOGO_RIGHT__MENU_LEFT = "LOGO_RIGHT__MENU_LEFT"
|
76
76
|
}
|
77
|
+
export declare enum Header_Type {
|
78
|
+
HEADER1 = "Header1",
|
79
|
+
HEADER2 = "Header2",
|
80
|
+
HEADER3 = "Header3",
|
81
|
+
HEADER4 = "Header4"
|
82
|
+
}
|
77
83
|
export declare enum TEXT_SIZE {
|
78
84
|
Small = "Small",
|
79
85
|
Medium = "Medium",
|
package/package.json
CHANGED
Binary file
|
Binary file
|