🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

react-day-picker

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-day-picker - npm Package Compare versions

Comparing version

to
9.4.3

@@ -1,2 +0,2 @@

import React from "react";
import React, { type ButtonHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the button elements in the calendar.

*/
export declare function Button(props: JSX.IntrinsicElements["button"]): React.JSX.Element;
export declare function Button(props: ButtonHTMLAttributes<HTMLButtonElement>): React.JSX.Element;
export type ButtonProps = Parameters<typeof Button>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the label in the month caption.

*/
export declare function CaptionLabel(props: JSX.IntrinsicElements["span"]): React.JSX.Element;
export declare function CaptionLabel(props: HTMLAttributes<HTMLSpanElement>): React.JSX.Element;
export type CaptionLabelProps = Parameters<typeof CaptionLabel>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
import type { CalendarDay } from "../classes/index.js";

@@ -19,3 +19,3 @@ import type { Modifiers } from "../types/index.js";

modifiers: Modifiers;
} & JSX.IntrinsicElements["td"]): React.JSX.Element;
} & HTMLAttributes<HTMLDivElement>): React.JSX.Element;
export type DayProps = Parameters<typeof Day>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type ButtonHTMLAttributes } from "react";
import type { CalendarDay } from "../classes/index.js";

@@ -15,3 +15,3 @@ import type { Modifiers } from "../types/index.js";

modifiers: Modifiers;
} & JSX.IntrinsicElements["button"]): React.JSX.Element;
} & ButtonHTMLAttributes<HTMLButtonElement>): React.JSX.Element;
export type DayButtonProps = Parameters<typeof DayButton>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type SelectHTMLAttributes } from "react";
import type { ClassNames, CustomComponents } from "../types/index.js";

@@ -33,3 +33,3 @@ /** An option to use in the dropdown. Maps to the `<option>` HTML element. */

options?: DropdownOption[] | undefined;
} & Omit<JSX.IntrinsicElements["select"], "children">): React.JSX.Element;
} & Omit<SelectHTMLAttributes<HTMLSelectElement>, "children">): React.JSX.Element;
export type DropdownProps = Parameters<typeof Dropdown>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the the navigation dropdowns.

*/
export declare function DropdownNav(props: JSX.IntrinsicElements["div"]): React.JSX.Element;
export declare function DropdownNav(props: HTMLAttributes<HTMLDivElement>): React.JSX.Element;
export type DropdownNavProps = Parameters<typeof DropdownNav>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Component wrapping the footer.

*/
export declare function Footer(props: JSX.IntrinsicElements["div"]): React.JSX.Element;
export declare function Footer(props: HTMLAttributes<HTMLDivElement>): React.JSX.Element;
export type FooterProps = Parameters<typeof Footer>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
import type { CalendarMonth } from "../classes/CalendarMonth.js";

@@ -15,3 +15,3 @@ /**

displayIndex: number;
} & JSX.IntrinsicElements["div"]): React.JSX.Element;
} & HTMLAttributes<HTMLDivElement>): React.JSX.Element;
export type MonthProps = Parameters<typeof Month>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
import type { CalendarMonth } from "../classes/index.js";

@@ -14,3 +14,3 @@ /**

displayIndex: number;
} & JSX.IntrinsicElements["div"]): React.JSX.Element;
} & HTMLAttributes<HTMLDivElement>): React.JSX.Element;
export type MonthCaptionProps = Parameters<typeof MonthCaption>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type TableHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the grid of days in a month.

*/
export declare function MonthGrid(props: JSX.IntrinsicElements["table"]): React.JSX.Element;
export declare function MonthGrid(props: TableHTMLAttributes<HTMLTableElement>): React.JSX.Element;
export type MonthGridProps = Parameters<typeof MonthGrid>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Component wrapping the month grids.

*/
export declare function Months(props: JSX.IntrinsicElements["div"]): React.JSX.Element;
export declare function Months(props: HTMLAttributes<HTMLDivElement>): React.JSX.Element;
export type MonthsProps = Parameters<typeof Months>[0];

@@ -1,2 +0,2 @@

import React, { MouseEventHandler } from "react";
import React, { type MouseEventHandler, type HTMLAttributes } from "react";
/**

@@ -13,3 +13,3 @@ * Render the toolbar with the navigation button.

nextMonth?: Date | undefined;
} & JSX.IntrinsicElements["nav"]): React.JSX.Element;
} & HTMLAttributes<HTMLElement>): React.JSX.Element;
export type NavProps = Parameters<typeof Nav>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type ButtonHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the next month button element in the calendar.

*/
export declare function NextMonthButton(props: JSX.IntrinsicElements["button"]): React.JSX.Element;
export declare function NextMonthButton(props: ButtonHTMLAttributes<HTMLButtonElement>): React.JSX.Element;
export type NextMonthButtonProps = Parameters<typeof NextMonthButton>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type OptionHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the `option` element.

*/
export declare function Option(props: JSX.IntrinsicElements["option"]): React.JSX.Element;
export declare function Option(props: OptionHTMLAttributes<HTMLOptionElement>): React.JSX.Element;
export type OptionProps = Parameters<typeof Option>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type ButtonHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the previous month button element in the calendar.

*/
export declare function PreviousMonthButton(props: JSX.IntrinsicElements["button"]): React.JSX.Element;
export declare function PreviousMonthButton(props: ButtonHTMLAttributes<HTMLButtonElement>): React.JSX.Element;
export type PreviousMonthButtonProps = Parameters<typeof PreviousMonthButton>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the root element.

*/
export declare function Root(props: JSX.IntrinsicElements["div"]): React.JSX.Element;
export declare function Root(props: HTMLAttributes<HTMLDivElement>): React.JSX.Element;
export type RootProps = Parameters<typeof Root>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type SelectHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the `select` element.

*/
export declare function Select(props: JSX.IntrinsicElements["select"]): React.JSX.Element;
export declare function Select(props: SelectHTMLAttributes<HTMLSelectElement>): React.JSX.Element;
export type SelectProps = Parameters<typeof Select>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
import type { CalendarWeek } from "../classes/index.js";

@@ -11,3 +11,3 @@ /**

week: CalendarWeek;
} & JSX.IntrinsicElements["tr"]): React.JSX.Element;
} & HTMLAttributes<HTMLTableRowElement>): React.JSX.Element;
export type WeekProps = Parameters<typeof Week>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type ThHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the column header with the weekday name (e.g. "Mo", "Tu", etc.).

*/
export declare function Weekday(props: JSX.IntrinsicElements["th"]): React.JSX.Element;
export declare function Weekday(props: ThHTMLAttributes<HTMLTableCellElement>): React.JSX.Element;
export type WeekdayProps = Parameters<typeof Weekday>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the row with the weekday names.

*/
export declare function Weekdays(props: JSX.IntrinsicElements["tr"]): React.JSX.Element;
export declare function Weekdays(props: HTMLAttributes<HTMLTableRowElement>): React.JSX.Element;
export type WeekdaysProps = Parameters<typeof Weekdays>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type ThHTMLAttributes } from "react";
import type { CalendarWeek } from "../classes/index.js";

@@ -12,3 +12,3 @@ /**

week: CalendarWeek;
} & JSX.IntrinsicElements["th"]): React.JSX.Element;
} & ThHTMLAttributes<HTMLTableCellElement>): React.JSX.Element;
export type WeekNumberProps = Parameters<typeof WeekNumber>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type ThHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the column header for the week numbers.

*/
export declare function WeekNumberHeader(props: JSX.IntrinsicElements["th"]): React.JSX.Element;
export declare function WeekNumberHeader(props: ThHTMLAttributes<HTMLTableCellElement>): React.JSX.Element;
export type WeekNumberHeaderProps = Parameters<typeof WeekNumberHeader>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the weeks in the month grid.

*/
export declare function Weeks(props: JSX.IntrinsicElements["tbody"]): React.JSX.Element;
export declare function Weeks(props: HTMLAttributes<HTMLTableSectionElement>): React.JSX.Element;
export type WeeksProps = Parameters<typeof Weeks>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type ButtonHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the button elements in the calendar.

*/
export declare function Button(props: JSX.IntrinsicElements["button"]): React.JSX.Element;
export declare function Button(props: ButtonHTMLAttributes<HTMLButtonElement>): React.JSX.Element;
export type ButtonProps = Parameters<typeof Button>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the label in the month caption.

*/
export declare function CaptionLabel(props: JSX.IntrinsicElements["span"]): React.JSX.Element;
export declare function CaptionLabel(props: HTMLAttributes<HTMLSpanElement>): React.JSX.Element;
export type CaptionLabelProps = Parameters<typeof CaptionLabel>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
import type { CalendarDay } from "../classes/index.js";

@@ -19,3 +19,3 @@ import type { Modifiers } from "../types/index.js";

modifiers: Modifiers;
} & JSX.IntrinsicElements["td"]): React.JSX.Element;
} & HTMLAttributes<HTMLDivElement>): React.JSX.Element;
export type DayProps = Parameters<typeof Day>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type ButtonHTMLAttributes } from "react";
import type { CalendarDay } from "../classes/index.js";

@@ -15,3 +15,3 @@ import type { Modifiers } from "../types/index.js";

modifiers: Modifiers;
} & JSX.IntrinsicElements["button"]): React.JSX.Element;
} & ButtonHTMLAttributes<HTMLButtonElement>): React.JSX.Element;
export type DayButtonProps = Parameters<typeof DayButton>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type SelectHTMLAttributes } from "react";
import type { ClassNames, CustomComponents } from "../types/index.js";

@@ -33,3 +33,3 @@ /** An option to use in the dropdown. Maps to the `<option>` HTML element. */

options?: DropdownOption[] | undefined;
} & Omit<JSX.IntrinsicElements["select"], "children">): React.JSX.Element;
} & Omit<SelectHTMLAttributes<HTMLSelectElement>, "children">): React.JSX.Element;
export type DropdownProps = Parameters<typeof Dropdown>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the the navigation dropdowns.

*/
export declare function DropdownNav(props: JSX.IntrinsicElements["div"]): React.JSX.Element;
export declare function DropdownNav(props: HTMLAttributes<HTMLDivElement>): React.JSX.Element;
export type DropdownNavProps = Parameters<typeof DropdownNav>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Component wrapping the footer.

*/
export declare function Footer(props: JSX.IntrinsicElements["div"]): React.JSX.Element;
export declare function Footer(props: HTMLAttributes<HTMLDivElement>): React.JSX.Element;
export type FooterProps = Parameters<typeof Footer>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
import type { CalendarMonth } from "../classes/CalendarMonth.js";

@@ -15,3 +15,3 @@ /**

displayIndex: number;
} & JSX.IntrinsicElements["div"]): React.JSX.Element;
} & HTMLAttributes<HTMLDivElement>): React.JSX.Element;
export type MonthProps = Parameters<typeof Month>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
import type { CalendarMonth } from "../classes/index.js";

@@ -14,3 +14,3 @@ /**

displayIndex: number;
} & JSX.IntrinsicElements["div"]): React.JSX.Element;
} & HTMLAttributes<HTMLDivElement>): React.JSX.Element;
export type MonthCaptionProps = Parameters<typeof MonthCaption>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type TableHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the grid of days in a month.

*/
export declare function MonthGrid(props: JSX.IntrinsicElements["table"]): React.JSX.Element;
export declare function MonthGrid(props: TableHTMLAttributes<HTMLTableElement>): React.JSX.Element;
export type MonthGridProps = Parameters<typeof MonthGrid>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Component wrapping the month grids.

*/
export declare function Months(props: JSX.IntrinsicElements["div"]): React.JSX.Element;
export declare function Months(props: HTMLAttributes<HTMLDivElement>): React.JSX.Element;
export type MonthsProps = Parameters<typeof Months>[0];

@@ -1,2 +0,2 @@

import React, { MouseEventHandler } from "react";
import React, { type MouseEventHandler, type HTMLAttributes } from "react";
/**

@@ -13,3 +13,3 @@ * Render the toolbar with the navigation button.

nextMonth?: Date | undefined;
} & JSX.IntrinsicElements["nav"]): React.JSX.Element;
} & HTMLAttributes<HTMLElement>): React.JSX.Element;
export type NavProps = Parameters<typeof Nav>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type ButtonHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the next month button element in the calendar.

*/
export declare function NextMonthButton(props: JSX.IntrinsicElements["button"]): React.JSX.Element;
export declare function NextMonthButton(props: ButtonHTMLAttributes<HTMLButtonElement>): React.JSX.Element;
export type NextMonthButtonProps = Parameters<typeof NextMonthButton>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type OptionHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the `option` element.

*/
export declare function Option(props: JSX.IntrinsicElements["option"]): React.JSX.Element;
export declare function Option(props: OptionHTMLAttributes<HTMLOptionElement>): React.JSX.Element;
export type OptionProps = Parameters<typeof Option>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type ButtonHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the previous month button element in the calendar.

*/
export declare function PreviousMonthButton(props: JSX.IntrinsicElements["button"]): React.JSX.Element;
export declare function PreviousMonthButton(props: ButtonHTMLAttributes<HTMLButtonElement>): React.JSX.Element;
export type PreviousMonthButtonProps = Parameters<typeof PreviousMonthButton>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the root element.

*/
export declare function Root(props: JSX.IntrinsicElements["div"]): React.JSX.Element;
export declare function Root(props: HTMLAttributes<HTMLDivElement>): React.JSX.Element;
export type RootProps = Parameters<typeof Root>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type SelectHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the `select` element.

*/
export declare function Select(props: JSX.IntrinsicElements["select"]): React.JSX.Element;
export declare function Select(props: SelectHTMLAttributes<HTMLSelectElement>): React.JSX.Element;
export type SelectProps = Parameters<typeof Select>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
import type { CalendarWeek } from "../classes/index.js";

@@ -11,3 +11,3 @@ /**

week: CalendarWeek;
} & JSX.IntrinsicElements["tr"]): React.JSX.Element;
} & HTMLAttributes<HTMLTableRowElement>): React.JSX.Element;
export type WeekProps = Parameters<typeof Week>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type ThHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the column header with the weekday name (e.g. "Mo", "Tu", etc.).

*/
export declare function Weekday(props: JSX.IntrinsicElements["th"]): React.JSX.Element;
export declare function Weekday(props: ThHTMLAttributes<HTMLTableCellElement>): React.JSX.Element;
export type WeekdayProps = Parameters<typeof Weekday>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the row with the weekday names.

*/
export declare function Weekdays(props: JSX.IntrinsicElements["tr"]): React.JSX.Element;
export declare function Weekdays(props: HTMLAttributes<HTMLTableRowElement>): React.JSX.Element;
export type WeekdaysProps = Parameters<typeof Weekdays>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type ThHTMLAttributes } from "react";
import type { CalendarWeek } from "../classes/index.js";

@@ -12,3 +12,3 @@ /**

week: CalendarWeek;
} & JSX.IntrinsicElements["th"]): React.JSX.Element;
} & ThHTMLAttributes<HTMLTableCellElement>): React.JSX.Element;
export type WeekNumberProps = Parameters<typeof WeekNumber>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type ThHTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the column header for the week numbers.

*/
export declare function WeekNumberHeader(props: JSX.IntrinsicElements["th"]): React.JSX.Element;
export declare function WeekNumberHeader(props: ThHTMLAttributes<HTMLTableCellElement>): React.JSX.Element;
export type WeekNumberHeaderProps = Parameters<typeof WeekNumberHeader>[0];

@@ -1,2 +0,2 @@

import React from "react";
import React, { type HTMLAttributes } from "react";
/**

@@ -8,3 +8,3 @@ * Render the weeks in the month grid.

*/
export declare function Weeks(props: JSX.IntrinsicElements["tbody"]): React.JSX.Element;
export declare function Weeks(props: HTMLAttributes<HTMLTableSectionElement>): React.JSX.Element;
export type WeeksProps = Parameters<typeof Weeks>[0];
{
"name": "react-day-picker",
"version": "9.4.2",
"version": "9.4.3",
"description": "Customizable Date Picker for React",

@@ -181,2 +181,4 @@ "author": "Giampaolo Bellavite <io@gpbl.dev>",

"@jest/types": "^29.6.3",
"@swc/core": "^1.10.1",
"@swc/jest": "^0.2.37",
"@testing-library/dom": "^10.4.0",

@@ -212,3 +214,2 @@ "@testing-library/jest-dom": "^6.6.3",

"react-dom": "^18.3.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",

@@ -215,0 +216,0 @@ "tslib": "^2.8.1",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet