simpo-component-library 3.6.333 → 3.6.335

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.
@@ -64,7 +64,7 @@ export declare class AuthenticationRequiredComponent extends BaseSection {
64
64
  validateNumber(event: KeyboardEvent): void;
65
65
  validateOTP(event: KeyboardEvent): void;
66
66
  checkStrength(): void;
67
- getStrengthColor(index: number): "yellow" | "tomato" | "#d3d3d3ba" | "orange" | "lightgreen";
67
+ getStrengthColor(index: number): "tomato" | "#d3d3d3ba" | "orange" | "yellow" | "lightgreen";
68
68
  emailDebounceTimer: any;
69
69
  onEmailChange(): void;
70
70
  emailCheck: boolean;
@@ -112,7 +112,7 @@ export declare class ProductDescComponent extends BaseSection {
112
112
  getTextColor(color: any): "#000000" | "#ffffff";
113
113
  languages: string[];
114
114
  selectedLang: string;
115
- getClass(map: any): "col-4" | "col-6" | "col-3" | "width-max";
115
+ getClass(map: any): "col-6" | "col-4" | "col-3" | "width-max";
116
116
  onFindInStore(id: string): void;
117
117
  onBookAppointment(): void;
118
118
  isDetails: boolean;
@@ -21,7 +21,7 @@ export declare class SchemesComponent extends BaseSection {
21
21
  get stylesLayout(): LayOutModel;
22
22
  get spacingLayout(): SpacingModel;
23
23
  getParentClass(): "" | "overflow-scroll flex-nowrap";
24
- getClass(index: number): "col-12" | "col-6" | "col-6 mb-2" | "col-12 mb-2";
24
+ getClass(index: number): "col-6" | "col-12" | "col-6 mb-2" | "col-12 mb-2";
25
25
  showSchemeDetails(scheme: any): void;
26
26
  static ɵfac: i0.ɵɵFactoryDeclaration<SchemesComponent, never>;
27
27
  static ɵcmp: i0.ɵɵComponentDeclaration<SchemesComponent, "simpo-schemes", never, { "data": { "alias": "data"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "index": { "alias": "index"; "required": false; }; }, {}, never, never, true, never>;
@@ -12,7 +12,7 @@ export declare class ElementServiceService {
12
12
  regenerateText(request: any): import("rxjs").Observable<Object>;
13
13
  getImageLibrary(): import("rxjs").Observable<Object>;
14
14
  saveImagesToBusinessLibrary(mediaRequest: any): import("rxjs").Observable<Object>;
15
- private parseJson;
15
+ private safeParse;
16
16
  getTemplate(): import("rxjs").Observable<Object>;
17
17
  getAllVehicleTypes(data: any): import("rxjs").Observable<Object>;
18
18
  getAllCombos(data: any): import("rxjs").Observable<Object>;
@@ -30,7 +30,7 @@ export declare class LinkEditorComponent {
30
30
  changeButtonStyle(): void;
31
31
  getContrastTextColor(backgroundHex: any): void;
32
32
  backgroundType: string[];
33
- setBorderRadius(): "0px" | "99px" | "7px";
33
+ setBorderRadius(): "0px" | "7px" | "99px";
34
34
  setBorder(): string;
35
35
  setColor(): any;
36
36
  setBackground(): any;
@@ -15,7 +15,7 @@ export declare class PricingS1Component extends BaseSection {
15
15
  editSection(): void;
16
16
  getButtonId(): string;
17
17
  redirectTo(): void;
18
- getClass(): "col-4" | "col-12" | "col-5" | "col-3";
18
+ getClass(): "col-4" | "col-3" | "col-12" | "col-5";
19
19
  static ɵfac: i0.ɵɵFactoryDeclaration<PricingS1Component, never>;
20
20
  static ɵcmp: i0.ɵɵComponentDeclaration<PricingS1Component, "simpo-pricing-s1", never, { "data": { "alias": "data"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; }, {}, never, never, true, never>;
21
21
  }
@@ -23,7 +23,7 @@ export declare class PricingSectionComponent extends BaseSection {
23
23
  getButtonId(): string;
24
24
  editSection(): void;
25
25
  redirectTo(): void;
26
- getClass(): "col-4" | "col-12" | "col-6" | "col-3";
26
+ getClass(): "col-6" | "col-4" | "col-3" | "col-12";
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<PricingSectionComponent, never>;
28
28
  static ɵcmp: i0.ɵɵComponentDeclaration<PricingSectionComponent, "simpo-pricing-section", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "nextComponentColor": { "alias": "nextComponentColor"; "required": false; }; }, {}, never, never, true, never>;
29
29
  }
@@ -5,6 +5,7 @@ import { Review } from "../ecommerce/styles/review.modal";
5
5
  import { DeviceInfo } from "../ecommerce/styles/user.modal";
6
6
  import { checkItemAlreadyAdded, syncItemToServerDBRequest } from "../ecommerce/styles/product.modal";
7
7
  import { CookieService } from "ngx-cookie-service";
8
+ import { StorageLike } from '../services/storage-like';
8
9
  import * as i0 from "@angular/core";
9
10
  export declare class RestService implements OnDestroy {
10
11
  private readonly http;
@@ -12,11 +13,12 @@ export declare class RestService implements OnDestroy {
12
13
  private ECOMMERCE_URL;
13
14
  private CMIS_URL;
14
15
  private readonly cookieService;
16
+ private storage;
15
17
  private environmentTypeSubscriber;
16
18
  businessDetails: any;
17
19
  subIndustryName: any;
18
20
  isJewellery: boolean;
19
- constructor(http: HttpClient, BASE_URL: string, ECOMMERCE_URL: string, CMIS_URL: string, cookieService: CookieService);
21
+ constructor(http: HttpClient, BASE_URL: string, ECOMMERCE_URL: string, CMIS_URL: string, cookieService: CookieService, storage: StorageLike);
20
22
  orraBaseUrl: string;
21
23
  passBookUrl: string;
22
24
  getBusinessDetails(): void;
@@ -81,6 +83,7 @@ export declare class RestService implements OnDestroy {
81
83
  getLeadById(leadId: any): Observable<Object>;
82
84
  getRegistrationList(payload: any): Observable<Object>;
83
85
  getAllComponentCategories(): Observable<Object>;
86
+ private safeParse;
84
87
  getTemplate(): Observable<Object>;
85
88
  getEcommerceConfigs(): Observable<Object>;
86
89
  postVideoCallDetails(payload: any): Observable<Object>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpo-component-library",
3
- "version": "3.6.333",
3
+ "version": "3.6.335",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.2.0",
6
6
  "@angular/core": "^17.2.0",
Binary file