simpo-component-library 2.1.58 → 2.1.59

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,7 @@
1
- import { OnChanges, SimpleChanges } from '@angular/core';
1
+ import { ElementRef, OnChanges, SimpleChanges } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class InputFieldsComponent implements OnChanges {
4
+ private elementRef;
4
5
  feild: any;
5
6
  opacity: number | undefined;
6
7
  bgColor?: string;
@@ -9,7 +10,7 @@ export declare class InputFieldsComponent implements OnChanges {
9
10
  colorCode: string;
10
11
  selectedDropdown: string | null;
11
12
  enteredValue: string | null;
12
- constructor();
13
+ constructor(elementRef: ElementRef);
13
14
  ngOnChanges(changes: SimpleChanges): void;
14
15
  handleMoneyInput(event: any): void;
15
16
  get getTextColor(): "#FFF" | "#000";
@@ -17,6 +18,7 @@ export declare class InputFieldsComponent implements OnChanges {
17
18
  padZero(str: string, length: number): string;
18
19
  generateColorBasedOnNumber(number: number): string;
19
20
  selectDropdown(value: string): void;
21
+ handleOutsideClick(event: MouseEvent): void;
20
22
  static ɵfac: i0.ɵɵFactoryDeclaration<InputFieldsComponent, never>;
21
23
  static ɵcmp: i0.ɵɵComponentDeclaration<InputFieldsComponent, "simpo-input-fields", never, { "feild": { "alias": "feild"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "sectionId": { "alias": "sectionId"; "required": false; }; }, {}, never, never, true, never>;
22
24
  }
@@ -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.2" | "0.3" | "0.5" | "0.7" | "0";
29
- opacityValue(value: OverlayValue): "0.2" | "0.3" | "0.5" | "0.7" | "0";
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";
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.2" | "0.3" | "0.5" | "0.7" | "0";
28
+ opacityValue(value: OverlayValue): "0" | "0.7" | "0.5" | "0.3" | "0.2";
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>;
@@ -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(): "0.2" | "0.3" | "0.5" | "0.7" | "1";
24
- opacityValue(value: OverlayValue): "0.2" | "0.3" | "0.5" | "0.7" | "1";
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";
25
25
  editSection(): void;
26
26
  redirectTo(): void;
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageSectionComponent, never>;
@@ -23,7 +23,7 @@ export declare class LogoShowcaseComponent extends BaseSection implements OnInit
23
23
  constructor(_eventService: EventsService);
24
24
  ngOnInit(): void;
25
25
  get animationDuration(): logoSpeed;
26
- get animationDirection(): "reverse" | "normal" | logoDirection.Left;
26
+ get animationDirection(): logoDirection.Left | "reverse" | "normal";
27
27
  screenWidth: number;
28
28
  getScreenSize(event?: number): void;
29
29
  editSection(): void;
@@ -48,7 +48,7 @@ export declare class NavbarSectionComponent implements OnInit {
48
48
  getScreenSize(event?: number): void;
49
49
  get getParentHeight(): any;
50
50
  get getDropdownLinks(): string[];
51
- get isEcommerceWebsite(): "E_COMMERCE" | "REAL_ESTATE" | "STATIC";
51
+ get isEcommerceWebsite(): "STATIC" | "E_COMMERCE" | "REAL_ESTATE";
52
52
  close(): void;
53
53
  showEditors: boolean;
54
54
  showEditTabs(isShow: boolean): void;
@@ -62,7 +62,7 @@ export declare class NavbarSectionComponent implements OnInit {
62
62
  showSearchBar: boolean;
63
63
  get isComponentMerged(): any;
64
64
  editSection(): void;
65
- get canShowMobileFooter(): "E_COMMERCE" | "REAL_ESTATE" | "STATIC";
65
+ get canShowMobileFooter(): "STATIC" | "E_COMMERCE" | "REAL_ESTATE";
66
66
  get showMobileHomeIcon(): boolean;
67
67
  get getCartItemsCount(): number;
68
68
  get getHeaderStyling(): HEADER_STYLING | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpo-component-library",
3
- "version": "2.1.58",
3
+ "version": "2.1.59",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.2.0",
6
6
  "@angular/core": "^17.2.0",
Binary file