@overmap-ai/blocks 1.0.34-command-menu.3 → 1.0.34-command-menu.4

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.
package/dist/utils.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import type * as React from "react";
2
2
  import { Dispatch, RefObject, SetStateAction, SyntheticEvent } from "react";
3
- import { ViewportSizes } from "./typings";
3
+ import type { ViewportSizes } from "./typings";
4
4
  export interface ViewportSize {
5
5
  size: ViewportSizes;
6
6
  prevSize: ViewportSizes;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@overmap-ai/blocks",
3
- "version": "1.0.34-command-menu.3",
3
+ "version": "1.0.34-command-menu.4",
4
4
  "description": "A collection of React components for building Overmap's UI.",
5
5
  "private": false,
6
6
  "author": "Wôrdn Inc.",
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- import type { SelectAllIndicatorProps } from "../typings";
3
- export declare const MenuSelectAllIndicator: import("react").ForwardRefExoticComponent<SelectAllIndicatorProps & import("react").RefAttributes<HTMLSpanElement>>;
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- interface ISelectAllContext {
3
- selected: boolean | "indeterminate";
4
- }
5
- export declare const SelectAllContext: import("react").Context<ISelectAllContext>;
6
- export {};
@@ -1,14 +0,0 @@
1
- import { PropsWithChildren } from "react";
2
- type SelectContextProviderProps = PropsWithChildren & ({
3
- type: "single";
4
- defaultValue?: string | null;
5
- value?: string | null;
6
- onValueChange?: (value: string | null) => void;
7
- } | {
8
- type: "multi";
9
- defaultValues?: string[];
10
- values?: string[];
11
- onValuesChange?: (values: string[]) => void;
12
- });
13
- export declare const SelectContextProvider: import("react").MemoExoticComponent<(props: SelectContextProviderProps) => import("react/jsx-runtime").JSX.Element>;
14
- export {};