simpo-component-library 1.8.995 → 1.8.997

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.
@@ -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
+ }
@@ -134,6 +134,7 @@ export interface BannerStylesModel {
134
134
  merge?: boolean;
135
135
  textSize: TextSize;
136
136
  showImage: boolean;
137
+ revertImage: boolean;
137
138
  }
138
139
  export interface InputTextModel {
139
140
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpo-component-library",
3
- "version": "1.8.995",
3
+ "version": "1.8.997",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.2.0",
6
6
  "@angular/core": "^17.2.0",
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