@telia-ace/ace-chat-flamingo 1.1.123-rc.46 → 1.1.123-rc.47

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/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@telia-ace/ace-chat-flamingo",
3
- "version": "1.1.123-rc.46",
3
+ "version": "1.1.123-rc.47",
4
4
  "dependencies": {
5
- "@telia-ace/widget-core-flamingo": "1.1.123-rc.46",
6
- "@telia-ace/widget-conversation-flamingo": "1.1.123-rc.46",
5
+ "@telia-ace/widget-core-flamingo": "1.1.123-rc.47",
6
+ "@telia-ace/widget-conversation-flamingo": "1.1.123-rc.47",
7
7
  "rxjs": "^7.8.2",
8
8
  "lit": "^3.0.2",
9
9
  "@teliads/icons": "^8.4.0",
@@ -1,10 +1,10 @@
1
- import { LitElement } from 'lit';
1
+ import { LitElement, CSSResultGroup, TemplateResult } from 'lit';
2
2
  export declare class AuthSessionEndConfirmDialog extends LitElement {
3
- static styles: import('lit').CSSResult[];
3
+ static styles: CSSResultGroup;
4
4
  private application;
5
5
  firstUpdated(): void;
6
6
  private onEnd;
7
7
  private onCancel;
8
8
  private dispatchResult;
9
- render(): import('lit-html').TemplateResult<1>;
9
+ render(): TemplateResult;
10
10
  }
@@ -1,7 +1,7 @@
1
- import { LitElement } from 'lit';
1
+ import { LitElement, CSSResultGroup, TemplateResult } from 'lit';
2
2
  export declare class ChatUnavailableCard extends LitElement {
3
- static readonly styles: import('lit').CSSResult[];
3
+ static readonly styles: CSSResultGroup;
4
4
  private readonly application;
5
5
  onClose(): void;
6
- render(): import('lit-html').TemplateResult<1>;
6
+ render(): TemplateResult;
7
7
  }
@@ -1,11 +1,11 @@
1
- import { LitElement } from 'lit';
1
+ import { LitElement, CSSResultGroup, TemplateResult } from 'lit';
2
2
  export declare class ContactDataField extends LitElement {
3
- static readonly styles: import('lit').CSSResult[];
3
+ static readonly styles: CSSResultGroup;
4
4
  private readonly entry;
5
5
  private readonly application;
6
6
  connectedCallback(): void;
7
7
  _valueChanged(value: any): void;
8
8
  autocompleteName(name: string): "off" | "email" | "given-name";
9
9
  private renderRequiredIndicator;
10
- render(): import('lit-html').TemplateResult<1>;
10
+ render(): TemplateResult;
11
11
  }
@@ -1,6 +1,6 @@
1
- import { LitElement } from 'lit';
1
+ import { LitElement, CSSResultGroup, TemplateResult } from 'lit';
2
2
  export declare class ConversationEndedForm extends LitElement {
3
- static readonly styles: import('lit').CSSResult[];
3
+ static readonly styles: CSSResultGroup;
4
4
  email: string;
5
5
  isEmailValid: boolean;
6
6
  private readonly emailController;
@@ -8,5 +8,5 @@ export declare class ConversationEndedForm extends LitElement {
8
8
  private _emailInputHandler;
9
9
  connectedCallback(): void;
10
10
  private readonly application;
11
- render(): import('lit-html').TemplateResult<1>;
11
+ render(): TemplateResult;
12
12
  }
@@ -1,6 +1,6 @@
1
- import { LitElement } from 'lit';
1
+ import { LitElement, CSSResultGroup, TemplateResult } from 'lit';
2
2
  export declare class EntranceClosedDialog extends LitElement {
3
- static readonly styles: import('lit').CSSResult[];
3
+ static readonly styles: CSSResultGroup;
4
4
  private readonly application;
5
- render(): import('lit-html').TemplateResult<1>;
5
+ render(): TemplateResult;
6
6
  }
@@ -1,10 +1,10 @@
1
- import { LitElement } from 'lit';
1
+ import { LitElement, CSSResultGroup, TemplateResult } from 'lit';
2
2
  export declare class QuitConfirmDialog extends LitElement {
3
- static readonly styles: import('lit').CSSResult[];
3
+ static readonly styles: CSSResultGroup;
4
4
  private readonly application;
5
5
  firstUpdated(): void;
6
6
  private onQuit;
7
7
  private onCancel;
8
8
  private dispatchResult;
9
- render(): import('lit-html').TemplateResult<1>;
9
+ render(): TemplateResult;
10
10
  }
package/ui/survey.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- import { LitElement } from 'lit';
1
+ import { LitElement, CSSResultGroup, TemplateResult } from 'lit';
2
2
  export declare class Survey extends LitElement {
3
- static readonly styles: import('lit').CSSResult[];
3
+ static readonly styles: CSSResultGroup;
4
4
  private surveyUrl;
5
5
  private surveyLinkText;
6
6
  private surveyText;
@@ -11,5 +11,5 @@ export declare class Survey extends LitElement {
11
11
  });
12
12
  connectedCallback(): void;
13
13
  private readonly application;
14
- render(): import('lit-html').TemplateResult<1>;
14
+ render(): TemplateResult;
15
15
  }
@@ -1,7 +1,7 @@
1
- import { LitElement } from 'lit';
1
+ import { LitElement, CSSResultGroup, TemplateResult } from 'lit';
2
2
  import { AuthCardState } from '../types';
3
3
  export declare class TunnistusAuthCard extends LitElement {
4
- static readonly styles: import('lit').CSSResult[];
4
+ static readonly styles: CSSResultGroup;
5
5
  private readonly tunnistusURL;
6
6
  private readonly state;
7
7
  private readonly isAuthenticating;
@@ -12,5 +12,5 @@ export declare class TunnistusAuthCard extends LitElement {
12
12
  isAuthenticating?: boolean;
13
13
  });
14
14
  private onStartAuth;
15
- render(): import('lit-html').TemplateResult<1>;
15
+ render(): TemplateResult;
16
16
  }
@@ -1,9 +1,9 @@
1
- import { LitElement } from 'lit';
1
+ import { LitElement, CSSResultGroup, TemplateResult } from 'lit';
2
2
  export declare class VideoConfirmDialog extends LitElement {
3
- static readonly styles: import('lit').CSSResult[];
3
+ static readonly styles: CSSResultGroup;
4
4
  _onStartVideo(event: SubmitEvent): void;
5
5
  _onCancel(): void;
6
6
  dispatchResult(result: string, text: string): void;
7
7
  private readonly application;
8
- render(): import('lit-html').TemplateResult<1>;
8
+ render(): TemplateResult;
9
9
  }
@@ -1,6 +1,6 @@
1
- import { LitElement } from 'lit';
1
+ import { LitElement, CSSResultGroup, TemplateResult } from 'lit';
2
2
  export declare class VideoIFrame extends LitElement {
3
- static readonly styles: import('lit').CSSResult[];
3
+ static readonly styles: CSSResultGroup;
4
4
  private primaryColor;
5
5
  private secondaryColor;
6
6
  private tertiaryColor;
@@ -11,5 +11,5 @@ export declare class VideoIFrame extends LitElement {
11
11
  constructor(userBaseUrl: string, guestId: string);
12
12
  connectedCallback(): void;
13
13
  private getSpacingMd;
14
- render(): import('lit-html').TemplateResult<1>;
14
+ render(): TemplateResult;
15
15
  }
@@ -1,10 +1,10 @@
1
- import { LitElement, nothing } from 'lit';
1
+ import { LitElement, nothing, CSSResultGroup, TemplateResult } from 'lit';
2
2
  export declare class StartChatForm extends LitElement {
3
- static readonly styles: import('lit').CSSResult[];
3
+ static readonly styles: CSSResultGroup;
4
4
  submitted: boolean;
5
5
  name: string;
6
6
  _onStartChat(event: SubmitEvent): void;
7
7
  _nameInputHandler(e: any): void;
8
8
  private readonly application;
9
- render(): typeof nothing | import('lit-html').TemplateResult<1>;
9
+ render(): TemplateResult | typeof nothing;
10
10
  }
@@ -1,7 +1,7 @@
1
- import { LitElement, nothing } from 'lit';
1
+ import { LitElement, nothing, CSSResultGroup, TemplateResult } from 'lit';
2
2
  import { CustomDataEntry } from '../types';
3
3
  export declare class StartChatForm extends LitElement {
4
- static readonly styles: import('lit').CSSResult[];
4
+ static readonly styles: CSSResultGroup;
5
5
  submitted: boolean;
6
6
  customData: CustomDataEntry[];
7
7
  customerName: string;
@@ -14,5 +14,5 @@ export declare class StartChatForm extends LitElement {
14
14
  _onStartChat(event: SubmitEvent): void;
15
15
  _customDataValueChanged(value: any, entry: CustomDataEntry): void;
16
16
  validateCustomDataEntry(entry: CustomDataEntry): void;
17
- render(): typeof nothing | import('lit-html').TemplateResult<1>;
17
+ render(): TemplateResult | typeof nothing;
18
18
  }