.d.ts updates
parent
6d845691a5
commit
737f74ab22
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue