Skip to content

Commit b6fc19a

Browse files
chore: wip
1 parent ff00673 commit b6fc19a

File tree

4 files changed

+5
-14
lines changed

4 files changed

+5
-14
lines changed

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
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",

packages/react/src/co-creation/__stories__/blocks/Avatar.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ export const AvatarProps = z.object({
99

1010
export 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
}

packages/react/src/co-creation/components/CoCreationGroup/CoCreationGroup.tsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff 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

packages/react/src/components/Charts/F0ECharts/F0ECharts.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import * as echarts from "echarts"
2-
import { AriaComponent } from "echarts/components"
32
import { useEffect, useMemo, useRef } from "react"
43
import "./themes/f0.light"
5-
echarts.use(AriaComponent)
64

75
export const F0ECharts = ({ options }: { options: echarts.EChartsOption }) => {
86
const ref = useRef<HTMLDivElement>(null)

0 commit comments

Comments
 (0)