mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
Fixed #3802 - Improve folder structure for nuxt configurations
This commit is contained in:
parent
851950270b
commit
f5fe822afb
563 changed files with 1703 additions and 1095 deletions
44
components/lib/row/Row.d.ts
vendored
Executable file
44
components/lib/row/Row.d.ts
vendored
Executable file
|
@ -0,0 +1,44 @@
|
|||
/**
|
||||
* Row component is a helper component used to create grouping structures in DataTable.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/datatable/)
|
||||
*
|
||||
* @module row
|
||||
*/
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
/**
|
||||
* Defines valid properties in Row component.
|
||||
*/
|
||||
export interface RowProps {}
|
||||
|
||||
/**
|
||||
* Defines valid slots in Row component.
|
||||
*/
|
||||
export interface RowSlots {}
|
||||
|
||||
/**
|
||||
* Defines valid emits in Row component.
|
||||
*/
|
||||
export interface RowEmits {}
|
||||
|
||||
/**
|
||||
* **PrimeVue - Row**
|
||||
*
|
||||
* _Row component is a helper component used to create grouping structures in DataTable._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/datatable/)
|
||||
* --- ---
|
||||
* 
|
||||
*
|
||||
* @group Component
|
||||
*/
|
||||
declare class Row extends ClassComponent<RowProps, RowSlots, RowEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
Row: GlobalComponentConstructor<Row>;
|
||||
}
|
||||
}
|
||||
|
||||
export default Row;
|
8
components/lib/row/Row.vue
Executable file
8
components/lib/row/Row.vue
Executable file
|
@ -0,0 +1,8 @@
|
|||
<script>
|
||||
export default {
|
||||
name: 'Row',
|
||||
render() {
|
||||
return null;
|
||||
}
|
||||
};
|
||||
</script>
|
9
components/lib/row/package.json
Normal file
9
components/lib/row/package.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"main": "./row.cjs.js",
|
||||
"module": "./row.esm.js",
|
||||
"unpkg": "./row.min.js",
|
||||
"types": "./Row.d.ts",
|
||||
"browser": {
|
||||
"./sfc": "./Row.vue"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue