mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
Refactor #5621
This commit is contained in:
parent
28d563323c
commit
fa07db180c
3 changed files with 2 additions and 20 deletions
|
@ -14,19 +14,10 @@ export default {
|
|||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
orientation: {
|
||||
// @todo
|
||||
type: String,
|
||||
default: 'horizontal'
|
||||
},
|
||||
scrollable: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
scrollHeight: {
|
||||
type: String,
|
||||
default: undefined
|
||||
},
|
||||
showNavigators: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
|
|
9
components/lib/tabs/Tabs.d.ts
vendored
9
components/lib/tabs/Tabs.d.ts
vendored
|
@ -94,20 +94,11 @@ export interface TabsProps {
|
|||
* @defaultValue false
|
||||
*/
|
||||
lazy?: boolean | undefined;
|
||||
/**
|
||||
* Specifies the layout of the component, valid values are 'horizontal' and 'vertical'.
|
||||
* @defaultValue horizontal
|
||||
*/
|
||||
orientation?: 'horizontal' | 'vertical' | undefined;
|
||||
/**
|
||||
* When specified, enables horizontal and/or vertical scrolling.
|
||||
* @defaultValue false
|
||||
*/
|
||||
scrollable?: boolean | undefined;
|
||||
/**
|
||||
* Height of the viewport, a scrollbar is defined if height of list exceeds this value.
|
||||
*/
|
||||
scrollHeight?: string | undefined;
|
||||
/**
|
||||
* Whether to display navigation buttons in container when scrollable is enabled.
|
||||
* @defaultValue true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue