@cal.macconnachie/web-components 1.1.4 → 1.1.7

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 (3) hide show
  1. package/dist/index.d.ts +4 -4
  2. package/dist/index.js +1499 -1621
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -5,7 +5,7 @@ import { nothing } from 'lit';
5
5
  import { PropertyValues } from 'lit';
6
6
  import { TemplateResult } from 'lit-html';
7
7
 
8
- export declare const apiClient: ({ baseUrl, apiBaseUrl }: ApiClientConfig) => AxiosInstance;
8
+ export declare const apiClient: ({ baseUrl }: ApiClientConfig) => AxiosInstance;
9
9
 
10
10
  declare interface ApiClientConfig {
11
11
  baseUrl: string;
@@ -37,9 +37,9 @@ export declare class AuthForm extends BaseElement {
37
37
  private notice;
38
38
  private error;
39
39
  private errors;
40
+ private userEmail;
40
41
  private otpDigits;
41
42
  private signupOtpDigits;
42
- private cookies;
43
43
  private apiService?;
44
44
  private oauthService?;
45
45
  private emailInput?;
@@ -59,7 +59,7 @@ export declare class AuthForm extends BaseElement {
59
59
  private backToSignupForm;
60
60
  private validate;
61
61
  private handleSubmit;
62
- private setAuthTokens;
62
+ private handleAuthSuccess;
63
63
  private handleSignIn;
64
64
  private isOAuthConfigured;
65
65
  private getOAuthService;
@@ -448,7 +448,7 @@ declare type CardPadding = 'auto' | 'none' | 'sm' | 'md' | 'lg';
448
448
 
449
449
  declare type CardVariant = 'default' | 'elevated';
450
450
 
451
- export declare const createApiClient: ({ baseUrl, apiBaseUrl }: ApiClientConfig) => AxiosInstance;
451
+ export declare const createApiClient: ({ baseUrl }: ApiClientConfig) => AxiosInstance;
452
452
 
453
453
  declare type DatePickerSize = 'sm' | 'md' | 'lg';
454
454