mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
Styles imported. Components added
This commit is contained in:
parent
3cb3910561
commit
8264983db4
452 changed files with 55902 additions and 0 deletions
39
components/dataviewlayoutoptions/DataViewLayoutOptions.d.ts
vendored
Executable file
39
components/dataviewlayoutoptions/DataViewLayoutOptions.d.ts
vendored
Executable file
|
@ -0,0 +1,39 @@
|
|||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
export interface DataViewLayoutOptionsProps {
|
||||
/**
|
||||
* Value of the component.
|
||||
*/
|
||||
modelValue?: string | undefined;
|
||||
}
|
||||
|
||||
export interface DataViewLayoutOptionsSlots {
|
||||
}
|
||||
|
||||
export declare type DataViewLayoutOptionsEmits = {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {*} value - New value.
|
||||
*/
|
||||
'update:modelValue': (value: string) => void;
|
||||
}
|
||||
|
||||
declare class DataViewLayoutOptions extends ClassComponent<DataViewLayoutOptionsProps, DataViewLayoutOptionsSlots, DataViewLayoutOptionsEmits> { }
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
DataViewLayoutOptions: GlobalComponentConstructor<DataViewLayoutOptions>
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* When both layout modes are enabled in DataView, a UI element would be necessary to let the user toggle between the view.
|
||||
* DataViewLayoutOptions is a helper component to display a buttonset to choose the layout mode in DataView.
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [DataViewLayoutOptions](https://www.primefaces.org/primevue/showcase/#/dataview)
|
||||
*
|
||||
*/
|
||||
export default DataViewLayoutOptions;
|
Loading…
Add table
Add a link
Reference in a new issue