simpo-component-library 1.8.995 → 1.8.997
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/components/image-loading/image-loading.component.mjs +2 -2
- package/esm2022/lib/ecommerce/sections/cart/cart.component.mjs +8 -3
- package/esm2022/lib/ecommerce/sections/featured-products/featured-products.component.mjs +3 -3
- package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +3 -3
- package/esm2022/lib/elements/heading-element/heading-element.component.mjs +4 -3
- package/esm2022/lib/sections/banner-section/banner-section.component.mjs +3 -3
- package/esm2022/lib/sections/faq-section/faq-section.component.mjs +15 -5
- package/esm2022/lib/sections/features-section/features-section.component.mjs +3 -3
- package/esm2022/lib/sections/logo-gallery/logo-gallery.component.mjs +90 -0
- package/esm2022/lib/sections/logo-gallery/logo-gallery.modal.mjs +2 -0
- package/esm2022/lib/sections/navbar-section/navbar-section.component.mjs +3 -3
- package/esm2022/lib/styles/style.model.mjs +1 -1
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/simpo-component-library.mjs +123 -43
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/sections/faq-section/faq-section.component.d.ts +2 -0
- package/lib/sections/logo-gallery/logo-gallery.component.d.ts +17 -0
- package/lib/sections/logo-gallery/logo-gallery.modal.d.ts +24 -0
- package/lib/styles/style.model.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/simpo-component-library-1.8.997.tgz +0 -0
- package/simpo-component-library-1.8.995.tgz +0 -0
@@ -14,12 +14,14 @@ export declare class FaqSectionComponent extends BaseSection {
|
|
14
14
|
content?: FAQContentModal;
|
15
15
|
style?: FAQStylesModel;
|
16
16
|
unCollapsedList: number[];
|
17
|
+
screenWidth: number;
|
17
18
|
constructor(_eventService: EventsService);
|
18
19
|
ngOnInit(): void;
|
19
20
|
get headingSpace(): SPACING;
|
20
21
|
get stylesLayout(): LayOutModel;
|
21
22
|
toggleContent(idx: number): void;
|
22
23
|
editSection(): void;
|
24
|
+
getScreenSize(): void;
|
23
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<FaqSectionComponent, never>;
|
24
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<FaqSectionComponent, "simpo-faq-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; }; }, {}, never, never, true, never>;
|
25
27
|
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { LogoGalleryContentModal, LogoGallerySectionMOdal, LogoGalleryStylesModel } from './logo-gallery.modal';
|
2
|
+
import BaseSection from '../BaseSection';
|
3
|
+
import { SPACING } from '../../styles/index';
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
export declare class LogoGalleryComponent extends BaseSection {
|
6
|
+
data?: LogoGallerySectionMOdal;
|
7
|
+
index?: number;
|
8
|
+
customClass?: string;
|
9
|
+
content?: LogoGalleryContentModal;
|
10
|
+
style?: LogoGalleryStylesModel;
|
11
|
+
constructor();
|
12
|
+
ngOnInit(): void;
|
13
|
+
get headingSpace(): SPACING;
|
14
|
+
isEvenRow(index: number): boolean;
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LogoGalleryComponent, never>;
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LogoGalleryComponent, "simpo-logo-gallery", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, {}, never, never, true, never>;
|
17
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { Corners } from "./../../styles/index";
|
2
|
+
import { Image, ImageStyle, InputTextModel, ListItemModal, StylesModel } from "./../../styles/style.model";
|
3
|
+
import { CARD_SIZE } from "./../../styles/types";
|
4
|
+
export interface LogoGallerySectionMOdal {
|
5
|
+
id: string;
|
6
|
+
sectionType: string;
|
7
|
+
sectionName: string;
|
8
|
+
content: LogoGalleryContentModal;
|
9
|
+
styles: LogoGalleryStylesModel;
|
10
|
+
}
|
11
|
+
export interface LogoGalleryStylesModel extends StylesModel {
|
12
|
+
corners: Corners;
|
13
|
+
image: ImageStyle;
|
14
|
+
removeGaps: boolean;
|
15
|
+
fullWidth: boolean;
|
16
|
+
size: CARD_SIZE;
|
17
|
+
}
|
18
|
+
export interface LogoGalleryContentModal {
|
19
|
+
inputText: [InputTextModel];
|
20
|
+
listItem: ListItemModal<ImageGridItemModel>;
|
21
|
+
}
|
22
|
+
export interface ImageGridItemModel {
|
23
|
+
image: Image;
|
24
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -31,6 +31,7 @@ export * from './lib/sections/banner-carousel/banner-carousel.component';
|
|
31
31
|
export * from './lib/sections/carousel-banner/carousel-banner.component';
|
32
32
|
export * from './lib/sections/appointment-form/appointment-form.component';
|
33
33
|
export * from './lib/sections/testimonial-video/testimonial-video.component';
|
34
|
+
export * from './lib/sections/logo-gallery/logo-gallery.component';
|
34
35
|
export * from './lib/ecommerce/sections/featured-products/featured-products.component';
|
35
36
|
export * from './lib/ecommerce/sections/featured-category/featured-category.component';
|
36
37
|
export * from './lib/ecommerce/sections/product-desc/product-desc.component';
|
Binary file
|
Binary file
|