@elabs-ai/components-flow 5.2.0 → 5.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elabs-ai/components-flow",
3
- "version": "5.2.0",
3
+ "version": "5.3.1",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -33,8 +33,8 @@
33
33
  "elkjs": "^0.12.0",
34
34
  "react": "^18.2.0 || ^19.0.0",
35
35
  "react-dom": "^18.2.0 || ^19.0.0",
36
- "@elabs-ai/components-tokens": "^5.2.0",
37
- "@elabs-ai/components-ui": "^5.2.0"
36
+ "@elabs-ai/components-ui": "^5.3.1",
37
+ "@elabs-ai/components-tokens": "^5.3.1"
38
38
  },
39
39
  "peerDependenciesMeta": {
40
40
  "elkjs": {
@@ -59,10 +59,10 @@
59
59
  "typescript": "^5.7.3",
60
60
  "vitest": "^3.0.2",
61
61
  "@elabs-ai/components-eslint-config": "0.1.0",
62
- "@elabs-ai/components-icons": "5.2.0",
63
- "@elabs-ai/components-tokens": "5.2.0",
62
+ "@elabs-ai/components-icons": "5.3.1",
63
+ "@elabs-ai/components-tokens": "5.3.1",
64
64
  "@elabs-ai/components-typescript-config": "0.1.0",
65
- "@elabs-ai/components-ui": "5.2.0"
65
+ "@elabs-ai/components-ui": "5.3.1"
66
66
  },
67
67
  "scripts": {
68
68
  "build": "tsup",
@@ -161,7 +161,15 @@ function LayoutGraphDemo({ algorithm }: { algorithm: LayoutAlgorithm }) {
161
161
  const meta = {
162
162
  title: "Flow/FlowLayout",
163
163
  tags: ["autodocs"],
164
- parameters: { layout: "fullscreen" },
164
+ parameters: {
165
+ layout: "fullscreen",
166
+ docs: {
167
+ description: {
168
+ component:
169
+ "Automatic graph layout for a flow canvas: arrange the nodes top-to-bottom or left-to-right with one call, animated into place.",
170
+ },
171
+ },
172
+ },
165
173
  } satisfies Meta;
166
174
  export default meta;
167
175
  type Story = StoryObj<typeof meta>;