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.
- package/esm2022/lib/elements/simpo-button/simpo-button.component.mjs +3 -3
- package/esm2022/lib/sections/faq-section/faq-section.component.mjs +3 -3
- package/esm2022/lib/sections/property-list/property-list.component.mjs +116 -0
- package/esm2022/lib/sections/property-list/property-list.modal.mjs +2 -0
- package/esm2022/lib/sections/recent-blog-post-section/recent-blog-post-section.component.mjs +3 -3
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/simpo-component-library.mjs +101 -7
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/sections/property-list/property-list.component.d.ts +22 -0
- package/lib/sections/property-list/property-list.modal.d.ts +14 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/simpo-component-library-2.1.695.tgz +0 -0
- package/simpo-component-library-2.1.694.tgz +0 -0
@@ -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
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
|
Binary file
|