simpo-component-library 2.1.62 → 2.1.64

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.
Files changed (28) hide show
  1. package/esm2022/lib/elements/below-image-card/below-image-card.component.mjs +3 -3
  2. package/esm2022/lib/elements/index.mjs +2 -2
  3. package/esm2022/lib/elements/property/property.component.mjs +8 -6
  4. package/esm2022/lib/elements/simpo-button/simpo-button.component.mjs +3 -3
  5. package/esm2022/lib/sections/banner-section/banner-section.component.mjs +3 -3
  6. package/esm2022/lib/sections/banner-section/banner-section.model.mjs +1 -1
  7. package/esm2022/lib/sections/choose-us-section/choose-us-section.component.mjs +3 -3
  8. package/esm2022/lib/sections/faq-section/faq-section.component.mjs +4 -4
  9. package/esm2022/lib/sections/navbar-section/navbar-section.component.mjs +3 -3
  10. package/esm2022/lib/sections/property-component/property-component.component.mjs +23 -0
  11. package/esm2022/lib/sections/property-component/property-component.modal.mjs +2 -0
  12. package/esm2022/lib/sections/service-section/service-section.component.mjs +14 -6
  13. package/esm2022/lib/sections/usp-video-section/usp-video-section.component.mjs +28 -0
  14. package/esm2022/lib/sections/usp-video-section/usp-video-section.model.mjs +2 -0
  15. package/esm2022/public-api.mjs +3 -1
  16. package/fesm2022/simpo-component-library.mjs +72 -22
  17. package/fesm2022/simpo-component-library.mjs.map +1 -1
  18. package/lib/elements/property/property.component.d.ts +3 -1
  19. package/lib/sections/banner-section/banner-section.model.d.ts +6 -0
  20. package/lib/sections/property-component/property-component.component.d.ts +10 -0
  21. package/lib/sections/property-component/property-component.modal.d.ts +28 -0
  22. package/lib/sections/service-section/service-section.component.d.ts +4 -2
  23. package/lib/sections/usp-video-section/usp-video-section.component.d.ts +12 -0
  24. package/lib/sections/usp-video-section/usp-video-section.model.d.ts +22 -0
  25. package/package.json +1 -1
  26. package/public-api.d.ts +2 -0
  27. package/simpo-component-library-2.1.64.tgz +0 -0
  28. package/simpo-component-library-2.1.62.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
  }
@@ -20,4 +20,10 @@ export interface BannerContentModel {
20
20
  }
21
21
  export interface BannerListItem {
22
22
  inputText: InputTextModel[];
23
+ icon: IconModel;
24
+ }
25
+ export interface IconModel {
26
+ url: string;
27
+ color: string;
28
+ altText: string;
23
29
  }
@@ -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
+ }
@@ -1,8 +1,8 @@
1
1
  import { ElementRef } from '@angular/core';
2
2
  import { ServiceContentModal, ServiceSectionModal, ServiceStylesModel } from './service-section.model';
3
3
  import { EventsService } from '../../services/events.service';
4
- import { TextPosition } from '../../styles/index';
5
- import { BackgroundModel, ButtonModel } from '../../styles/style.model';
4
+ import { Corners, TextPosition } from '../../styles/index';
5
+ import { BackgroundModel, ButtonModel, LayOutModel } from '../../styles/style.model';
6
6
  import BaseSection from '../BaseSection';
7
7
  import { SPACING } from '../../styles/index';
8
8
  import * as i0 from "@angular/core";
@@ -20,8 +20,10 @@ export declare class ServiceSectionComponent extends BaseSection {
20
20
  style?: ServiceStylesModel;
21
21
  button?: ButtonModel;
22
22
  constructor(_eventService: EventsService);
23
+ Corner: typeof Corners;
23
24
  ngOnInit(): void;
24
25
  get headingSpace(): SPACING;
26
+ get stylesLayout(): LayOutModel;
25
27
  editSection(): void;
26
28
  static ɵfac: i0.ɵɵFactoryDeclaration<ServiceSectionComponent, never>;
27
29
  static ɵcmp: i0.ɵɵComponentDeclaration<ServiceSectionComponent, "simpo-service-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>;
@@ -0,0 +1,12 @@
1
+ import { UspStyleModel, UspVideoModel } from './usp-video-section.model';
2
+ import { LayOutModel } from '../../styles/style.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class UspVideoSectionComponent {
5
+ data?: UspVideoModel;
6
+ style?: UspStyleModel;
7
+ ngOnInit(): void;
8
+ get stylesLayout(): LayOutModel;
9
+ index: number;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<UspVideoSectionComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<UspVideoSectionComponent, "simpo-usp-video-section", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
12
+ }
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpo-component-library",
3
- "version": "2.1.62",
3
+ "version": "2.1.64",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.2.0",
6
6
  "@angular/core": "^17.2.0",
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