@cal.macconnachie/web-components 2.4.9 → 2.4.10
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.
- package/dist/index.d.ts +2 -1
- package/dist/index.js +972 -932
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { TemplateResult } from 'lit-html';
|
|
|
7
7
|
|
|
8
8
|
declare interface ApiClientConfig {
|
|
9
9
|
baseUrl: string;
|
|
10
|
+
useToasts?: boolean;
|
|
10
11
|
}
|
|
11
12
|
|
|
12
13
|
export declare class AuthForm extends BaseElement {
|
|
@@ -455,7 +456,7 @@ declare type CardPadding = 'auto' | 'none' | 'sm' | 'md' | 'lg';
|
|
|
455
456
|
|
|
456
457
|
declare type CardVariant = 'default' | 'elevated';
|
|
457
458
|
|
|
458
|
-
export declare const createApiClient: ({ baseUrl }: ApiClientConfig) => AxiosInstance;
|
|
459
|
+
export declare const createApiClient: ({ baseUrl, useToasts }: ApiClientConfig) => AxiosInstance;
|
|
459
460
|
|
|
460
461
|
declare type DatePickerSize = 'sm' | 'md' | 'lg';
|
|
461
462
|
|