@sanity/assist 3.0.9 → 3.1.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/LICENSE +1 -1
- package/README.md +1 -1
- package/dist/index.esm.js +369 -488
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +368 -487
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +369 -488
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -4
- package/src/assistDocument/AssistDocumentContext.tsx +3 -1
- package/src/assistDocument/AssistDocumentContextProvider.tsx +3 -4
- package/src/assistDocument/AssistDocumentInput.tsx +1 -7
- package/src/assistDocument/AssistDocumentLayout.tsx +12 -0
- package/src/assistDocument/RequestRunInstructionProvider.tsx +0 -6
- package/src/assistDocument/components/FieldRefPreview.tsx +2 -4
- package/src/assistDocument/hooks/useAssistDocumentContextValue.tsx +40 -17
- package/src/assistInspector/AssistInspector.tsx +15 -12
- package/src/components/ImageContext.tsx +15 -8
- package/src/fieldActions/assistFieldActions.tsx +12 -21
- package/src/fieldActions/generateCaptionActions.tsx +11 -4
- package/src/fieldActions/generateImageActions.tsx +3 -3
- package/src/helpers/ids.test.ts +12 -1
- package/src/helpers/ids.ts +9 -1
- package/src/plugin.tsx +5 -1
- package/src/presence/AssistDocumentPresence.tsx +5 -14
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -844,7 +844,7 @@ on how to run this plugin with hotreload in the studio.
|
|
|
844
844
|
|
|
845
845
|
### Release new version
|
|
846
846
|
|
|
847
|
-
Run ["CI & Release" workflow](https://github.com/sanity-io/
|
|
847
|
+
Run ["CI & Release" workflow](https://github.com/sanity-io/assist/actions/workflows/main.yml).
|
|
848
848
|
Make sure to select the main branch and check "Release new version".
|
|
849
849
|
|
|
850
850
|
Semantic release will only release on configured branches, so it is safe to run release on any branch.
|