Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnnsrs committed Nov 25, 2024
2 parents 9238ddb + ab0f542 commit 721f019
Show file tree
Hide file tree
Showing 24 changed files with 1,757 additions and 372 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,6 @@ jobs:
id: release_name
run: echo "RELEASE_NAME=Release $(date +"%Y-%m-%d %H:%M:%S")" >> $GITHUB_ENV

# Step 3: Publish the NPM package (once, after matrix completes)
- name: Publish to NPM
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish --access public

# Step 4: Create GitHub Release and upload all artifacts
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
Expand Down
3 changes: 3 additions & 0 deletions graphql/fluss-next/fragments/flow.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ fragment Workspace on Workspace {
latestFlow {
...Flow
}
flows {
...ListFlow
}
}

fragment CarouselWorkspace on Workspace {
Expand Down
5 changes: 5 additions & 0 deletions graphql/kraph/mutations/structure.graphql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
mutation CreateStructure($input: MeasurementInput!) {
createMeasurement(input: $input) {
...Entity
}
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"@electron-toolkit/utils": "^3.0.0",
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
"@floating-ui/react": "^0.26.28",
"@formkit/auto-animate": "^0.7.0",
"@hms-dbmi/viv": "^0.16.1",
"@hookform/resolvers": "^3.3.4",
Expand Down
8 changes: 5 additions & 3 deletions src/components/layout/MultiSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ export const MultiSidebar = (props: { map: ChildMap | undefined }) => {
return (
<Tabs
defaultValue={props.map && Object.keys(props.map).at(0)}
className="w-full"
className="w-full h-full"
>
<TabsList className="w-full flex flex-row h-16 p-2 bg-sidebar border-b dark:border-gray-700 rounded-xs">
<TabsList className="w-full flex flex-row h-16 p-2 bg-sidebar border-b dark:border-gray-700 rounded-xs ">
{props.map &&
Object.keys(props.map).map((key) => {
return (
Expand All @@ -26,7 +26,9 @@ export const MultiSidebar = (props: { map: ChildMap | undefined }) => {
{props.map &&
Object.keys(props.map).map((key) => {
return (
<TabsContent value={key}>{props.map && props.map[key]}</TabsContent>
<TabsContent value={key} className="h-full">
{props.map && props.map[key]}
</TabsContent>
);
})}
</Tabs>
Expand Down
Loading

0 comments on commit 721f019

Please sign in to comment.