lr-chatbot 0.17.0 → 0.17.2
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/{chatbot-Dy1GEuLk.js → chatbot-BgU-rIDR.js} +25 -17
- package/chatbot-BgU-rIDR.js.map +1 -0
- package/custom-elements.json +1 -1
- package/index.js +2612 -2599
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/chatbot-Dy1GEuLk.js.map +0 -1
|
@@ -1,37 +1,45 @@
|
|
|
1
|
-
const e = "<p>Bienvenue ! Je suis R’, votre conseiller virtuel La Redoute, je suis là pour vous aider ! Je débute, soyez indulgent ;) Sélectionnez une question récurrente/un sujet ou posez-moi votre question.</p> <div class='chatbot-button-container'> <lr-pill class='suggestion' size='small'>Question 1</lr-pill> <lr-pill class='suggestion' size='small'>Question 2</lr-pill> <lr-pill class='suggestion' size='small'>Question 3</lr-pill> <lr-pill class='suggestion' size='small'>Question 4</lr-pill></div>", s = "Entrez votre question", t = "Chatbot La Redoute", n = "Bonjour, afin de vous offrir la meilleure aide possible, nous utilisons l'intelligence artificielle. Ne partagez pas de données personnelles ou sensibles telles que vos données de paiement, pour en savoir plus, consultez <a href='/espace-mentions_legales.aspx' target='blank'>notre politique de confidentialité</a>.", o = "<p>Oups, notre Chatbot n’est pas disponible pour le moment. Nous vous conseillons de contacter un conseiller pour plus de renseignements. </p>",
|
|
1
|
+
const e = "<p>Bienvenue ! Je suis R’, votre conseiller virtuel La Redoute, je suis là pour vous aider ! Je débute, soyez indulgent ;) Sélectionnez une question récurrente/un sujet ou posez-moi votre question.</p> <div class='chatbot-button-container'> <lr-pill class='suggestion' size='small'>Question 1</lr-pill> <lr-pill class='suggestion' size='small'>Question 2</lr-pill> <lr-pill class='suggestion' size='small'>Question 3</lr-pill> <lr-pill class='suggestion' size='small'>Question 4</lr-pill></div>", s = "Entrez votre question ...", t = "Chatbot La Redoute", n = "Bonjour, afin de vous offrir la meilleure aide possible, nous utilisons l'intelligence artificielle. Ne partagez pas de données personnelles ou sensibles telles que vos données de paiement, pour en savoir plus, consultez <a href='/espace-mentions_legales.aspx' target='blank'>notre politique de confidentialité</a>.", o = "<p>Oups, notre Chatbot n’est pas disponible pour le moment. Nous vous conseillons de contacter un conseiller pour plus de renseignements. </p>", l = {
|
|
2
|
+
minimizeLabel: "Minimize chat",
|
|
3
|
+
closeLabel: "Close chat"
|
|
4
|
+
}, a = {
|
|
5
|
+
text: "Etes-vous sûr de vouloir quitter le chat ? En quittant ce Chat vous perdrez l’historique de votre conversation",
|
|
6
|
+
button: "Quitter"
|
|
7
|
+
}, i = "Reprendre la discussion", r = "<lr-chatbot-message-rating conversationId={{conversationId}} messageId={{messageId}} apiUrl={{apiUrl}}></lr-chatbot-message-rating>", c = "Qu'avez-vous pensé de notre échange ? <lr-chatbot-conversation-rating conversationId={{conversationId}} apiUrl={{apiUrl}}></lr-chatbot-conversation-rating>", u = {
|
|
2
8
|
suggestions: "<div class='chatbot-button-container'><lr-pill class='escalation' data-channel='contact-form' data-conversation-id={{conversationId}} size='small'><lr-icon-help slot='icon'></lr-icon-help> Formulaire de contact</lr-pill> <lr-pill class='escalation' data-channel='whatsapp' data-conversation-id={{conversationId}} size='small'><lr-icon-whatsapp slot='icon'></lr-icon-whatsapp> WhatsApp</lr-pill><lr-pill class='escalation' data-channel='faq' size='small'><lr-icon-help slot='icon'></lr-icon-help>FAQ</lr-pill></div>",
|
|
3
9
|
url: "",
|
|
4
10
|
url_whatsapp: "https://wa.me/33602181983?text={{message}}",
|
|
5
11
|
"url_contact-form": "/contact-email.aspx?txtMessage={{message}}",
|
|
6
12
|
url_faq: "https://aide.laredoute.fr/"
|
|
7
|
-
},
|
|
13
|
+
}, p = {
|
|
8
14
|
label: "Chat",
|
|
9
15
|
ariaLabel: "Ouvrir le chat"
|
|
10
|
-
},
|
|
16
|
+
}, d = {
|
|
11
17
|
introMessage: e,
|
|
12
18
|
inputPlaceholder: s,
|
|
13
19
|
title: t,
|
|
14
20
|
legalInformation: n,
|
|
15
21
|
errorMessage: o,
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
+
menu: l,
|
|
23
|
+
exit: a,
|
|
24
|
+
returnToConversation: i,
|
|
25
|
+
ratingMessage: r,
|
|
26
|
+
ratingConversation: c,
|
|
27
|
+
escalation: u,
|
|
28
|
+
minimized: p
|
|
22
29
|
};
|
|
23
30
|
export {
|
|
24
|
-
|
|
31
|
+
d as default,
|
|
25
32
|
o as errorMessage,
|
|
26
|
-
|
|
33
|
+
u as escalation,
|
|
34
|
+
a as exit,
|
|
27
35
|
s as inputPlaceholder,
|
|
28
36
|
e as introMessage,
|
|
29
37
|
n as legalInformation,
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
38
|
+
l as menu,
|
|
39
|
+
p as minimized,
|
|
40
|
+
c as ratingConversation,
|
|
41
|
+
r as ratingMessage,
|
|
42
|
+
i as returnToConversation,
|
|
35
43
|
t as title
|
|
36
44
|
};
|
|
37
|
-
//# sourceMappingURL=chatbot-
|
|
45
|
+
//# sourceMappingURL=chatbot-BgU-rIDR.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chatbot-BgU-rIDR.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/custom-elements.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"schemaVersion":"1.0.0","readme":"","modules":[{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/chatbot/Chatbot.ts","declarations":[{"kind":"class","description":"","name":"Chatbot","members":[{"kind":"field","name":"apiUrl","type":{"text":"string"},"default":"'/bff'","attribute":"apiUrl"},{"kind":"field","name":"opened","type":{"text":"boolean"},"default":"false","attribute":"opened","reflects":true},{"kind":"field","name":"minimized","type":{"text":"boolean"},"default":"false","attribute":"minimized","reflects":true},{"kind":"field","name":"sticky","type":{"text":"boolean"},"default":"false","attribute":"sticky"},{"kind":"field","name":"exitOverlay","type":{"text":"boolean"},"default":"false","attribute":"exitOverlay"},{"kind":"field","name":"deepChat","type":{"text":"DeepChat | undefined"},"privacy":"private"},{"kind":"field","name":"_closeClickCount","type":{"text":"number"},"privacy":"private","default":"0"},{"kind":"field","name":"_isConversationDone","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_broadcastController","privacy":"private","default":"new BroadcastController<ChatbotBroadcastMessage>( this, LR_CHATBOT_BROADCAST_CHANNEL_ID )"},{"kind":"field","name":"_conversationHistoryTask","privacy":"private"},{"kind":"method","name":"getVersion"},{"kind":"method","name":"registerBroadcastMessages","privacy":"private"},{"kind":"method","name":"handleDeepChatLoad","privacy":"private","parameters":[{"name":"deepChat","optional":true,"type":{"text":"Element"}}]},{"kind":"method","name":"getCurrentConversationId","privacy":"private"},{"kind":"method","name":"createConversationHistoryTask","privacy":"private"},{"kind":"method","name":"tryGetConversationHistory","privacy":"private"},{"kind":"method","name":"setInitialMessages","privacy":"private"},{"kind":"method","name":"setDeepChatHistory","privacy":"private","return":{"type":{"text":"Promise<void>"}}},{"kind":"method","name":"setDeepChatTranslations","privacy":"private"},{"kind":"method","name":"setDeepChatStyle","privacy":"private"},{"kind":"method","name":"setChatConnection","privacy":"private"},{"kind":"method","name":"disableDeepChatTextInput","privacy":"private"},{"kind":"method","name":"enableDeepChatTextInput","privacy":"private"},{"kind":"method","name":"handleClosure","privacy":"private"},{"kind":"method","name":"handleReturnConversation","privacy":"private"},{"kind":"method","name":"clearMessages","privacy":"private"},{"kind":"method","name":"endConversation","privacy":"private","parameters":[{"name":"conversationId","type":{"text":"string"}}]},{"kind":"method","name":"escalate","privacy":"private","parameters":[{"name":"ctaElement","type":{"text":"Pill"}}]},{"kind":"method","name":"minimize"},{"kind":"method","name":"open"},{"kind":"method","name":"close"},{"kind":"method","name":"renderExitOverlay"},{"kind":"method","name":"renderChatPopin"},{"kind":"method","name":"renderMinimizedChat"},{"kind":"method","name":"renderElement"}],"attributes":[{"name":"apiUrl","type":{"text":"string"},"default":"'/bff'","fieldName":"apiUrl"},{"name":"opened","type":{"text":"boolean"},"default":"false","fieldName":"opened"},{"name":"minimized","type":{"text":"boolean"},"default":"false","fieldName":"minimized"},{"name":"sticky","type":{"text":"boolean"},"default":"false","fieldName":"sticky"},{"name":"exitOverlay","type":{"text":"boolean"},"default":"false","fieldName":"exitOverlay"}],"superclass":{"name":"SuperElement","module":"//builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/super/SuperElement"},"tagName":"lr-chatbot","customElement":true}],"exports":[{"kind":"js","name":"Chatbot","declaration":{"name":"Chatbot","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/chatbot/Chatbot.ts"}},{"kind":"custom-element-definition","name":"lr-chatbot","declaration":{"name":"Chatbot","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/chatbot/Chatbot.ts"}}]},{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts","declarations":[{"kind":"class","description":"","name":"Dimmer","members":[{"kind":"field","name":"active","type":{"text":"boolean"},"default":"true","attribute":"active","reflects":true},{"kind":"field","name":"blurring","type":{"text":"boolean"},"default":"false","attribute":"blurring","reflects":true},{"kind":"method","name":"renderElement"}],"attributes":[{"name":"active","type":{"text":"boolean"},"default":"true","fieldName":"active"},{"name":"blurring","type":{"text":"boolean"},"default":"false","fieldName":"blurring"}],"superclass":{"name":"SuperElement","module":"//builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/super/SuperElement"},"tagName":"lr-dimmer","customElement":true}],"exports":[{"kind":"js","name":"Dimmer","declaration":{"name":"Dimmer","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts"}},{"kind":"custom-element-definition","name":"lr-dimmer","declaration":{"name":"Dimmer","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts"}}]},{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/icon-button/IconButton.ts","declarations":[{"kind":"class","description":"","name":"IconButton","members":[],"superclass":{"name":"Button","module":"//builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/button/Button"},"tagName":"lr-icon-button","customElement":true}],"exports":[{"kind":"js","name":"IconButton","declaration":{"name":"IconButton","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/icon-button/IconButton.ts"}},{"kind":"custom-element-definition","name":"lr-icon-button","declaration":{"name":"IconButton","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/icon-button/IconButton.ts"}}]},{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/loading-overlay/LoadingOverlay.ts","declarations":[{"kind":"class","description":"","name":"LoadingOverlay","members":[{"kind":"field","name":"active","type":{"text":"boolean"},"default":"true","attribute":"active","reflects":true,"inheritedFrom":{"name":"Dimmer","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts"}},{"kind":"method","name":"renderElement","inheritedFrom":{"name":"Dimmer","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts"}},{"kind":"field","name":"blurring","type":{"text":"boolean"},"default":"false","attribute":"blurring","reflects":true,"inheritedFrom":{"name":"Dimmer","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts"}}],"superclass":{"name":"Dimmer","module":"//builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer"},"tagName":"lr-loading-overlay","customElement":true,"attributes":[{"name":"active","type":{"text":"boolean"},"default":"true","fieldName":"active","inheritedFrom":{"name":"Dimmer","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts"}},{"name":"blurring","type":{"text":"boolean"},"default":"false","fieldName":"blurring","inheritedFrom":{"name":"Dimmer","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts"}}]}],"exports":[{"kind":"js","name":"LoadingOverlay","declaration":{"name":"LoadingOverlay","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/loading-overlay/LoadingOverlay.ts"}},{"kind":"custom-element-definition","name":"lr-loading-overlay","declaration":{"name":"LoadingOverlay","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/loading-overlay/LoadingOverlay.ts"}}]},{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/pill/Pill.ts","declarations":[{"kind":"class","description":"","name":"Pill","members":[{"kind":"field","name":"variant","type":{"text":"PillVariant"},"default":"'on-light'","attribute":"variant","reflects":true}],"attributes":[{"name":"variant","type":{"text":"PillVariant"},"default":"'on-light'","fieldName":"variant"}],"superclass":{"name":"ButtonBase","module":"//builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/button/Button"},"tagName":"lr-pill","customElement":true}],"exports":[{"kind":"js","name":"Pill","declaration":{"name":"Pill","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/pill/Pill.ts"}},{"kind":"custom-element-definition","name":"lr-pill","declaration":{"name":"Pill","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/pill/Pill.ts"}}]},{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/spinner/Spinner.ts","declarations":[{"kind":"class","description":"","name":"Spinner","members":[{"kind":"field","name":"size","type":{"text":"SpinnerSize"},"default":"'medium'","attribute":"size","reflects":true},{"kind":"field","name":"dataCerberus","type":{"text":"string"},"default":"'spinner'","attribute":"dataCerberus"},{"kind":"method","name":"renderElement"}],"attributes":[{"name":"size","type":{"text":"SpinnerSize"},"default":"'medium'","fieldName":"size"},{"name":"dataCerberus","type":{"text":"string"},"default":"'spinner'","fieldName":"dataCerberus"}],"superclass":{"name":"SuperElement","module":"//builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/super/SuperElement"},"tagName":"lr-spinner","customElement":true}],"exports":[{"kind":"js","name":"Spinner","declaration":{"name":"Spinner","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/spinner/Spinner.ts"}},{"kind":"custom-element-definition","name":"lr-spinner","declaration":{"name":"Spinner","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/spinner/Spinner.ts"}}]},{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/stars/Stars.ts","declarations":[{"kind":"class","description":"","name":"Stars","members":[{"kind":"field","name":"rating","type":{"text":"number"},"privacy":"private","default":"0"},{"kind":"method","name":"setRating","privacy":"private","parameters":[{"name":"rating","type":{"text":"number"}}]},{"kind":"method","name":"renderElement"}],"superclass":{"name":"SuperElement","module":"//builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/super/SuperElement"},"tagName":"lr-stars","customElement":true}],"exports":[{"kind":"js","name":"Stars","declaration":{"name":"Stars","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/stars/Stars.ts"}},{"kind":"custom-element-definition","name":"lr-stars","declaration":{"name":"Stars","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/stars/Stars.ts"}}]}]}
|
|
1
|
+
{"schemaVersion":"1.0.0","readme":"","modules":[{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/chatbot/Chatbot.ts","declarations":[{"kind":"class","description":"","name":"Chatbot","members":[{"kind":"field","name":"apiUrl","type":{"text":"string"},"default":"'/bff'","attribute":"apiUrl"},{"kind":"field","name":"opened","type":{"text":"boolean"},"default":"false","attribute":"opened","reflects":true},{"kind":"field","name":"minimized","type":{"text":"boolean"},"default":"false","attribute":"minimized","reflects":true},{"kind":"field","name":"sticky","type":{"text":"boolean"},"default":"false","attribute":"sticky"},{"kind":"field","name":"exitOverlay","type":{"text":"boolean"},"default":"false","attribute":"exitOverlay"},{"kind":"field","name":"deepChat","type":{"text":"DeepChat | undefined"},"privacy":"private"},{"kind":"field","name":"_closeClickCount","type":{"text":"number"},"privacy":"private","default":"0"},{"kind":"field","name":"_isConversationDone","type":{"text":"boolean"},"privacy":"private","default":"false"},{"kind":"field","name":"_broadcastController","privacy":"private","default":"new BroadcastController<ChatbotBroadcastMessage>( this, LR_CHATBOT_BROADCAST_CHANNEL_ID )"},{"kind":"field","name":"_conversationHistoryTask","privacy":"private"},{"kind":"method","name":"getVersion"},{"kind":"method","name":"registerBroadcastMessages","privacy":"private"},{"kind":"method","name":"handleDeepChatLoad","privacy":"private","parameters":[{"name":"deepChat","optional":true,"type":{"text":"Element"}}]},{"kind":"method","name":"getCurrentConversationId","privacy":"private"},{"kind":"method","name":"createConversationHistoryTask","privacy":"private"},{"kind":"method","name":"tryGetConversationHistory","privacy":"private"},{"kind":"method","name":"setInitialMessages","privacy":"private"},{"kind":"method","name":"setDeepChatHistory","privacy":"private","return":{"type":{"text":"Promise<void>"}}},{"kind":"method","name":"setDeepChatTranslations","privacy":"private"},{"kind":"method","name":"setDeepChatStyle","privacy":"private"},{"kind":"method","name":"setChatConnection","privacy":"private"},{"kind":"method","name":"endConversation","privacy":"private","parameters":[{"name":"conversationId","type":{"text":"string | null"}}]},{"kind":"method","name":"escalate","privacy":"private","parameters":[{"name":"ctaElement","type":{"text":"Pill"}}]},{"kind":"method","name":"disableDeepChatTextInput","privacy":"private"},{"kind":"method","name":"enableDeepChatTextInput","privacy":"private"},{"kind":"method","name":"handleClosure","privacy":"private"},{"kind":"method","name":"handleReturnConversation","privacy":"private"},{"kind":"method","name":"clearConversation","privacy":"private"},{"kind":"method","name":"minimize"},{"kind":"method","name":"open"},{"kind":"method","name":"close"},{"kind":"method","name":"renderExitOverlay"},{"kind":"method","name":"renderChatPopin"},{"kind":"method","name":"renderMinimizedChat"},{"kind":"method","name":"renderElement"}],"attributes":[{"name":"apiUrl","type":{"text":"string"},"default":"'/bff'","fieldName":"apiUrl"},{"name":"opened","type":{"text":"boolean"},"default":"false","fieldName":"opened"},{"name":"minimized","type":{"text":"boolean"},"default":"false","fieldName":"minimized"},{"name":"sticky","type":{"text":"boolean"},"default":"false","fieldName":"sticky"},{"name":"exitOverlay","type":{"text":"boolean"},"default":"false","fieldName":"exitOverlay"}],"superclass":{"name":"SuperElement","module":"//builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/super/SuperElement"},"tagName":"lr-chatbot","customElement":true}],"exports":[{"kind":"js","name":"Chatbot","declaration":{"name":"Chatbot","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/chatbot/Chatbot.ts"}},{"kind":"custom-element-definition","name":"lr-chatbot","declaration":{"name":"Chatbot","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/chatbot/Chatbot.ts"}}]},{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts","declarations":[{"kind":"class","description":"","name":"Dimmer","members":[{"kind":"field","name":"active","type":{"text":"boolean"},"default":"true","attribute":"active","reflects":true},{"kind":"field","name":"blurring","type":{"text":"boolean"},"default":"false","attribute":"blurring","reflects":true},{"kind":"method","name":"renderElement"}],"attributes":[{"name":"active","type":{"text":"boolean"},"default":"true","fieldName":"active"},{"name":"blurring","type":{"text":"boolean"},"default":"false","fieldName":"blurring"}],"superclass":{"name":"SuperElement","module":"//builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/super/SuperElement"},"tagName":"lr-dimmer","customElement":true}],"exports":[{"kind":"js","name":"Dimmer","declaration":{"name":"Dimmer","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts"}},{"kind":"custom-element-definition","name":"lr-dimmer","declaration":{"name":"Dimmer","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts"}}]},{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/icon-button/IconButton.ts","declarations":[{"kind":"class","description":"","name":"IconButton","members":[],"superclass":{"name":"Button","module":"//builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/button/Button"},"tagName":"lr-icon-button","customElement":true}],"exports":[{"kind":"js","name":"IconButton","declaration":{"name":"IconButton","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/icon-button/IconButton.ts"}},{"kind":"custom-element-definition","name":"lr-icon-button","declaration":{"name":"IconButton","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/icon-button/IconButton.ts"}}]},{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/loading-overlay/LoadingOverlay.ts","declarations":[{"kind":"class","description":"","name":"LoadingOverlay","members":[{"kind":"field","name":"active","type":{"text":"boolean"},"default":"true","attribute":"active","reflects":true,"inheritedFrom":{"name":"Dimmer","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts"}},{"kind":"method","name":"renderElement","inheritedFrom":{"name":"Dimmer","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts"}},{"kind":"field","name":"blurring","type":{"text":"boolean"},"default":"false","attribute":"blurring","reflects":true,"inheritedFrom":{"name":"Dimmer","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts"}}],"superclass":{"name":"Dimmer","module":"//builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer"},"tagName":"lr-loading-overlay","customElement":true,"attributes":[{"name":"active","type":{"text":"boolean"},"default":"true","fieldName":"active","inheritedFrom":{"name":"Dimmer","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts"}},{"name":"blurring","type":{"text":"boolean"},"default":"false","fieldName":"blurring","inheritedFrom":{"name":"Dimmer","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/dimmer/Dimmer.ts"}}]}],"exports":[{"kind":"js","name":"LoadingOverlay","declaration":{"name":"LoadingOverlay","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/loading-overlay/LoadingOverlay.ts"}},{"kind":"custom-element-definition","name":"lr-loading-overlay","declaration":{"name":"LoadingOverlay","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/loading-overlay/LoadingOverlay.ts"}}]},{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/pill/Pill.ts","declarations":[{"kind":"class","description":"","name":"Pill","members":[{"kind":"field","name":"variant","type":{"text":"PillVariant"},"default":"'on-light'","attribute":"variant","reflects":true}],"attributes":[{"name":"variant","type":{"text":"PillVariant"},"default":"'on-light'","fieldName":"variant"}],"superclass":{"name":"ButtonBase","module":"//builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/button/Button"},"tagName":"lr-pill","customElement":true}],"exports":[{"kind":"js","name":"Pill","declaration":{"name":"Pill","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/pill/Pill.ts"}},{"kind":"custom-element-definition","name":"lr-pill","declaration":{"name":"Pill","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/pill/Pill.ts"}}]},{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/spinner/Spinner.ts","declarations":[{"kind":"class","description":"","name":"Spinner","members":[{"kind":"field","name":"size","type":{"text":"SpinnerSize"},"default":"'medium'","attribute":"size","reflects":true},{"kind":"field","name":"dataCerberus","type":{"text":"string"},"default":"'spinner'","attribute":"dataCerberus"},{"kind":"method","name":"renderElement"}],"attributes":[{"name":"size","type":{"text":"SpinnerSize"},"default":"'medium'","fieldName":"size"},{"name":"dataCerberus","type":{"text":"string"},"default":"'spinner'","fieldName":"dataCerberus"}],"superclass":{"name":"SuperElement","module":"//builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/super/SuperElement"},"tagName":"lr-spinner","customElement":true}],"exports":[{"kind":"js","name":"Spinner","declaration":{"name":"Spinner","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/spinner/Spinner.ts"}},{"kind":"custom-element-definition","name":"lr-spinner","declaration":{"name":"Spinner","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/spinner/Spinner.ts"}}]},{"kind":"javascript-module","path":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/stars/Stars.ts","declarations":[{"kind":"class","description":"","name":"Stars","members":[{"kind":"field","name":"rating","type":{"text":"number"},"privacy":"private","default":"0"},{"kind":"method","name":"setRating","privacy":"private","parameters":[{"name":"rating","type":{"text":"number"}}]},{"kind":"method","name":"renderElement"}],"superclass":{"name":"SuperElement","module":"//builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/super/SuperElement"},"tagName":"lr-stars","customElement":true}],"exports":[{"kind":"js","name":"Stars","declaration":{"name":"Stars","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/stars/Stars.ts"}},{"kind":"custom-element-definition","name":"lr-stars","declaration":{"name":"Stars","module":"/builds/laredoute/digital/apps/uxeng/components/uxeng-gui-front/libs/shared/client/features/chatbot/src/components/stars/Stars.ts"}}]}]}
|