@opencxh/ui-kit 3.137.13 → 3.140.1
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/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +986 -877
- package/dist/index.js.map +1 -1
- package/dist/src/content/ArtifactView.d.ts +8 -0
- package/dist/src/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ArtifactBlock, ArtifactRuntime } from '@opencxh/domain';
|
|
2
|
+
export interface ArtifactViewProps {
|
|
3
|
+
blocks: ArtifactBlock[];
|
|
4
|
+
/** Alles behalve `"inert"` wordt geweigerd. Zie de klassenoot hierboven. */
|
|
5
|
+
runtime?: ArtifactRuntime;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare function ArtifactView({ blocks, runtime, className }: ArtifactViewProps): import("react").JSX.Element;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export { ProgressBar, type ProgressBarProps } from './feedback/ProgressBar';
|
|
|
36
36
|
export { Spinner, type SpinnerProps } from './feedback/Spinner';
|
|
37
37
|
export { StatusDot, type StatusDotProps } from './feedback/StatusDot';
|
|
38
38
|
export { StepIndicator, type StepIndicatorProps } from './feedback/StepIndicator';
|
|
39
|
+
export { ArtifactView, type ArtifactViewProps } from './content/ArtifactView';
|
|
39
40
|
export { AssistantCard, type AssistantCardProps } from './content/AssistantCard';
|
|
40
41
|
export { Avatar, type AvatarProps, type AvatarTone } from './content/Avatar';
|
|
41
42
|
export { AvatarStack, type AvatarStackPerson, type AvatarStackProps } from './content/AvatarStack';
|