File tree Expand file tree Collapse file tree 4 files changed +5
-14
lines changed
components/CoCreationGroup
components/Charts/F0ECharts Expand file tree Collapse file tree 4 files changed +5
-14
lines changed Original file line number Diff line number Diff line change 180180 "@atlaskit/pragmatic-drag-and-drop-flourish" : " ^2.0.4" ,
181181 "@atlaskit/pragmatic-drag-and-drop-hitbox" : " ^1.1.0" ,
182182 "@atlaskit/pragmatic-drag-and-drop-react-drop-indicator" : " ^3.2.5" ,
183- "@factorialco/f0-core" : " workspace:* " ,
183+ "@factorialco/f0-core" : " latest " ,
184184 "@radix-ui/number" : " ^1.1.1" ,
185185 "@radix-ui/primitive" : " ^1.1.2" ,
186186 "@radix-ui/react-collection" : " ^1.1.7" ,
Original file line number Diff line number Diff line change @@ -9,7 +9,10 @@ export const AvatarProps = z.object({
99
1010export const Avatar = ( props : z . infer < typeof AvatarProps > ) => {
1111 return (
12- < > This should be an avatar component</ >
12+ < >
13+ This should be an avatar { props . type } with name { props . firstName } { " " }
14+ { props . lastName }
15+ </ >
1316 //<F0AvatarPerson firstName={props.firstName} lastName={props.lastName} />
1417 )
1518}
Original file line number Diff line number Diff line change @@ -26,16 +26,6 @@ export type CoCreationGroupProps = {
2626 */
2727 blockInstances : CoCreationBlockInstance [ ]
2828
29- /**
30- * The instructions for the agent to follow when creating the group
31- */
32- agentInstructions : string | string [ ]
33-
34- /**
35- * The context for the agent to use when creating the group
36- */
37- agentContext : string | string [ ]
38-
3929 /**
4030 * The mode of the co-creation group
4131 * - "co-creation": The agent or user will create and manipulate the block instances and the blocks content
Original file line number Diff line number Diff line change 11import * as echarts from "echarts"
2- import { AriaComponent } from "echarts/components"
32import { useEffect , useMemo , useRef } from "react"
43import "./themes/f0.light"
5- echarts . use ( AriaComponent )
64
75export const F0ECharts = ( { options } : { options : echarts . EChartsOption } ) => {
86 const ref = useRef < HTMLDivElement > ( null )
You can’t perform that action at this time.
0 commit comments