simpo-component-library 1.0.4 → 1.0.6

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,29 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ActionModel } from '../../styles/style.model';
3
+ import BaseSection from '../BaseSection';
4
+ import { EventsService } from './../../services/events.service';
5
+ import { LogoShowcaseContentModel, LogoShowcaseSection, LogoShowcaseStylesModel } from './logo-showcase.modal';
6
+ import { logoDirection, logoSpeed } from '../../styles/index';
7
+ import * as i0 from "@angular/core";
8
+ export declare class LogoShowcaseComponent extends BaseSection implements OnInit {
9
+ private _eventService;
10
+ data?: LogoShowcaseSection;
11
+ index?: number;
12
+ edit?: boolean;
13
+ delete?: boolean;
14
+ id: string;
15
+ action: ActionModel;
16
+ content?: LogoShowcaseContentModel;
17
+ styles?: LogoShowcaseStylesModel;
18
+ logoSpeedClass: string;
19
+ logoDirectionClass: string;
20
+ isFullWidth: boolean;
21
+ constructor(_eventService: EventsService);
22
+ ngOnInit(): void;
23
+ get animationDuration(): logoSpeed;
24
+ get animationDirection(): logoDirection;
25
+ screenWidth: number;
26
+ getScreenSize(event?: number): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<LogoShowcaseComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<LogoShowcaseComponent, "simpo-logo-showcase", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; }, {}, never, never, true, never>;
29
+ }
@@ -0,0 +1,31 @@
1
+ import { Image, ImageStyle, StylesModel, ActionModel, InputTextModel, ListItemModal, PositionLayoutModal } from "./../../styles/style.model";
2
+ import { Corners, logoDirection, logoSpeed, logoType, showCaseType, AlignContent } from './../../styles/index';
3
+ import { CARD_SIZE } from './../../styles/types';
4
+ export interface LogoShowcaseSection {
5
+ id: string;
6
+ sectionType: string;
7
+ sectionName: string;
8
+ content: LogoShowcaseContentModel;
9
+ styles: LogoShowcaseStylesModel;
10
+ action: ActionModel;
11
+ }
12
+ export interface LogoShowcaseContentModel {
13
+ inputText: InputTextModel[];
14
+ listItem: ListItemModal<LogoShowcaseItemModel>;
15
+ }
16
+ export interface LogoShowcaseItemModel {
17
+ image: Image;
18
+ }
19
+ export interface LogoShowcaseStylesModel extends StylesModel {
20
+ positionLayout: PositionLayoutModal;
21
+ corners: Corners;
22
+ image: ImageStyle;
23
+ removeGaps: boolean;
24
+ fullWidth: boolean;
25
+ size: CARD_SIZE;
26
+ logoType: logoType;
27
+ logoSpeed: logoSpeed;
28
+ logoDirection: logoDirection;
29
+ showCaseType: showCaseType;
30
+ contentAlignment: AlignContent;
31
+ }
@@ -118,6 +118,10 @@ export declare enum logoType {
118
118
  Basic = "Basic",
119
119
  Boxed = "Boxed"
120
120
  }
121
+ export declare enum showCaseType {
122
+ Carousal = "Carousal",
123
+ Grid = "Grid"
124
+ }
121
125
  export declare enum logoSpeed {
122
126
  Slow = "1s",
123
127
  Normal = "4s",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpo-component-library",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.2.0",
6
6
  "@angular/core": "^17.2.0",
package/public-api.d.ts CHANGED
@@ -26,6 +26,7 @@ export * from './lib/sections/process-section/process-section.component';
26
26
  export * from './lib/sections/process-modern/process-modern.component';
27
27
  export * from './lib/sections/features-section/features-section.component';
28
28
  export * from './lib/sections/testimonial-fullwidth/testimonial-fullwidth.component';
29
+ export * from './lib/sections/logo-showcase/logo-showcase.component';
29
30
  export * from './lib/services/events.service';
30
31
  export * from './lib/directive/animation-directive';
31
32
  export * from './lib/directive/background-directive';
Binary file