@sanity/workflow-studio-plugin 0.32.0 → 0.34.0
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/CHANGELOG.md +170 -0
- package/README.md +51 -5
- package/dist/_chunks-cjs/index.cjs +1850 -409
- package/dist/_chunks-cjs/workflows-tool-root.cjs +180 -1676
- package/dist/_chunks-es/index.js +1720 -292
- package/dist/_chunks-es/workflows-tool-root.js +123 -1620
- package/dist/index.cjs +8 -0
- package/dist/index.d.cts +272 -14
- package/dist/index.d.ts +272 -14
- package/dist/index.js +2 -2
- package/package.json +29 -23
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { workflowDefaultDocumentNode, workflowStudioPlugin, workflowsView } from "./_chunks-es/index.js";
|
|
1
|
+
import { ForMeTable, RunsTable, forMeTaskRowsOf, runRowsOf, workflowDefaultDocumentNode, workflowStudioPlugin, workflowsView } from "./_chunks-es/index.js";
|
|
2
2
|
|
|
3
|
-
export { workflowDefaultDocumentNode, workflowStudioPlugin, workflowsView };
|
|
3
|
+
export { ForMeTable, RunsTable, forMeTaskRowsOf, runRowsOf, workflowDefaultDocumentNode, workflowStudioPlugin, workflowsView };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/workflow-studio-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.34.0",
|
|
4
4
|
"description": "Sanity Studio plugin for @sanity/workflow-engine: the form strip, a Workflows document view, stage badges, and the document-action lock.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sanity",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@sanity/client": "^
|
|
45
|
+
"@sanity/client": "^8.6.2",
|
|
46
46
|
"@sanity/icons": "^4.1.0",
|
|
47
47
|
"@sanity/telemetry": "^1.1.0",
|
|
48
|
-
"@sanity/types": "^6",
|
|
49
|
-
"@sanity/ui": "^
|
|
50
|
-
"@sanity/util": "^6.
|
|
48
|
+
"@sanity/types": "^6.15.0",
|
|
49
|
+
"@sanity/ui": "^4.2.1",
|
|
50
|
+
"@sanity/util": "^6.15.0",
|
|
51
51
|
"@tanstack/react-virtual": "^3.14.6",
|
|
52
52
|
"date-fns": "^4.4.0",
|
|
53
53
|
"motion": "^12.43.0",
|
|
@@ -56,35 +56,39 @@
|
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@sanity/pkg-utils": "^10.5.3",
|
|
59
|
-
"@sanity/schema": "^6",
|
|
60
|
-
"@sanity/sdk": "^
|
|
59
|
+
"@sanity/schema": "^6.15.0",
|
|
60
|
+
"@sanity/sdk": "^3.3.0",
|
|
61
|
+
"@storybook/react-vite": "^10.6.0",
|
|
61
62
|
"@testing-library/react": "^16.3.2",
|
|
62
63
|
"@types/react": "^19.2.17",
|
|
63
64
|
"@types/react-dom": "^19.2.3",
|
|
64
65
|
"jsdom": "^29.1.1",
|
|
65
|
-
"react": "^19.
|
|
66
|
-
"react-dom": "^19.
|
|
67
|
-
"sanity": "^6",
|
|
66
|
+
"react": "^19.3.0",
|
|
67
|
+
"react-dom": "^19.3.0",
|
|
68
|
+
"sanity": "^6.15.0",
|
|
69
|
+
"storybook": "^10.6.0",
|
|
68
70
|
"styled-components": "^6.4.2",
|
|
71
|
+
"vite": "^8.2.2",
|
|
69
72
|
"vitest": "^4.1.8",
|
|
70
|
-
"@sanity/workflow-components": "0.
|
|
71
|
-
"@sanity/workflow-diagram": "0.
|
|
72
|
-
"@sanity/workflow-engine": "0.
|
|
73
|
-
"@sanity/workflow-engine-test": "0.
|
|
74
|
-
"@sanity/workflow-react": "0.
|
|
75
|
-
"@sanity/workflow-studio": "0.
|
|
73
|
+
"@sanity/workflow-components": "0.34.0",
|
|
74
|
+
"@sanity/workflow-diagram": "0.34.0",
|
|
75
|
+
"@sanity/workflow-engine": "0.34.0",
|
|
76
|
+
"@sanity/workflow-engine-test": "0.34.0",
|
|
77
|
+
"@sanity/workflow-react": "0.34.0",
|
|
78
|
+
"@sanity/workflow-studio": "0.34.0",
|
|
79
|
+
"@sanity/workflow-test-fixtures": "0.0.0"
|
|
76
80
|
},
|
|
77
81
|
"peerDependencies": {
|
|
78
|
-
"@sanity/sdk": "^
|
|
82
|
+
"@sanity/sdk": "^3.1.0",
|
|
79
83
|
"react": "^19.2.7",
|
|
80
84
|
"react-dom": "^19.2.7",
|
|
81
|
-
"sanity": "^6.
|
|
85
|
+
"sanity": "^6.15.0",
|
|
82
86
|
"styled-components": "^6.4.2",
|
|
83
|
-
"@sanity/workflow-components": "0.
|
|
84
|
-
"@sanity/workflow-diagram": "0.
|
|
85
|
-
"@sanity/workflow-engine": "0.
|
|
86
|
-
"@sanity/workflow-
|
|
87
|
-
"@sanity/workflow-
|
|
87
|
+
"@sanity/workflow-components": "0.34.0",
|
|
88
|
+
"@sanity/workflow-diagram": "0.34.0",
|
|
89
|
+
"@sanity/workflow-engine": "0.34.0",
|
|
90
|
+
"@sanity/workflow-studio": "0.34.0",
|
|
91
|
+
"@sanity/workflow-react": "0.34.0"
|
|
88
92
|
},
|
|
89
93
|
"engines": {
|
|
90
94
|
"node": ">=20"
|
|
@@ -92,6 +96,8 @@
|
|
|
92
96
|
"scripts": {
|
|
93
97
|
"build": "pkg-utils build --clean",
|
|
94
98
|
"docs": "node ../../scripts/run-typedoc.mjs",
|
|
99
|
+
"storybook": "storybook dev -p 6007",
|
|
100
|
+
"storybook:build": "storybook build -o ../../.scratch/storybook/workflow-studio-plugin",
|
|
95
101
|
"test": "vitest run",
|
|
96
102
|
"test:watch": "vitest",
|
|
97
103
|
"typecheck": "tsc --noEmit -p tsconfig.json"
|