xactsize-webcomponents 1.0.11 → 1.0.14

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.
@@ -1,14 +1,4 @@
1
1
  import { LitElement } from 'lit';
2
- interface SKU {
3
- dimensions: {
4
- Size: string;
5
- };
6
- measures: {
7
- height: number;
8
- length: number;
9
- width: number;
10
- };
11
- }
12
2
  export declare const getLocale: (() => string) & {
13
3
  _LIT_LOCALIZE_GET_LOCALE_?: never;
14
4
  }, setLocale: ((newLocale: string) => Promise<void>) & {
@@ -21,6 +11,9 @@ export declare class BodyMeasurer extends LitElement {
21
11
  firstUpdated(): void;
22
12
  private startSpinnerAnimation;
23
13
  apiKey: string;
14
+ tenantId: string;
15
+ productSku: string;
16
+ apiUrl: string;
24
17
  onMeasurementAccepted: (() => void) | undefined;
25
18
  onMeasurementCanceled: (() => void) | undefined;
26
19
  private _culture;
@@ -29,9 +22,8 @@ export declare class BodyMeasurer extends LitElement {
29
22
  _applyLocale(newLocale: string): Promise<void>;
30
23
  private get errorMap();
31
24
  private getTranslatedMessage;
25
+ private measurerKey;
32
26
  private _isLocaleLoading;
33
- skus: SKU[];
34
- productName: string;
35
27
  private showModal;
36
28
  private step;
37
29
  private height;
@@ -53,6 +45,7 @@ export declare class BodyMeasurer extends LitElement {
53
45
  private handleEscKey;
54
46
  private openModal;
55
47
  private closeModal;
48
+ private step2advancement;
56
49
  private startMeasurement;
57
50
  updated(changedProperties: Map<string, any>): void;
58
51
  private initializeMeasurement;
@@ -70,4 +63,3 @@ declare global {
70
63
  'body-measurer': BodyMeasurer;
71
64
  }
72
65
  }
73
- export {};