simpo-component-library 1.0.3 → 1.0.5

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,12 @@
1
+ import { ElementRef, OnChanges } from '@angular/core';
2
+ import { PositionLayoutModal } from '../styles/style.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SimpoBorderlessDirective implements OnChanges {
5
+ private el;
6
+ simpoBorderless?: PositionLayoutModal;
7
+ constructor(el: ElementRef);
8
+ ngOnChanges(): void;
9
+ ngOnDestroy(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<SimpoBorderlessDirective, never>;
11
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SimpoBorderlessDirective, "[simpoBorderless]", never, { "simpoBorderless": { "alias": "simpoBorderless"; "required": false; }; }, {}, never, never, true, never>;
12
+ }
@@ -1,6 +1,6 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { BannerContentModel, BannerSectionModel } from './banner-section.model';
3
- import { BannerStylesModel, LayOutModel } from '../../styles/style.model';
3
+ import { BannerStylesModel, LayOutModel, PositionLayoutModal } from '../../styles/style.model';
4
4
  import { EventsService } from './../../services/events.service';
5
5
  import BaseSection from '../BaseSection';
6
6
  import * as i0 from "@angular/core";
@@ -17,6 +17,8 @@ export declare class BannerSectionComponent extends BaseSection implements OnIni
17
17
  get stylesLayout(): LayOutModel;
18
18
  get getJustifyContent(): string;
19
19
  get canMergeNavbar(): boolean | undefined;
20
+ get isBorderlessImage(): boolean | undefined;
21
+ get getPositionLayout(): PositionLayoutModal;
20
22
  static ɵfac: i0.ɵɵFactoryDeclaration<BannerSectionComponent, never>;
21
23
  static ɵcmp: i0.ɵɵComponentDeclaration<BannerSectionComponent, "simpo-banner-section", 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>;
22
24
  }
@@ -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.3",
3
+ "version": "1.0.5",
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