simpo-component-library 3.2.81 → 3.2.83
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/sections/appointment-form/appointment-form.component.mjs +7 -5
- package/esm2022/lib/sections/banner-carousel/banner-carousel.component.mjs +6 -4
- package/esm2022/lib/sections/banner-grid-section/banner-grid-section.component.mjs +8 -3
- package/esm2022/lib/sections/banner-section/banner-section.component.mjs +3 -3
- package/esm2022/lib/sections/banner-section/banner-section.model.mjs +1 -1
- package/esm2022/lib/sections/blog-list/blog-list.component.mjs +3 -3
- package/esm2022/lib/sections/contact-us/contact-us.component.mjs +10 -5
- package/esm2022/lib/sections/faq-section/faq-section.component.mjs +11 -9
- package/esm2022/lib/sections/features-section/features-section.component.mjs +9 -4
- package/esm2022/lib/sections/header-text/header-text.component.mjs +9 -4
- package/esm2022/lib/sections/image-grid-section/image-grid-section.component.mjs +10 -5
- package/esm2022/lib/sections/logo-showcase/logo-showcase.component.mjs +7 -3
- package/esm2022/lib/sections/new-services/new-services.component.mjs +135 -0
- package/esm2022/lib/sections/new-services/new-services.model.mjs +2 -0
- package/esm2022/lib/sections/new-testimonials/new-testimonials.component.mjs +132 -0
- package/esm2022/lib/sections/new-testimonials/new-testimonials.model.mjs +2 -0
- package/esm2022/lib/sections/pricing-section/pricing-section.component.mjs +8 -4
- package/esm2022/lib/sections/process-modern/process-modern.component.mjs +6 -4
- package/esm2022/lib/sections/process-section/process-section.component.mjs +5 -3
- package/esm2022/lib/sections/service-section/service-section.component.mjs +3 -3
- package/esm2022/lib/sections/service-section/service-section.model.mjs +1 -1
- package/esm2022/lib/sections/team-member-section/team-member-section.component.mjs +10 -5
- package/esm2022/lib/sections/testimonial-fullwidth/testimonial-fullwidth.component.mjs +10 -5
- package/esm2022/lib/sections/testimonial-section/testimonial-section.component.mjs +10 -5
- package/esm2022/lib/sections/text-image-section/text-image-section.component.mjs +10 -5
- package/esm2022/lib/sections/view-blog/view-blog.component.mjs +3 -3
- package/esm2022/lib/styles/style.model.mjs +1 -1
- package/esm2022/lib/styles/types.mjs +1 -1
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/simpo-component-library.mjs +449 -196
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/sections/banner-grid-section/banner-grid-section.component.d.ts +2 -1
- package/lib/sections/banner-section/banner-section.model.d.ts +2 -1
- package/lib/sections/contact-us/contact-us.component.d.ts +2 -1
- package/lib/sections/features-section/features-section.component.d.ts +2 -1
- package/lib/sections/header-text/header-text.component.d.ts +2 -1
- package/lib/sections/image-grid-section/image-grid-section.component.d.ts +2 -1
- package/lib/sections/logo-showcase/logo-showcase.component.d.ts +2 -1
- package/lib/sections/new-services/new-services.component.d.ts +30 -0
- package/lib/sections/new-services/new-services.model.d.ts +19 -0
- package/lib/sections/new-testimonials/new-testimonials.component.d.ts +30 -0
- package/lib/sections/new-testimonials/new-testimonials.model.d.ts +19 -0
- package/lib/sections/pricing-section/pricing-section.component.d.ts +2 -1
- package/lib/sections/service-section/service-section.model.d.ts +1 -0
- package/lib/sections/team-member-section/team-member-section.component.d.ts +2 -1
- package/lib/sections/testimonial-fullwidth/testimonial-fullwidth.component.d.ts +2 -1
- package/lib/sections/testimonial-section/testimonial-section.component.d.ts +1 -0
- package/lib/sections/text-image-section/text-image-section.component.d.ts +2 -1
- package/lib/styles/style.model.d.ts +2 -1
- package/lib/styles/types.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/simpo-component-library-3.2.83.tgz +0 -0
- package/src/lib/styles/global-styles.css +5 -0
- package/simpo-component-library-3.2.81.tgz +0 -0
@@ -2,7 +2,7 @@ import { OnInit } from '@angular/core';
|
|
2
2
|
import { BannerGridSectionModel, BannerGridContentModel, BannerGridStylesModel } from './banner-grid-section.model';
|
3
3
|
import { EventsService } from '../../services/events.service';
|
4
4
|
import BaseSection from '../BaseSection';
|
5
|
-
import { BackgroundModel } from '../../styles/style.model';
|
5
|
+
import { BackgroundModel, LayOutModel } from '../../styles/style.model';
|
6
6
|
import * as i0 from "@angular/core";
|
7
7
|
export declare class BannerGridSectionComponent extends BaseSection implements OnInit {
|
8
8
|
private _eventService;
|
@@ -17,6 +17,7 @@ export declare class BannerGridSectionComponent extends BaseSection implements O
|
|
17
17
|
listItems: any;
|
18
18
|
constructor(_eventService: EventsService);
|
19
19
|
ngOnInit(): void;
|
20
|
+
get stylesLayout(): LayOutModel;
|
20
21
|
get canMergeNavbar(): boolean | undefined;
|
21
22
|
get isBorderlessImage(): boolean | undefined;
|
22
23
|
editSection(): void;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ActionModel, BannerStylesModel, Image, InputTextModel, ListItemModal } from './../../styles/style.model';
|
1
|
+
import { ActionModel, BannerStylesModel, DisplaySection, Image, InputTextModel, ListItemModal } from './../../styles/style.model';
|
2
2
|
export interface BannerSectionModel {
|
3
3
|
id: string;
|
4
4
|
sectionType: string;
|
@@ -16,6 +16,7 @@ export interface textModel {
|
|
16
16
|
export interface BannerContentModel {
|
17
17
|
inputText: InputTextModel[];
|
18
18
|
image: ImageModel;
|
19
|
+
display: DisplaySection;
|
19
20
|
listItem: ListItemModal<BannerListItem>;
|
20
21
|
}
|
21
22
|
export interface BannerListItem {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { OnInit } from '@angular/core';
|
2
|
-
import { BackgroundModel, ButtonModel } from '../../styles/style.model';
|
2
|
+
import { BackgroundModel, ButtonModel, LayOutModel } from '../../styles/style.model';
|
3
3
|
import { EventsService } from './../../services/events.service';
|
4
4
|
import { ContactUsContentModel, ContactUsModel, ContactUsStylesModel } from './contact-us.modal';
|
5
5
|
import BaseSection from '../BaseSection';
|
@@ -21,6 +21,7 @@ export declare class ContactUsComponent extends BaseSection implements OnInit {
|
|
21
21
|
buttonId: string;
|
22
22
|
constructor(_eventService: EventsService, platformId: Object, snackBar: MatSnackBar);
|
23
23
|
ngOnInit(): void;
|
24
|
+
get stylesLayout(): LayOutModel;
|
24
25
|
screenSize(): void;
|
25
26
|
screenWidth: any;
|
26
27
|
getWidthByField(field: any): string;
|
@@ -2,7 +2,7 @@ import { OnInit } from '@angular/core';
|
|
2
2
|
import BaseSection from '../BaseSection';
|
3
3
|
import { EventsService } from '../../services/events.service';
|
4
4
|
import { FeatureContentModel, FeatureStylesModel, FeatureSectionModel, FeatureItemModel } from './features-section.model';
|
5
|
-
import { BackgroundModel } from '../../styles/style.model';
|
5
|
+
import { BackgroundModel, LayOutModel } from '../../styles/style.model';
|
6
6
|
import * as i0 from "@angular/core";
|
7
7
|
export declare class FeaturesSectionComponent extends BaseSection implements OnInit {
|
8
8
|
private readonly _eventService;
|
@@ -19,6 +19,7 @@ export declare class FeaturesSectionComponent extends BaseSection implements OnI
|
|
19
19
|
ngOnInit(): void;
|
20
20
|
screenWidth: number;
|
21
21
|
getScreenSize(event?: any): void;
|
22
|
+
get stylesLayout(): LayOutModel;
|
22
23
|
selectedTabIndex: number;
|
23
24
|
currentData?: FeatureItemModel;
|
24
25
|
changetab(index: number): void;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { OnInit } from '@angular/core';
|
2
|
-
import { ActionModel, BackgroundModel } from '../../styles/style.model';
|
2
|
+
import { ActionModel, BackgroundModel, LayOutModel } from '../../styles/style.model';
|
3
3
|
import { HeaderTextStylesModel } from './header-text.model';
|
4
4
|
import BaseSection from '../BaseSection';
|
5
5
|
import { EventsService } from './../../services/events.service';
|
@@ -19,6 +19,7 @@ export declare class HeaderTextComponent extends BaseSection implements OnInit {
|
|
19
19
|
styles?: HeaderTextStylesModel;
|
20
20
|
constructor(_eventService: EventsService);
|
21
21
|
ngOnInit(): void;
|
22
|
+
get stylesLayout(): LayOutModel;
|
22
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderTextComponent, never>;
|
23
24
|
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderTextComponent, "simpo-header-text", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
|
24
25
|
}
|
@@ -3,7 +3,7 @@ import { ImageGridContentModal, ImageGridSectionModel, ImageGridStylesModel } fr
|
|
3
3
|
import { EventsService } from '../../services/events.service';
|
4
4
|
import BaseSection from '../BaseSection';
|
5
5
|
import { SPACING } from '../../styles/index';
|
6
|
-
import { BackgroundModel } from '../../styles/style.model';
|
6
|
+
import { BackgroundModel, LayOutModel } from '../../styles/style.model';
|
7
7
|
import * as i0 from "@angular/core";
|
8
8
|
export declare class ImageGridSectionComponent extends BaseSection {
|
9
9
|
private _eventService;
|
@@ -18,6 +18,7 @@ export declare class ImageGridSectionComponent extends BaseSection {
|
|
18
18
|
style?: ImageGridStylesModel;
|
19
19
|
constructor(_eventService: EventsService);
|
20
20
|
ngOnInit(): void;
|
21
|
+
get stylesLayout(): LayOutModel;
|
21
22
|
get headingSpace(): SPACING;
|
22
23
|
editSection(): void;
|
23
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageGridSectionComponent, never>;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { OnInit } from '@angular/core';
|
2
|
-
import { ActionModel, BackgroundModel } from '../../styles/style.model';
|
2
|
+
import { ActionModel, BackgroundModel, LayOutModel } from '../../styles/style.model';
|
3
3
|
import BaseSection from '../BaseSection';
|
4
4
|
import { EventsService } from './../../services/events.service';
|
5
5
|
import { LogoShowcaseContentModel, LogoShowcaseSection, LogoShowcaseStylesModel } from './logo-showcase.modal';
|
@@ -22,6 +22,7 @@ export declare class LogoShowcaseComponent extends BaseSection implements OnInit
|
|
22
22
|
isFullWidth: boolean;
|
23
23
|
constructor(_eventService: EventsService);
|
24
24
|
ngOnInit(): void;
|
25
|
+
get stylesLayout(): LayOutModel;
|
25
26
|
get animationDuration(): logoSpeed;
|
26
27
|
get animationDirection(): logoDirection.Left | "reverse" | "normal";
|
27
28
|
screenWidth: number;
|
@@ -0,0 +1,30 @@
|
|
1
|
+
import { NewServicesContentModel, NewServicesModel, NewServicesStylesModel } from './new-services.model';
|
2
|
+
import { BackgroundModel, LayOutModel } from '../../styles/style.model';
|
3
|
+
import BaseSection from '../BaseSection';
|
4
|
+
import { EventsService } from '../../services/events.service';
|
5
|
+
import * as i0 from "@angular/core";
|
6
|
+
export declare class NewServicesComponent extends BaseSection {
|
7
|
+
private _eventService;
|
8
|
+
data?: NewServicesModel;
|
9
|
+
edit?: boolean;
|
10
|
+
delete?: boolean;
|
11
|
+
customClass?: string;
|
12
|
+
nextComponentColor?: BackgroundModel;
|
13
|
+
content?: NewServicesContentModel;
|
14
|
+
styles?: NewServicesStylesModel;
|
15
|
+
constructor(_eventService: EventsService);
|
16
|
+
ngOnInit(): void;
|
17
|
+
get stylesLayout(): LayOutModel;
|
18
|
+
selectedImage: string | undefined;
|
19
|
+
idx: number;
|
20
|
+
index: number;
|
21
|
+
getImageData(): import("../../styles/style.model").Image | undefined;
|
22
|
+
getImageUrl(): string | undefined;
|
23
|
+
editSection(): void;
|
24
|
+
stopPropagation(event: any): void;
|
25
|
+
screenWidth: any;
|
26
|
+
getScreenSize(): void;
|
27
|
+
getGradientDirection(direction: any): any;
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NewServicesComponent, never>;
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NewServicesComponent, "simpo-new-services", never, { "data": { "alias": "data"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
|
30
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { ListItemModal, StylesModel, Image, InputTextModel, ActionModel, BannerStylesModel } from './../../styles/style.model';
|
2
|
+
export interface NewServicesModel {
|
3
|
+
id: string;
|
4
|
+
sectionType: string;
|
5
|
+
sectionName: string;
|
6
|
+
content: NewServicesContentModel;
|
7
|
+
styles: NewServicesStylesModel;
|
8
|
+
action: ActionModel;
|
9
|
+
}
|
10
|
+
export interface NewServicesContentModel {
|
11
|
+
inputText: InputTextModel[];
|
12
|
+
listItem: ListItemModal<NewServicesItemModel>;
|
13
|
+
}
|
14
|
+
export interface NewServicesItemModel {
|
15
|
+
inputText: InputTextModel[];
|
16
|
+
image: Image;
|
17
|
+
}
|
18
|
+
export interface NewServicesStylesModel extends StylesModel, BannerStylesModel {
|
19
|
+
}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
import { BackgroundModel, LayOutModel } from '../../styles/style.model';
|
2
|
+
import BaseSection from '../BaseSection';
|
3
|
+
import { EventsService } from '../../services/events.service';
|
4
|
+
import { NewTestimonialsContentModel, NewTestimonialsModel, NewTestimonialsStyleModel } from './new-testimonials.model';
|
5
|
+
import * as i0 from "@angular/core";
|
6
|
+
export declare class NewTestimonialsComponent extends BaseSection {
|
7
|
+
private _eventService;
|
8
|
+
data?: NewTestimonialsModel;
|
9
|
+
edit?: boolean;
|
10
|
+
delete?: boolean;
|
11
|
+
customClass?: string;
|
12
|
+
nextComponentColor?: BackgroundModel;
|
13
|
+
index?: number;
|
14
|
+
content?: NewTestimonialsContentModel;
|
15
|
+
styles?: NewTestimonialsStyleModel;
|
16
|
+
constructor(_eventService: EventsService);
|
17
|
+
ngOnInit(): void;
|
18
|
+
ngAfterViewInit(): void;
|
19
|
+
get stylesLayout(): LayOutModel;
|
20
|
+
idx: number;
|
21
|
+
getImageData(): import("../../styles/style.model").Image | undefined;
|
22
|
+
getImageUrl(): string | undefined;
|
23
|
+
getImageType(): import("simpo-component-library").FILE_TYPE | undefined;
|
24
|
+
editSection(): void;
|
25
|
+
stopPropagation(event: any): void;
|
26
|
+
screenWidth: any;
|
27
|
+
getScreenSize(): void;
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NewTestimonialsComponent, never>;
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NewTestimonialsComponent, "simpo-new-testimonials", never, { "data": { "alias": "data"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; "index": { "alias": "index"; "required": false; }; }, {}, never, never, true, never>;
|
30
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { ListItemModal, StylesModel, Image, InputTextModel, ActionModel, BannerStylesModel } from './../../styles/style.model';
|
2
|
+
export interface NewTestimonialsModel {
|
3
|
+
id: string;
|
4
|
+
sectionType: string;
|
5
|
+
sectionName: string;
|
6
|
+
content: NewTestimonialsContentModel;
|
7
|
+
styles: NewTestimonialsStyleModel;
|
8
|
+
action: ActionModel;
|
9
|
+
}
|
10
|
+
export interface NewTestimonialsContentModel {
|
11
|
+
inputText: InputTextModel[];
|
12
|
+
listItem: ListItemModal<NewTestimonialsItemModel>;
|
13
|
+
}
|
14
|
+
export interface NewTestimonialsItemModel {
|
15
|
+
inputText: InputTextModel[];
|
16
|
+
image: Image;
|
17
|
+
}
|
18
|
+
export interface NewTestimonialsStyleModel extends StylesModel, BannerStylesModel {
|
19
|
+
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { PricingSectionContentModal, PricingSectionModal, PricingSectionStylesModel } from './pricing-section.modal';
|
2
|
-
import { BackgroundModel, ButtonModel } from '../../styles/style.model';
|
2
|
+
import { BackgroundModel, ButtonModel, LayOutModel } from '../../styles/style.model';
|
3
3
|
import { EventsService } from '../../services/events.service';
|
4
4
|
import BaseSection from '../BaseSection';
|
5
5
|
import { SPACING } from '../../styles/index';
|
@@ -17,6 +17,7 @@ export declare class PricingSectionComponent extends BaseSection {
|
|
17
17
|
style?: PricingSectionStylesModel;
|
18
18
|
constructor(_eventService: EventsService);
|
19
19
|
ngOnInit(): void;
|
20
|
+
get stylesLayout(): LayOutModel;
|
20
21
|
getTextColor(): "#ffffff" | "#000000";
|
21
22
|
get headingSpace(): SPACING;
|
22
23
|
editSection(): void;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { TeamMemberContentModal, TeamMemberSectionModal, TeamMemberStylesModel } from './team-member-section.model';
|
2
2
|
import { TextPosition } from '../../styles/index';
|
3
3
|
import { EventsService } from '../../services/events.service';
|
4
|
-
import { BackgroundModel, ButtonModel } from '../../styles/style.model';
|
4
|
+
import { BackgroundModel, ButtonModel, LayOutModel } from '../../styles/style.model';
|
5
5
|
import BaseSection from '../BaseSection';
|
6
6
|
import { SPACING } from '../../styles/index';
|
7
7
|
import * as i0 from "@angular/core";
|
@@ -20,6 +20,7 @@ export declare class TeamMemberSectionComponent extends BaseSection {
|
|
20
20
|
constructor(_eventService: EventsService);
|
21
21
|
ngOnInit(): void;
|
22
22
|
get headingSpace(): SPACING;
|
23
|
+
get stylesLayout(): LayOutModel;
|
23
24
|
editSection(): void;
|
24
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<TeamMemberSectionComponent, never>;
|
25
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<TeamMemberSectionComponent, "simpo-team-member-section", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { TextPosition } from '../../styles/index';
|
2
2
|
import { EventsService } from '../../services/events.service';
|
3
|
-
import { BackgroundModel } from '../../styles/style.model';
|
3
|
+
import { BackgroundModel, LayOutModel } from '../../styles/style.model';
|
4
4
|
import BaseSection from '../BaseSection';
|
5
5
|
import { TestimonialFullwidthContentModel, TestimonialFullwidthSectionModel, TestimonialFullwidthStylesModel } from './testimonial-fullwidth.model';
|
6
6
|
import * as i0 from "@angular/core";
|
@@ -17,6 +17,7 @@ export declare class TestimonialFullwidthComponent extends BaseSection {
|
|
17
17
|
style?: TestimonialFullwidthStylesModel;
|
18
18
|
constructor(_eventService: EventsService);
|
19
19
|
ngOnInit(): void;
|
20
|
+
get stylesLayout(): LayOutModel;
|
20
21
|
editSection(): void;
|
21
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestimonialFullwidthComponent, never>;
|
22
23
|
static ɵcmp: i0.ɵɵComponentDeclaration<TestimonialFullwidthComponent, "simpo-testimonial-fullwidth", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
|
@@ -20,6 +20,7 @@ export declare class TestimonialSectionComponent extends BaseSection {
|
|
20
20
|
ngOnInit(): void;
|
21
21
|
get headingSpace(): SPACING;
|
22
22
|
get getLayout(): LayOutModel;
|
23
|
+
get stylesLayout(): LayOutModel;
|
23
24
|
editSection(): void;
|
24
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<TestimonialSectionComponent, never>;
|
25
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<TestimonialSectionComponent, "simpo-testimonial-section", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { OnInit } from '@angular/core';
|
2
|
-
import { BackgroundModel, BannerStylesModel } from '../../styles/style.model';
|
2
|
+
import { BackgroundModel, BannerStylesModel, LayOutModel } from '../../styles/style.model';
|
3
3
|
import { TextImageContentModel, TextImageSectionModel } from './text-image-section.model';
|
4
4
|
import { EventsService } from '../../services/events.service';
|
5
5
|
import BaseSection from '../BaseSection';
|
@@ -16,6 +16,7 @@ export declare class TextImageSectionComponent extends BaseSection implements On
|
|
16
16
|
styles?: BannerStylesModel;
|
17
17
|
constructor(_eventService: EventsService);
|
18
18
|
ngOnInit(): void;
|
19
|
+
get stylesLayout(): LayOutModel;
|
19
20
|
editSection(): void;
|
20
21
|
get canMergeNavbar(): boolean | undefined;
|
21
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextImageSectionComponent, never>;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { AlignContent, Corners, DeviderType, ImageFit, ImageRatio, OverlayValue, RedirectionLinkType, SPACING, TEXT_SIZE, TextPosition } from '.';
|
2
|
-
import { ALIGN, ANIMATION_DIRECTION, ANIMATION_SPEED, BUTTON_SHAPE, BUTTON_TYPE, CARD_SIZE, FIT, LAYOUTPOSITION, LINK_TYPE, SPACING_TYPE, CONTENTPOSITION, BORDER_DIRECTION, BACKGROUND_TYPE, GRADIENT_DIRECTION } from './types';
|
2
|
+
import { ALIGN, ANIMATION_DIRECTION, ANIMATION_SPEED, BUTTON_SHAPE, BUTTON_TYPE, CARD_SIZE, FIT, LAYOUTPOSITION, LINK_TYPE, SPACING_TYPE, CONTENTPOSITION, BORDER_DIRECTION, BACKGROUND_TYPE, FILE_TYPE, GRADIENT_DIRECTION } from './types';
|
3
3
|
export interface SpacingModel {
|
4
4
|
top: SPACING_TYPE;
|
5
5
|
bottom: SPACING_TYPE;
|
@@ -157,6 +157,7 @@ export interface Image {
|
|
157
157
|
url: string;
|
158
158
|
blurhash: string;
|
159
159
|
altText: string;
|
160
|
+
type?: FILE_TYPE;
|
160
161
|
position: PositionModel;
|
161
162
|
}
|
162
163
|
export interface Icon {
|
package/lib/styles/types.d.ts
CHANGED
@@ -18,5 +18,6 @@ export type SITE_NAME_LOGo = 'custom' | 'same as header';
|
|
18
18
|
export type INPUT_FIELDS_TYPE = "text" | "number" | "desc" | "password" | "checkbox" | "option" | "money" | "rating" | "dropdown" | "address" | "email" | "date" | "radioButton";
|
19
19
|
export type MAP_STYLE = 'Streets' | 'Outdoors' | 'Light' | 'Dark' | 'Satellite' | 'Satellite_street' | 'navigation_day' | 'navigation_night';
|
20
20
|
export type BANNER_TRANSITION = 'Horizontal' | 'Animated';
|
21
|
+
export type FILE_TYPE = 'Image' | 'Video';
|
21
22
|
export type BACKGROUND_TYPE = 'Solid' | 'Gradient';
|
22
23
|
export type GRADIENT_DIRECTION = 'DOWN' | 'RIGHT' | 'DIAGONAL_RIGHT' | 'DIAGONAL_LEFT';
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -38,6 +38,8 @@ export * from './lib/sections/usp-video-section/usp-video-section.component';
|
|
38
38
|
export * from './lib/sections/property-list/property-list.component';
|
39
39
|
export * from './lib/sections/footer/footer.component';
|
40
40
|
export * from './lib/sections/header-section/header-section.component';
|
41
|
+
export * from './lib/sections/new-testimonials/new-testimonials.component';
|
42
|
+
export * from './lib/sections/new-services/new-services.component';
|
41
43
|
export * from './lib/ecommerce/sections/featured-products/featured-products.component';
|
42
44
|
export * from './lib/ecommerce/sections/featured-category/featured-category.component';
|
43
45
|
export * from './lib/ecommerce/sections/product-desc/product-desc.component';
|
Binary file
|
Binary file
|