simpo-component-library 2.1.63 → 2.1.66
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 +3 -3
- package/esm2022/lib/elements/below-image-card/below-image-card.component.mjs +3 -3
- package/esm2022/lib/elements/index.mjs +2 -2
- package/esm2022/lib/elements/property/property.component.mjs +8 -6
- package/esm2022/lib/elements/simpo-button/simpo-button.component.mjs +2 -2
- 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/carousel-banner/carousel-banner.component.mjs +3 -3
- package/esm2022/lib/sections/contact-us/contact-us.component.mjs +4 -1
- package/esm2022/lib/sections/faq-section/faq-section.component.mjs +4 -4
- package/esm2022/lib/sections/navbar-section/navbar-section.component.mjs +3 -3
- package/esm2022/lib/sections/property-component/property-component.component.mjs +23 -0
- package/esm2022/lib/sections/property-component/property-component.modal.mjs +2 -0
- package/esm2022/lib/sections/service-section/service-section.component.mjs +3 -3
- package/esm2022/lib/sections/usp-video-section/usp-video-section.component.mjs +56 -0
- package/esm2022/lib/sections/usp-video-section/usp-video-section.model.mjs +2 -0
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/simpo-component-library.mjs +90 -22
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/elements/property/property.component.d.ts +3 -1
- package/lib/sections/banner-section/banner-section.model.d.ts +6 -0
- package/lib/sections/property-component/property-component.component.d.ts +10 -0
- package/lib/sections/property-component/property-component.modal.d.ts +28 -0
- package/lib/sections/usp-video-section/usp-video-section.component.d.ts +20 -0
- package/lib/sections/usp-video-section/usp-video-section.model.d.ts +22 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/simpo-component-library-2.1.66.tgz +0 -0
- package/simpo-component-library-2.1.63.tgz +0 -0
@@ -1,6 +1,8 @@
|
|
1
|
+
import { Property } from '@simpo-ui/sections/property-component/property-component.modal';
|
1
2
|
import * as i0 from "@angular/core";
|
2
3
|
export declare class PropertyComponent {
|
4
|
+
element?: Property;
|
3
5
|
obj: any;
|
4
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyComponent, never>;
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PropertyComponent, "simpo-property", never, {}, {}, never, never, true, never>;
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PropertyComponent, "simpo-property", never, { "element": { "alias": "element"; "required": false; }; }, {}, never, never, true, never>;
|
6
8
|
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { PropertyContentModel, PropertySectionModel } from './property-component.modal';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class PropertyComponentComponent {
|
4
|
+
data?: PropertySectionModel;
|
5
|
+
content?: PropertyContentModel;
|
6
|
+
index?: number;
|
7
|
+
ngOnInit(): void;
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyComponentComponent, never>;
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PropertyComponentComponent, "simpo-property-component", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; }, {}, never, never, true, never>;
|
10
|
+
}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import { InputTextModel, ListItemModal } from './../../styles/style.model';
|
2
|
+
export interface PropertySectionModel {
|
3
|
+
id: string;
|
4
|
+
sectionType: string;
|
5
|
+
sectionName: string;
|
6
|
+
content: PropertyContentModel;
|
7
|
+
}
|
8
|
+
export interface PropertyContentModel {
|
9
|
+
inputText: InputTextModel[];
|
10
|
+
listItem: ListItemModal<Property>;
|
11
|
+
}
|
12
|
+
export interface Location {
|
13
|
+
city: string;
|
14
|
+
state: string;
|
15
|
+
}
|
16
|
+
export interface Feature {
|
17
|
+
key: string;
|
18
|
+
value: string;
|
19
|
+
}
|
20
|
+
export interface Property {
|
21
|
+
heading: string;
|
22
|
+
location: Location;
|
23
|
+
latitude: string;
|
24
|
+
longitude: string;
|
25
|
+
minInvestment: string;
|
26
|
+
features: Feature[];
|
27
|
+
backgroundImageUrl: string;
|
28
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { OnInit } from '@angular/core';
|
2
|
+
import { UspStyleModel, UspVideoModel } from './usp-video-section.model';
|
3
|
+
import { LayOutModel } from '../../styles/style.model';
|
4
|
+
import { EventsService } from './../../services/events.service';
|
5
|
+
import BaseSection from '../BaseSection';
|
6
|
+
import * as i0 from "@angular/core";
|
7
|
+
export declare class UspVideoSectionComponent extends BaseSection implements OnInit {
|
8
|
+
private _eventService;
|
9
|
+
data?: UspVideoModel;
|
10
|
+
index?: number;
|
11
|
+
edit?: boolean;
|
12
|
+
delete?: boolean;
|
13
|
+
style?: UspStyleModel;
|
14
|
+
constructor(_eventService: EventsService);
|
15
|
+
ngOnInit(): void;
|
16
|
+
get stylesLayout(): LayOutModel;
|
17
|
+
editSection(): void;
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UspVideoSectionComponent, never>;
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UspVideoSectionComponent, "simpo-usp-video-section", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; }, {}, never, never, true, never>;
|
20
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import { InputTextModel, ListItemModal, StylesModel } from './../../styles/style.model';
|
2
|
+
export interface UspVideoModel {
|
3
|
+
id: string;
|
4
|
+
sectionType: string;
|
5
|
+
sectionName: string;
|
6
|
+
content: UspContentModel;
|
7
|
+
styles: UspStyleModel;
|
8
|
+
}
|
9
|
+
export interface UspContentModel {
|
10
|
+
inputText: InputTextModel[];
|
11
|
+
listItem: ListItemModal<USPVideoItemModel>;
|
12
|
+
videoLink: UspVideo;
|
13
|
+
}
|
14
|
+
export interface USPVideoItemModel {
|
15
|
+
inputText: InputTextModel[];
|
16
|
+
}
|
17
|
+
export interface UspVideo {
|
18
|
+
display: boolean;
|
19
|
+
url: string;
|
20
|
+
}
|
21
|
+
export interface UspStyleModel extends StylesModel {
|
22
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -33,6 +33,8 @@ export * from './lib/sections/appointment-form/appointment-form.component';
|
|
33
33
|
export * from './lib/sections/testimonial-video/testimonial-video.component';
|
34
34
|
export * from './lib/sections/logo-gallery/logo-gallery.component';
|
35
35
|
export * from './lib/sections/registration-form/registration-form.component';
|
36
|
+
export * from './lib/sections/property-component/property-component.component';
|
37
|
+
export * from './lib/sections/usp-video-section/usp-video-section.component';
|
36
38
|
export * from './lib/ecommerce/sections/featured-products/featured-products.component';
|
37
39
|
export * from './lib/ecommerce/sections/featured-category/featured-category.component';
|
38
40
|
export * from './lib/ecommerce/sections/product-desc/product-desc.component';
|
Binary file
|
Binary file
|