@mindly/ui-components 8.13.0 → 8.13.2

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.
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare function IconAllSlots({ width, height, ...props }: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { SVGProps } from 'react';
2
+ export declare function IconBookedSlots({ width, height, ...props }: SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
@@ -171,3 +171,5 @@ export * from './IconRoundWarning';
171
171
  export * from './IconRoundInfo';
172
172
  export * from './IconAI';
173
173
  export * from './IconParallelArrows';
174
+ export * from './IconAllSlots';
175
+ export * from './IconBookedSlots';
@@ -1,3 +1,3 @@
1
1
  import React from 'react';
2
2
  import { CalendarProps } from './types';
3
- export declare function Calendar({ maxValue, minValue, timeZone, locale, isShowWeekNames, isShowMonthNavigation, selectionMode, onSelectionChange, defaultSelectDates, onDatePress, renderCustomDateContent, fullWidth, titleVariant, gridClassName, headerClassName, isDropdown, useSwipeMonthNavigation, selectedValue, className, ...props }: CalendarProps): React.ReactElement;
3
+ export declare function Calendar({ maxValue, minValue, timeZone, locale, isShowWeekNames, isShowMonthNavigation, selectionMode, onSelectionChange, defaultSelectDates, onDatePress, renderCustomDateContent, fullWidth, titleVariant, gridClassName, headerClassName, isDropdown, useSwipeMonthNavigation, selectedValue, focusedDateValue, className, ...props }: CalendarProps): React.ReactElement;
@@ -17,6 +17,7 @@ export type CalendarProps = Omit<AriaCalendarProps<DateValue>, 'minValue' | 'def
17
17
  defaultValue?: string;
18
18
  maxValue?: string;
19
19
  selectedValue?: string;
20
+ focusedDateValue?: string;
20
21
  slots?: Record<string, any[]>;
21
22
  fullWidth?: boolean;
22
23
  isShowWeekNames?: boolean;
@@ -1,4 +1,5 @@
1
1
  export * from './format';
2
+ export { safeDismiss } from './safeDismiss';
2
3
  export { mergeRefs } from './mergeRefs';
3
4
  export { payoutPriceNormalize } from './payoutPriceNormalizer';
4
5
  export { priceNormalize } from './priceNormalizer';
@@ -0,0 +1 @@
1
+ export declare const safeDismiss: (ref: React.RefObject<HTMLIonModalElement | null>) => void;