Socket
Socket
Sign inDemoInstall

@sanity/types

Package Overview
Dependencies
Maintainers
24
Versions
912
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sanity/types - npm Package Compare versions

Comparing version 2.2.6 to 2.3.5-canary.17

17

lib/assets/types.d.ts

@@ -1,2 +0,1 @@

/// <reference types="react" />
import { Reference } from '../reference';

@@ -86,8 +85,20 @@ import { SanityDocument } from '../documents';

}
export declare type AssetFromSource = {
kind: 'assetDocumentId' | 'file' | 'base64' | 'url';
value: string | File;
assetDocumentProps?: ImageAsset;
};
export interface AssetSourceComponentProps {
document: SanityDocument;
selectedAssets: Asset[];
selectionType: 'single' | 'multiple';
onClose: () => void;
onSelect: (assetFromSource: AssetFromSource) => void;
}
export interface AssetSource {
name: string;
title: string;
component: React.ComponentType;
icon?: React.ComponentType;
component: React.ComponentType<AssetSourceComponentProps>;
icon?: React.ComponentType<void>;
}
//# sourceMappingURL=types.d.ts.map

2

lib/schema/asserters.js

@@ -19,3 +19,3 @@ "use strict";

function isTitledListValue(item) {
return typeof item === 'object' && item !== null && 'title' in item && 'value' in item;
return typeof item === 'object' && item !== null && 'title' in item && 'value' in item && Object.keys(item).length === 2;
}

@@ -1,2 +0,1 @@

/// <reference types="react" />
import { ReferenceOptions } from '../reference';

@@ -3,0 +2,0 @@ import { AssetSource } from '../assets';

{
"name": "@sanity/types",
"version": "2.2.6",
"version": "2.3.5-canary.17+a910496797",
"description": "Type definitions for common Sanity data structures",

@@ -37,3 +37,3 @@ "main": "lib/index.js",

"homepage": "https://www.sanity.io/",
"gitHead": "bb09b0cc911039f5b3a1c9bf5fb8eda520d411f6"
"gitHead": "a91049679784fd6b7369c4c66640decd6b31296c"
}

@@ -195,11 +195,2 @@ /// <reference types="react" />

}
declare module 'part:@sanity/components/scroll' {
export {
ScrollContainer,
ScrollMonitor,
ScrollContextValue,
ScrollEventHandler,
useOnScroll,
} from './build-snapshot/__legacy/@sanity/components/scroll'
}
declare module 'part:@sanity/components/selects/custom' {

@@ -206,0 +197,0 @@ export {default} from './build-snapshot/__legacy/@sanity/components/selects/CustomSelect'

@@ -108,7 +108,21 @@ import {Reference} from '../reference'

export type AssetFromSource = {
kind: 'assetDocumentId' | 'file' | 'base64' | 'url'
value: string | File
assetDocumentProps?: ImageAsset
}
export interface AssetSourceComponentProps {
document: SanityDocument
selectedAssets: Asset[]
selectionType: 'single' | 'multiple'
onClose: () => void
onSelect: (assetFromSource: AssetFromSource) => void
}
export interface AssetSource {
name: string
title: string
component: React.ComponentType
icon?: React.ComponentType
component: React.ComponentType<AssetSourceComponentProps>
icon?: React.ComponentType<void>
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc