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.
- package/esm2022/lib/sections/banner-section/banner-section.component.mjs +3 -3
- package/esm2022/lib/sections/logo-showcase/logo-showcase.component.mjs +103 -0
- package/esm2022/lib/sections/logo-showcase/logo-showcase.modal.mjs +2 -0
- package/esm2022/lib/sections/recent-blog-post-section/recent-blog-post-section.component.mjs +6 -4
- package/esm2022/lib/sections/testimonial-fullwidth/testimonial-fullwidth.component.mjs +3 -3
- package/esm2022/lib/styles/index.mjs +6 -1
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/simpo-component-library.mjs +87 -8
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/sections/logo-showcase/logo-showcase.component.d.ts +29 -0
- package/lib/sections/logo-showcase/logo-showcase.modal.d.ts +31 -0
- package/lib/styles/index.d.ts +4 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/simpo-component-library-1.0.6.tgz +0 -0
- package/simpo-component-library-1.0.4.tgz +0 -0
|
@@ -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
|
+
}
|
package/lib/styles/index.d.ts
CHANGED
package/package.json
CHANGED
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
|
|
Binary file
|