sanity-plugin-media 2.3.2 → 2.4.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.
Files changed (88) hide show
  1. package/LICENSE +1 -1
  2. package/dist/index.d.mts +24 -0
  3. package/dist/index.d.ts +1 -2
  4. package/dist/index.js +4258 -10783
  5. package/dist/index.js.map +1 -1
  6. package/dist/index.mjs +5373 -0
  7. package/dist/index.mjs.map +1 -0
  8. package/package.json +23 -29
  9. package/src/components/AssetGridVirtualized/index.tsx +4 -3
  10. package/src/components/AssetMetadata/index.tsx +2 -2
  11. package/src/components/AssetTableVirtualized/index.tsx +2 -2
  12. package/src/components/Browser/index.tsx +2 -2
  13. package/src/components/ButtonAssetCopy/index.tsx +1 -1
  14. package/src/components/CardAsset/index.tsx +19 -15
  15. package/src/components/CardUpload/index.tsx +1 -1
  16. package/src/components/DebugControls/index.tsx +1 -1
  17. package/src/components/Dialog/index.tsx +1 -1
  18. package/src/components/DialogAssetEdit/index.tsx +3 -3
  19. package/src/components/DialogConfirm/index.tsx +2 -2
  20. package/src/components/DialogSearchFacets/index.tsx +2 -2
  21. package/src/components/DialogTagCreate/index.tsx +3 -3
  22. package/src/components/DialogTagEdit/index.tsx +3 -3
  23. package/src/components/DialogTags/index.tsx +2 -2
  24. package/src/components/Dialogs/index.tsx +1 -1
  25. package/src/components/DocumentList/index.tsx +1 -1
  26. package/src/components/FileAssetPreview/index.tsx +1 -1
  27. package/src/components/FileIcon/index.tsx +3 -3
  28. package/src/components/FormBuilderTool/index.tsx +2 -2
  29. package/src/components/FormFieldInputLabel/index.tsx +1 -1
  30. package/src/components/FormFieldInputText/index.tsx +1 -1
  31. package/src/components/FormFieldInputTextarea/index.tsx +1 -1
  32. package/src/components/FormSubmitButton/index.tsx +1 -1
  33. package/src/components/Image/index.tsx +3 -3
  34. package/src/components/Items/index.tsx +1 -1
  35. package/src/components/ReduxProvider/index.tsx +4 -4
  36. package/src/components/SearchFacet/index.tsx +10 -5
  37. package/src/components/SearchFacetNumber/index.tsx +2 -2
  38. package/src/components/SearchFacetSelect/index.tsx +2 -2
  39. package/src/components/SearchFacetString/index.tsx +2 -2
  40. package/src/components/SearchFacetTags/index.tsx +2 -2
  41. package/src/components/SearchFacets/index.tsx +2 -2
  42. package/src/components/SearchFacetsControl/index.tsx +1 -1
  43. package/src/components/TableHeader/index.tsx +16 -12
  44. package/src/components/TableRowAsset/index.tsx +15 -3
  45. package/src/components/Tag/index.tsx +3 -3
  46. package/src/components/TagsVirtualized/index.tsx +2 -2
  47. package/src/components/TextInputNumber/index.tsx +1 -1
  48. package/src/components/TextInputSearch/index.tsx +1 -1
  49. package/src/components/UploadDropzone/index.tsx +3 -3
  50. package/src/config/searchFacets.ts +2 -2
  51. package/src/constants.ts +6 -1
  52. package/src/contexts/AssetSourceDispatchContext.tsx +1 -1
  53. package/src/contexts/DropzoneDispatchContext.tsx +1 -1
  54. package/src/contexts/ToolOptionsContext.tsx +3 -3
  55. package/src/hooks/useKeyPress.ts +1 -1
  56. package/src/hooks/useOnScreen.ts +1 -1
  57. package/src/hooks/usePortalPopoverProps.ts +1 -1
  58. package/src/hooks/useTypedSelector.ts +2 -2
  59. package/src/index.ts +1 -1
  60. package/src/modules/assets/actions.ts +1 -1
  61. package/src/modules/assets/index.ts +4 -4
  62. package/src/modules/debug/index.ts +1 -1
  63. package/src/modules/dialog/index.ts +2 -2
  64. package/src/modules/index.ts +3 -3
  65. package/src/modules/notifications/index.ts +2 -2
  66. package/src/modules/search/index.ts +2 -2
  67. package/src/modules/selectors.ts +2 -2
  68. package/src/modules/tags/index.ts +3 -3
  69. package/src/modules/uploads/index.ts +3 -3
  70. package/src/operators/checkTagName.ts +1 -1
  71. package/src/operators/debugThrottle.ts +1 -1
  72. package/src/plugin.tsx +5 -3
  73. package/src/styled/react-select/creatable.tsx +11 -3
  74. package/src/styled/react-select/single.tsx +10 -3
  75. package/src/types/index.ts +2 -2
  76. package/src/types/sanity-ui.d.ts +6 -0
  77. package/src/utils/blocksToText.ts +1 -1
  78. package/src/utils/constructFilter.ts +1 -1
  79. package/src/utils/getAssetResolution.ts +1 -1
  80. package/src/utils/getSchemeColor.ts +1 -1
  81. package/src/utils/getTagSelectOptions.ts +1 -1
  82. package/src/utils/getUniqueDocuments.ts +1 -1
  83. package/src/utils/imageDprUrl.ts +1 -1
  84. package/src/utils/typeGuards.ts +1 -1
  85. package/src/utils/uploadSanityAsset.ts +1 -1
  86. package/dist/index.cjs.mjs +0 -5
  87. package/dist/index.esm.js +0 -11850
  88. package/dist/index.esm.js.map +0 -1
@@ -1,5 +0,0 @@
1
- import cjs from './index.js';
2
-
3
- export const media = cjs.media;
4
- export const mediaAssetSource = cjs.mediaAssetSource;
5
-