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.
Files changed (32) hide show
  1. package/esm2022/lib/components/hover-elements/hover-elements.component.mjs +6 -17
  2. package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +3 -3
  3. package/esm2022/lib/elements/text-editor/text-editor.component.mjs +494 -318
  4. package/esm2022/lib/sections/testimonial-fullwidth/testimonial-fullwidth.component.mjs +3 -3
  5. package/esm2022/public-api.mjs +1 -3
  6. package/fesm2022/simpo-component-library.mjs +547 -563
  7. package/fesm2022/simpo-component-library.mjs.map +1 -1
  8. package/lib/components/hover-elements/hover-elements.component.d.ts +0 -3
  9. package/lib/components/input-fields/input-fields.component.d.ts +1 -1
  10. package/lib/ecommerce/sections/product-desc/product-desc.component.d.ts +1 -1
  11. package/lib/ecommerce/sections/schemes/schemes.component.d.ts +1 -1
  12. package/lib/elements/pricing-s1/pricing-s1.component.d.ts +1 -1
  13. package/lib/elements/text-editor/text-editor.component.d.ts +50 -36
  14. package/lib/sections/banner-carousel/banner-carousel.component.d.ts +2 -2
  15. package/lib/sections/carousel-banner/carousel-banner.component.d.ts +1 -1
  16. package/lib/sections/image-section/image-section.component.d.ts +2 -2
  17. package/lib/sections/logo-showcase/logo-showcase.component.d.ts +2 -2
  18. package/lib/sections/new-testimonials/new-testimonials.component.d.ts +1 -1
  19. package/lib/sections/pricing-section/pricing-section.component.d.ts +1 -1
  20. package/package.json +4 -10
  21. package/public-api.d.ts +0 -2
  22. package/simpo-component-library-3.6.859.tgz +0 -0
  23. package/src/lib/styles/global-styles.css +15 -0
  24. package/esm2022/lib/sections/testimonial-masonry/testimonial-masonry.component.mjs +0 -110
  25. package/esm2022/lib/sections/testimonial-masonry/testimonial-masonry.model.mjs +0 -2
  26. package/esm2022/lib/styles/gradient-extension.mjs +0 -62
  27. package/esm2022/lib/styles/text-size.extension.mjs +0 -43
  28. package/lib/sections/testimonial-masonry/testimonial-masonry.component.d.ts +0 -30
  29. package/lib/sections/testimonial-masonry/testimonial-masonry.model.d.ts +0 -24
  30. package/lib/styles/gradient-extension.d.ts +0 -2
  31. package/lib/styles/text-size.extension.d.ts +0 -10
  32. 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,2 +0,0 @@
1
- import { Extension } from '@tiptap/core';
2
- export declare const GradientExtension: Extension<any, any>;
@@ -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