simpo-component-library 2.1.693 → 2.1.695

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.
@@ -0,0 +1,22 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { PropertyListContentModal, PropertyListModal, PropertyListStylesModal } from './property-list.modal';
3
+ import { LayOutModel } from '../../styles/style.model';
4
+ import BaseSection from '../BaseSection';
5
+ import { SPACING } from '../../styles/index';
6
+ import * as i0 from "@angular/core";
7
+ export declare class PropertyListComponent extends BaseSection implements OnInit {
8
+ data?: PropertyListModal;
9
+ index?: number;
10
+ edit?: boolean;
11
+ delete?: boolean;
12
+ customClass?: string;
13
+ constructor();
14
+ styles?: PropertyListStylesModal;
15
+ content?: PropertyListContentModal;
16
+ ngOnInit(): void;
17
+ propertyList: any[];
18
+ get stylesLayout(): LayOutModel;
19
+ get headingSpace(): SPACING;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<PropertyListComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<PropertyListComponent, "simpo-property-list", 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; }; }, {}, never, never, true, never>;
22
+ }
@@ -0,0 +1,14 @@
1
+ import { ActionModel, InputTextModel, StylesModel } from "../../styles/style.model";
2
+ export interface PropertyListModal {
3
+ id: string;
4
+ sectionType: string;
5
+ sectionName: string;
6
+ content: PropertyListContentModal;
7
+ styles: PropertyListStylesModal;
8
+ action: ActionModel;
9
+ }
10
+ export interface PropertyListContentModal {
11
+ inputText: InputTextModel[];
12
+ }
13
+ export interface PropertyListStylesModal extends StylesModel {
14
+ }
@@ -3,7 +3,7 @@ import { EventsService } from '../../services/events.service';
3
3
  import BaseSection from '../BaseSection';
4
4
  import { RecentBlogPostSectionModel, RecentBlogPostContentModel, BannerGridStylesModel } from './recent-blog-post-section.model';
5
5
  import { SPACING } from '../../styles/index';
6
- import { BackgroundModel, ButtonModel } from '../../styles/style.model';
6
+ import { BackgroundModel, ButtonModel, LayOutModel } from '../../styles/style.model';
7
7
  import * as i0 from "@angular/core";
8
8
  export declare class RecentBlogPostSectionComponent extends BaseSection implements OnInit {
9
9
  private _eventService;
@@ -20,6 +20,7 @@ export declare class RecentBlogPostSectionComponent extends BaseSection implemen
20
20
  constructor(_eventService: EventsService);
21
21
  ngOnInit(): void;
22
22
  get headingSpace(): SPACING;
23
+ get stylesLayout(): LayOutModel;
23
24
  getSliceParameters(): number[];
24
25
  getBlogById(blogId: any): void;
25
26
  openBlogList(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpo-component-library",
3
- "version": "2.1.693",
3
+ "version": "2.1.695",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.2.0",
6
6
  "@angular/core": "^17.2.0",
package/public-api.d.ts CHANGED
@@ -35,6 +35,7 @@ export * from './lib/sections/logo-gallery/logo-gallery.component';
35
35
  export * from './lib/sections/registration-form/registration-form.component';
36
36
  export * from './lib/sections/property-component/property-component.component';
37
37
  export * from './lib/sections/usp-video-section/usp-video-section.component';
38
+ export * from './lib/sections/property-list/property-list.component';
38
39
  export * from './lib/ecommerce/sections/featured-products/featured-products.component';
39
40
  export * from './lib/ecommerce/sections/featured-category/featured-category.component';
40
41
  export * from './lib/ecommerce/sections/product-desc/product-desc.component';
Binary file