@deck.gl/react
Advanced tools
Comparing version 9.0.0-alpha.6 to 9.0.0-alpha.7
@@ -5,3 +5,3 @@ { | ||
"license": "MIT", | ||
"version": "9.0.0-alpha.6", | ||
"version": "9.0.0-alpha.7", | ||
"publishConfig": { | ||
@@ -39,3 +39,3 @@ "access": "public" | ||
}, | ||
"gitHead": "dcb297a8b2b0fcfb3194f16f8df759afcd0e6cac" | ||
"gitHead": "de061268077ab74e163792162efbc07be95d10f5" | ||
} |
@@ -7,3 +7,3 @@ import * as React from 'react'; | ||
/** DeckGL React component props */ | ||
export declare type DeckGLProps = Omit<DeckProps, 'width' | 'height' | 'gl' | 'parent' | 'canvas' | '_customRender'> & { | ||
export type DeckGLProps = Omit<DeckProps, 'width' | 'height' | 'gl' | 'parent' | 'canvas' | '_customRender'> & { | ||
Deck?: typeof Deck; | ||
@@ -15,3 +15,3 @@ width?: string | number; | ||
}; | ||
export declare type DeckGLRef = { | ||
export type DeckGLRef = { | ||
deck?: Deck; | ||
@@ -18,0 +18,0 @@ pickObject: Deck['pickObject']; |
import * as React from 'react'; | ||
import { View } from '@deck.gl/core'; | ||
import type { LayersList, Viewport } from '@deck.gl/core'; | ||
export declare type DeckGLRenderCallbackArgs = { | ||
export type DeckGLRenderCallbackArgs = { | ||
/** | ||
@@ -30,3 +30,3 @@ * the left offset of the current view, in pixels | ||
}; | ||
export declare type DeckGLRenderCallback = (args: DeckGLRenderCallbackArgs) => React.ReactNode; | ||
export type DeckGLRenderCallback = (args: DeckGLRenderCallbackArgs) => React.ReactNode; | ||
export default function extractJSXLayers({ children, layers, views }: { | ||
@@ -33,0 +33,0 @@ children?: React.ReactNode | DeckGLRenderCallback; |
import * as React from 'react'; | ||
import type { Deck, DeckProps, Viewport } from '@deck.gl/core'; | ||
import type { EventManager } from 'mjolnir.js'; | ||
export declare type DeckGLContextValue = { | ||
export type DeckGLContextValue = { | ||
viewport: Viewport; | ||
@@ -6,0 +6,0 @@ container: HTMLElement; |
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
142242