mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
.d.ts updates
This commit is contained in:
parent
6d845691a5
commit
737f74ab22
4 changed files with 20 additions and 0 deletions
5
components/lib/calendar/Calendar.d.ts
vendored
5
components/lib/calendar/Calendar.d.ts
vendored
|
@ -509,6 +509,11 @@ export interface CalendarProps {
|
||||||
* An array of options for responsive design.
|
* An array of options for responsive design.
|
||||||
*/
|
*/
|
||||||
responsiveOptions?: CalendarResponsiveOptions[];
|
responsiveOptions?: CalendarResponsiveOptions[];
|
||||||
|
/**
|
||||||
|
* The breakpoint to define the maximum width boundary for datepicker panel.
|
||||||
|
* @defaultValue 769px
|
||||||
|
*/
|
||||||
|
breakpoint?: string | undefined;
|
||||||
/**
|
/**
|
||||||
* Type of view to display.
|
* Type of view to display.
|
||||||
* @defaultValue date
|
* @defaultValue date
|
||||||
|
|
5
components/lib/dock/Dock.d.ts
vendored
5
components/lib/dock/Dock.d.ts
vendored
|
@ -186,6 +186,11 @@ export interface DockProps {
|
||||||
* Inline style of the element.
|
* Inline style of the element.
|
||||||
*/
|
*/
|
||||||
style?: any;
|
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.
|
* Whether to apply 'router-link-active-exact' class if route exactly matches the item path.
|
||||||
* @deprecated since v3.40.0.
|
* @deprecated since v3.40.0.
|
||||||
|
|
5
components/lib/megamenu/MegaMenu.d.ts
vendored
5
components/lib/megamenu/MegaMenu.d.ts
vendored
|
@ -235,6 +235,11 @@ export interface MegaMenuProps {
|
||||||
* @defaultValue horizontal
|
* @defaultValue horizontal
|
||||||
*/
|
*/
|
||||||
orientation?: 'horizontal' | 'vertical' | undefined;
|
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.
|
* Whether to apply 'router-link-active-exact' class if route exactly matches the item path.
|
||||||
* @deprecated since v3.40.0.
|
* @deprecated since v3.40.0.
|
||||||
|
|
5
components/lib/menubar/Menubar.d.ts
vendored
5
components/lib/menubar/Menubar.d.ts
vendored
|
@ -227,6 +227,11 @@ export interface MenubarProps {
|
||||||
* An array of menuitems.
|
* An array of menuitems.
|
||||||
*/
|
*/
|
||||||
model?: MenuItem[] | undefined;
|
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.
|
* Whether to apply 'router-link-active-exact' class if route exactly matches the item path.
|
||||||
* @deprecated since v3.40.0.
|
* @deprecated since v3.40.0.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue