From 737f74ab220dbca7eb80a0c91de66f6fabfd3ecf Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Wed, 15 Nov 2023 13:45:42 +0300 Subject: [PATCH] .d.ts updates --- components/lib/calendar/Calendar.d.ts | 5 +++++ components/lib/dock/Dock.d.ts | 5 +++++ components/lib/megamenu/MegaMenu.d.ts | 5 +++++ components/lib/menubar/Menubar.d.ts | 5 +++++ 4 files changed, 20 insertions(+) diff --git a/components/lib/calendar/Calendar.d.ts b/components/lib/calendar/Calendar.d.ts index 28b65f222..9285dccc1 100755 --- a/components/lib/calendar/Calendar.d.ts +++ b/components/lib/calendar/Calendar.d.ts @@ -509,6 +509,11 @@ export interface CalendarProps { * An array of options for responsive design. */ responsiveOptions?: CalendarResponsiveOptions[]; + /** + * The breakpoint to define the maximum width boundary for datepicker panel. + * @defaultValue 769px + */ + breakpoint?: string | undefined; /** * Type of view to display. * @defaultValue date diff --git a/components/lib/dock/Dock.d.ts b/components/lib/dock/Dock.d.ts index f4d93268c..3bbcabb06 100644 --- a/components/lib/dock/Dock.d.ts +++ b/components/lib/dock/Dock.d.ts @@ -186,6 +186,11 @@ export interface DockProps { * Inline style of the element. */ style?: any; + /** + * The breakpoint to define the maximum width boundary. + * @defaultValue 960px + */ + breakpoint?: string | undefined; /** * Whether to apply 'router-link-active-exact' class if route exactly matches the item path. * @deprecated since v3.40.0. diff --git a/components/lib/megamenu/MegaMenu.d.ts b/components/lib/megamenu/MegaMenu.d.ts index 37822bb64..4b7193301 100755 --- a/components/lib/megamenu/MegaMenu.d.ts +++ b/components/lib/megamenu/MegaMenu.d.ts @@ -235,6 +235,11 @@ export interface MegaMenuProps { * @defaultValue horizontal */ orientation?: 'horizontal' | 'vertical' | undefined; + /** + * The breakpoint to define the maximum width boundary. + * @defaultValue 960px + */ + breakpoint?: string | undefined; /** * Whether to apply 'router-link-active-exact' class if route exactly matches the item path. * @deprecated since v3.40.0. diff --git a/components/lib/menubar/Menubar.d.ts b/components/lib/menubar/Menubar.d.ts index 19791d094..7d90acc61 100755 --- a/components/lib/menubar/Menubar.d.ts +++ b/components/lib/menubar/Menubar.d.ts @@ -227,6 +227,11 @@ export interface MenubarProps { * An array of menuitems. */ model?: MenuItem[] | undefined; + /** + * The breakpoint to define the maximum width boundary. + * @defaultValue 960px + */ + breakpoint?: string | undefined; /** * Whether to apply 'router-link-active-exact' class if route exactly matches the item path. * @deprecated since v3.40.0.