@overmap-ai/blocks 1.0.47 → 1.0.48-shadows.0

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,3 @@
1
1
  export declare const floating: (props?: ({
2
- shadow?: "1" | "2" | "3" | "4" | "5" | null | undefined;
3
2
  side?: "top" | "right" | "bottom" | "left" | null | undefined;
4
3
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
@@ -1,2 +1,3 @@
1
1
  export * from './floating';
2
2
  export * from './radius';
3
+ export * from './surface';
@@ -0,0 +1,3 @@
1
+ export declare const shadowCva: (props?: ({
2
+ size?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xs" | "2xl" | null | undefined;
3
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
package/dist/typings.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export type ViewportSizes = "initial" | "xs" | "sm" | "md" | "lg" | "xl";
2
+ export type ComponentShadow = "none" | "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl";
2
3
  export interface AccentColorProps {
3
4
  accentColor?: string;
4
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@overmap-ai/blocks",
3
- "version": "1.0.47",
3
+ "version": "1.0.48-shadows.0",
4
4
  "description": "A collection of React components for building Overmap's UI.",
5
5
  "license": "UNLICENSED",
6
6
  "author": "Wôrdn Inc.",