rio-assist-widget 0.1.14 → 0.1.23
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/README.md +9 -3
- package/dist/rio-assist.js +196 -38
- package/index.html +1 -2
- package/package.json +1 -1
- package/src/components/conversations-panel/conversations-panel.styles.ts +11 -5
- package/src/components/conversations-panel/conversations-panel.template.ts +15 -12
- package/src/components/mini-panel/mini-panel.styles.ts +46 -13
- package/src/components/mini-panel/mini-panel.template.ts +4 -1
- package/src/components/rio-assist/rio-assist.styles.ts +74 -0
- package/src/components/rio-assist/rio-assist.template.ts +48 -0
- package/src/components/rio-assist/rio-assist.ts +714 -371
- package/src/main.ts +15 -9
- package/src/playground.ts +9 -3
- package/src/services/rioWebsocket.ts +23 -0
package/README.md
CHANGED
|
@@ -23,9 +23,15 @@ Widget lateral do Rio Insight embalado como Web Component. Ao receber o token de
|
|
|
23
23
|
title: 'Rio Insight',
|
|
24
24
|
buttonLabel: 'Rio Insight',
|
|
25
25
|
suggestions: [
|
|
26
|
-
'
|
|
27
|
-
'
|
|
28
|
-
'
|
|
26
|
+
'Resumo da Frota',
|
|
27
|
+
'Frota Disponível',
|
|
28
|
+
'Chamados Abertos',
|
|
29
|
+
'Parados + Causas',
|
|
30
|
+
'Aguardando Peças',
|
|
31
|
+
'Principais Gargalos',
|
|
32
|
+
'Tempo por Concessionária',
|
|
33
|
+
'Tempo de Ciclo',
|
|
34
|
+
'Preventiva x Corretiva',
|
|
29
35
|
],
|
|
30
36
|
});
|
|
31
37
|
</script>
|