simpo-component-library 2.1.694 → 2.1.695

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpo-component-library",
3
- "version": "2.1.694",
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