sanity-plugin-workflow 1.0.0-beta.3 → 1.0.0-beta.4
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/README.md +2 -0
- package/lib/index.esm.js +1498 -1389
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +1495 -1386
- package/lib/index.js.map +1 -1
- package/package.json +4 -3
- package/src/components/DocumentCard/core/PublishedStatus.tsx +10 -3
- package/src/components/DocumentCard/index.tsx +5 -5
- package/src/components/DocumentList.tsx +122 -0
- package/src/components/Filters.tsx +3 -3
- package/src/components/Validators.tsx +36 -3
- package/src/components/WorkflowTool.tsx +102 -104
- package/src/constants/index.ts +1 -1
- package/src/helpers/filterItemsAndSort.ts +2 -0
- package/src/hooks/useWorkflowDocuments.tsx +6 -6
- package/src/index.ts +5 -5
- package/src/schema/workflow/workflow.metadata.ts +1 -1
- package/src/tools/index.ts +1 -1
package/README.md
CHANGED
|
@@ -12,6 +12,8 @@ With Sanity Studio you can [customize your content tools to support arbitrary wo
|
|
|
12
12
|
|
|
13
13
|
This plugin is distributed as a **reference implementation** of these customization APIs and is not considered to be a feature-complete implementation of what workflow management requires in production. It is a starting point intended to be forked and customized to the needs of your organization and content creators.
|
|
14
14
|
|
|
15
|
+

|
|
16
|
+
|
|
15
17
|
## Features
|
|
16
18
|
|
|
17
19
|
This work demonstrates how a single plugin can define:
|