@iota-uz/sdk 0.4.9 → 0.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/README.md +15 -34
- package/dist/applet/vite.cjs +17 -42
- package/dist/applet/vite.cjs.map +1 -1
- package/dist/applet/vite.d.cts +7 -23
- package/dist/applet/vite.d.ts +7 -23
- package/dist/applet/vite.mjs +17 -41
- package/dist/applet/vite.mjs.map +1 -1
- package/dist/bichat/index.cjs +410 -332
- package/dist/bichat/index.cjs.map +1 -1
- package/dist/bichat/index.d.cts +2 -2
- package/dist/bichat/index.d.ts +2 -2
- package/dist/bichat/index.mjs +410 -332
- package/dist/bichat/index.mjs.map +1 -1
- package/package.json +1 -1
- package/tailwind/compiled.css +1 -1
package/dist/bichat/index.d.cts
CHANGED
|
@@ -1282,7 +1282,7 @@ declare class ErrorBoundary extends Component<ErrorBoundaryProps, ErrorBoundaryS
|
|
|
1282
1282
|
/**
|
|
1283
1283
|
* TypingIndicator Component
|
|
1284
1284
|
* Displays rotating verbs with shimmer animation to show AI is thinking/processing.
|
|
1285
|
-
* Verbs are configurable via props.
|
|
1285
|
+
* Verbs are configurable via props. When not provided, defaults are pulled from translations.
|
|
1286
1286
|
*/
|
|
1287
1287
|
interface TypingIndicatorProps {
|
|
1288
1288
|
/** Custom thinking verbs to rotate through */
|
|
@@ -1292,7 +1292,7 @@ interface TypingIndicatorProps {
|
|
|
1292
1292
|
/** Additional CSS classes */
|
|
1293
1293
|
className?: string;
|
|
1294
1294
|
}
|
|
1295
|
-
declare function TypingIndicator({ verbs, rotationInterval, className, }: TypingIndicatorProps): react_jsx_runtime.JSX.Element;
|
|
1295
|
+
declare function TypingIndicator({ verbs: verbsProp, rotationInterval, className, }: TypingIndicatorProps): react_jsx_runtime.JSX.Element;
|
|
1296
1296
|
declare const MemoizedTypingIndicator: react.MemoExoticComponent<typeof TypingIndicator>;
|
|
1297
1297
|
|
|
1298
1298
|
interface SidebarProps {
|
package/dist/bichat/index.d.ts
CHANGED
|
@@ -1282,7 +1282,7 @@ declare class ErrorBoundary extends Component<ErrorBoundaryProps, ErrorBoundaryS
|
|
|
1282
1282
|
/**
|
|
1283
1283
|
* TypingIndicator Component
|
|
1284
1284
|
* Displays rotating verbs with shimmer animation to show AI is thinking/processing.
|
|
1285
|
-
* Verbs are configurable via props.
|
|
1285
|
+
* Verbs are configurable via props. When not provided, defaults are pulled from translations.
|
|
1286
1286
|
*/
|
|
1287
1287
|
interface TypingIndicatorProps {
|
|
1288
1288
|
/** Custom thinking verbs to rotate through */
|
|
@@ -1292,7 +1292,7 @@ interface TypingIndicatorProps {
|
|
|
1292
1292
|
/** Additional CSS classes */
|
|
1293
1293
|
className?: string;
|
|
1294
1294
|
}
|
|
1295
|
-
declare function TypingIndicator({ verbs, rotationInterval, className, }: TypingIndicatorProps): react_jsx_runtime.JSX.Element;
|
|
1295
|
+
declare function TypingIndicator({ verbs: verbsProp, rotationInterval, className, }: TypingIndicatorProps): react_jsx_runtime.JSX.Element;
|
|
1296
1296
|
declare const MemoizedTypingIndicator: react.MemoExoticComponent<typeof TypingIndicator>;
|
|
1297
1297
|
|
|
1298
1298
|
interface SidebarProps {
|