simpo-component-library 3.6.857 → 3.6.859
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/components/hover-elements/hover-elements.component.mjs +6 -17
- package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +3 -3
- package/esm2022/lib/elements/text-editor/text-editor.component.mjs +494 -318
- package/esm2022/lib/sections/testimonial-fullwidth/testimonial-fullwidth.component.mjs +3 -3
- package/esm2022/public-api.mjs +1 -3
- package/fesm2022/simpo-component-library.mjs +547 -563
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/components/hover-elements/hover-elements.component.d.ts +0 -3
- package/lib/components/input-fields/input-fields.component.d.ts +1 -1
- package/lib/ecommerce/sections/product-desc/product-desc.component.d.ts +1 -1
- package/lib/ecommerce/sections/schemes/schemes.component.d.ts +1 -1
- package/lib/elements/pricing-s1/pricing-s1.component.d.ts +1 -1
- package/lib/elements/text-editor/text-editor.component.d.ts +50 -36
- package/lib/sections/banner-carousel/banner-carousel.component.d.ts +2 -2
- package/lib/sections/carousel-banner/carousel-banner.component.d.ts +1 -1
- package/lib/sections/image-section/image-section.component.d.ts +2 -2
- package/lib/sections/logo-showcase/logo-showcase.component.d.ts +2 -2
- package/lib/sections/new-testimonials/new-testimonials.component.d.ts +1 -1
- package/lib/sections/pricing-section/pricing-section.component.d.ts +1 -1
- package/package.json +4 -10
- package/public-api.d.ts +0 -2
- package/simpo-component-library-3.6.859.tgz +0 -0
- package/src/lib/styles/global-styles.css +15 -0
- package/esm2022/lib/sections/testimonial-masonry/testimonial-masonry.component.mjs +0 -110
- package/esm2022/lib/sections/testimonial-masonry/testimonial-masonry.model.mjs +0 -2
- package/esm2022/lib/styles/gradient-extension.mjs +0 -62
- package/esm2022/lib/styles/text-size.extension.mjs +0 -43
- package/lib/sections/testimonial-masonry/testimonial-masonry.component.d.ts +0 -30
- package/lib/sections/testimonial-masonry/testimonial-masonry.model.d.ts +0 -24
- package/lib/styles/gradient-extension.d.ts +0 -2
- package/lib/styles/text-size.extension.d.ts +0 -10
- package/simpo-component-library-3.6.857.tgz +0 -0
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BackgroundModel, LayOutModel } from '../../styles/style.model';
|
|
3
|
-
import { EventsService } from '../../services/events.service';
|
|
4
|
-
import BaseSection from '../BaseSection';
|
|
5
|
-
import { TestimonialMasonryContentModel, TestimonialMasonryModel, TestimonialMasonryStyleModel } from './testimonial-masonry.model';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class TestimonialMasonryComponent extends BaseSection implements OnInit {
|
|
8
|
-
private _eventService;
|
|
9
|
-
data?: TestimonialMasonryModel | any;
|
|
10
|
-
edit?: boolean;
|
|
11
|
-
delete?: boolean;
|
|
12
|
-
customClass?: string;
|
|
13
|
-
nextComponentColor?: BackgroundModel;
|
|
14
|
-
index?: number;
|
|
15
|
-
content?: TestimonialMasonryContentModel;
|
|
16
|
-
styles?: TestimonialMasonryStyleModel;
|
|
17
|
-
screenWidth: number;
|
|
18
|
-
constructor(_eventService: EventsService);
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
get stylesLayout(): LayOutModel;
|
|
21
|
-
get activeItems(): import("./testimonial-masonry.model").TestimonialMasonryItemModel[];
|
|
22
|
-
getQuote(item: any): string;
|
|
23
|
-
getAuthor(item: any): string;
|
|
24
|
-
getRole(item: any): string;
|
|
25
|
-
getAvatarUrl(item: any): string;
|
|
26
|
-
editSection(): void;
|
|
27
|
-
getScreenSize(): void;
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TestimonialMasonryComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TestimonialMasonryComponent, "simpo-testimonial-masonry", never, { "data": { "alias": "data"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; "index": { "alias": "index"; "required": false; }; }, {}, never, never, true, never>;
|
|
30
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { Image, InputTextModel, ListItemModal, StylesModel, BannerStylesModel, ActionModel } from '../../styles/style.model';
|
|
2
|
-
export interface TestimonialMasonryModel {
|
|
3
|
-
id: string;
|
|
4
|
-
sectionType: string;
|
|
5
|
-
sectionName: string;
|
|
6
|
-
content: TestimonialMasonryContentModel;
|
|
7
|
-
styles: TestimonialMasonryStyleModel;
|
|
8
|
-
action?: ActionModel;
|
|
9
|
-
}
|
|
10
|
-
export interface TestimonialMasonryContentModel {
|
|
11
|
-
inputText: InputTextModel[];
|
|
12
|
-
display?: {
|
|
13
|
-
showImage?: boolean;
|
|
14
|
-
showCard?: boolean;
|
|
15
|
-
};
|
|
16
|
-
listItem: ListItemModal<TestimonialMasonryItemModel>;
|
|
17
|
-
}
|
|
18
|
-
export interface TestimonialMasonryItemModel {
|
|
19
|
-
status: boolean;
|
|
20
|
-
image: Image;
|
|
21
|
-
inputText: InputTextModel[];
|
|
22
|
-
}
|
|
23
|
-
export interface TestimonialMasonryStyleModel extends StylesModel, BannerStylesModel {
|
|
24
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { Extension } from '@tiptap/core';
|
|
2
|
-
declare module '@tiptap/core' {
|
|
3
|
-
interface Commands<ReturnType> {
|
|
4
|
-
fontSize: {
|
|
5
|
-
setFontSize: (fontSize: string) => ReturnType;
|
|
6
|
-
unsetFontSize: () => ReturnType;
|
|
7
|
-
};
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
export declare const FontSize: Extension<any, any>;
|
|
Binary file
|