Skip to content

Commit

Permalink
.d.ts updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Nov 15, 2023
1 parent 6d84569 commit 737f74a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions components/lib/calendar/Calendar.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions components/lib/dock/Dock.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
5 changes: 5 additions & 0 deletions components/lib/megamenu/MegaMenu.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
5 changes: 5 additions & 0 deletions components/lib/menubar/Menubar.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 737f74a

Please sign in to comment.