@react-types/provider
Advanced tools
Comparing version 3.2.1-nightly.2722 to 3.2.1-nightly.2724
{ | ||
"name": "@react-types/provider", | ||
"version": "3.2.1-nightly.2722+82d5242b1", | ||
"version": "3.2.1-nightly.2724+47319ffbe", | ||
"description": "Spectrum UI components in React", | ||
@@ -12,3 +12,3 @@ "license": "Apache-2.0", | ||
"dependencies": { | ||
"@react-types/shared": "3.0.0-nightly.1037+82d5242b1" | ||
"@react-types/shared": "3.0.0-nightly.1039+47319ffbe" | ||
}, | ||
@@ -21,3 +21,3 @@ "peerDependencies": { | ||
}, | ||
"gitHead": "82d5242b191656663597887171d8d1f52c8bf9b7" | ||
"gitHead": "47319ffbe7c4681f75bdb56dc639f767eb324b4b" | ||
} |
@@ -18,2 +18,9 @@ /* | ||
export type Scale = 'medium' | 'large'; | ||
export interface Breakpoints { | ||
S?: number, | ||
M?: number, | ||
L?: number, | ||
// Currently, it only deals with pixels, but we need to fix it to accept em or rem as well. | ||
[custom: string]: number | ||
} | ||
@@ -79,3 +86,9 @@ export type CSSModule = { | ||
*/ | ||
locale?: string | ||
locale?: string, | ||
/** | ||
* The breakpoints for styleProps. | ||
* Do not use `base` property. | ||
* @default {S:380,M:768,L:1024} | ||
*/ | ||
breakpoints?: Breakpoints | ||
} | ||
@@ -87,3 +100,4 @@ | ||
colorScheme: ColorScheme, | ||
scale: Scale | ||
scale: Scale, | ||
breakpoints: Breakpoints | ||
} |
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
15388
93