Rocky_Mountain_Vending/.pnpm-store/v10/files/ec/2a89491f74d39415f4cd000630abb93cc8db02b3ab5b5ab85f8ec5e00fc80829eb7b3e87cca7b63ec0aecbdd319434fc7ffd340b9c06729f9bc8464608225c
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

24 lines
No EOL
730 B
Text

import { MonthCaption } from "../components/MonthCaption.js";
import { Week } from "../components/Week.js";
import { useDayPicker } from "../useDayPicker.js";
/**
* @ignore
* @deprecated This component has been renamed. Use `MonthCaption` instead.
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export const Caption = MonthCaption;
/**
* @ignore
* @deprecated This component has been renamed. Use `Week` instead.
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export const Row = Week;
/**
* @ignore
* @deprecated This type has been moved to `useDayPicker`.
* @group Hooks
*/
export const useNavigation = useDayPicker;
//# sourceMappingURL=deprecated.js.map