utopia-ui 3.0.0-alpha.43 → 3.0.0-alpha.45

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.
@@ -1,4 +1,5 @@
1
- /// <reference types="react" />
2
- export declare const Control: ({ children }: {
3
- children: any;
1
+ import * as React from 'react';
2
+ export declare const Control: ({ position, children }: {
3
+ position: "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
4
+ children: React.ReactNode;
4
5
  }) => JSX.Element;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ export declare const Control: ({ position, children }: {
3
+ position: "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
4
+ children: React.ReactNode;
5
+ }) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const FilterControl: () => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare function LayerControl(): JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare function QuestControl(): JSX.Element;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ export declare const SearchControl: ({ clusterRef }: {
3
+ clusterRef: any;
4
+ }) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const TagsControl: () => JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const useDebounce: (callback: any, delay: any, deps: any) => void;
@@ -0,0 +1,4 @@
1
+ export declare const useTimeout: (callback: any, delay: any) => {
2
+ reset: () => void;
3
+ clear: () => void;
4
+ };