wacomm 1.87.2 → 1.88.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.
@@ -0,0 +1,6 @@
1
+ interface CarouselProps {
2
+ children: React.ReactNode;
3
+ className?: string;
4
+ }
5
+ declare function Carousel({ children, className }: CarouselProps): import("react/jsx-runtime").JSX.Element;
6
+ export default Carousel;
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { default as Carousel } from './Carousel';
3
+ declare const meta: Meta<typeof Carousel>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
@@ -1,7 +1,6 @@
1
- import { DateTime } from 'waujs';
2
1
  interface DateRangeProps {
3
- startDate: DateTime;
4
- endDate: DateTime;
2
+ startDate: string;
3
+ endDate: string;
5
4
  className?: string;
6
5
  }
7
6
  declare function DateRange({ startDate, endDate, className }: DateRangeProps): import("react/jsx-runtime").JSX.Element;
@@ -2,7 +2,5 @@ export { default as TimePicker } from './TimePicker';
2
2
  export { default as DatePicker } from './DatePicker';
3
3
  export { default as MonthPicker } from './MonthPicker';
4
4
  export { default as DateTimePicker } from './DateTimePicker';
5
- export type { DateTime } from './util';
6
- export { formatDate, formatTime, formatDateTime, isSameDate, formatDateTimeRange } from './dateTimeFormatter';
7
5
  export { default as DateRange } from './DateRange';
8
6
  export { default as DateDisplay } from './DateDisplay';