simpo-component-library 3.6.55 → 3.6.57

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 (47) hide show
  1. package/esm2022/lib/components/payment-details/payment-details.component.mjs +40 -16
  2. package/esm2022/lib/components/trasport-availability/trasport-availability.component.mjs +36 -0
  3. package/esm2022/lib/directive/background-directive.mjs +58 -3
  4. package/esm2022/lib/directive/button-directive.directive.mjs +14 -2
  5. package/esm2022/lib/directive/button-editor.directive.mjs +19 -4
  6. package/esm2022/lib/ecommerce/sections/cart/cart.component.mjs +1 -3
  7. package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +6 -3
  8. package/esm2022/lib/elements/editor-service.service.mjs +13 -4
  9. package/esm2022/lib/elements/link-editor/link-editor.component.mjs +37 -9
  10. package/esm2022/lib/elements/media-selector/media-selector.component.mjs +3 -1
  11. package/esm2022/lib/elements/simpo-button/simpo-button.component.mjs +3 -3
  12. package/esm2022/lib/sections/banner-section/banner-section.component.mjs +3 -3
  13. package/esm2022/lib/sections/footer/footer.component.mjs +4 -4
  14. package/esm2022/lib/sections/header-section/header-section.component.mjs +10 -3
  15. package/esm2022/lib/sections/process-section/process-section.component.mjs +6 -3
  16. package/esm2022/lib/sections/process-section/process-section.modal.mjs +1 -1
  17. package/esm2022/lib/sections/registration-form/registration-form.component.mjs +8 -1
  18. package/esm2022/lib/services/image-upload-service.service.mjs +7 -4
  19. package/esm2022/lib/services/rest.service.mjs +2 -2
  20. package/esm2022/lib/styles/style.model.mjs +1 -1
  21. package/esm2022/lib/styles/types.mjs +1 -1
  22. package/fesm2022/simpo-component-library.mjs +335 -142
  23. package/fesm2022/simpo-component-library.mjs.map +1 -1
  24. package/lib/components/input-fields/input-fields.component.d.ts +1 -1
  25. package/lib/components/payment-details/payment-details.component.d.ts +1 -0
  26. package/lib/components/trasport-availability/trasport-availability.component.d.ts +14 -0
  27. package/lib/directive/background-directive.d.ts +1 -1
  28. package/lib/directive/button-directive.directive.d.ts +1 -1
  29. package/lib/directive/button-editor.directive.d.ts +6 -2
  30. package/lib/directive/color.directive.d.ts +1 -1
  31. package/lib/ecommerce/sections/authentication-required/authentication-required.component.d.ts +1 -1
  32. package/lib/ecommerce/sections/product-desc/product-desc.component.d.ts +1 -0
  33. package/lib/elements/editor-service.service.d.ts +4 -1
  34. package/lib/elements/link-editor/link-editor.component.d.ts +7 -1
  35. package/lib/sections/banner-carousel/banner-carousel.component.d.ts +2 -2
  36. package/lib/sections/carousel-banner/carousel-banner.component.d.ts +1 -1
  37. package/lib/sections/header-section/header-section.component.d.ts +2 -0
  38. package/lib/sections/image-section/image-section.component.d.ts +2 -2
  39. package/lib/sections/logo-showcase/logo-showcase.component.d.ts +1 -1
  40. package/lib/sections/pricing-section/pricing-section.component.d.ts +1 -1
  41. package/lib/sections/process-section/process-section.component.d.ts +1 -0
  42. package/lib/sections/process-section/process-section.modal.d.ts +2 -0
  43. package/lib/styles/style.model.d.ts +3 -1
  44. package/lib/styles/types.d.ts +4 -2
  45. package/package.json +1 -1
  46. package/simpo-component-library-3.6.57.tgz +0 -0
  47. package/simpo-component-library-3.6.55.tgz +0 -0
@@ -13,7 +13,7 @@ export declare class InputFieldsComponent implements OnChanges {
13
13
  constructor(elementRef: ElementRef);
14
14
  ngOnChanges(changes: SimpleChanges): void;
15
15
  handleMoneyInput(event: any): void;
16
- get getTextColor(): "#FFF" | "#000";
16
+ get getTextColor(): "#000" | "#FFF";
17
17
  interpolateColor(color1: string, color2: string, factor: number): string;
18
18
  padZero(str: string, length: number): string;
19
19
  generateColorBasedOnNumber(number: number): string;
@@ -42,6 +42,7 @@ export declare class PaymentDetailsComponent {
42
42
  addingTransportFee(): void;
43
43
  removeTrasportFee(): void;
44
44
  onCheckboxChange(item: any, event: any): void;
45
+ addingTransportRequest(): void;
45
46
  getPickupTime(item: any): Date | null;
46
47
  getDroptime(item: any): Date | null;
47
48
  changeTransportTermValue(item: any): void;
@@ -0,0 +1,14 @@
1
+ import { MatDialogRef } from '@angular/material/dialog';
2
+ import { MatSnackBar } from '@angular/material/snack-bar';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TrasportAvailabilityComponent {
5
+ dialogRef: MatDialogRef<TrasportAvailabilityComponent>;
6
+ data: any;
7
+ private snackBar;
8
+ constructor(dialogRef: MatDialogRef<TrasportAvailabilityComponent>, data: any, snackBar: MatSnackBar);
9
+ ngOnInit(): void;
10
+ close(): void;
11
+ sendRequest(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<TrasportAvailabilityComponent, [null, { optional: true; }, null]>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<TrasportAvailabilityComponent, "simpo-trasport-availability", never, {}, {}, never, never, true, never>;
14
+ }
@@ -11,7 +11,7 @@ export declare class BackgroundDirective implements OnChanges {
11
11
  constructor(el: ElementRef, eventService: EventsService);
12
12
  ngOnDestroy(): void;
13
13
  ngOnChanges(change: SimpleChanges): void;
14
- getTextColor(bgColor: string): "#ffffff" | "#000000" | "#ffffff;";
14
+ getTextColor(bgColor: string): "#000000" | "#ffffff" | "#ffffff;";
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<BackgroundDirective, never>;
16
16
  static ɵdir: i0.ɵɵDirectiveDeclaration<BackgroundDirective, "[simpoBackground]", never, { "simpoBackground": { "alias": "simpoBackground"; "required": false; }; "scrollValue": { "alias": "scrollValue"; "required": false; }; }, {}, never, never, true, never>;
17
17
  }
@@ -16,7 +16,7 @@ export declare class ButtonDirectiveDirective implements OnChanges {
16
16
  applyButtonStyleChanges(): void;
17
17
  applyButtonType(style: ButtonStyleModel, backgroundInfo?: BackgroundModel): void;
18
18
  applyButtonShape(style: ButtonStyleModel): void;
19
- getTextColor(bgColor: string): "#ffffff" | "#000000" | "#ffffff;";
19
+ getTextColor(bgColor: string): "#000000" | "#ffffff" | "#ffffff;";
20
20
  buttonStyleSubscription?: Subscription;
21
21
  buttonStyleChangeCheck(): void;
22
22
  changeButtonStyle(id: any, style: ButtonStyleModel, backgroundInfo: BackgroundModel): void;
@@ -1,5 +1,5 @@
1
1
  import { ElementRef } from '@angular/core';
2
- import { Button } from '../styles/style.model';
2
+ import { BackgroundModel, Button, ButtonStyleModel } from '../styles/style.model';
3
3
  import { MatDialog } from '@angular/material/dialog';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class ButtonEditorDirective {
@@ -7,6 +7,10 @@ export declare class ButtonEditorDirective {
7
7
  private matDialog;
8
8
  appButtonEditor: boolean;
9
9
  buttonData?: Button;
10
+ buttonStyle?: ButtonStyleModel;
11
+ backgroundInfo?: BackgroundModel;
12
+ sectionId?: string;
13
+ buttonId: string;
10
14
  private mouseEnterSub?;
11
15
  private mouseLeaveSub?;
12
16
  private clickSub?;
@@ -18,5 +22,5 @@ export declare class ButtonEditorDirective {
18
22
  private cleanup;
19
23
  ngOnDestroy(): void;
20
24
  static ɵfac: i0.ɵɵFactoryDeclaration<ButtonEditorDirective, never>;
21
- static ɵdir: i0.ɵɵDirectiveDeclaration<ButtonEditorDirective, "button[appButtonEditor]", never, { "appButtonEditor": { "alias": "appButtonEditor"; "required": false; }; "buttonData": { "alias": "buttonData"; "required": false; }; }, {}, never, never, true, never>;
25
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ButtonEditorDirective, "button[appButtonEditor]", never, { "appButtonEditor": { "alias": "appButtonEditor"; "required": false; }; "buttonData": { "alias": "buttonData"; "required": false; }; "buttonStyle": { "alias": "buttonStyle"; "required": false; }; "backgroundInfo": { "alias": "backgroundInfo"; "required": false; }; "sectionId": { "alias": "sectionId"; "required": false; }; "buttonId": { "alias": "buttonId"; "required": false; }; }, {}, never, never, true, never>;
22
26
  }
@@ -12,7 +12,7 @@ export declare class ColorDirective implements OnChanges {
12
12
  ngOnDestroy(): void;
13
13
  applyColor(): void;
14
14
  bgColorChangeCheck(): void;
15
- getTextColor(): "#ffffff" | "#000000" | "#ffffff;";
15
+ getTextColor(): "#000000" | "#ffffff" | "#ffffff;";
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<ColorDirective, never>;
17
17
  static ɵdir: i0.ɵɵDirectiveDeclaration<ColorDirective, "[simpoColor]", never, { "bgColor": { "alias": "simpoColor"; "required": false; }; }, {}, never, never, true, never>;
18
18
  }
@@ -58,7 +58,7 @@ export declare class AuthenticationRequiredComponent extends BaseSection {
58
58
  validateNumber(event: KeyboardEvent): void;
59
59
  validateOTP(event: KeyboardEvent): void;
60
60
  checkStrength(): void;
61
- getStrengthColor(index: number): "yellow" | "tomato" | "#d3d3d3ba" | "orange" | "lightgreen";
61
+ getStrengthColor(index: number): "tomato" | "#d3d3d3ba" | "orange" | "yellow" | "lightgreen";
62
62
  get isEmailValid(): boolean;
63
63
  get isPasswordValid(): boolean;
64
64
  get isMobile(): boolean;
@@ -92,6 +92,7 @@ export declare class ProductDescComponent extends BaseSection {
92
92
  toggleDescription(): void;
93
93
  isPriceBreakup: boolean;
94
94
  togglePriceBreakDown(): void;
95
+ getDifference(sellingPrice: any, mrp: any): number;
95
96
  static ɵfac: i0.ɵɵFactoryDeclaration<ProductDescComponent, never>;
96
97
  static ɵcmp: i0.ɵɵComponentDeclaration<ProductDescComponent, "simpo-product-desc", never, { "data": { "alias": "data"; "required": false; }; "responseData": { "alias": "responseData"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
97
98
  }
@@ -1,10 +1,13 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
+ import { MatDialog } from '@angular/material/dialog';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class ElementServiceService {
4
5
  private http;
5
6
  private BASE_URL;
6
7
  private CMIS_URL;
7
- constructor(http: HttpClient, BASE_URL: string, CMIS_URL: string);
8
+ dialog: MatDialog;
9
+ constructor(http: HttpClient, BASE_URL: string, CMIS_URL: string, dialog: MatDialog);
10
+ openSocialBrand(componentName: any, height: any, width: any, data: any): import("@angular/material/dialog").MatDialogRef<unknown, any>;
8
11
  getComponentApi(businessType?: 'STATIC' | 'E_COMMERCE'): import("rxjs").Observable<Object>;
9
12
  regenerateText(request: any): import("rxjs").Observable<Object>;
10
13
  getImageLibrary(): import("rxjs").Observable<Object>;
@@ -2,24 +2,30 @@ import { Button } from '../../styles/style.model';
2
2
  import { RedirectionLinkType } from '../../styles/index';
3
3
  import { MatDialogRef } from '@angular/material/dialog';
4
4
  import { ElementServiceService } from '../editor-service.service';
5
+ import { EventsService } from '../../services/events.service';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class LinkEditorComponent {
7
8
  private editorService;
8
9
  dialogRef: MatDialogRef<LinkEditorComponent>;
9
10
  data: any;
11
+ private eventService;
10
12
  link: Button;
11
13
  RedirectionLink: typeof RedirectionLinkType;
12
14
  externalLinkType: Array<type>;
13
15
  selectedType: RedirectionLinkType;
14
16
  linkType: any[];
17
+ buttonTypes: any[];
18
+ buttonShapes: any[];
15
19
  templatePage: any[];
16
20
  addLink: boolean;
17
- constructor(editorService: ElementServiceService, dialogRef: MatDialogRef<LinkEditorComponent>, data: any);
21
+ constructor(editorService: ElementServiceService, dialogRef: MatDialogRef<LinkEditorComponent>, data: any, eventService: EventsService);
18
22
  ngOnInit(): void;
19
23
  closeDialog(): void;
20
24
  getTemplatePage(): void;
21
25
  changeType(type: RedirectionLinkType): void;
22
26
  addNewLink(): void;
27
+ buttonStyles: any;
28
+ changeButtonStyle(): void;
23
29
  static ɵfac: i0.ɵɵFactoryDeclaration<LinkEditorComponent, never>;
24
30
  static ɵcmp: i0.ɵɵComponentDeclaration<LinkEditorComponent, "simpo-link-editor", never, {}, {}, never, never, true, never>;
25
31
  }
@@ -25,8 +25,8 @@ export declare class BannerCarouselComponent extends BaseSection implements OnIn
25
25
  get stylesLayout(): LayOutModel;
26
26
  get getBlurValue(): "NONE" | "LIGHT" | "MODERATE" | "STRONG" | "VERY_STRONG" | undefined;
27
27
  get getBackgroundColor(): BackgroundModel;
28
- get getBackgroundOpacity(): "0" | "0.7" | "0.5" | "0.3" | "0.2";
29
- opacityValue(value: OverlayValue): "0" | "0.7" | "0.5" | "0.3" | "0.2";
28
+ get getBackgroundOpacity(): "0.2" | "0.3" | "0.5" | "0.7" | "0";
29
+ opacityValue(value: OverlayValue): "0.2" | "0.3" | "0.5" | "0.7" | "0";
30
30
  editSection(): void;
31
31
  static ɵfac: i0.ɵɵFactoryDeclaration<BannerCarouselComponent, never>;
32
32
  static ɵcmp: i0.ɵɵComponentDeclaration<BannerCarouselComponent, "simpo-banner-carousel", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
@@ -25,7 +25,7 @@ export declare class CarouselBannerComponent extends BaseSection implements OnIn
25
25
  get canMergeNavbar(): boolean | undefined;
26
26
  get isBorderlessImage(): boolean | undefined;
27
27
  get getPositionLayout(): PositionLayoutModal;
28
- opacityValue(value: OverlayValue): "0" | "0.7" | "0.5" | "0.3" | "0.2";
28
+ opacityValue(value: OverlayValue): "0.2" | "0.3" | "0.5" | "0.7" | "0";
29
29
  editSection(): void;
30
30
  static ɵfac: i0.ɵɵFactoryDeclaration<CarouselBannerComponent, never>;
31
31
  static ɵcmp: i0.ɵɵComponentDeclaration<CarouselBannerComponent, "simpo-carousel-banner", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
@@ -70,6 +70,8 @@ export declare class HeaderSectionComponent implements OnInit {
70
70
  getValues(object: any): unknown[];
71
71
  get userGender(): import("../../ecommerce/styles/user.modal").GENDER | null;
72
72
  get getNavbarButton(): any[];
73
+ isScrolled: boolean;
74
+ onWindowScroll(): void;
73
75
  static ɵfac: i0.ɵɵFactoryDeclaration<HeaderSectionComponent, never>;
74
76
  static ɵcmp: i0.ɵɵComponentDeclaration<HeaderSectionComponent, "simpo-header-section", never, { "data": { "alias": "data"; "required": false; }; "nextComponent": { "alias": "nextComponent"; "required": false; }; "index": { "alias": "index"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; }, {}, never, never, true, never>;
75
77
  }
@@ -20,8 +20,8 @@ export declare class ImageSectionComponent extends BaseSection {
20
20
  constructor(_eventService: EventsService);
21
21
  ngOnInit(): void;
22
22
  get canMergeNavbar(): boolean | undefined;
23
- get getBackgroundOpacity(): "1" | "0.7" | "0.5" | "0.3" | "0.2";
24
- opacityValue(value: OverlayValue): "1" | "0.7" | "0.5" | "0.3" | "0.2";
23
+ get getBackgroundOpacity(): "0.2" | "0.3" | "0.5" | "0.7" | "1";
24
+ opacityValue(value: OverlayValue): "0.2" | "0.3" | "0.5" | "0.7" | "1";
25
25
  editSection(): void;
26
26
  redirectTo(): void;
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageSectionComponent, never>;
@@ -24,7 +24,7 @@ export declare class LogoShowcaseComponent extends BaseSection implements OnInit
24
24
  ngOnInit(): void;
25
25
  get stylesLayout(): LayOutModel;
26
26
  get animationDuration(): logoSpeed;
27
- get animationDirection(): logoDirection.Left | "reverse" | "normal";
27
+ get animationDirection(): "reverse" | "normal" | logoDirection.Left;
28
28
  screenWidth: number;
29
29
  getScreenSize(event?: number): void;
30
30
  editSection(): void;
@@ -18,7 +18,7 @@ export declare class PricingSectionComponent extends BaseSection {
18
18
  constructor(_eventService: EventsService);
19
19
  ngOnInit(): void;
20
20
  get stylesLayout(): LayOutModel;
21
- getTextColor(): "#ffffff" | "#000000";
21
+ getTextColor(): "#000000" | "#ffffff";
22
22
  get headingSpace(): SPACING;
23
23
  editSection(): void;
24
24
  redirectTo(): void;
@@ -21,6 +21,7 @@ export declare class ProcessSectionComponent extends BaseSection {
21
21
  get stylesLayout(): LayOutModel;
22
22
  get getJustifyContent(): string;
23
23
  editSection(): void;
24
+ getLength(): number;
24
25
  static ɵfac: i0.ɵɵFactoryDeclaration<ProcessSectionComponent, never>;
25
26
  static ɵcmp: i0.ɵɵComponentDeclaration<ProcessSectionComponent, "simpo-process-section", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
26
27
  }
@@ -1,4 +1,5 @@
1
1
  import { BannerStylesModel, CardStyles, Image, InputTextModel, ListItemModal } from './../../styles/style.model';
2
+ import { PROCESS_SECTION_DISPLAY_STYLE } from './../../styles/types';
2
3
  export interface ProcessSectionModel {
3
4
  id: string;
4
5
  sectionType: string;
@@ -15,6 +16,7 @@ export interface ProcessSectionContentModel {
15
16
  listItem: ListItemModal<ProcessSectionItemModal>;
16
17
  }
17
18
  export interface ProcessSectionStylesModel extends BannerStylesModel, CardStyles {
19
+ processSectionDisplayStyle: PROCESS_SECTION_DISPLAY_STYLE;
18
20
  }
19
21
  export interface ProcessSectionItemModal {
20
22
  image: Image;
@@ -1,5 +1,5 @@
1
1
  import { AlignContent, Corners, DeviderType, ImageFit, ImageRatio, OverlayValue, RedirectionLinkType, SPACING, TEXT_SIZE, TextPosition } from '.';
2
- import { ALIGN, ANIMATION_DIRECTION, ANIMATION_SPEED, BUTTON_SHAPE, BUTTON_TYPE, CARD_SIZE, FIT, LAYOUTPOSITION, LINK_TYPE, SPACING_TYPE, CONTENTPOSITION, BORDER_DIRECTION, BACKGROUND_TYPE, FILE_TYPE, GRADIENT_DIRECTION, CONTENT_ANIMATION } from './types';
2
+ import { ALIGN, ANIMATION_DIRECTION, ANIMATION_SPEED, BUTTON_SHAPE, BUTTON_TYPE, CARD_SIZE, FIT, LAYOUTPOSITION, LINK_TYPE, SPACING_TYPE, CONTENTPOSITION, BORDER_DIRECTION, BACKGROUND_TYPE, FILE_TYPE, GRADIENT_DIRECTION, CONTENT_ANIMATION, BACKGROUND_ANIMATION } from './types';
3
3
  export interface SpacingModel {
4
4
  top: SPACING_TYPE;
5
5
  bottom: SPACING_TYPE;
@@ -64,6 +64,7 @@ export interface BackgroundModel {
64
64
  accentBackgroundType: BACKGROUND_TYPE;
65
65
  secondaryColor: string;
66
66
  backgroundGradientDirection: GRADIENT_DIRECTION;
67
+ backgroundAnimation?: BACKGROUND_ANIMATION;
67
68
  }
68
69
  export interface AnimationModel {
69
70
  type: ANIMATION_DIRECTION;
@@ -90,6 +91,7 @@ export interface DisplaySection {
90
91
  showIcon: boolean;
91
92
  linkType: LINK_TYPE;
92
93
  showHeadline: boolean;
94
+ showShrinkingHeader: boolean;
93
95
  }
94
96
  export interface Button {
95
97
  linkType: RedirectionLinkType;
@@ -9,8 +9,8 @@ export type ANIMATION_DIRECTION = 'left' | 'top' | 'bottom' | 'right' | 'fadeIn'
9
9
  export type BORDER_DIRECTION = "ALL" | "LEFT" | "RIGHT" | "TOP" | "BOTTOM";
10
10
  export type ANIMATION_SPEED = 'slow' | 'medium' | 'fast';
11
11
  export type LINK_TYPE = 'Button' | 'List Item';
12
- export type BUTTON_TYPE = 'Solid' | 'Outline';
13
- export type BUTTON_SHAPE = 'Round' | 'Square';
12
+ export type BUTTON_TYPE = 'Solid' | 'Outline' | 'Text';
13
+ export type BUTTON_SHAPE = 'Round' | 'Square' | 'Curve';
14
14
  export type FOOTER_IMAGE_SOURCE = 'BRANDING' | 'UPLOAD';
15
15
  export type SOCIAL_ICON_SIZE = 'large' | 'medium' | 'small';
16
16
  export type SOCIAL_ICON_SHAPE = 'circle' | 'square' | 'rounded';
@@ -22,3 +22,5 @@ export type BANNER_TRANSITION = 'Horizontal' | 'Animated';
22
22
  export type FILE_TYPE = 'Image' | 'Video';
23
23
  export type BACKGROUND_TYPE = 'Solid' | 'Gradient';
24
24
  export type GRADIENT_DIRECTION = 'DOWN' | 'RIGHT' | 'DIAGONAL_RIGHT' | 'DIAGONAL_LEFT';
25
+ export type BACKGROUND_ANIMATION = 'NONE' | 'DANCING_DOTS' | 'SCATTERING_DOTS' | '';
26
+ export type PROCESS_SECTION_DISPLAY_STYLE = 'STYLE1' | 'STYLE2';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpo-component-library",
3
- "version": "3.6.55",
3
+ "version": "3.6.57",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.2.0",
6
6
  "@angular/core": "^17.2.0",
Binary file