@overmap-ai/blocks 1.0.45 → 1.0.46

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,7 +1,7 @@
1
1
  import { ComponentProps } from 'react';
2
2
  import { DayPicker as ReactDayPicker } from 'react-day-picker';
3
3
  import { DayPickerVariantProps } from './typings';
4
- export type DayPickerProps = ComponentProps<typeof ReactDayPicker> & DayPickerVariantProps;
4
+ export type DayPickerProps = Omit<ComponentProps<typeof ReactDayPicker>, "captionLayout" | "hideNavigation"> & DayPickerVariantProps;
5
5
  /**
6
6
  * Date picker component built on react-day-picker with consistent styling.
7
7
  * Supports single/multiple date selection, date ranges, and custom styling variants.
@@ -18,3 +18,9 @@ export declare const todayCva: (props?: ({
18
18
  export declare const monthCaptionCva: (props?: ({
19
19
  size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
20
20
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
21
+ export declare const dropdownRootCva: (props?: ({
22
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
23
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;
24
+ export declare const captionsLabelCva: (props?: ({
25
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
26
+ } & import('class-variance-authority/types').ClassProp) | undefined) => string;