@foris/ai-agent 0.10.2 → 0.11.0

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.
@@ -0,0 +1,20 @@
1
+ import React from 'react';
2
+ /**
3
+ * Props for the AiAgentIcon component.
4
+ */
5
+ interface AiAgentIconProps {
6
+ /** Whether the icon should display a spin animation (e.g. during loading). */
7
+ isAnimated?: boolean;
8
+ }
9
+ /**
10
+ * AiAgentIcon - Circular gradient ring icon representing the AI agent brand.
11
+ *
12
+ * Renders a donut-shaped SVG ring with a left-to-right gradient
13
+ * from coral (#FF7173) to teal (#0DC1D3). When `isAnimated` is true,
14
+ * a continuous rotation animation is applied to indicate loading.
15
+ *
16
+ * @param {AiAgentIconProps} props - Component props.
17
+ * @returns {JSX.Element} The rendered SVG icon.
18
+ */
19
+ declare const AiAgentIcon: React.FC<AiAgentIconProps>;
20
+ export default AiAgentIcon;
@@ -0,0 +1,2 @@
1
+ import AiAgentIcon from './AiAgentIcon';
2
+ export default AiAgentIcon;
@@ -1,7 +1,8 @@
1
1
  declare const _default: {
2
2
  "title": "Smart Summary",
3
3
  "loading": "Analyzing...",
4
- "noData": "No data available."
4
+ "noData": "No data available.",
5
+ "footer": "Foris AI may make mistakes, verify the responses."
5
6
  }
6
7
  ;
7
8
 
@@ -1,7 +1,8 @@
1
1
  declare const _default: {
2
2
  "title": "Resumen inteligente",
3
3
  "loading": "Analizando...",
4
- "noData": "No hay datos para mostrar."
4
+ "noData": "No hay datos para mostrar.",
5
+ "footer": "Foris AI puede cometer errores, verifica las respuestas."
5
6
  }
6
7
  ;
7
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foris/ai-agent",
3
- "version": "0.10.2",
3
+ "version": "0.11.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },